:root {
  --blue: #1a5dc8;
  --blue-dark: #1045a0;
  --orange: #f97316;
  --red: #e53e3e;
  --border: #e5e7eb;
  --text: #1a202c;
  --muted: #6b7280;
  --section-bg: #f0f4fb;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--text);
  background: #fff;
  padding-bottom: 65px;
}
/* HEADER */
.header-view {
  display: contents;
}
.top-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1060;
  padding: 4px 0; /* Adjusted padding to accommodate a larger logo without expanding the header height */
  height: 69px;
}
.header-inner {
  /* Fluid Header */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
  gap: 16px;
}
.header-logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  /* stays in left grid column */
}
.header-logo {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}
.search-wrap {
  /* Centre column — naturally centred */
  display: flex;
  width: clamp(260px, 40vw, 560px);
  margin: 0 auto;
  position: relative;
  flex-wrap: wrap;
}
/* Icons group — snapped to far right of right grid column */
.header-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: end; /* right-align within the 1fr column */
  flex-shrink: 0;
}
/* Mobile: collapse to flex so icons row still works correctly */
@media (max-width: 767px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    gap: 8px;
  }
  .search-wrap {
    display: none; /* mobile overlay handles search */
  }
  .header-icons {
    margin-left: auto;
    justify-self: unset;
  }
}
.search-wrap input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: 50px 0 0 50px;
  padding: 9px 20px;
  font-size: 12.5px;
  font-family: inherit;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.search-wrap input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 93, 200, 0.1);
}
.search-btn {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 0 50px 50px 0;
  padding: 9px 20px;
  cursor: pointer;
  font-size: 17px;
  transition: background 0.2s;
}
.search-btn:hover {
  background: var(--blue-dark);
}
/* MOBILE SEARCH OVERLAY */
.mob-search-overlay {
  display: none;
  position: fixed;
  top: 69px;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.2s ease;
  flex-direction: column;
}
.mob-search-overlay.open {
  display: flex;
}
.mob-search-input-wrap {
  display: flex;
  width: 100%;
}
.mob-search-overlay input {
  flex: 1;
  border: 1.5px solid var(--blue);
  border-right: none;
  border-radius: 50px 0 0 50px;
  padding: 10px 20px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
}
.mob-search-overlay .mob-search-submit {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 0 50px 50px 0;
  padding: 10px 18px;
  font-size: 17px;
  cursor: pointer;
}
/* Override absolute positioning for suggestions inside mobile overlay */
.mob-search-overlay .search-suggestions {
  position: relative;
  top: auto;
  border: none;
  border-top: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  max-height: 60vh;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #374151;
  font-size: 22px;
  padding: 5px 7px;
  position: relative;
  transition: color 0.2s;
  border-radius: 6px;
}
.icon-btn:hover {
  color: var(--blue);
}
.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--red);
  color: #fff;
  font-size: 8px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
.cart-badge--wide {
  width: auto;
  min-width: 15px;
  height: 15px;
  padding: 0 4px;
  border-radius: 8px;
  font-size: 7px;
}
.mob-nav-item-cart {
  position: relative;
}
.mob-nav-icon-wrap {
  position: relative;
  display: inline-flex;
  line-height: 1;
}
.mob-cart-badge {
  top: -6px;
  right: -10px;
}
.my-acc-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #374151;
  font-size: 12px;
  font-weight: 500;
  font-family: inherit;
  transition: color 0.2s;
}
.my-acc-btn:hover {
  color: var(--blue);
}
.my-acc-wrap {
  position: relative;
  display: inline-block;
}
.my-acc-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  min-width: 180px;
  display: none;
  z-index: 2200;
}
.my-acc-wrap:hover .my-acc-dropdown,
.my-acc-wrap:focus-within .my-acc-dropdown {
  display: block;
}
.my-acc-dropdown ul {
  list-style: none;
}
.my-acc-dropdown li a {
  display: block;
  padding: 10px 14px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
}
.my-acc-dropdown li a:hover {
  background: #f8fafc;
  color: var(--text);
}

/* Mega menu for nav items */
.nav-links .nav-item {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}
.nav-links .nav-item > a {
  padding: 11px 12px;
  display: flex;
  align-items: center;
  height: 100%;
}
.mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 8px);
  width: max(900px, 90vw);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  padding: 24px;
  border-radius: 8px;
  z-index: 2100;
  display: none;
  flex-direction: row;
  gap: 28px;
  align-items: flex-start;
}
.nav-links .nav-item:hover .mega-menu,
.nav-links .nav-item:focus-within .mega-menu {
  display: flex !important;
}
.nav-links .nav-item:hover .mega-drop,
.nav-links .nav-item:focus-within .mega-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* Position mega-drop below the full sticky header (top-header ~69px + sec-nav ~48px) */
.nav-links .nav-item .mega-drop {
  top: calc(69px + 48px);
}
.mega-col {
  width: 25%;
}
.mega-col h5 {
  font-size: 16px;
  margin: 0 0 10px 0;
  color: var(--text);
  font-weight: 700;
}
.mega-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 0;
  font-size: 13px;
}
.mega-col a:hover {
  color: var(--blue);
}
.mega-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* ensure original nav link styles still work for regular links */
.nav-links > a {
  display: block;
}
.my-acc-btn i {
  font-size: 24px;
}
.mob-search-icon {
  display: none;
}
/* SEC NAV */
.sec-nav {
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 69px;
  z-index: 1050;
  height: 48px;
}
.sec-nav-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: stretch;
  position: relative;
}
/* Category dropdown */
.cat-dropdown-wrap {
  position: relative;
  flex-shrink: 0;
}
.cat-dropdown-wrap {
  display: flex;
  align-items: center;
  margin-right: 4px;
}
.shop-cat-btn {
  background: none;
  color: var(--blue);
  border: none;
  padding: 11px 14px 11px 0;
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  height: 48px;
  border-radius: 0;
  box-shadow: none;
  transition: color 0.2s;
}
.shop-cat-btn i {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.shop-cat-btn:hover,
.shop-cat-btn.open {
  background: none;
  color: var(--blue-dark);
}
.cat-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #f8fafc;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
  min-width: 280px;
  z-index: 2000;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.cat-dropdown.open {
  display: flex;
}
.cat-list {
  width: 280px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
}
.cat-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 12.5px;
  color: var(--text);
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
  border-bottom: 1px solid #f3f4f6;
}
.cat-list-item:last-child {
  border-bottom: none;
}
.cat-list-item:hover,
.cat-list-item.active {
  background: #eff6ff;
  color: var(--blue);
}
.cat-list-item i {
  color: var(--muted);
  font-size: 11px;
}
.cat-list-item:hover i {
  color: var(--blue);
}
.cat-sub-panel {
  display: none;
  padding: 16px 20px;
  min-width: 520px;
  flex-wrap: wrap;
  gap: 0;
  align-content: flex-start;
}
.cat-sub-panel.active {
  display: flex;
}
.cat-sub-panel h6 {
  width: 100%;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.sub-col {
  width: 50%;
  padding-right: 12px;
  margin-bottom: 8px;
}
.sub-link {
  display: block;
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.15s;
  line-height: 1.4;
}
.sub-link:hover {
  color: var(--blue);
}
/* Product dropdown item styles */
.prod-dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 5px 0;
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
  line-height: 1.4;
  white-space: normal;
  word-break: break-word;
}
.prod-dropdown-link:hover {
  color: var(--blue);
}
.prod-dropdown-link:hover .prod-id-badge {
  background: var(--blue);
  color: #fff;
}
.prod-id-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  background: #e5e7eb;
  color: #6b7280;
  border-radius: 3px;
  padding: 1px 4px;
  letter-spacing: 0.2px;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
