/* ==========================================
   STHUTHI FASHION STORE - CSS STYLESHEET (style.css)
   ========================================== */

:root {
  --primary-color: #e91e63;
  --primary-hover: #c2185b;
  --dark-text: #1e293b;
  --muted-text: #64748b;
  --border-light: #e2e8f0;
  --bg-light: #f8fafc;
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: #fff5f7;
  color: var(--dark-text);
  line-height: 1.5;
  padding-bottom: 70px; /* Space for bottom app nav on mobile */
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================
   1. TOP UTILITY BAR
   ========================================== */
.top-utility-bar {
  background-color: #fff;
  border-bottom: 1px solid var(--border-light);
  padding: 8px 0;
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.utility-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.utility-content span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.utility-content i {
  color: var(--primary-color);
  font-size: 13px;
}

/* ==========================================
   2. HEADER AREA
   ========================================== */
.sticky-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.store-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hamburger-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--dark-text);
  cursor: pointer;
  padding: 5px;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-icon-flower {
  color: var(--primary-color);
  font-size: 24px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--primary-color);
  line-height: 1.1;
}

.logo-subtitle {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--dark-text);
}

/* Search Box Area */
.header-center {
  flex: 1;
  max-width: 600px;
}

.search-box-wrap {
  display: flex;
  align-items: center;
  background-color: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 25px;
  padding: 3px 3px 3px 18px;
  position: relative;
}

.search-leading {
  color: var(--muted-text);
  font-size: 15px;
}

.search-box-wrap input {
  flex: 1;
  background: none;
  border: none;
  padding: 8px 12px;
  font-size: 13.5px;
  outline: none;
  color: var(--dark-text);
  font-family: var(--font-body);
}

.mic-icon {
  color: var(--primary-color);
  cursor: pointer;
  font-size: 15px;
  padding: 8px;
  margin-right: 5px;
}

.search-btn-submit {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.search-btn-submit:hover {
  background-color: var(--primary-hover);
}

/* Header Right icons */
.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-icon-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.header-icon-badge i {
  font-size: 20px;
  color: var(--dark-text);
  transition: color 0.2s;
}

.header-icon-badge:hover i {
  color: var(--primary-color);
}

.header-icon-badge .badge-count {
  position: absolute;
  top: -8px;
  right: -5px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
}

.icon-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted-text);
  margin-top: 3px;
}

.header-account-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding: 5px;
}

.header-account-menu i.caret {
  font-size: 10px;
  color: var(--muted-text);
}

/* Account Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  min-width: 180px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  margin-top: 8px;
  overflow: hidden;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  font-size: 12.5px;
  color: var(--dark-text);
  transition: background-color 0.2s;
}

.dropdown-menu a:hover {
  background-color: #fff1f2;
  color: var(--primary-color);
}

/* ==========================================
   3. CATEGORY NAVIGATION BAR
   ========================================== */
.category-navbar {
  background-color: var(--primary-color);
  padding: 0;
}

.navbar-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.nav-item-link {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  padding: 16px 28px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.2s, color 0.2s;
  display: inline-block;
  cursor: pointer;
}

.nav-item-link:hover,
.nav-item-link.active {
  background-color: var(--primary-hover);
  color: #ffffff;
}

/* ==========================================
   4. HERO CAROUSEL SLIDER
   ========================================== */
.home-hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  background-color: #f1f5f9;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.slider-slide.active {
  display: block;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.4) 60%, rgba(255,255,255,0) 100%);
  z-index: 1;
}

.slide-text-wrap {
  position: relative;
  z-index: 2;
}

.slide-badge {
  background-color: #ffe4e6;
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 12px;
}

.slide-text-wrap h2 {
  font-family: var(--font-title);
  font-size: 45px;
  font-weight: 800;
  color: var(--dark-text);
  line-height: 1.1;
  margin-bottom: 15px;
}

.slide-text-wrap p {
  font-size: 16px;
  color: var(--muted-text);
  font-weight: 500;
  margin-bottom: 25px;
}

.shop-now-btn {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 13.5px;
  font-weight: 800;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.shop-now-btn:hover {
  background-color: var(--primary-hover);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 3;
  transition: background-color 0.2s;
}

.slider-arrow:hover {
  background-color: #ffffff;
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(233, 30, 99, 0.3);
  cursor: pointer;
}

.slider-dots .dot.active {
  background-color: var(--primary-color);
  width: 20px;
  border-radius: 4px;
}

/* ==========================================
   5. BREADCRUMBS & CATALOG WRAP
   ========================================== */
.breadcrumb-container {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted-text);
}

.breadcrumb-container .active {
  color: var(--primary-color);
}

.breadcrumb-container span:hover {
  color: var(--primary-color);
}

.store-main-layout {
  display: flex;
  gap: 30px;
  margin-top: 25px;
  margin-bottom: 40px;
}

