:root {
  --all-bg-color: #ffffff;
  --white-bg: #A7ABB21A;
  --about-bg: #F6F7F7;
  --navbar-text: #002C75;
  --title-text-color: #000000;
  --get-address-btn-bg: #001A47;
  --get-address-btn-border: #001A47;
  --border-color: #3E74FE54;
  --icon-hover: #3E74FECC;
  --primary-text-color: #0000009C;
  --white-txt: #FFFFFF;
  --btn-bg-color: #000000;
  --stat-color: #000000;
  --shadow: #00000008;
  --video: #002C751A;
  --pause-btn: rgba(0, 0, 0, 0.7);
  --footer-txt: #000000;
  --footer-line: #002C750D;
  --button-hover: #000000;
  --button-text-hover: #002C75;
  --more-button-hover: #001A47;
  --more-button-text-hover: #FFFFFF;
  --footer-hover: #002C75CC;
  --get-address-bc-hover: #F6FAFF;
  --get-address-cl-hover: #001A47;
  --inputs-hover: #001A47;
  --light-text-color: #000000A6;
}

[data-theme="dark"] {
  --all-bg-color: #080F0F;
  --white-bg: #27272766;
  --about-bg: #151919;
  --title-text-color: #FFFFFF;
  --navbar-text: #FFFFFF;
  --get-address-btn-bg: #080F0F;
  --get-address-btn-border: #FFFFFF;
  --border-color: #FFFFFF4D;
  --icon-hover: #FFFFFF;
  --primary-text-color: #FFFFFFB2;
  --white-txt: #080F0F;
  --btn-bg-color: #0196F5;
  --stat-color: #FFFFFF;
  --shadow: #00000008;
  --video: #1519198A;
  --pause-btn: rgba(0, 0, 0, 0.7);
  --footer-txt: #FFFFFFCC;
  --footer-line: #FFFFFF26;
  --button-hover: #0196F5;
  --button-text-hover: #0196F5;
  --more-button-hover: #0196F5;
  --more-button-text-hover: #080F0F;
  --footer-hover: #002C75CC;
  --get-address-bc-hover: #0196F5;
  --get-address-cl-hover: #080F0F;
  --inputs-hover: #3E74FE54;
  --light-text-color: #FFFFFFB2;
}

body {
  background-color: var(--all-bg-color);
}

.layout-wrapper {
  width: calc(100% - 160px);
  max-width: 1280px;
  margin: 30px auto 0 auto;
  box-sizing: border-box;
}

.navbar {
  width: 100%;
  height: 68px;
  background-color: var(--white-bg);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  box-sizing: border-box;
}

.navbar-brand {
  position: absolute;
  left: 78px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.navbar-brand img {
  width: 79px;
  height: 20.87px;
}

.navbar-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 100%;
  padding: 0 20px;
}

.navbar-nav .nav-item a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  color: var(--navbar-text);
  display: flex;
  align-items: center;
  height: 100%;
}

.right_side_icon {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  margin-left: auto;
  padding-right: 10px;
}

.icon-button i.fa-sun {
  color: #ffffff;
}

.icon-button {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 60px;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}

.container_menu {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.language-selector {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-color);
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: none;
  z-index: 2;
  flex-shrink: 0;
  transition: width 0.3s ease;
  overflow: hidden;
}

.language-selector.open {
  width: 126px;
  justify-content: space-around;
  gap: 10px;
  padding: 0 5px;
}

.language-selector p {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  line-height: 28px;
  transition: opacity 0.3s ease;
  pointer-events: auto;
  cursor: pointer;
  color: var(--navbar-text);
}

.language-selector p.hidden {
  opacity: 0;
  width: 0;
  margin: 0;
  overflow: hidden;
}

.language-selector.open p.hidden {
  opacity: 1;
  width: auto;
}

.language-selector p:not(.active) {
  display: none;
}

.language-selector.open p {
  display: block;
}