/* Loading/empty states inside product panel */
.prod-panel-loading,
.prod-panel-empty {
  width: 100%;
  font-size: 12px;
  color: #9ca3af;
  padding: 12px 0;
}
/* Sub-category quick-links divider at panel bottom */
.sub-cat-divider {
  width: 100%;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.sub-cat-divider > span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #9ca3af;
  flex-shrink: 0;
}
.sub-tag-link {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 20px;
  background: #f3f4f6;
  color: #374151;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  border: 1px solid #e5e7eb;
}
.sub-tag-link:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  position: absolute;
  left: 0;
  right: 0;
  width: fit-content;
  margin: 0 auto;
  z-index: 100;
  height: 100%;
  justify-content: center;
}
.nav-links::-webkit-scrollbar {
  display: none;
}
.nav-links a {
  padding: 11px 13px;
  font-size: 13.5px;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2.5px solid transparent;
  letter-spacing: 0.2px;
  transition:
    color 0.2s,
    border-color 0.2s;
  display: block;
}
.nav-links a:hover {
  color: var(--blue);
  border-bottom-color: rgba(26, 93, 200, 0.35);
}
.nav-links a.active {
  color: var(--blue);
  font-weight: 700;
  border-bottom-color: var(--blue);
}
.router-link-active,
.active {
  color: #2563eb !important;
  font-weight: 150;
  text-decoration: none !important;
}
a.router-link-active,
a.active {
  text-decoration: none !important;
}
.nav-links a.eid-fest {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.3px;
}
.nav-links .festival-nav-link {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 11px 6px;
  font-size: 13.5px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom-color 0.2s;
  white-space: nowrap;
  text-decoration: none;
  font-family: inherit;
}
.nav-links .festival-nav-link:hover {
  color: #d4850a !important;
  border-bottom-color: rgba(230, 168, 23, 0.35) !important;
}
.nav-links .festival-nav-link.active,
.nav-links .festival-nav-link.router-link-active {
  color: #d4850a !important;
  border-bottom-color: var(--orange) !important;
}
.nav-links .festival-nav-link i {
  font-size: 14px;
}
.outlets-btn {
  margin-left: auto;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 11px 0 11px 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: inherit;
  transition: color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.outlets-btn i {
  margin-right: 5px;
}
.outlets-btn:hover {
  color: var(--blue);
}
/* SECTION */
.section {
  padding: 60px 0;
}
.section-bg {
  background: var(--section-bg);
}
.container-site {
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
}
/* ---- Best Deals page grid ---- */
.deals-grid {
  display: grid;
  /* Mobile-first: exactly 2 equal columns */
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
/* Critical: grid items default to min-width:auto which causes overflow.
   Force cards to respect their column width on mobile. */
.deals-grid .prod-card {
  min-width: 0;
  width: 100%;
  overflow: hidden;
}
.deals-grid .prod-price,
.deals-grid .prod-name {
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
@media (min-width: 576px) {
  .deals-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (min-width: 992px) {
  .deals-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1280px) {
  .deals-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
}
/* Strikethrough original price on deal cards */
.deal-old {
  text-decoration: line-through;
  color: #a0aec0;
  font-size: 12px;
  margin-right: 5px;
  font-weight: 400;
}
.sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}
.sec-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.see-more {
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}
.see-more:hover {
  text-decoration: underline;
}
.sec-head-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
/* CATEGORIES */
.cats-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 4px 8px;
  justify-content: center;
}
.cats-scroll::-webkit-scrollbar {
  display: none;
}
/* On mobile, always start from left so scroll works correctly */
@media (max-width: 767px) {
  .cats-scroll {
    justify-content: flex-start !important;
    padding-left: 4px;
  }
}
.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}
.cat-img-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.cat-img-wrap:hover {
  border-color: var(--blue);
  transform: scale(1.04);
}
.cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-label {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  text-align: center;
  max-width: 92px;
  line-height: 1.3;
}
.cat-label.blue-lbl {
  color: var(--blue);
  font-weight: 600;
}
.fest-badge {
  position: absolute;
  top: 2px;
  right: -10px;
  background: linear-gradient(135deg, #f97316, #ef4444);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
}
.cat-nav-btn {
  background: #fff;
  border: 1px solid var(--border);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #4b5563;
  font-size: 13px;
  flex-shrink: 0;
  transition: all 0.2s;
}
.cat-nav-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ── Sub-category circle slider (shared by category.html & index.html) ── */
.sub-cat-section {
  padding: 0 0 8px;
  background: #fff;
}
.sub-cat-outer {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  width: 100%;
  padding: 8px 0;
}
.sub-cat-track-wrap {
  flex: 1;
  overflow: hidden;
  /* No side clipping — items fully visible */
}
.sub-cat-track {
  display: flex;
  gap: 0;
  will-change: transform;
}
.sub-cat-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 6px 4px;
  /* width controlled by JS-calculated visible count */
}
/* Circle image — same look as category.html */
.sub-cat-item .circle-img,
.sub-cat-item .cat-img-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  transition:
    border-color 0.2s,
    transform 0.2s;
  flex-shrink: 0;
}
.sub-cat-item .circle-img:hover,
.sub-cat-item .cat-img-wrap:hover {
  border-color: var(--blue);
  transform: scale(1.04);
}
.sub-cat-item .circle-img img,
.sub-cat-item .cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sub-cat-item p,
.sub-cat-item .cat-label {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  text-align: center;
  max-width: 110px;
  line-height: 1.3;
  margin: 0;
}
/* Arrow buttons */
.sub-cat-arrow {
  background: #fff;
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #4b5563;
  font-size: 14px;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  position: relative;
}
.sub-cat-arrow:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 4px 14px rgba(26, 93, 200, 0.2);
}
/* Responsive: smaller circles on mobile */
@media (max-width: 575px) {
  .sub-cat-item .circle-img,
  .sub-cat-item .cat-img-wrap {
    width: 80px;
    height: 80px;
  }
  .sub-cat-item p,
  .sub-cat-item .cat-label {
    font-size: 11px;
    max-width: 80px;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .sub-cat-item .circle-img,
  .sub-cat-item .cat-img-wrap {
    width: 95px;
    height: 95px;
  }
}
/* BANNER GRIDS */
.banner-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.banner-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.banner-item {
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: border-color 0.25s;
}
.banner-item:hover {
  border-color: var(--blue);
}
.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.banner-item:hover img {
  transform: scale(1.03);
}
.banner-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
}
.banner-label-text {
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.banner-item:hover .banner-label-text {
  opacity: 1;
  transform: translateY(0);
}
/* 2-col banners always show EID text */
.banner-2col .banner-label-text {
  opacity: 1;
  transform: none;
  font-size: 24px;
}
.eid-collection-text {
  color: var(--blue);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
}
/* PRODUCT */
.prod-carousel-outer {
  position: relative;
}
.prod-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #4b5563;
  font-size: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  transition: all 0.2s;
}
.prod-carousel-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.prod-carousel-btn.prev-btn {
  left: -17px;
}
.prod-carousel-btn.next-btn {
  right: -17px;
}
.prod-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding-bottom: 4px;
}
.prod-grid::-webkit-scrollbar {
  display: none;
}
.prod-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 14px;
}
.dot {
  height: 4px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
}
.dot.active {
  width: 22px;
  background: var(--orange);
}
.dot.inactive {
  width: 8px;
  background: #d1d5db;
}
/* PRODUCT CARD */
.prod-card {
  background: #fff;
  border: 1px solid #eaebed;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  display: flex;
  flex-direction: column;
}
.prod-grid .prod-card {
  flex: 0 0 200px;
  width: 200px;
  height: 390px;
}
.prod-card:hover {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.prod-img {
  position: relative;
  overflow: hidden;
  background: #f3f4f6;
  aspect-ratio: 3/4;
}
.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s;
}
.prod-card:hover .prod-img img {
  transform: scale(1.06);
}
.new-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.prod-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  overflow: hidden;
}
.prod-price {
  font-size: 15px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 4px;
}
.prod-name {
  font-size: 12.5px;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.color-row {
  display: flex;
  gap: 4px;
  margin-top: 6px;
  justify-content: center;
}
.color-swatch {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  min-height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  border-radius: 50% !important;
  border: 1.5px solid rgba(0, 0, 0, 0.18) !important;
  cursor: pointer;
  display: inline-block;
  flex-shrink: 0;
}
/* FILTER TABS */
.filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.ftab {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 4px 13px;
  font-size: 11px;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  position: relative;
  z-index: 2;
}
.ftab.active {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  color: #fff !important;
  position: relative;
  z-index: 2;
}
.ftab:hover:not(.active) {
  border-color: var(--blue);
  color: var(--blue);
}
/* PROMO BANNERS */
.promo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.promo-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  height: 148px;
  border: 2px solid transparent;
  transition: border-color 0.25s;
}
.promo-item:hover {
  border-color: var(--blue);
}
.promo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.promo-item:hover img {
  transform: scale(1.04);
}
.promo-sara-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 800;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 2px;
}
.promo-sara-badge i {
  color: var(--red);
  font-size: 9px;
}
.promo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
/* TAGLINE */
.tagline-strip {
  background: #f9fafb;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 11px 20px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.tagline-strip a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
/* FLOAT CHAT */
.float-chat {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 2000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #ec4899);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(249, 115, 22, 0.45);
  border: none;
  transition: transform 0.2s;
}
.float-chat:hover {
  transform: scale(1.1);
}
/* MOBILE BOTTOM NAV */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #fff;
  border-top: 1px solid var(--border);
  height: 60px;
  align-items: center;
}
.mob-nav-items {
  display: flex;
  width: 100%;
  align-items: center;
}
.mob-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  padding: 6px 0;
  color: #6b7280;
  font-size: 9.5px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.mob-nav-item i {
  font-size: 21px;
}
.mob-nav-item:hover,
.mob-nav-item.active {
  color: var(--blue);
}
.mob-nav-center {
  flex: 0 0 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}