.store-sidebar {
  width: 280px;
  flex-shrink: 0;
}

/* ==========================================
   6. FILTER CARD & OPTION PANELS
   ========================================== */
.filter-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.filter-card h3 {
  font-family: var(--font-title);
  font-size: 15.5px;
  font-weight: 800;
  color: var(--dark-text);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.categories-list {
  list-style: none;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 8px;
}

.categories-list::-webkit-scrollbar {
  width: 4px;
}

.categories-list::-webkit-scrollbar-thumb {
  background-color: var(--border-light);
  border-radius: 4px;
}

.categories-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  transition: color 0.2s;
}

.categories-list li:hover,
.categories-list li.active {
  color: var(--primary-color);
  font-weight: 600;
}

.categories-list li .count {
  font-size: 11px;
  background-color: #f1f5f9;
  color: var(--muted-text);
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 600;
}

.categories-list li.active .count {
  background-color: #ffe4e6;
  color: var(--primary-color);
}

/* Accordion filter items */
.filter-group {
  border-bottom: 1px solid var(--border-light);
  padding: 15px 0;
}

.filter-group:last-of-type {
  border-bottom: none;
}

.filter-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark-text);
  cursor: pointer;
}

.filter-group-header i {
  font-size: 11px;
  color: var(--muted-text);
  transition: transform 0.25s;
}

.filter-group-content {
  display: none;
  margin-top: 12px;
}

.filter-group.expanded .filter-group-content {
  display: block;
}

.filter-group.expanded .filter-group-header i {
  transform: rotate(180deg);
}

.chk-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #475569;
  margin-bottom: 8px;
  cursor: pointer;
}

.chk-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary-color);
}

.price-slider-wrap input[type=range] {
  width: 100%;
  accent-color: var(--primary-color);
}

.color-swatches-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.color-swatch-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s;
}

.color-swatch-circle:hover {
  transform: scale(1.15);
}

.color-swatch-circle.active::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #fff;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.color-swatch-circle.circle-white.active::after {
  color: #000;
}

.color-swatch-circle.circle-plus {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  color: var(--muted-text);
  font-weight: 700;
}

.btn-clear-filters {
  flex: 1;
  background: none;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 12px;
  font-size: 12.5px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.btn-apply-filters {
  flex: 1;
  background-color: var(--primary-color);
  border: none;
  color: #fff;
  padding: 8px 12px;
  font-size: 12.5px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.btn-apply-filters:hover {
  background-color: var(--primary-hover);
}

/* ==========================================
   7. STORE CONTENT AREA & HERO BANNER
   ========================================== */
.store-content-area {
  flex: 1;
  min-width: 0;
}

.collection-hero-banner {
  background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid #ffd1d5;
}

.hero-text-box h1 {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 5px;
}

.hero-text-box p {
  font-size: 13.5px;
  color: var(--muted-text);
  font-weight: 500;
}

.hero-image-box {
  width: 250px;
  height: 120px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.hero-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sorting Filter Toolbar */
.store-toolbar-filters {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.toolbar-select {
  background: none;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dark-text);
  outline: none;
  cursor: pointer;
  background-color: #fff;
}

.toolbar-select:focus {
  border-color: var(--primary-color);
}

.view-toggle-btn {
  background: none;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--muted-text);
  cursor: pointer;
}

.view-toggle-btn.active {
  background-color: #ffe4e6;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* ==========================================
   8. PRODUCTS GRID & PREMIUM CARD DESIGN
   ========================================== */
.store-products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.product-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.card-badge-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  z-index: 2;
}

.card-wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 16px;
  color: var(--muted-text);
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}

.card-wishlist-btn:hover,
.card-wishlist-btn.active {
  color: var(--primary-color);
}

.card-image-box {
  width: 100%;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 6px;
}

.card-image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.product-card:hover .card-image-box img {
  transform: scale(1.05);
}

.card-info-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-info-box h4 {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 5px;
  height: 38px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.current-price {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 14px;
  color: var(--primary-color);
}

.original-mrp {
  font-size: 11px;
  color: var(--muted-text);
  text-decoration: line-through;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #eab308;
  margin-bottom: 12px;
}

.rating-row span {
  color: var(--muted-text);
  font-weight: 600;
}

.btn-add-to-cart {
  width: 100%;
  background: none;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 0;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: background-color 0.2s, color 0.2s;
}

.btn-add-to-cart:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* ==========================================
   9. BOTTOM TRUST BANNERS
   ========================================== */
.trust-banners-footer {
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 30px 0;
  margin-top: 30px;
}

.trust-banners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  color: var(--primary-color);
  font-size: 24px;
  background-color: #fff1f2;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trust-item h4 {
  font-family: var(--font-title);
  font-size: 13.5px;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 2px;
}

.trust-item p {
  font-size: 11px;
  color: var(--muted-text);
  font-weight: 500;
}

/* ==========================================
   10. BOTTOM APP NAVIGATION BAR
   ========================================== */
.bottom-app-navbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 15px rgba(0,0,0,0.03);
  z-index: 99;
}