.login-button {
  color: var(--navbar-text);
  border: 1px solid var(--border-color);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  padding: 10px 15px;
  height: 48px;
  border-radius: 29px;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  margin-left: 10px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.login-button.hidden {
  opacity: 0;
  width: 0;
  padding: 0;
  margin-left: 0;
  border: none;
  pointer-events: none;
}

.icon-button:hover,
.language-selector:hover,
.login-button:hover {
  border-color: var(--icon-hover);
}

.hamburger-menu,
.mobile-menu,
.mobile-menu-overlay,
#mobile_toggle {
  display: none;
}

.main_site_button{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--title-text-color);
  margin-top: 20px;
  margin-left: auto;
  margin-right: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.main_site_button:hover{
  border-color: var(--icon-hover);
}

.cio_text {
  margin-top: 85px;
}

.cio_text h2 {
  font-family: 'Montserrat', sans-serif;
  font-style: black;
  font-weight: 900;
  font-size: 90px;
  color: var(--title-text-color);
  line-height: 138px;
  letter-spacing: 2%;
}

.track-parcel-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 50px;
  gap: 5px;
  padding: 0;
}

.track-parcel-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: var(--title-text-color);
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0%;
  margin-bottom: 11px;
  margin-left: 30px;
}

.track-parcel-search {
  position: relative;
  width: 781px;
  height: 88px;
  background: var(--about-bg);
  border-radius: 66px;
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.tracking-input {
  flex: 1;
  height: 66px;
  padding: 0 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 28px;
  border: 1px solid #3E74FE54;
  border-radius: 100px;
  outline: none;
  background: #f8f8f8;
}

.tracking-input::placeholder {
  color: #0000009C;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 28px;
}

.tracking-button {
  position: absolute;
  right: 25px;
  width: 116px;
  height: 54px;
  padding: 0 30px;
  border: none;
  border-radius: 52px;
  background: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tracking-input:hover,
.tracking-input:focus {
  border: 1px solid var(--inputs-hover);
  outline: none;
}

.tracking-button:hover {
  color: var(--button-hover);
  background: none;
  border: 1px solid var(--button-hover);
}

.shipping-wrapper {
  width: 100%;
  box-sizing: border-box;
  margin-top: 197px;
}

.title-background {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: var(--title-text-color);
  margin-bottom: 16px;
  margin-left: 60px;
}

.shipping-container {
  width: 100%;
  height: auto;
  border-radius: 66px;
  overflow: hidden;
  background: var(--about-bg);
  box-shadow: 0px 1px 5px 0px #00000008;
}

.table-header {
  width: 1160px;
  height: 76px;
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 3fr 1fr;
  align-items: center;
  background-color: var(--btn-bg-color);
  color: var(--white-txt);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-top: 60px;
  margin-left: 60px;
  padding: 0 40px;
  border-radius: 50px;
}

.table-body {
  width: 100%;
  padding-left: 45px;
  padding-right: 43px;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 3fr 1fr;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--primary-text-color);
  line-height: 28px;
  padding: 20px 40px;
}

.table-row>div:first-child {
  padding-left: 10px;
}

.table-row>div:last-child {
  padding-right: 50px;
}

.table-header>div:nth-child(2),
.table-header>div:nth-child(3),
.table-header>div:nth-child(4) {
  margin-left: -8px;
}

.footer_line2 {
  width: 95%;
  height: 0.5px;
  background-color: var(--border-color);
  margin: 0 auto;
}

.row-cell {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.row-cell img {
  width: 20px;
  height: 20px;
  margin-right: 2px;
  vertical-align: middle;
}

#transport span {
  padding-left: 5px;
}

.soon-price {
  padding-right: 40px;
}

.stats-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
  padding: 44px 90px;
  border: 1px solid var(--border-color);
  border-radius: 100px;
  background-color: transparent;
  margin: 170px auto;
  box-sizing: border-box;
}