.eid-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #ec4899);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: -20px;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.5);
}
.eid-circle i {
  font-size: 20px;
}
.eid-circle-label {
  font-size: 8px;
  font-weight: 700;
  color: var(--orange);
  margin-top: 2px;
}
/* RESPONSIVE */
@media (max-width: 1199px) {
  .prod-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 991px) {
  .prod-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .promo-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .banner-4col {
    grid-template-columns: repeat(2, 1fr);
  }
  .cat-sub-panel {
    min-width: 300px;
  }
}
/* Reset nav-links to normal flow below lg (991px) when cat-dropdown-wrap hides */
@media (max-width: 991px) {
  .nav-links {
    position: relative;
    left: auto;
    right: auto;
    width: 100%;
    margin: 0;
    transform: none;
    flex: 1;
    justify-content: space-between;
    overflow-x: hidden;
    padding-left: 0px;
    padding-right: 0px;
    flex-wrap: nowrap;
  }
  .nav-links > * {
    flex: 1 1 0;
    text-align: center;
    min-width: 0;
  }
  .nav-item-home { order: 1; }
  .nav-item-category { order: 2; }
  .nav-item-festival { order: 3; }
  .nav-first-half { order: 4; }
  .nav-second-half { order: 5; }
  .sec-nav-inner {
    min-height: 44px;
    padding: 0 10px;
  }
  .mobile-search-btn {
    display: none !important;
  }
  .outlets-btn {
    display: none;
  }
  /* Hide hamburger — mobile uses bottom nav instead */
  .mobile-nav-btn {
    display: none !important;
  }
  /* Always show heart icon on mobile */
  .icon-btn.d-none {
    display: inline-flex !important;
  }
  .nav-links a {
    padding: 11px 2px;
    font-size: 12px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 768px) {
  body {
    padding-bottom: 65px;
  }
  .search-wrap {
    display: none;
  }
  .mob-search-icon {
    display: flex;
  }
  .my-acc-btn .acc-label {
    display: none;
  }
  .logo-sara {
    font-size: 20px;
  }
  .logo-dheu {
    font-size: 18px;
  }
  .logo-sep {
    margin: 0 6px;
    font-size: 20px;
  }
  /* Hide desktop-only nav elements on mobile */
  .shop-cat-btn {
    display: none;
  }
  .cat-dropdown-wrap {
    display: none !important;
  }
  .outlets-btn {
    display: none;
  }
  /* Hide hamburger — mobile uses bottom nav instead */
  .mobile-nav-btn {
    display: none !important;
  }
  /* Always show heart icon on mobile */
  .icon-btn.d-none {
    display: inline-flex !important;
  }
  .nav-links a {
    padding: 11px 2px;
    font-size: 12px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  /* On mobile, banner labels always visible */
  .banner-label-text {
    opacity: 1 !important;
    transform: none !important;
  }
  .banner-2col {
    gap: 4px;
  }
  .banner-4col {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }
  .banner-item {
    height: 180px !important;
  }
  .cat-img-wrap {
    width: 74px;
    height: 74px;
  }
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .prod-img img {
    height: 100%;
  }
  .sec-title {
    font-size: 16px;
  }
  .promo-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .promo-item {
    height: 160px;
  }
  .mobile-bottom-nav {
    display: flex;
  }
  .float-chat {
    bottom: 78px;
    right: 16px;
  }
  .cat-dropdown {
    min-width: 240px;
  }
  .cat-sub-panel {
    display: none !important;
  }
  .cat-list {
    width: 240px;
    border-right: none;
  }
}
@media (max-width: 480px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .prod-img img {
    height: 100%;
  }
  .banner-label-text {
    font-size: 16px;
  }
  .banner-2col .banner-label-text {
    font-size: 16px;
  }
  .banner-item {
    height: 140px !important;
  }
  .promo-row {
    grid-template-columns: 1fr;
  }
  .promo-item {
    height: 140px;
  }
}

/* ========== Category: CSS ========== */

:root {
  --sara-blue: #0066cc;
  --sara-orange: #cc5500;
  --sara-dark: #1a1a2e;
  --sara-red: #e63946;
}
* {
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", sans-serif;
  background: #f5f5f5;
  margin: 0;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.top-bar .inner,
.main-nav .inner,
.container-site {
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-text {
  font-size: 26px;
  font-weight: 900;
  color: #1a1a2e;
  letter-spacing: -1px;
  line-height: 1;
}
.logo-text span {
  color: var(--sara-blue);
}
.logo-tagline {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: #888;
  display: block;
  text-transform: uppercase;
}
.logo-ribbon {
  font-size: 17px;
  color: #e63946;
}
.divider-logo {
  width: 1px;
  height: 36px;
  background: #ccc;
  margin: 0 6px;
}
.dheu-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #1a1a2e;
}
.search-wrap {
  position: relative;
  flex: 1;
  max-width: 520px;
}
.search-wrap input {
  border: 2px solid var(--sara-blue);
  border-radius: 50px;
  padding: 9px 50px 9px 20px;
  font-size: 14px;
  width: 100%;
  outline: none;
}
.search-btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--sara-blue);
  border: none;
  border-radius: 0 50px 50px 0;
  color: #fff;
  width: 46px;
  cursor: pointer;
  font-size: 15px;
}
.header-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .header-icons {
    transform: translateX(6px);
  }
}
.icon-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.icon-btn:hover {
  color: var(--sara-blue);
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--sara-red);
  color: #fff;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* My Account */
.my-account-wrap {
  position: relative;
}
.my-account-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  padding: 6px 10px;
  transition: color 0.2s;
}
.my-account-btn:hover {
  color: var(--sara-blue);
}
.my-account-btn .avatar-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e0e7ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #555;
}
.account-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 11px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  min-width: 165px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.2s,
    transform 0.2s,
    visibility 0.2s;
  z-index: 2000;
}
.my-account-wrap:hover .account-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.account-dropdown a {
  display: block;
  padding: 11px 20px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s;
}
.account-dropdown a:last-child {
  border-bottom: none;
}
.account-dropdown a:hover {
  background: #f0f5ff;
  color: var(--sara-blue);
}
.mobile-nav-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: #333;
  cursor: pointer;
  display: none;
}

