:root {
  --color-primary: #111a50;
  --color-secondary: #4d5caf;
  --color-light-bg: #f2f2f2;
  --color-text: #445282;
  --color-light-text: #a1adcf;
  --color-border: #e8e8e8;
  --color-input-bg: #fcfcfc;
  --color-white: #ffffff;
  --color-delivered-bg: #dafce0;
  --color-delivered-text: #25984d;
  --color-shipped-bg: rgba(161, 173, 207, 0.5);
  --color-shipped-text: #445282;
  --color-cancelled-bg: #fee2e2;
  --color-cancelled-text: #dc2626;
}
@font-face {
  font-family: "Montserrat";
  font-weight: 100;
  src: url(../fonts/Montserrat-Thin.ttf);
}
@font-face {
  font-family: "Montserrat";
  font-weight: 200;
  src: url(../fonts/Montserrat-ExtraLight.ttf);
}
@font-face {
  font-family: "Montserrat";
  font-weight: 300;
  src: url(../fonts/Montserrat-Light.ttf);
}
@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  src: url(../fonts/Montserrat-Regular.ttf);
}

@font-face {
  font-family: "Montserrat";
  font-weight: 500;
  src: url(../fonts/Montserrat-Medium.ttf);
}

@font-face {
  font-family: "Montserrat";
  font-weight: 600;
  src: url(../fonts/Montserrat-SemiBold.ttf);
}
@font-face {
  font-family: "Montserrat";
  font-weight: 700;
  src: url(../fonts/Montserrat-Bold.ttf);
}
@font-face {
  font-family: "Montserrat";
  font-weight: 800;
  src: url(../fonts/Montserrat-ExtraBold.ttf);
}
@font-face {
  font-family: "Montserrat";
  font-weight: 900;
  src: url(../fonts/Montserrat-Black.ttf);
}
body {
  font-family: "Montserrat";
  overflow-x: hidden;
}
button {
  border: none;
  cursor: pointer;
  background: none;
}

h1 {
  color: var(--color-primary);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  margin: 0;
  line-height: 120%;
}
h2 {
  color: var(--color-secondary);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  margin: 0;
  line-height: 133.333%;
}
h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--color-primary);
  text-align: center;
  margin: 0;
}

p {
  font-size: 16px;
  font-style: normal;
  margin: 0;
  font-weight: 700;
  line-height: 150%;
}
span,
.contactLink a {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  line-height: 142.857%;
}

h6,
.contactForm label,
.contactForm label span,
a,
.statusText h6 span {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 133.333%;
  margin: 0;
}
.gap-12 {
  gap: 12px;
}
a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  width: 100%;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 12px 0;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 32px;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: var(--color-primary);
  flex-shrink: 0;
}

.logo-text {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.45px;
  color: var(--color-primary);
  white-space: nowrap;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 20px;
}

.nav-link-custom {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-text);
  white-space: nowrap;
  transition: color 0.15s ease;
}

.nav-link-custom:hover {
  color: var(--color-primary);
}

.nav-link-dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

.chevron-icon {
  transform: rotate(180deg);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 32px;
}

.btn-new-arrivals {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 32px;
  padding: 10px 12px;
  border-radius: 9999px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
}

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  flex-shrink: 0;
  transition: background-color 0.15s ease;
}

.icon-btn:hover {
  background-color: var(--color-light-bg);
}

.badge-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9999px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0 20px;
  border-top: 1px solid var(--color-border);
}

.mobile-nav.is-open {
  display: flex;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
p {
  margin: 0;
}

h6 span {
  font-weight: 500;
}

.techStore-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 12px 24px;
}
.techStore-btnPrimary {
  background: var(--color-white);
  color: var(--color-primary);
}

.techStore-btnOutline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--color-white);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.techStore-btnOutline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.section-64 {
  padding-block: 64px;
}
.section-56 {
  padding-block: 56px;
}
.section-80 {
  padding-block: 80px;
}
.section-40 {
  padding-block: 40px;
}
.section-32 {
  padding-block: 32px;
}

.gap-12 {
  gap: 12px;
}
.gap-32 {
  gap: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.offcanvas-nav {
  border-bottom: 1px solid var(--color-light-bg);
  background: var(--color-white);
}

/* nav a {
  text-decoration: none;
} */
.headerItem {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 400;
  padding: 0 !important;
  line-height: 20px;
}
.headerItem:focus,
.headerItem:hover {
  color: var(--color-primary);
}
.dropdown-item:focus,
.dropdown-item:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.headerNavbar {
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: 2;
  right: 0;
}
.allItemsNotification {
  border-bottom: 1px solid var(--color-border);
  padding: 12px 16px 13px 16px;
}

.New {
  background: rgba(161, 173, 207, 0.5);
}
.logoIcon {
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--color-primary);
}

.logo span {
  color: var(--color-primary);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
  letter-spacing: -0.45px;
}

.newArrivalsBtn {
  display: flex;
  padding: 10px 12px !important;
  justify-content: center;
  align-items: center;
  gap: 4px;
  text-align: center;
}
#dropdownMenuLink span {
  color: var(--color-text);
  line-height: 116.667%; /*  */
}
.qty-btn i {
  font-size: 12px;
  color: var(--color-text);
  cursor: pointer;
}
.error-message {
  color: #dc2626;
}
.qty-btn {
  cursor: pointer;
}
.borderError {
  border: 1px solid #dc2626 !important;
}
.newArrivalsBtn span {
  font-size: 12px;
  font-weight: 600;
  line-height: 166.667%;
}
.btn-wrap {
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 9999px;
}

.icon-wrap {
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  background: rgba(228, 228, 228, 0.8);
}

.headerNavbar .dropdown-menu {
  flex-direction: column;
  padding: 7px 0;
}