.stat {
  font-family: 'Montserrat', sans-serif;
  line-height: 19.5px;
  color: var(--stat-color);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.number {
  font-size: 70px;
  line-height: 100%;
  font-weight: 400;
  color: var(--stat-color);
  font-family: "PP Neue Montreal", sans-serif;
}

.label {
  font-size: 14px;
  font-weight: 400;
  color: var(--stat-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1280px;
  height: 719px;
  background: var(--white-bg);
  box-shadow: 0px 1px 5px 0px var(--shadow);
  border-radius: 66px;
  overflow: hidden;
  margin: 140px 0 120px 0;
}

.image-section img {
  width: 630px;
  height: 719px;
  overflow: hidden;
  object-fit: contain;
  border-radius: 66px;
}

.text-section {
  width: 620px;
  height: 719px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-section h2 {
  color: var(--title-text-color);
  font-size: 20px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  line-height: 28px;
}

.text-section p {
  color: var(--primary-text-color);
  font-size: 14px;
  line-height: 28px;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
}

.more-button {
  width: 111px;
  height: 64px;
  background: var(--title-text-color);
  border: 1px solid var(--border-color);
  border-radius: 52px;
  color: var(--white-txt);
  font-size: 12px;
  font-weight: 400;
  line-height: 28px;
  cursor: pointer;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  margin-top: 20px;
}

.more-button:hover {
  color: var(--button-hover);
  background: none;
  border: 1px solid var(--button-hover);
}

.footer_line {
  height: 1px;
  background-color: var(--footer-line);
  width: 100%;
  margin-top: 170px;

}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 20px;
}

.footer-columns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-grow: 1;
}

.footer1 {
  margin-right: 30px;
}

.footer1,
.footer2,
.footer3,
.footer4 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 100px;
  color: var(--footer-txt);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 28px;
  font-weight: 300;
}

.footer1 a:hover,
.footer2 a:hover,
.footer3 a:hover,
.footer4 a:hover,
.footer a:hover {
  color: #001A47;
}

.footer_right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  white-space: nowrap;
  color: var(--footer-txt);
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  line-height: 28px;
}

.iconsandtext {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 5px;
}

#iconsandtext_apple {
  width: 15px;
  height: 18px;
}

#iconsandtext_playmarket {
  width: 16px;
  height: 18px;
}

.footer a {
  color: var(--footer-txt);
  font-size: 14px;
  text-decoration: none;
}

#download {
  text-decoration: underline;
}

[data-theme="light"] .fa-apple {
  color: #000000;
}

[data-theme="dark"] .fa-apple {
  color: #ffffff;
}

.tracking-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay);
  z-index: 998;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
}

.tracking-overlay.active {
  visibility: visible;
  opacity: 1;
}

.tracking-drawer {
  position: fixed;
  top: 0;
  right: -200%;
  width: 630px;
  height: 100%;
  background-color: var(--all-bg-color);
  border-radius: 52px 0 0 52px;
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: hidden !important;
}

.tracking-drawer.open {
  right: 0;
}

.drawer-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 55px 40px 40px 40px;
}

.txtandclose {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#close_trackingdrawer {
  border: none;
  cursor: pointer;
  margin-top: -7px;
  width: 24px;
  height: 24px;
  margin-right: 0;
}

.drawer-content h3 {
  font-size: 16px;
  font-weight: 400;
  color: var(--title-text-color);
  line-height: 28px;
  font-family: 'Montserrat', sans-serif;
}

.track-parcel-dropdown-container {
  position: absolute;
  width: 550px;
  border-radius: 40px;
  border: 1px solid var(--border);
  top: 127px;
  left: 40px;
  background-color: var(--dropdown-bg);
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  z-index: 10;
}

.track-parcel-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0 20px 0 20px;
  gap: 10px;
  letter-spacing: 0%;
  cursor: pointer;
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  line-height: 28px;
  font-size: 14px;
  font-weight: 400;
  color: var(--primary-text-color);
}

.track-parcel-dropdown-flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-top: 0;
  margin-bottom: 0;
}

.track-parcel-dropdown-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--dropdown-txt);
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  padding-top: 3px;
  line-height: 28px;
}

.checked_country {
  margin-top: 3px;
  width: 23px;
  height: 23px;
  margin-left: auto;
  margin-right: 0;
  background: none !important;
  border: none;
}

.track-parcel-dropdown-item {
  display: flex;
  align-items: center;
  padding: 10px 20px 10px 20px;
  gap: 10px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  line-height: 28px;
  font-size: 14px;
  font-weight: 400;
  color: var(--primary-text-color);
}