/* ===== MAIN NAV ===== */
.main-nav {
  background: #f8fafc;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 61px;
  z-index: 1050;
}
.main-nav .inner {
  display: flex;
  align-items: center;
}
.category-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-size: 13.5px;
  font-weight: 600;
  padding: 13px 14px 13px 0;
  color: #333;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.category-btn:hover {
  color: var(--sara-blue);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.nav-list > li {
  position: static;
}
.nav-list > li > a {
  display: block;
  padding: 13px 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.nav-list > li > a:hover,
.nav-list > li:hover > a {
  color: var(--sara-blue);
  border-bottom-color: var(--sara-blue);
}
.nav-list > li > a.active {
  color: var(--sara-blue);
  border-bottom-color: var(--sara-blue);
}

/* ===== MEGA DROPDOWN ===== */
.mega-drop {
  position: fixed;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid var(--sara-blue);
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.22s,
    transform 0.22s,
    visibility 0.22s;
  z-index: 1060;
}
.nav-list > li:hover .mega-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* EID dropdown */
.eid-drop {
  padding: 26px 0;
}
.eid-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 120px;
  margin-right: 60px;
}
.eid-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--sara-orange);
  text-decoration: none;
  transition:
    color 0.2s,
    transform 0.2s;
  display: inline-block;
}
.eid-links a:hover {
  color: var(--sara-blue);
  transform: translateX(4px);
}
.eid-imgs {
  display: flex;
  gap: 16px;
}
.eid-imgs img {
  width: 190px;
  height: 230px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

/* Mens/Womens/Kids dropdown */
.cat-drop {
  padding: 26px 0;
}
.cat-col-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--sara-orange);
  margin-bottom: 8px;
  margin-top: 4px;
}
.cat-col a {
  display: block;
  font-size: 13px;
  color: #444;
  text-decoration: none;
  padding: 2.5px 0;
  transition: color 0.15s;
}
.cat-col a:hover {
  color: var(--sara-blue);
}
.cat-drop-img {
  width: 220px;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 13px;
}
.breadcrumb-bar .breadcrumb-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 10px 20px;
}
.breadcrumb-bar a {
  color: var(--sara-blue);
  text-decoration: none;
}
.breadcrumb-bar span {
  color: #666;
}

/* ===== SUBCATEGORY CIRCLES ===== */
.sub-cat-section {
  background: #fff;
  padding: 12px 0 4px; /* Reduced by 10px to account for the track padding below */
  border-bottom: 1px solid #eee;
}
.sub-cat-outer {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 44px;
}
.sub-cat-track-wrap {
  overflow: hidden;
}
.sub-cat-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px 0; /* Add top/bottom padding so the scaled image won't be clipped by track-wrap's overflow: hidden */
}
.sub-cat-item {
  flex: 0 0 calc(100% / 6);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
  cursor: pointer;
}
/* Responsive: circle items per row */
@media (max-width: 991px) {
  .sub-cat-item {
    flex: 0 0 calc(100% / 3);
  }
}
@media (max-width: 575px) {
  .sub-cat-item {
    flex: 0 0 calc(100% / 3);
  }
  .sub-cat-item .circle-img {
    width: 80px;
    height: 80px;
  }
}
.sub-cat-item .circle-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e0e0e0;
  transition:
    border-color 0.2s,
    transform 0.2s;
  flex-shrink: 0;
}
.sub-cat-item:hover .circle-img {
  border-color: var(--sara-blue);
  transform: scale(1.05);
}
.sub-cat-item .circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sub-cat-item p {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin: 7px 0 0;
  text-align: center;
  line-height: 1.35;
}
.sub-cat-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  color: #555;
  transition: all 0.2s;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.sub-cat-arrow:hover {
  background: var(--sara-blue);
  color: #fff;
  border-color: var(--sara-blue);
}
.sub-cat-arrow.prev {
  left: 4px;
}
.sub-cat-arrow.next {
  right: 4px;
}

/* ===== MAIN LAYOUT ===== */
.main-layout {
  padding: 20px 0;
}

.sidebar {
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
}
.sidebar-section {
  border-bottom: 1px solid var(--border);
  padding: 16px 14px;
}
.sidebar-section:last-child {
  border-bottom: none;
}
.sidebar-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  user-select: none;
  white-space: nowrap;
}
.sidebar-title i {
  font-size: 10px;
  transition: transform 0.25s ease;
  color: #888;
}
.sidebar-title.collapsed i {
  transform: rotate(-180deg);
}
.sidebar-body {
  overflow: hidden;
  max-height: 600px;
  transition:
    max-height 0.3s ease,
    opacity 0.25s ease;
  opacity: 1;
}
.sidebar-body.collapsed {
  max-height: 0;
  opacity: 0;
}
.filter-link {
  display: block;
  font-size: 12.5px;
  color: #333;
  text-decoration: none;
  padding: 2px 0;
  transition: color 0.15s;
}
.filter-link:hover {
  color: #004499;
}

/* Mobile filter button & overlay (category) */
.mob-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.mob-filter-btn i {
  font-size: 15px;
  color: #111827;
}

.mob-filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2050;
  display: none;
}
.mob-filter-overlay.show {
  display: block;
}

.mob-filter-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  max-width: 90%;
  height: 100%;
  height: 100dvh;
  background: #ffffff;
  z-index: 2055;
  display: flex;
  flex-direction: column;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease;
  overflow: hidden;
}
.mob-filter-sidebar.open {
  right: 0;
}
.mob-filter-header {
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mob-filter-header h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.mob-filter-close {
  border: none;
  background: transparent;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
}
.mob-filter-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 0 70px; /* space for mobile bottom nav */
  -webkit-overflow-scrolling: touch;
}
.mob-filter-body .sidebar {
  border-radius: 0;
  border: none;
}
.mob-filter-footer {
  padding: 14px 16px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 12px;
}
.mob-filter-footer .btn-reset,
.mob-filter-footer .btn-apply {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
}
.mob-filter-footer .btn-reset {
  background: #f3f4f6;
  color: #374151;
}
.mob-filter-footer .btn-apply {
  background: var(--sara-blue);
  color: #fff;
}

@media (max-width: 767.98px) {
  .main-layout {
    padding-top: 12px;
  }
}
.filter-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  padding: 4px 0;
  cursor: pointer;
}
.filter-label input {
  cursor: pointer;
  accent-color: var(--sara-blue);
}
.price-inputs {
  display: flex;
  gap: 5px;
  margin-top: 6px;
}
.price-inputs input {
  flex: 1;
  min-width: 0;
  width: 0;
  border: 1px solid #ccc;
  padding: 4px 6px;
  font-size: 11px;
  border-radius: 2px;
  font-family: inherit;
}
.btn-reset {
  background: #e63946;
  color: #fff;
  font-size: 12px;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 2px;
}
.btn-apply {
  background: var(--sara-blue);
  color: #fff;
  font-size: 12px;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 2px;
}