.bottom-nav-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  max-width: 600px;
  margin: 0 auto;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  color: var(--muted-text);
  transition: color 0.2s;
}

.bottom-nav-item i {
  font-size: 18px;
  margin-bottom: 3px;
}

.bottom-nav-item span {
  font-size: 10px;
  font-weight: 700;
}

.bottom-nav-item.active {
  color: var(--primary-color);
}

.bottom-nav-item:hover {
  color: var(--primary-color);
}

/* ==========================================
   11. CART DRAWER OVERLAYS
   ========================================== */
.cart-drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1000;
}

.cart-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -350px;
  width: 350px;
  background-color: #fff;
  z-index: 1001;
  box-shadow: -5px 0 25px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h3 {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
}

.close-drawer-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--muted-text);
}

.cart-drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border-light);
  background-color: #fafafa;
}

.cart-item-row {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.cart-item-row img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.cart-item-row img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h5 {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 3px;
}

.cart-item-info span {
  font-size: 11.5px;
  color: var(--primary-color);
  font-weight: 700;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.cart-item-qty button {
  background: #f1f5f9;
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 11px;
}

.cart-item-qty span {
  font-size: 12px;
  color: var(--dark-text);
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
}

/* ==========================================
   12. RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1200px) {
  .store-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .store-main-layout {
    flex-direction: column;
  }
  .store-sidebar {
    width: 100%;
  }
  .store-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-banners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .scroll-arrow-btn {
    display: none !important;
  }

  body {
    padding-bottom: 60px; /* Leave space for bottom nav */
  }
  .bottom-app-navbar {
    display: block !important;
  }
  .icon-label {
    display: none !important;
  }
  .header-account-menu span {
    display: none !important;
  }
  .mobile-search-trigger {
    display: flex !important;
  }
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .category-navbar {
    display: none !important;
  }
  
  .header-container {
    padding: 10px 15px;
  }
  .header-center {
    display: none;
  }
  .store-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-banners-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .trending-row-mobile {
    display: flex !important;
    gap: 15px !important;
    overflow-x: auto !important;
    padding-bottom: 10px !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }
  .trending-row-mobile::-webkit-scrollbar {
    display: none !important;
  }
  .trending-row-mobile .product-card {
    flex: 0 0 160px !important;
    max-width: 160px !important;
    margin: 0 !important;
  }
  .product-card .btn-add-to-cart {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .store-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .collection-hero-banner {
    flex-direction: column;
    text-align: center;
  }
  .hero-image-box {
    margin-top: 15px;
  }
}


/* ==========================================
   13. PRODUCT DETAIL PAGE OVERLAY STYLING
   ========================================== */
.product-detail-layout {
  background: #ffffff;
}

.thumb-box {
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 4px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.thumb-box:hover,
.thumb-box.active {
  border-color: var(--primary-color) !important;
}

.size-swatch {
  border: 1px solid var(--border-light);
  color: var(--muted-text);
  padding: 6px 16px;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
  background-color: #fff;
}

.size-swatch:hover,
.size-swatch.active {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.product-detail-layout ul#detail-highlights-list {
  padding-left: 20px;
  margin-top: 10px;
}

.product-detail-layout ul#detail-highlights-list li {
  font-size: 13px;


/* ==========================================
   13. PRODUCT DETAIL PAGE OVERLAY STYLING
   ========================================== */
.product-detail-layout {
  background: #ffffff;
}

.thumb-box {
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 4px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.thumb-box:hover,
.thumb-box.active {
  border-color: var(--primary-color) !important;
}

.size-swatch {
  border: 1px solid var(--border-light);
  color: var(--muted-text);
  padding: 6px 16px;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
  background-color: #fff;
}

.size-swatch:hover,
.size-swatch.active {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.product-detail-layout ul#detail-highlights-list {
  padding-left: 20px;
  margin-top: 10px;
}

.product-detail-layout ul#detail-highlights-list li {
  font-size: 13px;
  color: var(--muted-text);
  margin-bottom: 6px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .product-detail-layout {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}

/* iOS Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: .3s;
  border-radius: 22px;
}
.switch-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}
.switch input:checked + .switch-slider {
  background-color: #2ecc71;
}
.switch input:checked + .switch-slider:before {
  transform: translateX(20px);
}

/* Category Hero Banner Adjustments */
#hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 4.5 / 1;
}

@media (max-width: 768px) {
  #hero-banner-img {
    aspect-ratio: 2.5 / 1 !important;
  }
}