.order-card {
  position: relative;
  width: 550px;
  height: 118px;
  border: 1px solid var(--border-color);
  border-radius: 40px;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
  margin: 60px 0 0 40px;
  z-index: 1;
}

.hide-order-card {
  display: none;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr 40px;
  grid-template-rows: 1fr 1fr;
  position: relative;
  height: 100%;
  width: 100%;
  align-items: center;
  padding: 0 30px;
  column-gap: 31px;
}

.order-label,
.order-value {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  font-family: 'Montserrat', sans-serif;
  color: var(--title-text-color);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.order-value {
  color: var(--light-text-color);
}

.order-copy-placeholder,
.order-copy-button-cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-button img {
  border: none;
  background: none;
  cursor: pointer;
  width: 13.69px;
  height: 15px;
  margin-right: 60px;
}

.order-horizontal-line {
  position: absolute;
  top: 50%;
  left: 30px;
  right: 30px;
  height: 1px;
  background-color: var(--border-color);
}

.order-vertical-line {
  position: absolute;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background-color: var(--border-color);
}

.order-vertical-line.middle {
  left: 197px;
}

.order-vertical-line.right {
  right: 150px;
}

.tracking-timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 40px;
  font-family: 'Montserrat', sans-serif;
}

.timeline-item {
  position: relative;
  margin-bottom: 15px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

#today_icon img,
#local_shipping img {
  width: 21px;
  height: 21px;
}

#warehouse_icon img,
#export_package img,
#success img {
  width: 20px;
  height: 20px;
}

#location img {
  width: 24px;
  height: 24px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 28px;
  bottom: -30px;
  width: 4px;
  background-color: #000;
  z-index: 0;
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-content {
  margin-left: 48px;
}

.timeline-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--title-text-color);
  margin-bottom: 3px;
}

.timeline-datetime {
  font-size: 13px;
  color: var(--primary-text-color);
  font-weight: 400;
}