/* ===== PRODUCTS ===== */
.main-layout {
  padding: 20px 0 40px;
}
.products-header {
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: left;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.products-header h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #1a1a2e;
}
.products-header small {
  color: #888;
  font-size: 13px;
}
.sort-select {
  border: 1px solid #ccc;
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 2px;
  outline: none;
}
.view-btns {
  display: flex;
  gap: 4px;
}
.view-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.2s;
  color: inherit;
}
.view-btn.active,
.view-btn:hover {
  background: var(--sara-blue);
  color: #fff;
  border-color: var(--sara-blue);
}
.view-btn.active i,
.view-btn:hover i {
  color: #fff;
}
.product-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
  transition:
    box-shadow 0.25s,
    transform 0.2s;
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
}
.product-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}
.badge-new {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--sara-blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
}
.product-info {
  padding: 10px 12px 12px;
}
.product-price {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 3px;
}
.product-name {
  font-size: 12px;
  color: #666;
  line-height: 1.3;
}
.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  margin-top: 5px;
  border: 1px solid #ccc;
}
.pagination-wrap {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.page-btn {
  min-width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 2px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-btn:hover,
.page-btn.active {
  background: var(--sara-blue);
  color: #fff;
  border-color: var(--sara-blue);
}

/* ===== FOOTER ===== */
footer {
  background: #1a1a2e;
  color: #ccc;
  padding: 36px 0 20px;
  margin-top: 40px;
}
footer h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
footer a {
  color: #aaa;
  text-decoration: none;
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  transition: color 0.2s;
}
footer a:hover {
  color: var(--sara-blue);
}
.footer-link {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #1a5dc8;
  text-decoration: none;
}
.footer-contact p {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 6px;
}
.footer-contact i {
  color: var(--sara-blue);
  margin-right: 6px;
}
.social-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.social-icon:hover {
  background: var(--sara-blue);
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 24px;
  padding-top: 16px;
  text-align: center;
  font-size: 12px;
  color: #777;
}
.app-btns {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  text-decoration: none;
  transition: background 0.2s;
}
.app-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .mobile-nav-btn {
    display: flex;
  }
  .category-btn {
    display: none;
  }
  .nav-list {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    padding: 16px 0;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
  }
  .nav-list.show {
    display: flex;
  }
  .nav-list > li > a {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    border-bottom-width: 1px !important;
    border-left: 3px solid transparent;
  }
  .nav-list > li > a.active,
  .nav-list > li > a:hover {
    border-left-color: var(--sara-blue);
  }
  .mega-drop {
    position: static !important;
    box-shadow: none;
    border: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    padding: 8px 20px 8px 28px;
    background: #f9f9f9;
  }
  .nav-list > li:hover .mega-drop {
    display: block;
  }
  .outlets-wrap {
    display: none !important;
  }
  .sub-cat-item {
    flex: 0 0 calc(100% / 3);
  }
  .sub-cat-item .circle-img {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 575px) {
  .dheu-logo,
  .divider-logo {
    display: none;
  }
  .sub-cat-item {
    flex: 0 0 calc(100% / 3);
  }
  .sub-cat-item .circle-img {
    width: 72px;
    height: 72px;
  }
}

/* ===== PRIVACY POLICY PAGE ===== */
body.pp-body {
  background-color: #f4f5f9;
}
.pp-breadcrumb {
  background: transparent;
  border-bottom: none;
  padding: 14px 0;
  font-size: 13.5px;
}
.pp-breadcrumb .bc-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
}
.pp-breadcrumb a {
  color: var(--sara-blue, #0066cc);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.pp-breadcrumb a:hover {
  color: #004499;
}
.pp-breadcrumb .sep {
  color: #999;
  margin: 0 10px;
  font-size: 11px;
}
.pp-breadcrumb .current {
  color: #666;
}

.pp-page {
  max-width: 1260px;
  margin: 0 auto;
  padding: 45px 28px 65px;
}
.pp-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 48px 56px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  color: #444;
  line-height: 1.7;
}

.pp-card h1 {
  font-size: 34px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 35px;
  text-align: center;
  position: relative;
  padding-bottom: 18px;
}
.pp-card h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 65px;
  height: 4px;
  background: var(--sara-blue, #0066cc);
  border-radius: 2px;
}

.pp-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin-top: 40px;
  margin-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 8px;
}
.pp-card p {
  font-size: 15px;
  margin-bottom: 20px;
  text-align: justify;
}

.pp-card a {
  color: var(--sara-blue, #0066cc);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s;
}
.pp-card a:hover {
  text-decoration: underline;
  color: #004499;
}

.pp-contact-block {
  background: #f8fbff;
  border-left: 4px solid var(--sara-blue, #0066cc);
  padding: 22px 28px;
  border-radius: 4px;
  margin-top: 45px;
  font-size: 15px;
  color: #333;
}
.pp-contact-block strong {
  display: block;
  font-size: 17px;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.tagline-strip {
  background: linear-gradient(135deg, var(--sara-blue, #0066cc), #0050a0);
  color: #fff;
  text-align: center;
  padding: 16px 20px;
  font-size: 14.5px;
  font-weight: 500;
}
.tagline-strip a {
  color: #ffd700;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 4px;
  transition: color 0.15s;
}
.tagline-strip a:hover {
  color: #fff;
}
.tagline-strip .router-link-active {
  color: #ffd700 !important;
}

@media (max-width: 768px) {
  .pp-breadcrumb {
    padding: 12px 0;
  }
  .pp-breadcrumb .bc-inner {
    padding: 0 16px;
  }
  .pp-page {
    padding: 25px 16px 45px;
  }
  .pp-card {
    padding: 30px 20px;
    border-radius: 6px;
  }
  .pp-card h1 {
    font-size: 28px;
    margin-bottom: 28px;
  }
  .pp-card h2 {
    font-size: 20px;
    margin-top: 30px;
  }
  .tagline-strip {
    font-size: 13.5px;
    padding: 14px 16px;
  }
}

/* ===== AUTH PAGES (Login / Register) ===== */
body.auth-body {
  background-color: #f4f5f9;
}

.auth-page {
  max-width: 1260px;
  margin: 0 auto;
  padding: 45px 28px 65px;
}

.auth-card {
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 32px 28px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.auth-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 6px;
}

.auth-subtitle {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 18px;
}

.auth-form .form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.auth-form .form-control {
  font-size: 13px;
  padding: 8px 11px;
  border-radius: 8px;
  border-color: var(--border);
  box-shadow: none;
}

.auth-form .form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(26, 93, 200, 0.15);
}

.auth-link-small {
  font-size: 11.5px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}

.auth-link-small:hover {
  text-decoration: underline;
}

.auth-remember-text {
  font-size: 12px;
  color: var(--muted);
}

.auth-btn {
  width: 100%;
  background: var(--blue);
  border: none;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 999px;
  margin-top: 6px;
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.12s ease;
}

.auth-btn:hover {
  background: var(--blue-dark);
  box-shadow: 0 6px 18px rgba(26, 93, 200, 0.35);
  transform: translateY(-1px);
}

.auth-or-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 12px;
  font-size: 11.5px;
  color: var(--muted);
}

.auth-or-divider::before,
.auth-or-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.auth-social-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.auth-social-btn {
  flex: 1;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f9fafb;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  color: #374151;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.12s ease;
}

.auth-social-btn i {
  font-size: 14px;
}

/* .auth-social-btn.google:hover {
  border-color: transparent;
  background: linear-gradient(135deg, #4285F4 0%, #EA4335 35%, #FBBC05 65%, #34A853 100%);
  color: #fff;
} */

/* Base State - Dark Theme */
.auth-social-btn.google {
  background-color: #131314; /* Google's official dark mode background */
  color: #e3e3e3; 
  border: 1px solid #8e918f;
  transition: all 0.2s ease;
}

/* Hover State - Lighter Gray */
.auth-social-btn.google:hover {
  background-color: #2b2c2f; /* Slightly lighter gray on hover */
  border-color: #8e918f;
  color: #ffffff;
}

/* .auth-social-btn.facebook:hover {
  border-color: #1877f2;
  background: #1877f2;
  color: #fff;
} */

/* Base State - Solid Facebook Blue */
.auth-social-btn.facebook {
  background-color: #1877f2; 
  border-color: #1877f2;
  color: #ffffff;
  transition: all 0.2s ease;
}

/* Hover State - Slightly darker blue for interaction */
.auth-social-btn.facebook:hover {
  background-color: #166fe5; 
  border-color: #166fe5;
  color: #ffffff;
}

.auth-toggle {
  margin-top: 16px;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
}

.auth-toggle a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  margin-left: 3px;
}

.auth-toggle a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .auth-page {
    padding: 28px 16px 45px;
  }

  .auth-card {
    padding: 26px 18px 22px;
    border-radius: 8px;
  }

  .auth-title {
    font-size: 21px;
  }
}

/* Mobile Account Sidebar */
.mob-account-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mob-account-overlay.show {
  display: block;
  opacity: 1;
}
.mob-account-sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 1050;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
}
.mob-account-sidebar.open {
  left: 0;
}
.mob-account-header {
  background: #1a5dc8;
  color: #fff;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mob-account-header h5 {
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}
.mob-account-close {
  background: #fff;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a5dc8;
  font-size: 20px;
  padding: 0;
  cursor: pointer;
}
.mob-account-user {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
}
.mob-account-user .user-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #999;
  margin-bottom: 15px;
  background: #fff;
}
.mob-account-user .user-name {
  font-weight: 700;
  font-size: 16px;
  color: #333;
}
.mob-account-links {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}
.mob-account-links a {
  padding: 16px 20px;
  color: #666;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #f3f4f6;
  transition:
    background 0.2s,
    color 0.2s;
}
.mob-account-links a:last-child {
  border-bottom: none;
}
.mob-account-links a:hover {
  background: #f9f9f9;
  color: #1a5dc8;
}