.headerNavbar .dropdown-menu.show {
  display: flex;
}

.headerNavbar .dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}

.headerNavbar .dropdown-menu .dropdown-item {
  display: flex;
  padding: 8px 16px;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brandsToggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.brandsToggle.dropdown-toggle::after {
  display: none;
}

.brandsToggle .ddCaret {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
  transform: rotate(180deg);
}

.brandsToggle[aria-expanded="true"] .ddCaret {
  transform: rotate(0deg);
}
.menuBtn {
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.menuBtn:hover,
.menuBtn:focus,
.menuBtn:active {
  border: 0;
  background: transparent;
  box-shadow: none;
  outline: none;
}

.hasBadge {
  position: relative;
}

.headerBadge {
  display: flex;
  width: 18px;
  height: 18px;
  padding: 0 4px;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 10px; /* 100% */
  position: absolute;
  top: -2px;
  right: -2px;
}

#sideMenu .offcanvas-header {
  padding: 20px;
  border-bottom: 1px solidvar(--color-light-bg);
}

#sideMenu .offcanvas-body {
  padding: 16px;
}

.offcanvas-title,
.paymentData span {
  color: var(--color-primary);
}

.sideNewArrivals {
  max-width: 335px;
  margin-bottom: 4px;
}

.sideMenuList {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sideMenuItem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.sideMenuItem:hover {
  background: rgba(17, 26, 80, 0.05);
  color: var(--color-secondary);
}

.sideMenuItem img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sub-item {
  font-size: 12px;
  font-weight: 400;
  line-height: 133.333%;
  color: var(--color-text);
}

.sideMenuSubItem {
  padding-left: 44px;
}

.sideMenuDivider {
  margin: 8px 0;
  border-top: 1px solid var(--color-border);
}

.hero-slide {
  display: flex;
  padding: 177px 0 168px;
  align-items: center;
}

/* keep every hero slide the same height so the swiper height never jumps */
.heroSwiper .swiper-wrapper {
  align-items: stretch;
}
.heroSwiper .swiper-slide {
  height: auto;
}

.backImage {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-content h1 {
  text-align: center;
  font-size: 60px;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: -1.5px;
  color: var(--color-white);
}

.hero-content h3 {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 155.556%; /* */
}

.hero-content {
  display: flex;
  max-width: 672px;
  flex-direction: column;
  margin: 0 auto;
  text-align: center;
  color: var(--color-white);
  gap: 16px;
}

.hero-content h5 {
  font-weight: 300;
}

/* Hero swiper */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  color: var(--color-primary);
  cursor: pointer;
  transition: background 0.15s ease;
}
.hero-arrow:hover {
  background: var(--color-light-bg);
}
.hero-prev {
  left: 24px;
}
.hero-next {
  right: 24px;
}

.heroActions {
  margin-top: 16px;
}

/* New Arrivals banner */
.arrivalsBanner {
  display: flex;
  align-items: center;
  padding: 170px 0 112px;
}

.arrivalsBanner .hero-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 48px; /* 100% */
  letter-spacing: -1.2px;
}

.arrivalsBanner .hero-subtitle {
  font-size: 16px;
  font-weight: 400;
}
.arrivalsPill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
}
.arrivalsBadge {
  align-self: center;
}

.arrivalsTags {
  margin-top: 16px;
}

.dealsBanner {
  padding: 148px 0 90px;
}

.dealsBanner .arrivalsPill {
  margin-bottom: 4px;
}

.dealsBanner .hero-subtitle {
  max-width: 615px;
}

.dealsStats .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--color-light-bg);
}

.deals-products .category-title {
  margin-bottom: 0;
}

.products-section .category-title {
  text-align: start;
}

.products-section .category-title h2 {
  color: var(--color-primary);
}

.products-section .category-title span {
  color: var(--color-text);
}

.features-section {
  background: var(--color-light-bg);
}

.featuresRow {
  --bs-gutter-x: 32px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.feature h6 {
  color: var(--color-primary);
  margin-top: 8px;
}

.featureIcon {
  display: block;
}

/* ---- Featured Products (Swiper) ---- */
.featured-title {
  text-align: center;
  margin-bottom: 24px;
}

.featuredSwiper {
  padding-bottom: 40px;
}

.featuredSwiper .swiper-slide {
  height: auto; /* let slides stretch to equal height */
}

.featuredSwiper .swiper-pagination-bullet-active {
  background: var(--color-secondary);
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%; /* fill the slide so the info area can grow */
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-white);
}

.product-title {
  padding-top: 4px;
}
.product-title h1,
.product-price-large h2 {
  text-align: start;
  color: var(--color-primary);
}
.product-price-large h2 {
  font-weight: 700;
}

.product-price {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 700;
}

.product-cart {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9999px;
  background: var(--color-light-bg);
  cursor: pointer;
}

.featured-section {
  position: relative; /* anchor the arrows to the full-width section (viewport edges) */
}

.featuredCarousel {
  --swiper-navigation-size: 16px;
}

.featuredCarousel .swiper-button-prev,
.featuredCarousel .swiper-button-next {
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  background: var(--color-white);
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1),
    0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.featuredCarousel .swiper-button-prev {
  left: 24px;
}
.featuredCarousel .swiper-button-next {
  right: 24px;
}

.featuredCarousel .swiper-button-prev::after,
.featuredCarousel .swiper-button-next::after {
  content: none !important;
}

/* ---- Shop by Category ---- */
.category-title {
  text-align: center;
  margin-bottom: 32px;
}

.category-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
}

.category-media {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color-light-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.category-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-primary);
}

/* ---- CTA Banner ---- */
.cta-content {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  color: var(--color-white);
}

.cta-text p {
  font-weight: 300;
}