@media (max-width: 768px) {

  .layout-wrapper {
    width: calc(100% - 60px);
    margin: 20px auto 0 auto;
  }

  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 60px;
    z-index: 1000;
    position: fixed;
    top: 10px;
    max-width: calc(100% - 60px);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.32);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.9px);
    -webkit-backdrop-filter: blur(6.9px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid white;
  }

  .navbar-nav,
  .right_side_icon {
    display: none !important;
  }

  .navbar-icons {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    padding-right: 10px;
  }

  #mobile_toggle,
  #hamburgerBtn {
    all: unset;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid white;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    padding: 0;
  }

  .hamburger-menu i {
    font-size: 18px;
    color: #0196F5;
  }

  body.hide-header .navbar,
  body.hide-header .hamburger-menu {
    display: none !important;
  }

  .mobile-menu {
    padding: 0;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--all-bg-color);
    z-index: 1001;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.2s ease, transform 0.6s ease;
    display: block;
  }

  .mobile-menu.open {
    opacity: 1;
    transform: translateX(0);
  }

  .mobile-menu-header {
    position: relative;
    height: 60px;
    width: 100%;
  }

  .mobile-logo {
    width: 49px;
    height: 24px;
    position: absolute;
    left: 76px;
    top: 50px;
    transform: translate(-50%, -50%);
  }

  .close-mobile-menu {
    position: fixed;
    right: 40px;
    top: 30px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid white;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1006;
    cursor: pointer;
    padding: 0;
  }

  .close-mobile-menu i {
    font-size: 15px;
    color: #3d5af1;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 20px 0;
    margin: 0;
  }

  .mobile-menu ul li {
    margin-bottom: 15px;
    margin-left: 40px;
  }

  .mobile-menu ul li a {
    text-decoration: none;
    color: var(--title-text-color);
    font-size: 14px;
  }

  .mobile-menu ul li:first-child {
    margin-top: 20px;
  }

  .lightblue_line {
    margin-top: 15px;

    height: 1.5px;
    background-color: var(--footer-line);
    width: 100%;
  }

  .lang-options {
    display: flex;
    justify-content: start;
    gap: 20px;
    margin-top: 50px;
    margin-left: 40px;
    font-size: 14px;
    color: var(--title-text-color);
  }

  .main_site_button {
    margin-top: 90px;
  }

  .cio_text h2 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 900;
  }

  .cio_text {
    margin-top: 70px;
    text-align: left;
  }

  .track-parcel-container {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .track-parcel-header h2 {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-left: 0;
    text-align: left;
  }

  .track-parcel-header p {
    font-size: 12px;
    margin-left: 20px;
  }

  .track-parcel-search {
    flex-direction: column;
    height: auto;
    padding: 15px;
    border-radius: 30px;
    max-width: 100%;
  }

  .tracking-input {
    width: 100%;
    margin-bottom: 10px;
    height: 50px;
    border-radius: 30px;
    padding: 15px 20px;
  }

  .tracking-button {
    position: static;
    width: 100%;
    height: 50px;
    border-radius: 30px;
  }

  .shipping-wrapper {
    margin-top: 140px;
  }

  .title-background {
    margin-left: 0;
    font-size: 14px;
  }

  .table-header {
    display: none;
  }

  .table-body {
    padding: 0;
  }

  .table-row {
    grid-template-columns: 1fr;
    padding: 15px;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
  }

  .table-body .table-row:first-child {
    margin-top: 30px;
  }

  .stats-container {
    flex-direction: column;
    padding: 30px 20px;
    border-radius: 30px;
    margin: 60px auto;
    gap: 30px;
  }

  .stat {
    align-items: flex-end;
  }

  .number {
    font-size: 50px;
  }

  .container {
    flex-direction: column;
  }

  .left-section,
  .video-container {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 30px;
  }

  .left-section h2 {
    padding: 30px 20px 0;
  }

  .left-section ul,
  .left-section p {
    width: auto;
    margin: 20px;
    padding: 0;
  }

  .left-section p {
    margin-top: 30px;
  }

  .video-container {
    aspect-ratio: 16/9;
  }

  .about-container {
    flex-direction: column-reverse;
    width: 100%;
    max-width: 95%;
    height: auto;
    border-radius: 30px;
    margin: 60px auto 40px auto;
    box-shadow: 0px 1px 5px 0px var(--shadow);
    text-align: left;
  }

  .image-section img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 30px;
    object-fit: contain;
    margin-top: 20px;
  }

  .text-section {
    width: 100%;
    padding: 20px 16px;
    height: auto;
    text-align: left;
  }

  .text-section h2 {
    font-size: 18px;
    line-height: 24px;
    text-align: left;
  }

  .text-section p {
    font-size: 14px;
    line-height: 22px;
    margin-top: 10px;
    text-align: left;
  }

  .more-button {
    width: 100px;
    height: 48px;
    font-size: 12px;
    margin-top: 16px;
    border-radius: 40px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    row-gap: 12px;
  }

  .footer_right {
    align-items: flex-start;
    text-align: left;
  }

  .iconsandtext {
    justify-content: flex-start;
  }

  .footer_line {
    margin-top: 60px;
  }

  .tracking-drawer {
    width: 100%;
    border-radius: 0;
  }

  .track-parcel-dropdown-container {
    width: calc(100% - 32px);
    left: 16px;
    top: 90px;
    border-radius: 20px;
  }

  .track-parcel-dropdown-header {
    height: 44px;
    padding: 0 16px;
    font-size: 13px;
  }

  .track-parcel-dropdown-flag {
    width: 18px;
    height: 18px;
  }

  .checked_country {
    width: 20px;
    height: 20px;
  }

  .order-card {
    width: calc(100% - 32px);
    margin: 20px auto 0 auto;
    border-radius: 20px;
    padding: 12px 16px;
    height: auto;
  }

  .order-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
  }

  .order-label,
  .order-value {
    font-size: 13px;
    line-height: 20px;
    justify-content: flex-start;
  }

  .order-label {
    font-weight: 500;
    color: var(--title-text-color);
  }

  .order-value {
    font-weight: 400;
    color: var(--light-text-color);
    word-break: break-all;
  }

  .order-copy-button-cell {
    justify-content: flex-start;
  }

  .copy-button img {
    margin: 0;
    width: 16px;
    height: 16px;
  }

  .order-horizontal-line,
  .order-vertical-line {
    display: none;
  }

}