/* =====================================================
   SaRa Lifestyle — product.css (merged)
   Product detail page styles
   ===================================================== */

/* BREADCRUMB */
.breadcrumb-bar {
  background: #f7f8fa;
  border-bottom: 1px solid #e5e7eb;
  padding: 8px 0;
}
.breadcrumb-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
  font-size: 12px;
  color: #6b7280;
}
.breadcrumb-inner a {
  color: #6b7280;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.breadcrumb-inner a:hover {
  color: var(--sara-blue, #0066cc);
}
.breadcrumb-inner .sep {
  color: #b0b7c3;
  margin: 0 4px;
}
.breadcrumb-inner .current {
  color: #1a1a2e;
  font-weight: 600;
  white-space: nowrap;
}

/* PRODUCT PAGE WRAPPER */
.product-page {
  padding: 20px 0 0;
  background: var(--sara-light, #f5f5f5);
}
.product-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* IMAGE GALLERY (left column) */
.gallery-col {
  position: sticky;
  top: 130px;
  align-self: flex-start;
}
.main-img-wrap {
  border: 1px solid #e8e8e8;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  cursor: zoom-in;
}
.main-img-wrap img:hover {
  transform: scale(1.05);
}
.thumb-row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.thumb {
  width: 72px;
  height: 80px;
  border: 2px solid #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumb:hover,
.thumb.active {
  border-color: var(--sara-blue, #0066cc);
}

/* PRODUCT INFO (right column) */
.product-info-col {
  padding-left: 28px;
}
.product-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 6px;
  line-height: 1.3;
}
.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.brand-box:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transform: translateY(-5px);
  border-color: #1a5dc8 !important;
}
.brand-row span {
  font-size: 14px;
  color: #555;
}
.brand-row a {
  color: var(--sara-blue, #0066cc);
  font-weight: 600;
}
.wishlist-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: #bbb;
  cursor: pointer;
  transition: color 0.2s;
}
.wishlist-btn:hover,
.wishlist-btn.active {
  color: #e63946;
}

/* Price */
.price-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.price-accent {
  width: 4px;
  height: 38px;
  background: var(--sara-green, #1a7a3c);
  border-radius: 2px;
  flex-shrink: 0;
}
.price-value {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
}
.price-value .currency {
  font-size: 20px;
  margin-right: 2px;
}

/* Meta info */
.meta-row {
  font-size: 13px;
  color: #777;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.meta-row strong {
  color: #444;
  font-weight: 600;
}
.meta-row a {
  color: var(--sara-blue, #0066cc);
}
.meta-divider {
  color: #ccc;
  margin: 0 6px;
}

/* Color */
.section-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #333;
  margin: 14px 0 8px;
}
.color-swatch-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.color-swatch {
  width: 50px;
  height: 56px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.color-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.color-swatch.active,
.color-swatch:hover {
  border-color: var(--sara-blue, #0066cc);
}

/* Size */
.size-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.size-btn {
  min-width: 46px;
  height: 38px;
  border: 1.5px solid #ccc;
  background: #fff;
  border-radius: 3px;
  font-size: 13.5px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0 10px;
}
.size-btn:hover {
  border-color: var(--sara-blue, #0066cc);
  color: var(--sara-blue, #0066cc);
}
.size-btn.active {
  background: var(--sara-blue, #0066cc);
  border-color: var(--sara-blue, #0066cc);
  color: #fff !important;
}
.size-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--sara-blue, #0066cc);
  cursor: pointer;
  margin-top: 4px;
}
.size-link i {
  font-size: 12px;
}

/* Stock */
.stock-row {
  font-size: 13px;
  color: #555;
  margin: 10px 0 12px;
}
.stock-row span {
  font-weight: 600;
  color: #333;
}

/* Quantity */
.qty-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.qty-label {
  font-size: 13.5px;
  color: #555;
}
.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid #ccc;
  border-radius: 3px;
  overflow: hidden;
}
.qty-btn {
  width: 34px;
  height: 38px;
  background: #f8f8f8;
  border: none;
  font-size: 18px;
  color: #555;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover {
  background: #e8e8e8;
}
.qty-input {
  width: 46px;
  height: 38px;
  border: none;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  outline: none;
}

/* CTA Buttons */
.cta-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}
.btn-add-cart {
  flex: 1;
  padding: 14px 20px;
  background: #6b7280;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s;
}
.btn-add-cart:hover {
  background: #4b5563;
}
.btn-buy-now {
  flex: 1;
  padding: 14px 20px;
  background: var(--sara-dark, #1a1a2e);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s;
}
.btn-buy-now:hover {
  background: #2d2d4e;
}

/* Seller / Category / Share */
.product-meta-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}
.product-meta-bottom .left {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}
.product-meta-bottom .left span {
  color: #333;
  font-weight: 600;
}
.product-meta-bottom .left a {
  color: var(--sara-blue, #0066cc);
}
.share-col {
  text-align: right;
}
.share-col .share-label {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}
.share-icons {
  display: flex;
  gap: 8px;
}
.share-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: opacity 0.2s;
  color: #fff;
}
.share-icon:hover {
  opacity: 0.8;
}
.share-fb {
  background: #1877f2;
}
.share-x {
  background: #000;
}
.share-wa {
  background: #25d366;
}

/* DESCRIPTION TABS */
.tabs-section {
  margin-top: 28px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}
.tab-nav {
  display: flex;
  border-bottom: 2px solid #e8e8e8;
  padding: 0 20px;
  gap: 0;
}
.tab-btn {
  background: none;
  border: none;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #777;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.tab-btn.active {
  color: var(--sara-blue, #0066cc);
  border-bottom-color: var(--sara-blue, #0066cc);
}
.tab-btn:hover:not(.active) {
  color: #333;
}
.tab-content {
  display: none;
  padding: 20px;
}
.tab-content.active {
  display: block;
}
.tab-content p {
  font-size: 13.5px;
  color: #444;
  line-height: 1.7;
  margin: 0 0 6px;
}
.tab-content p span {
  color: var(--sara-blue, #0066cc);
  font-weight: 600;
}
.tab-note {
  font-size: 13px;
  color: #777;
  border-top: 1px solid #f0f0f0;
  margin-top: 12px;
  padding-top: 10px;
}
.tab-note span {
  color: var(--sara-blue, #0066cc);
}

/* BENEFITS + RECENTLY VIEWED */
.benefits-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.benefits-card,
.recently-viewed-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 20px 22px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.benefit-item:last-child {
  margin-bottom: 0;
}
.benefit-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: #f0f5ff;
}
.benefit-text {
  font-size: 13px;
  color: #444;
  line-height: 1.4;
  padding-top: 2px;
}
.benefit-text strong {
  color: var(--sara-blue, #0066cc);
}
.recently-viewed-card h6 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 12px;
  text-align: center;
}
.rv-empty {
  font-size: 13px;
  color: #aaa;
  text-align: center;
  padding: 30px 0;
}

/* RELATED PRODUCTS SLIDER */
.related-section {
  margin-top: 24px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 20px 22px 24px;
}
.related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.related-header h5 {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0;
}
.see-more-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--sara-blue, #0066cc);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.see-more-link:hover {
  gap: 8px;
}
.related-slider-wrap {
  position: relative;
}
.related-track-outer {
  overflow: hidden;
}
.related-track {
  display: flex;
  gap: 0;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.rel-card {
  flex: 0 0 calc(100% / 6);
  padding: 0 6px;
  cursor: pointer;
}
.rel-card-inner {
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
  transition:
    box-shadow 0.25s,
    transform 0.2s;
  background: #fff;
}
.rel-card-inner:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.rel-img-wrap {
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
}
.rel-img-wrap img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.rel-card-inner:hover .rel-img-wrap img {
  transform: scale(1.04);
}
.badge-new-rel {
  position: absolute;
  top: 7px;
  left: 7px;
  background: var(--sara-blue, #0066cc);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
}
.color-dot-rel {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
}
.rel-info {
  padding: 8px 10px 10px;
  text-align: center;
}
.rel-price {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 3px;
}
.rel-name {
  font-size: 11.5px;
  color: #666;
  line-height: 1.3;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  color: #555;
  transition: all 0.2s;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.slider-arrow:hover {
  background: var(--sara-blue, #0066cc);
  color: #fff;
  border-color: var(--sara-blue, #0066cc);
}
.slider-arrow.prev {
  left: -16px;
}
.slider-arrow.next {
  right: -16px;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}
.slider-dot {
  width: 28px;
  height: 6px;
  border-radius: 3px;
  background: #ddd;
  cursor: pointer;
  transition:
    background 0.2s,
    width 0.2s;
}
.slider-dot.active {
  background: var(--sara-blue, #0066cc);
  width: 40px;
}

/* RESPONSIVE — PRODUCT PAGE */
@media (max-width: 991px) {
  .benefits-row {
    grid-template-columns: 1fr;
  }
  .rel-card {
    flex: 0 0 calc(100% / 4);
  }
}
@media (max-width: 767px) {
  .product-info-col {
    padding-left: 0;
    margin-top: 20px;
  }
  .gallery-col {
    position: static;
  }
  .product-title {
    font-size: 18px;
  }
  .price-value {
    font-size: 22px;
  }
  .cta-row {
    flex-direction: column;
  }
  .product-meta-bottom {
    flex-direction: column;
  }
  .share-col {
    text-align: left;
  }
  .rel-card {
    flex: 0 0 calc(100% / 3);
  }
}
@media (max-width: 575px) {
  .thumb {
    width: 58px;
    height: 66px;
  }
  .rel-card {
    flex: 0 0 calc(100% / 2);
  }
  .related-section {
    padding: 16px 14px 18px;
  }
  .tab-nav {
    padding: 0 10px;
  }
  .tab-btn {
    padding: 12px 10px;
    font-size: 13px;
  }
}

/* Careers Page Specific Styles */
.careers-hero {
  background:
    linear-gradient(rgba(26, 93, 200, 0.8), rgba(26, 93, 200, 0.8)),
    url("https://picsum.photos/seed/careers/1200/400");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 40px;
}
.careers-hero h1 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
}
.careers-hero p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}
.job-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.job-info h4 {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.job-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}
.job-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.apply-btn {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.apply-btn:hover {
  background: var(--blue-dark);
  color: #fff;
}

/* Careers Page Responsive */
@media (max-width: 767.98px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .job-meta {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 4px;
  }

  .apply-btn {
    width: 100%;
    text-align: center;
  }

  .careers-hero h1 {
    font-size: 28px;
  }

  .careers-hero p {
    font-size: 14px;
  }
}

/* =========================================================
   FLUID LAYOUT — Large Desktop (≥1400px)
   Removes the fixed 1260 px cap on every layout wrapper
   so the page stretches edge-to-edge on ultrawide monitors.
   Mobile / tablet breakpoints below 1400 px are untouched.
   ========================================================= */
@media (min-width: 1400px) {
  /* Header inner */
  .header-inner {
    max-width: 100%;
    padding: 0 3rem;
  }

  /* Secondary nav inner */
  .sec-nav-inner {
    max-width: 100%;
    padding: 0 3rem;
  }

  /* All content sections */
  .container-site {
    max-width: 100%;
    padding: 0 3rem;
  }

  /* Hero banner wrapper */
  .hero-fluid-wrap {
    max-width: 100%;
    padding: 0 3rem;
  }

  /* Footer inner container */
  .footer-inner-fluid {
    max-width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/* Cart Page */

.cart-page {
  padding: 40px 0;
  background: #f8fafc;
  min-height: 60vh;
}
.cart-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cart-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
.cart-table th {
  background: #f9fafb;
  color: #4b5563;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #e5e7eb;
  padding: 15px;
}
.cart-table td {
  padding: 20px 15px;
  vertical-align: middle;
  border-bottom: 1px solid #f3f4f6;
}
.cart-item-img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #f3f4f6;
}
.cart-item-name {
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  transition: color 0.2s;
}
.cart-product-cell {
  min-width: 0;
}
.cart-item-text {
  min-width: 0;
  flex: 1;
}
.cart-item-name:hover {
  color: var(--blue);
}
.cart-item-meta {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}
.quantity-control {
  display: flex;
  align-items: center;
  border: 1.5px solid #e5e7eb;
  border-radius: 6px;
  width: fit-content;
  overflow: hidden;
}
.qty-btn {
  background: #fff;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  color: #4b5563;
  transition: background 0.2s;
}
.qty-btn:hover {
  background: #f3f4f6;
}
.qty-input {
  width: 40px;
  border: none;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  outline: none;
  border-left: 1.5px solid #e5e7eb;
  border-right: 1.5px solid #e5e7eb;
}
.remove-btn {
  color: #ef4444;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s;
}
.remove-btn:hover {
  transform: scale(1.1);
}
.cart-summary {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 24px;
  position: sticky;
  top: 130px;
}
.summary-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  border-bottom: 1.5px solid #f3f4f6;
  padding-bottom: 12px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
  color: #4b5563;
}
.summary-row.total {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1.5px solid #f3f4f6;
}
.checkout-btn {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-weight: 700;
  font-size: 15px;
  margin-top: 24px;
  transition: all 0.2s;
}
.checkout-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 93, 200, 0.2);
}
.coupon-wrap {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.coupon-input {
  flex: 1;
  border: 1.5px solid #e5e7eb;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  outline: none;
}
.coupon-btn {
  background: #374151;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.coupon-btn:hover {
  background: #111827;
}
@media (max-width: 991px) {
  .cart-page {
    padding: 24px 0 100px;
  }
  .cart-container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .cart-table-wrap {
    overflow-x: auto;
  }
  .cart-summary {
    margin-top: 24px;
    position: static;
    padding: 20px 16px;
  }
  .summary-title {
    font-size: 17px;
  }
  .summary-row {
    font-size: 13px;
  }
  .checkout-btn {
    margin-top: 20px;
    padding: 13px;
    font-size: 14px;
  }
}

/* Order Tracking Page */

.order-tracking-card {
  max-width: 600px;
  margin: 40px auto;
  padding: 40px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.track-title {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  text-align: center;
}
.track-subtitle {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
}
.track-form label {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
  display: block;
}
.track-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
  transition: border-color 0.2s;
}
.track-input:focus {
  outline: none;
  border-color: #1a5dc8;
  box-shadow: 0 0 0 3px rgba(26, 93, 200, 0.1);
}
.track-btn {
  width: 100%;
  padding: 14px;
  background: #1a5dc8;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.2s;
  cursor: pointer;
}
.track-btn:hover {
  background: #1e40af;
}
@media (max-width: 576px) {
  .order-tracking-card {
    padding: 30px 20px;
    margin: 20px 15px;
  }
}

/* Outlets Page */

.outlets-page {
  padding: 40px 0;
  background: #f8fafc;
  min-height: 60vh;
}
.search-outlets {
  max-width: 600px;
  margin: 0 auto 40px auto;
}
.search-outlets input {
  width: 100%;
  padding: 14px 24px;
  border-radius: 50px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  outline: none;
  transition: all 0.3s;
}
.search-outlets input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(26, 93, 200, 0.1);
}
.outlets-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 600px) {
  .outlets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .outlets-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1400px) {
  .outlets-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1600px) {
  .outlets-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.outlet-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  height: 100%;
}
.outlet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.outlet-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.outlet-info {
  padding: 24px;
}
.outlet-name {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}
.outlet-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #4b5563;
}
.outlet-detail i {
  color: var(--blue);
  margin-top: 3px;
}
.outlet-footer {
  padding: 16px 24px;
  background: #f9fafb;
  border-top: 1px solid #f3f4f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.map-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.map-link:hover {
  text-decoration: underline;
}
.status-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}
.status-open {
  background: #d1fae5;
  color: #065f46;
}
.status-closed {
  background: #fee2e2;
  color: #991b1b;
}
.search-outlets {
  max-width: 500px;
  margin: 0 auto 40px;
}
.search-outlets input {
  border-radius: 50px;
  padding: 12px 24px;
  border: 1.5px solid #e5e7eb;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.search-outlets input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(26, 93, 200, 0.08);
}

/* Wishlist Page */

.wishlist-page {
  padding: 40px 0;
  background: #f8fafc;
  min-height: 60vh;
}
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.wishlist-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.wishlist-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.wishlist-img-wrap {
  position: relative;
  padding-top: 130%;
  overflow: hidden;
}
.wishlist-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.wishlist-item:hover .wishlist-img {
  transform: scale(1.05);
}
.wishlist-info {
  padding: 18px;
}
.wishlist-name {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wishlist-name:hover {
  color: var(--blue);
}
.wishlist-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
}
.wishlist-actions {
  display: flex;
  gap: 10px;
}
.add-cart-btn {
  flex: 1;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.add-cart-btn:hover {
  background: var(--blue-dark);
}
.remove-wish-btn {
  width: 40px;
  background: #fee2e2;
  color: #ef4444;
  border: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.remove-wish-btn:hover {
  background: #fecaca;
}
.empty-wishlist {
  text-align: center;
  padding: 80px 20px;
}
.empty-wishlist i {
  font-size: 64px;
  color: #d1d5db;
  margin-bottom: 24px;
  display: block;
}

@media (max-width: 767px) {
  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .wishlist-info {
    padding: 12px;
  }
  .wishlist-name {
    font-size: 14px;
  }
  .wishlist-price {
    font-size: 15px;
    margin-bottom: 12px;
  }
}

@media (max-width: 575px) {
  .wishlist-grid {
    gap: 12px;
  }
  .wishlist-info {
    padding: 10px;
  }
  .wishlist-name {
    font-size: 13px;
  }
  .wishlist-price {
    font-size: 14px;
  }
  .add-cart-btn {
    font-size: 12px;
    padding: 6px;
  }
  .remove-wish-btn {
    width: 34px;
  }
}


/* Fix logo link clickable area to fit within the logo only */
.header-logo-wrap {
  width: fit-content;
  height: fit-content;
}

/* ===== CHECKOUT PAGE ===== */

.checkout-page {
  padding: 32px 0 60px;
  background: #f8fafc;
  min-height: 60vh;
}

.checkout-container {
  max-width: 1260px;
}

.checkout-page-title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
}

/* Card wrapper for each section */
.checkout-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

/* Section title with step number */
.checkout-section-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Form fields */
.checkout-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.co-required {
  color: var(--red);
}

.checkout-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.checkout-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 93, 200, 0.1);
}

.checkout-input.checkout-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.checkout-textarea {
  resize: vertical;
  min-height: 80px;
}

/* Delivery options */
.delivery-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.delivery-option {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: block;
}

.delivery-option input[type="radio"] {
  display: none;
}

.delivery-option.active,
.delivery-option:has(input:checked) {
  border-color: var(--blue);
  background: #f0f6ff;
}

.delivery-option-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.delivery-option-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.delivery-option-left > i {
  font-size: 20px;
  color: var(--blue);
}

.delivery-option-name {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.delivery-option-eta {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.delivery-option-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}

/* Payment options */
.payment-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.payment-option {
  flex: 1;
  min-width: 110px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px 12px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  display: block;
}

.payment-option input[type="radio"] {
  display: none;
}

.payment-option.active,
.payment-option:has(input:checked) {
  border-color: var(--blue);
  background: #f0f6ff;
}

.payment-option-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.payment-icon {
  font-size: 22px;
  color: var(--blue);
}

.payment-logo {
  width: 56px;
  height: 40px;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.payment-option-name {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}

/* MFS (bKash/Nagad) detail panel */
.checkout-mfs-detail {
  display: none;
  margin-top: 16px;
  padding: 16px;
  background: #f8fafc;
  border: 1.5px dashed var(--border);
  border-radius: 8px;
}

.checkout-mfs-detail.visible {
  display: block;
}

.checkout-mfs-info {
  font-size: 12.5px;
  color: #374151;
  margin-bottom: 14px;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.checkout-mfs-info i {
  color: var(--blue);
  margin-top: 2px;
  flex-shrink: 0;
}

.mfs-info-text {
  flex: 1;
  min-width: 0;
}

.mfs-info-sep {
  display: inline-block;
  margin: 0 4px;
  color: var(--muted);
}

/* Order summary items */
.checkout-order-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.checkout-order-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkout-order-img {
  width: 52px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #f3f4f6;
  flex-shrink: 0;
}

.checkout-order-info {
  flex: 1;
  min-width: 0;
}

.checkout-order-name {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-order-meta {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}

.checkout-order-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
  flex-shrink: 0;
}

.checkout-items-divider {
  height: 1px;
  background: #f3f4f6;
  margin-bottom: 16px;
}

/* Sticky summary */
.checkout-summary-sticky {
  position: sticky;
  top: 130px;
}

/* Trust badges */
.checkout-trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}

.checkout-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

.checkout-trust-item i {
  font-size: 14px;
  color: #059669;
}

/* Validation error state */
.checkout-input.co-error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.co-error-msg {
  font-size: 11px;
  color: var(--red);
  margin-top: 4px;
  display: none;
}

.co-error-msg.visible {
  display: block;
}

/* Success toast */
.checkout-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #111827;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9999;
  white-space: nowrap;
}

.checkout-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .checkout-summary-sticky {
    position: static;
  }
}

@media (max-width: 575px) {
  .checkout-card {
    padding: 18px 16px;
  }
  .payment-options {
    gap: 8px;
  }
  .payment-option {
    min-width: 80px;
    padding: 10px 6px;
  }
  .payment-logo {
    width: 44px;
    height: 32px;
  }
  .checkout-page-title {
    font-size: 18px;
  }
}

.router-link-active,
.active {
    color: #1a5dc8;
    font-weight: 500;
    text-decoration: none !important;
}
a.router-link-active,
a.active {
    text-decoration: none !important;
}
.outlets-btn.router-link-active,
.outlets-btn.active {
    color: #1a5dc8;
    text-decoration: none !important;
}