.cta-content .btn {
  margin-top: 16px;
}

/* ---- Newsletter ---- */
.newsletter {
  background: #1b2457;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--color-white);
}

.newsletter-content h6 {
  color: var(--color-light-text);
}

.newsletter-title {
  color: var(--color-white);
}

.newsletter-text {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-light-text);
}

.newsletter-form {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.newsletter-input {
  display: flex;
  padding: 13px 17px;
  align-items: center;
  min-width: 340px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid var(--color-text);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: 14px;
  line-height: 20px;
  outline: none;
}

.newsletter-input::placeholder {
  color: var(--color-light-text);
}

.newsletter-input:focus {
  border-color: rgba(255, 255, 255, 0.45);
}

/* ============================================
   MAIN / LOGIN CARD
   ============================================ */
.login-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 106px 0 48px;
}

.login-card {
  margin: 27px auto;
  padding: 33px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background-color: var(--color-white);
}

.login-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 32px;
}

.avatar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background-color: var(--color-light-bg);
  margin-bottom: 16px;
}

h4 {
  margin: 0;
  color: var(--color-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 155.556%;
}
p {
  font-size: 16px;
  font-style: normal;
  margin: 0;
  font-weight: 700;
  line-height: 150%;
}
span {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  line-height: 142.857%;
}

h6,
a,
#dropdownMenuLink span,
.notiffactionFilter {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 133.333%;
  margin: 0;
}
.gap-12 {
  gap: 12px;
}
a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
}
.filterData,
.account-menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-x: scroll;
}
.filterDropDown .dropdown-toggle {
  padding: 9px 13px;
  display: flex;
  min-width: 143px;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  background: var(--color-light-bg);
}
.filterDropDown .dropdown-toggle::after {
  content: unset;
}

.login-subtitle span,
.paymentData h6 {
  color: var(--color-text);
  text-align: center;
}

/* Form */
.login-form {
  display: flex;
  flex-direction: column;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.login-form .form-field:has(.btn-sign-in) {
  margin-bottom: 0;
}
.signup-link {
  font-size: 14px;
}

.bs-gutter-x-16 {
  --bs-gutter-x: 16px;
}
.bs-gutter-x-20 {
  --bs-gutter-x: 20px;
}
.bs-gutter-x-48 {
  --bs-gutter-x: 48px;
}
.bs-gutter-x-56 {
  --bs-gutter-x: 56px;
}
.bs-gutter-x-64 {
  --bs-gutter-x: 64px;
}
.bs-gutter-x-12 {
  --bs-gutter-x: 12px;
}
.rowGap12 {
  row-gap: 12px;
}
.form-label-custom {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.form-label-row .form-label-custom {
  margin-bottom: 0;
}

.forgot-link {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--color-light-text);
  transition: color 0.15s ease;
}

.forgot-link:hover {
  color: var(--color-primary);
}

.form-input-custom {
  width: 100%;
  height: 42px;
  padding: 11px 13px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background-color: var(--color-input-bg);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-primary);
  outline: none;
  transition: border-color 0.15s ease;
}

.form-input-custom::placeholder {
  color: var(--color-light-text);
  font-weight: 500;
}

.form-input-custom:focus {
  border-color: var(--color-secondary);
}

.btn-sign-in {
  width: 100%;
  height: 40px;
  padding: 10px 0;
  border-radius: 9999px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  transition: background-color 0.15s ease;
}

.btn-sign-in:hover {
  background-color: var(--color-secondary);
}

/* Footer of login card */
.login-footer {
  margin-top: 24px;
  text-align: center;

  padding-top: 21px;
  border-top: 1px solid var(--color-border);
}

.login-footer span {
  color: var(--color-text);
}

.signup-link {
  font-weight: 500;
  color: var(--color-primary);
}

.signup-link:hover {
  color: var(--color-secondary);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: var(--color-primary);
  /* width: 100%; */
  padding: 56px 0;
}

.footer-top {
  margin-bottom: 40px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  margin-bottom: 12px;
}

.footer-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: var(--color-white);
  flex-shrink: 0;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.45px;
  color: var(--color-white);
  white-space: nowrap;
}

.footer-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
  color: var(--color-light-text);
  max-width: 320px;
  margin: 0;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--color-white);
  margin: 0 0 12px 0;
}

.footer-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link-list li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-light-text);
  transition: color 0.15s ease;
}

.footer-link-list li a:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--color-light-text);
  margin: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.08);
  transition: background-color 0.15s ease;
}
.social-icon i {
  color: #fff;
}
.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.18);
}

.mobile-offcanvas-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(17, 26, 80, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1040;
}

.mobile-offcanvas-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 384px;
  max-width: 90vw;
  background-color: var(--color-white);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-offcanvas.is-open {
  transform: translateX(0);
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 73px;
  padding: 20px 20px 21px 20px;
  border-bottom: 1px solidvar(--color-light-bg);
  flex-shrink: 0;
}

.offcanvas-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--color-primary);
}

.offcanvas-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  transition: background-color 0.15s ease;
}

.offcanvas-close:hover {
  background-color: var(--color-light-bg);
}

.offcanvas-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
}

.offcanvas-pill-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 32px;
  padding: 10px 12px;
  border-radius: 9999px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: background-color 0.15s ease;
}

.offcanvas-pill-btn:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.offcanvas-link {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 40px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: background-color 0.15s ease;
}

.offcanvas-link:hover {
  background-color: var(--color-light-bg);
  color: var(--color-primary);
}

.offcanvas-link svg {
  flex-shrink: 0;
}

.offcanvas-sublink {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 10px 12px 10px 44px;
  border-radius: 8px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 400;
  transition: background-color 0.15s ease;
}

.offcanvas-sublink:hover {
  background-color: var(--color-light-bg);
  color: var(--color-primary);
}

.offcanvas-divider {
  border-top: 1px solid var(--color-border);
  margin: 8px 0;
}

.offcanvas-signout {
  cursor: pointer;
}

.filterItem {
  padding: 8px 16px;
  border-radius: 9999px;
  background: var(--color-light-bg);
  color: var(--color-text);
  text-transform: capitalize;
}
.filterItem.active,
.filterItem:hover,
.notiffactionFilter.active {
  background: var(--color-primary);
  color: var(--color-white);
}
.filterImage svg path {
  fill: var(--color-primary);
}
.notiffactionFilter.active .filterImage svg path {
  fill: #fff;
}
.notiffactionFilter span {
  color: var(--E-commerce-Grey, #cdcdcd);
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /*  */
}
.sectionPadding {
  padding: 56px 0;
}
.filterItem:hover {
  opacity: 0.7;
}
.filterSection {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}
.rowGap {
  row-gap: 24px;
}
.rowGap-20 {
  row-gap: 20px;
}
.rowGap-64 {
  row-gap: 64px;
}

.rowGap-32 {
  row-gap: 32px;
}
.rowGap-16 {
  row-gap: 16px;
}
.product-name {
  height: 35px;
}
.product-name span {
  color: var(--color-primary);
  overflow: hidden;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-height: 137.5%;
  -webkit-box-orient: vertical;
}
.product-card-image {
  position: relative;
  width: 100%;
  height: 292px;
  background-color: var(--color-light-bg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}
.product-tag h6,
.product-category-label h6 {
  font-weight: 500;
  color: var(--color-text);
}
.StockData h6 {
  color: #25984d;
  font-weight: 500;
}
.stock-dot {
  border-radius: 9999px;
  background: #25984d;
  display: flex;
  width: 6px;
  height: 6px;
  align-items: flex-start;
}

.pagination-controls {
  margin-top: 48px;
}

.results-text {
  padding-top: 16px;
}

.results-text span {
  font-size: 12px;
  line-height: 16px; /* 133.333% */
}

.results-text span,
.productsNumber h6 {
  color: var(--color-light-text);
}

.page-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  background: none;
  border: none;
  transition: background-color 0.15s ease;
}
.product-card-body {
  padding: 16px;
}

.product-description span {
  color: var(--color-text);
}
.product-cart-btn {
  border-radius: 9999px;
  display: flex;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background: var(--color-light-bg);
}
.page-number.active {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.product-gallery-main {
  height: 596px;
  width: 100%;
  /* aspect-ratio: 1; */
  background-color: var(--color-light-bg);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 16px;
}
.key-label h6 {
  color: var(--color-text);
}

.specs-row {
  padding: 12px 20px 13px 20px;
  border-bottom: 1px solid var(--color-border);
}
.rowGap8 {
  row-gap: 8px;
}
.specs-table {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.key-value h6 {
  font-weight: 500;

  color: var(--color-primary);
}
.product-features {
  padding: 80px 0;
}

.product-features span {
  color: var(--color-text);
}

.specs-label {
  color: var(--color-text);
}
.cta-title h1 {
  color: var(--color-white);
  font-weight: 300;
}
.specs-value {
  font-weight: 500;
  color: var(--color-primary);
}
.product-key-specs {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}
.specs-row:nth-child(odd) {
  border-right: 1px solid var(--color-border);
}
.product-full-specs {
  padding-bottom: 80px;
}

.product-gallery-thumbs {
  display: flex;
  gap: 16px;
}
.gallery-thumb {
  width: 60px;
  aspect-ratio: 1;
  border-radius: 6px;
  border: 2px solid var(--color-white);
  background-size: cover;
  background-position: center;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.15s;
}
.breadcrumb-nav {
  padding: 98px 0 24px;
}

.breadcrumb-link {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-light-text);
  transition: color 0.15s ease;
}

.breadcrumb-current {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-primary);
}

.quantity-selector {
  display: flex;
  align-items: center;
  height: 38px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
}

.product-purchase {
  padding-top: 21px;
  border-top: 1px solid var(--color-border);
}

/* ============================================
   CART
   ============================================ */
.cart-head {
  padding-bottom: 13px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.cart-head > div {
  text-align: center;
  color: var(--color-secondary);
  font-size: 12px;
  font-weight: 600;
}

.cart-head > div:first-child {
  text-align: start;
}

.cart-head > div:last-child {
  text-align: end;
}
.cart-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-items > .cart-item:has(+ .cart-footer) {
  padding-bottom: 40px; /* 16 + 24*/
}

.cart-item .cart-col-price,
.cart-item .cart-col-qty,
.cart-item .cart-col-total,
.cart-item .cart-col-remove {
  text-align: center;
}

.cart-product-image img {
  height: 80px;
  flex-shrink: 0;
  border-radius: 6px;
  background-color: var(--color-border);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.cart-product-name {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
}

.cart-product-category {
  color: var(--color-text);
  font-size: 12px;
  font-weight: 400;
}

.cart-total {
  font-weight: 600;
}

.cart-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.cart-section .quantity-selector {
  justify-content: space-between;
}

.qty-btn {
  padding-inline: 11px;
}
.cart-footer {
  padding-top: 17px;
}

.cart-continue,
.cart-clear {
  color: var(--color-light-text);
  cursor: pointer;
}

.cart-continue:hover,
.cart-clear:hover {
  color: var(--color-secondary);
}

/* Order summary */
.order-summary {
  background: var(--color-light-bg);
  border-radius: 8px;
  padding: 24px;
}

.order-summary-title p {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 20px;
}
.order-summaryTextName h6 {
  font-weight: 500;
  color: var(--color-primary);
}

.order-summary-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 16px;
}
.qty h6 {
  color: var(--color-text);
}
.orderSummeryData {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.orderSummeryData h6 {
  font-weight: 600;
}

.checkOut-section .order-summary-title p {
  margin-bottom: 16px;
}

.checkOut-section .order-summary-list {
  padding-top: 17px;
  gap: 8px;
}
.orderImage {
  width: 48px;
  border-radius: 6px;
  background: var(--E-commerce-Light-Grey-Bg, #f2f2f2);
}
.orderImage img {
  width: 100%;
}
.summary-row span {
  color: var(--color-light-text);
}

.summary-value span {
  color: var(--color-primary) !important;
  font-weight: 500;
}
.checkOut-section .summary-value span {
  font-weight: 400;
}
.checkOut-section .summary-row span {
  color: var(--color-text);
}
.summary-total {
  border-top: 1px solid var(--E-commerce-Grey, #cdcdcd);
  padding-top: 13px;
  color: var(--color-primary);
}

.summary-total p {
  font-size: 14px;
  font-weight: 600;
}

.summary-total .summary-total-value {
  font-weight: 700;
}

.btn-checkout {
  width: 100%;
  margin-top: 24px;
  padding: 14px 24px;
  border: 0;
  display: flex;
  justify-content: center;
  border-radius: 9999px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.btn-checkout:hover {
  opacity: 0.95;
}

/* Empty cart (toggled with JS) */

.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 80px 0;
}

.empty-cart-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 8px;
  border-radius: 9999px;
  background: var(--color-light-bg);
  margin-bottom: 8px;
}

.empty-cart-title {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 600;
}

.empty-cart-text {
  color: var(--color-text);
  margin-bottom: 16px;
}

.empty-cart-btn {
  padding: 12px 24px;
  border-radius: 9999px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
}

.qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: background-color 0.15s ease;
}
.qty-value {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
}
.gap-6 {
  gap: 6px;
}
.product-sku {
  padding-top: 17px;
  border-top: 1px solid var(--color-light-bg);
}

.product-sku h6 {
  color: var(--color-light-text);
}
.disapeled {
  opacity: 0.5;
  pointer-events: none;
}
.blueBtn {
  padding: 10px 32px;
  border-radius: 9999px;
  background: var(--color-primary);
  color: #fff;
}
.checkOut-section .blueBtn {
  padding: 10px 32px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.blueBtn:hover {
  /* opacity: 0.6; */
  background-color: var(--color-secondary);
  color: #fff;
}

.productStauts {
  border-radius: 9999px;
  background: var(--color-light-bg);
  display: flex;
  min-width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
}

.notifiactiobMenu .dropdown-menu {
  min-width: 382px;
  left: unset;
  right: 0;
}

.allNOti {
  padding: 12px 16px;
}

.allNOti span {
  color: var(--color-primary);
  font-weight: 600;
}

.orderStatusName span,
.noficationLink a,
.allNOti a {
  color: var(--color-primary);
  font-weight: 500;
}
.allItemsNotification h6 {
  color: var(--color-text);
}
.noficationLink {
  padding: 11px 16px 10px;
  text-align: center;
}

.time h6 {
  color: var(--color-light-text);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.notifactionNum {
  border-radius: 9999px;
  background: var(--color-primary);
  display: flex;
  width: 20px;
  height: 20px;
  padding: 0 6px;

  justify-content: center;
  align-items: center;
}
.newCircle {
  display: flex;
  width: 8px;
  height: 8px;
  align-items: flex-start;
  flex-shrink: 0;
  border-radius: 9999px;
  background: var(--color-secondary);
}
.notifactionNum span {
  font-size: 11px;
  color: #fff !important;
  font-weight: 700;
  list-style: 181%;
}

.banner {
  padding: 114px 0 56px;
  display: flex;
  align-items: center;
  min-height: 140px;
  background: var(--color-light-bg);
}
.banner span {
  color: var(--color-text);
  display: block;
  margin-top: 8px;
}

/* Privacy Policy banner */
.banner.privacyBanner {
  display: block;
  min-height: unset;
  padding: 106px 0 48px;
}

.privacyBanner h1 {
  font-size: 36px;
  line-height: 40px; /* 111.111% */
}
.privacyBanner .privacyBadge {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 9999px;
  color: var(--color-secondary);
}
.privacyBanner .privacyBadge h6 {
  color: var(--color-secondary);
  font-weight: 500;
}

.privacyBanner-content {
  margin-block: 17px;
}

.privacyBanner .privacyDate {
  margin: 0;
  color: var(--color-secondary);
}
.privacyBanner .privacyIntro {
  font-weight: 400;
  color: var(--color-text);
  max-width: 690px;
}

/* Privacy Policy content cards */
.privacyCards {
  margin-inline: 14%;
}
.privacyCard {
  padding: 33px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-white);
}
.privacyCard-title {
  color: var(--color-primary);
}

.privacyCard-title h3 {
  font-size: 18px;
}
.privacyCard p {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 22.75px; /* 162.5% */
}

.privacyCard .icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
/* Privacy Policy contact card */
.privacyContact {
  padding: 32px;
  border-radius: 12px;
  background: var(--color-primary);
}
.privacyContact-title {
  color: var(--color-white);
  text-align: start;
  font-size: 18px;
}
.privacyContact-text {
  margin: 8px 0 20px;
  display: block;
  color: var(--color-light-text);
}

.privacyContact-btn {
  padding: 10px 20px;
}

.notiffactionFilter {
  padding: 7px 13px;
  border-radius: 9999px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-weight: 500;
}

.unRead {
  border-radius: 9999px;
  border: 1px solid var(--color-light-text);
  background: rgba(161, 173, 207, 0.5);
  color: var(--color-secondary);
}

.notificationFilter {
  padding: 40px 0 24px;
}

.NoTfread {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.gap-20 {
  gap: 20px;
}
.notifiationData {
  padding-bottom: 50px;
}
.cart-section,
.checkOut-section,
.login-main,
.notifiationData,
.stautesSection,
.account-section {
  min-height: 100vh;
}

.stautesSection {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 218px 0 160px;
}

.stautesSection h6 {
  margin-top: 5px;
}

.status-actions {
  margin: 8px 0 24px;
}

.status-help {
  min-width: 450px;
  border-top: 1px solid var(--color-border);
  padding-top: 33px;
  text-align: center;
}

.status-help p {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-light-text);
  margin-bottom: 12px;
}

.status-help-link span {
  color: var(--color-text);
}
.pageNotif {
  padding: 2px 8px;
  border-radius: 9999px;
  background: var(--color-light-bg);
}
.pageNotif h6 {
  color: var(--color-secondary);
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.noficationTextData {
  border-radius: 8px;
  border: 1px solid var(--color-border);
}
.productStauts svg path {
  fill: var(--color-secondary);
}
.noficationTextData .allItemsNotification:last-child {
  border-bottom: unset;
}

.addressData {
  padding: 17px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
}

.default {
  padding: 2px 8px;
  border-radius: 9999px;
  background: #dafce0;
}
.addressLocation h6 {
  color: var(--color-text);
}
.addressLocation span {
  font-weight: 600;

  color: var(--color-primary);
}
.default h6 {
  color: #25984d;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.paymentData {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
}

.paymentImage {
  border-radius: 9999px;
  background: var(--color-light-bg);
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}

.CheckOutText p {
  color: var(--color-primary);
  font-weight: 600;
}
.CheckOutText label {
  color: var(--color-text);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 133.333%;
}
.CheckOutText input {
  padding: 11px 17px;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
}
.CheckOutText input::placeholder,
.formSearch input::placeholder,
.CheckOutText input,
.formSearch input {
  color: var(--color-light-text);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 142.857%; /*  */
}

.statusText {
  max-width: 415px;
}
.statusText span,
.statusText h6 {
  color: var(--color-text);
}
.statusText h6 span {
  font-weight: 500;
  color: var(--color-primary);
}
.btnFixed {
  border-radius: 9999px;
  padding: 12px 24px;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 142.857%; /* */
}

.lightBtn {
  border-radius: 9999px;
  padding: 12px 24px;
  color: var(--color-primary);
  background: var(--color-light-bg);
}

.lightBtn:hover {
  color: var(--color-primary);
  opacity: 0.8;
  /* background-color: #a1adcf; */
  /* background-color: var(--color-primary); */
}

/* formSearch */
.searchImg {
  position: absolute;
  left: 20px;
  top: 25px;
  transform: translateY(-50%);
}
.formSearch {
  padding: 0 20px;
  border-bottom: 1px solid var(--color-border);
}
.formSearch input {
  padding: 17px 0;
  padding-left: 30px;
  border: unset !important;
}
.formSearch input:focus {
  box-shadow: unset;
}
.categoryData {
  padding-top: 24px;
  flex-wrap: wrap;
}

.categoryItem {
  padding: 6px 12px;
  border-radius: 9999px;
  background: var(--color-border);
}

.modal-body {
  padding: 0;
}
.searchImageData {
  border-radius: 9999px;
  background: var(--color-light-bg);
  padding: 14px;
  margin-bottom: 8px;
}

.noDataSearch {
  padding: 40px 20px;
}
.noDataSearch span,
.numberOfData h6 {
  color: var(--color-light-text);
}

.noDataSearch h6 {
  color: var(--color-secondary);
}

.searchData {
  padding: 12px 20px;
}

.numberOfData {
  padding: 8px 20px;
}

.allProducts {
  padding: 13px 20px 12px 20px;
  border-top: 1px solid var(--color-border);
}

.allProductsBtn {
  padding: 10px 0;
  border-radius: 8px;
  background: var(--color-light-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
}
.allProductsBtn:hover {
  background-color: var(--color-secondary);
  color: #fff;
}
.typeSearch h6 {
  color: var(--color-text);
}
.searchPrice span {
  color: var(--color-primary);
  font-weight: 600;
}

/* ============================================
   ACCOUNT / PROFILE
   ============================================ */
.banner.profile-banner {
  padding: 98px 0 40px;
}

.account-sidebar {
  padding: 21px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  border-radius: 8px;
}

.account-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.account-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-light-bg);
}

.account-user-info {
  min-width: 0; /* allow the long email to wrap instead of overflowing */
}

.account-user-name {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
}

.account-user-email {
  color: var(--color-text);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.account-divider {
  margin: 21px 0 12px;
  border: 0;
  border-top: 1px solid var(--color-border);
}

.account-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.account-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
}
.account-menu-item:hover {
  background: var(--color-light-bg);
  color: var(--color-secondary);
}

.account-menu-item.active {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Panel */
.account-panel {
  padding: 33px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
}

.account-panel-head {
  margin-bottom: 24px;
}

.account-panel-title {
  color: var(--color-primary);
}

.edit-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 9999px;
  background: var(--color-border);
}

.edit-profile-btn h6,
.categoryName span {
  color: var(--color-primary);
  font-weight: 500;
}

.profile-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profile-field {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.profile-field-row {
  --bs-gutter-x: 16px; /* horizontal gap between First/Last columns */
  row-gap: 16px;
}

.field-label {
  color: var(--color-light-text);
  font-size: 12px;
  line-height: 133.333%;
  font-weight: 500;
}
.techStore-btn:hover {
  color: var(--color-primary);
  opacity: 0.7;
}
.featureTitle span {
  color: var(--color-primary);
  margin-top: 8px;
}
.field-value {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 400;
  /* margin-bottom: 4px; */
}

/* Profile edit form — view <-> edit toggle (CSS only) */
.edit-profile-btn {
  cursor: pointer; /* it's a <label> now */
}

.edit-toggle {
  display: none;
}

.profile-form {
  display: none; /* shown when the edit toggle is checked */
  flex-direction: column;
  gap: 16px;
}

.edit-toggle:checked ~ .profile-form {
  display: flex;
}
.edit-toggle:checked ~ .profile-fields {
  display: none;
}
.edit-toggle:checked ~ .account-panel-head .edit-profile-btn {
  display: none;
}

.profile-input {
  width: 100%;
  padding: 9px 13px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-input-bg);
  color: var(--color-primary);
  font-size: 14px;
}
.profile-input:focus {
  outline: none;
  border-color: var(--color-secondary);
}

.profile-form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.profile-save-btn {
  padding: 8px 24px;
  border-radius: 9999px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.profile-cancel-btn {
  padding: 8px 24px;
  border-radius: 9999px;
  background: var(--E-commerce-Light-Grey-Bg, #f2f2f2);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

/* Settings */
.settings-content {
  display: flex;
  flex-direction: column;
}

.settings-block {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}
.settings-block:first-child {
  padding-bottom: 32px;
}
.settings-block-title {
  margin-bottom: 16px;
  color: var(--color-primary);
}

.settings-block-title span {
  color: var(--color-primary);

  font-weight: 600;
}
.settings-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.settings-field:not(:first-child) {
  margin-top: 12px;
}

.settings-field span {
  color: var(--color-text);
  font-size: 12px;
  line-height: 133.333%;
  font-weight: 500;
}

.settings-field input {
  max-width: 385px;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-input-bg);
  color: var(--color-light-text);
  font-size: 12px;
  outline: 0;
}

.settings-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 9999px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
  margin: 12px 0 8px;
}

.settings-toggle-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.settings-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.settings-toggle-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.settings-toggle-copy h6 {
  color: var(--color-light-text);
}

.settings-toggle-copy span {
  color: var(--color-primary);
}
.settings-switch {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  width: 40px;
  height: 24px;
  margin: 0;
  border-radius: 9999px;
  flex-shrink: 0;
  background: #cdcdcd;
  cursor: pointer;
  transition: background 0.15s ease;
}

.settings-switch::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-white);
  transition: left 0.15s ease;
}

/* checked = on: navy track + knob slides right */
.settings-switch:checked {
  background: var(--color-primary);
}
.settings-switch:checked::before {
  left: 18px;
}
.settings-block.settings-session {
  border: none;
  margin-bottom: 0;
}

.settings-signout-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 20px;
  border-radius: 9999px;
  background: var(--color-light-bg);
}
.settings-signout-btn h6 {
  color: var(--color-primary);

  font-weight: 500;
}

.settings-danger {
  padding-bottom: 0;
}

.danger-card {
  padding: 17px;
  border: 1px solid var(--color-cancelled-text);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.danger-card .danger-text {
  margin-bottom: 16px;
  color: var(--color-light-text);
}
.danger-card span {
  color: var(--color-primary);
}
.danger-btn {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  justify-content: center;
  padding: 9px 21px;
  border: 1px solid var(--color-cancelled-text);
  border-radius: 9999px;
  color: var(--color-cancelled-text);
  font-size: 12px;
  font-weight: 500;
  max-width: 125px;
}

/* Addresses */
.address-list {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}

.address-card {
  padding: 17px;
  display: flex;
  gap: 4px;
  flex-direction: column;
  align-items: start;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  flex: 0 0 calc(50% - 9px);
}
/* 
.address-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  margin-bottom: 8px;
  border-radius: 9999px;
  background: var(--color-delivered-bg);
  color: var(--color-delivered-text);
  font-size: 12px;
  font-weight: 500;
} */

.address-name span {
  margin-bottom: 4px;
  color: var(--color-primary);
  font-weight: 600;
}

.address-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.address-lines span {
  color: var(--color-text);
  font-size: 12px;
  font-weight: 400;
}

.address-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.checkOut-section .address-actions {
  margin-top: 4pxs;
}

.address-actions a {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* Order History */
.order-head {
  display: flex;
  align-items: center;
  padding: 16px 8px;
  gap: 16px;
}

.order-head .order-col {
  color: var(--color-secondary);
  font-size: 12px;
  line-height: 133.333%;
  font-weight: 600;
}

.order-list {
  display: flex;
  flex-direction: column;
}

.order-card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-white);
  margin-top: 12px;
}

.order-row {
  display: flex;
  align-items: center;
  padding: 17px;
}

/* shared columns (header + rows use the same widths so they align) */
.order-col {
  flex: 2;
}
.order-col--id span,
.order-col--total span {
  color: var(--color-primary);
}
.order-col--id {
  flex: 3;
}
.order-col--date {
  flex: 3;
}
.order-col--action {
  flex: 2;
  text-align: right;
}

.order-date span {
  color: var(--color-text);
}
.order-toggle {
  color: var(--color-light-text);
  font-size: 14px;
  text-decoration: none;
}

.order-toggle:hover {
  color: var(--color-secondary);
}

.order-toggle-text {
  font-size: 12px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 500;
  line-height: 150%; /*  */
}

.status-delivered {
  background: var(--color-delivered-bg);
  color: var(--color-delivered-text);
}

.status-shipped {
  background: var(--color-shipped-bg);
  color: var(--color-shipped-text);
}

.status-cancelled {
  background: var(--color-cancelled-bg);
  color: var(--color-cancelled-text);
}

/* expanded order details */
.order-details {
  padding: 17px;
  border-top: 1px solid var(--color-border);
}

.order-details.show {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-details-title {
  color: var(--color-light-text);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 6px;
}

.order-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-line span:first-child {
  color: var(--color-text);
}
.order-line:last-child {
  margin-top: 4px;
}

.order-line span:last-child {
  color: var(--color-primary);
  font-weight: 500;
}

.order-line--total {
  padding-top: 13px;
  border-top: 1px solid var(--color-border);
}

.order-line--total span {
  color: var(--color-primary) !important;
  font-weight: 600 !important;
}

.order-toggle-text--hide {
  display: inline;
}

.order-toggle-text--show {
  display: none;
}

.order-toggle.collapsed .order-toggle-text--show {
  display: inline;
}

.order-toggle.collapsed .order-toggle-text--hide {
  display: none;
}

.contactBanner {
  background: var(--E-commerce-Light-Grey-Bg, #f2f2f2);
  padding: 142px 0 84px;
}
.contactBanner h6 {
  font-weight: 500;
  color: var(--color-secondary);
}
.contactBanner h1 {
  font-size: 36px;
  line-height: 111.111%;
}
.contactBannerText {
  max-width: 580px;
}

.contactBannerText p {
  color: var(--color-text);
  font-weight: 400;
  text-align: center;
}

.contactBox {
  border-radius: 12px;
  border: 1px solid rgba(228, 228, 228, 0.7);
  background: #fcfcfc;
  padding: 25px;
  height: 100%;
}
.contactBox h6 {
  color: #818eb5;
}

.contactLink {
  margin-block: 4px;
}

.contactLink a,
.contactLink span {
  color: #445282;
}
.contactBoxImage {
  border-radius: 8px;
  background: var(--E-commerce-Light-Grey-Bg, #f2f2f2);
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.contactTitle span {
  font-size: 16px;
  font-weight: 600;
  color: #111a50;
}

.contactBox > span {
  color: var(--color-text);
}

.getInTouchBox {
  background-color: var(--color-primary);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
}

.contactSectionData {
  padding-bottom: 80px;
}

.getInTouchText span,
.contactDetilData h6,
.followUs h6 {
  color: var(--E-commerce-Light-Text, #a1adcf);
}
.followUs {
  padding-top: 25px;
  border-top: 1px solid #293669;
}

.getInTouchText h4,
.contactLinkW a,
.contactLinkW span {
  color: #fff;
}

.contactDeatil {
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.contactForm input,
.contactForm textarea,
.contactForm select {
  padding: 11px 13px;
  border-radius: 6px;
  color: var(--E-commerce-Light-Text, #a1adcf);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 142.857%;
  border: 1px solid var(--E-commerce-Borders, #e8e8e8);
  background-color: #fcfcfc;
}
.contactForm select option {
  color: var(--E-commerce-Light-Text, #a1adcf);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 142.857%;
}
.contactForm .blueBtn {
  width: 100%;
}
.contactForm input:focus,
.contactForm textarea:focus,
.contactForm select:focus {
  box-shadow: unset;
  border-color: var(--color-primary);
}
.contactForm {
  padding: 32px 33px;
  height: 100%;
  border-radius: 12px;
  border: 1px solid rgba(228, 228, 228, 0.7);
  background: #fff;
}

.contactForm label {
  color: var(--E-commerce-Text, #445282);
  font-weight: 500;
}

.contactForm label span {
  color: var(--E-commerce-Light-Text, #a1adcf);
}

.contactForm textarea {
  min-height: 149px;
}

.contactBtn {
  width: 100%;
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.helpTitle {
  padding-bottom: 40px;
}
.helpTitle1 {
  padding-bottom: 12px;
}
.helpTitle h2,
.helpTitle1 h2 {
  color: var(--color-primary);
  text-align: center;
}

.faqSection {
  background: #fcfcfc;
}

.faqAccordionItem {
  border: unset !important;
  padding: 21px 0 20px 0;
  background-color: unset !important;
}
.faqAccordionItem:not(:last-child) {
  border-bottom: 1px solid var(--E-commerce-Borders, #e8e8e8) !important;
}

.faqAccordionItem .accordion-button,
.faqAccordionItem .accordion-body {
  background-color: unset !important;
  border: unset !important;

  padding: 0;
}
.faqAccordionItem .accordion-button {
  color: var(--color-primary);
  font-weight: 500;
  border-bottom: unset !important;
  box-shadow: unset;
}

.accordion-button:focus {
  box-shadow: unset;
}
.faqAccordionItem .accordion-body {
  padding-top: 12px;
}
.accordion-button::after {
  background-image: url(../plus1.svg);
  background-size: 9.328px;
  width: 9.328px;
  height: 9.328px;
}
.faqAccordionItem .accordion-button:not(.collapsed)::after {
  background-image: url(../minus1.svg);
}
.faqAccordionItem .accordion-body span {
  color: var(--color-text);
  line-height: 162.5%;
}
.needHelp {
  max-width: 448px;
}

.needHelp span {
  color: var(--color-text);
}

.beigeBtn {
  border-radius: 9999px;
  color: var(--color-text);
  background: var(--E-commerce-Light-Grey-Bg, #f2f2f2);
}
.beigeBtn:hover {
  opacity: 0.6;
}
.fixedBtn1 {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
}
.dealsTitle h4 {
  color: var(--color-primary);
}
.dealsStats {
  border-bottom: 1px solid var(--E-commerce-Borders, #e8e8e8);
  background: var(--White, #fff);
}
.shop-btn {
  padding: 10px 20px;
  font-size: 14px;
}

.fixedBlueBtn {
  padding: 10px 10px 10px 20px;
}
.privacyContent {
  padding-bottom: 80px;
}
