/* C:\Users\ASUS\.gemini\antigravity\scratch\the-pretty-picks\css\style.css */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary: #FF3E6C;          /* Signature Pink */
  --primary-hover: #e01b4c;
  --secondary: #D85C70;        /* Muted Rose Pink */
  --accent: #FF8DA1;           /* Accent Pink */
  --bg-main: #FFF0F2;          /* Soft light pink background */
  --bg-card: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-muted: #555555;
  --border-light: #FFE2E6;     /* Soft pink border */
  --border-dark: #FFC0CB;      /* Pink border */
  --shadow-sm: 0 4px 12px rgba(216, 92, 112, 0.08);
  --shadow-md: 0 8px 24px rgba(216, 92, 112, 0.12);
  --shadow-lg: 0 16px 36px rgba(216, 92, 112, 0.18);
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --nav-height: 80px;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
html {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

button, input, select {
  font-family: inherit;
  outline: none;
}

/* Glassmorphism Classes */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1025px) {
  .container {
    padding: 0 40px;
  }
}

/* Cap container width for form and settings pages */
.auth-section .container,
.account-section .container,
.checkout-section .container {
  max-width: 1280px;
}

/* Header & Navigation */
body {
  padding-top: 120px;
}

/* Homepage inherits standard header-height padding-top */


@media (max-width: 768px) {
  body {
    padding-top: 75px;
  }
  .main-header {
    position: absolute !important;
  }
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-top-row {
  height: 75px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
}

.header-top-row .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-search-form {
  flex-grow: 1;
  max-width: 900px;
  margin: 0 40px;
}

.header-search-wrapper {
  display: flex;
  align-items: center;
  background: #F5F5F5;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid transparent;
  transition: var(--transition-smooth);
}

.header-search-wrapper:focus-within {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 62, 108, 0.1);
}

.header-search-wrapper i {
  color: var(--text-muted);
  margin-right: 12px;
  font-size: 15px;
}

.header-search-wrapper input {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  color: var(--text-dark);
}

.header-bottom-row {
  height: 45px;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
}

.header-bottom-row nav {
  width: 100%;
}

.header-bottom-row nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.header-bottom-row nav ul li a {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 12px 0;
  display: inline-block;
  color: var(--text-dark);
  position: relative;
  transition: var(--transition-smooth);
}

.header-bottom-row nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

.header-bottom-row nav ul li a:hover::after,
.header-bottom-row nav ul li a.active::after {
  width: 100%;
}

.header-bottom-row nav ul li a:hover,
.header-bottom-row nav ul li a.active {
  color: var(--primary);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(255, 62, 108, 0.3);
}

/* SVG Logo Hanger & Dress silhouette */
.logo-icon::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  top: 8px;
}

.logo-icon::after {
  content: '';
  position: absolute;
  bottom: 8px;
  width: 12px;
  height: 14px;
  background: white;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-dark);
}

.logo-text span {
  color: var(--primary);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

nav ul a {
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 8px 0;
}

nav ul a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

nav ul a:hover::after,
nav ul a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  font-size: 20px;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-btn:hover {
  color: var(--primary);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 240, 242, 0.4) 0%, rgba(255, 208, 216, 0.5) 100%);
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.95;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-content {
  max-width: 550px;
}

.brand-badge {
  display: inline-block;
  background-color: rgba(255, 62, 108, 0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero-title span {
  color: var(--primary);
  font-style: italic;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.btn {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(255, 62, 108, 0.25);
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 62, 108, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 8px 20px rgba(255, 62, 108, 0.2);
}

/* Section Common */
.section {
  padding: 50px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px;
}

.section-subtitle {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--text-dark);
}

/* Category Grid (Horizontal Scrollable) */
.category-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 20px 4px;
  scrollbar-width: none; /* Firefox */
}

.category-grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.category-card {
  flex: 0 0 380px; /* Fixed width on desktop to naturally display peeking overflow and scroll */
  scroll-snap-align: start;
  position: relative;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

/* Category Carousel Navigation Buttons */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--border-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  z-index: 10;
  transition: var(--transition-smooth);
}

.carousel-nav-btn:hover {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-50%) scale(1.08);
}

.carousel-nav-btn.prev {
  left: -23px;
}

.carousel-nav-btn.next {
  right: -23px;
}

@media (max-width: 1024px) {
  .carousel-nav-btn {
    display: none; /* Hide buttons on tablets and mobile screens */
  }
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.category-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(26,2,8,0.7) 100%);
  z-index: 1;
}

.category-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  z-index: 2;
  color: white;
}

.category-card-title {
  font-family: var(--font-serif);
  font-size: 32px;
  margin-bottom: 8px;
}

.category-count {
  font-size: 14px;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.category-card:hover img {
  transform: scale(1.06);
}

/* Products Layout with Filters */
.products-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

/* Sidebar Filters */
.filter-sidebar {
  padding: 30px;
  border-radius: 20px;
  align-self: start;
}

.filter-title {
  font-family: var(--font-serif);
  font-size: 22px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--border-light);
}

.filter-group {
  margin-bottom: 30px;
}

.filter-group-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-list {
  list-style: none;
}

.filter-item {
  margin-bottom: 12px;
}

.filter-btn {
  background: none;
  border: none;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  color: var(--primary);
  background-color: var(--bg-main);
  padding-left: 18px;
}

.filter-btn.active {
  color: var(--primary);
  background-color: var(--bg-main);
  font-weight: 600;
  padding-left: 18px;
}

.filter-btn span.badge {
  background-color: var(--border-light);
  color: var(--text-muted);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.filter-btn.active span.badge {
  background-color: var(--primary);
  color: white;
}

/* Sidebar Accordion Styles */
.category-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.category-row .filter-btn {
  flex-grow: 1;
}

.sidebar-accordion-toggle {
  background: none;
  border: none;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.sidebar-accordion-toggle:hover {
  color: var(--primary);
}

.sidebar-accordion-item.active .sidebar-accordion-toggle i {
  transform: rotate(180deg);
  color: var(--primary);
}

.sidebar-accordion-content {
  list-style: none;
  padding: 4px 0 12px 16px;
  margin: 6px 0 8px 14px;
  border-left: 2.5px solid var(--border-light);
}

.sidebar-accordion-item.active .sidebar-accordion-content {
  border-left-color: var(--primary);
}

.sidebar-accordion-content .sub-filter-item {
  margin-bottom: 6px;
}

.sidebar-accordion-content .sub-filter-item:last-child {
  margin-bottom: 0;
}

.sidebar-accordion-content .filter-btn {
  font-size: 13px;
  padding: 8px 12px;
}

.mobile-filter-apply-wrapper {
  display: none; /* Hidden on desktop */
}

/* Product Cards Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (min-width: 1440px) {
  .product-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 1750px) {
  .product-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.product-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.product-image-container {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 30px;
  z-index: 2;
}

.product-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(360deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  transform: translateY(100%);
  transition: var(--transition-smooth);
  z-index: 2;
}

.product-image-container:hover .product-actions {
  transform: translateY(0);
}

.product-image-container:hover img {
  transform: scale(1.05);
}

.action-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: white;
  color: var(--text-dark);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
}

.action-btn:hover {
  background-color: var(--primary);
  color: white;
}

.product-info {
  padding: 20px;
}

.product-cat {
  font-size: 12px;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
}

.product-price .original {
  font-size: 13px;
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 6px;
}

.product-rating {
  font-size: 12px;
  color: #FFA41C;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* Product Detail Styles */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-image {
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.thumb-img {
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
}

.thumb-img.active, .thumb-img:hover {
  border-color: var(--primary);
}

.thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detail-title {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.detail-price-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.detail-rating-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.detail-rating-container .product-rating {
  font-size: 14px;
  color: var(--secondary);
  display: flex;
  gap: 3px;
  white-space: nowrap;
}

.detail-rating-container .rating-text {
  color: var(--text-muted);
  font-size: 11px;
  margin-top: 2px;
  font-family: var(--font-sans);
  font-weight: 500;
}

.detail-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
}

.detail-desc {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.option-group {
  margin-bottom: 24px;
}

.option-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.size-selector {
  display: flex;
  gap: 12px;
}

.size-btn {
  min-width: 44px;
  width: auto;
  height: 44px;
  border-radius: 8px;
  border: 1.5px solid var(--border-light);
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0 14px;
  transition: all 0.2s ease;
}

.size-btn.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(255, 62, 108, 0.25);
}

.size-btn:hover:not(:disabled):not(.active) {
  border-color: var(--primary);
  color: var(--primary);
}

.size-text-item {
  cursor: pointer;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s ease;
  font-size: 15px;
  padding: 0 4px;
  display: inline-block;
}

.size-text-item.active {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

.size-text-item:hover {
  color: var(--primary);
}

.size-text-item.out-of-stock {
  color: var(--text-muted);
  text-decoration: line-through;
  cursor: not-allowed;
  opacity: 0.5;
}

.purchase-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 0;
}

.purchase-actions .btn {
  flex: 2;
  height: 52px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.purchase-actions .detail-share-btn {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
  flex: none !important;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-dark);
  border-radius: 50px;
  padding: 4px;
  background: white;
}

.qty-btn {
  width: 38px;
  height: 38px;
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-val {
  width: 40px;
  text-align: center;
  font-weight: 600;
}

.shipping-info {
  padding-top: 30px;
  border-top: 1.5px solid var(--border-light);
}

.shipping-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.shipping-item i {
  color: var(--primary);
  font-size: 16px;
}

/* Modal Styling */
.quickview-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.quickview-modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 2, 8, 0.4);
  backdrop-filter: blur(8px);
}

.modal-content-wrapper {
  position: relative;
  width: 90%;
  max-width: 960px;
  border-radius: 24px;
  overflow: hidden;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  padding: 40px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  z-index: 5;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background-color: var(--primary);
  color: white;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  height: 100%;
  background: white;
  box-shadow: var(--shadow-lg);
  z-index: 11000;
  transform: translateX(100%);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-header {
  padding: 24px;
  border-bottom: 1.5px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-family: var(--font-serif);
  font-size: 22px;
}

.cart-close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.cart-item img {
  width: 70px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cart-item-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.cart-item-price {
  color: var(--primary);
  font-weight: 600;
}

.cart-footer {
  padding: 24px;
  border-top: 1.5px solid var(--border-light);
  background-color: var(--bg-main);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.cart-subtotal-val {
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
}

/* Navigation Dropdowns */
.has-dropdown {
  position: relative;
}

.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.has-dropdown > a i {
  font-size: 11px;
  transition: var(--transition-smooth);
}

.has-dropdown:hover > a i {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  padding: 10px 0;
  list-style: none;
  display: none;
  z-index: 1000;
  border: 1px solid var(--border-light);
  margin-top: 8px;
}

.dropdown li a {
  display: block;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.dropdown li a:hover {
  background-color: var(--bg-main);
  color: var(--primary);
  padding-left: 24px;
}

.has-dropdown:hover .dropdown {
  display: block;
}

/* Mobile Dropdowns */
@media (max-width: 768px) {
  .dropdown {
    position: static;
    display: block;
    box-shadow: none;
    border: none;
    padding: 8px 0 0 16px;
    margin-top: 4px;
    min-width: unset;
    background: transparent;
  }
  
  .dropdown li a {
    padding: 6px 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
  }
  
  .dropdown li a:hover {
    color: var(--primary);
    padding-left: 4px;
  }
  
  .has-dropdown > a i {
    display: none; /* Hide chevron on mobile since list is flat and open */
  }
}

/* Footer Section */
footer {
  background-color: #1A1A1A;
  color: white;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 26px;
  color: white;
}

.footer-logo-text span {
  color: var(--primary);
}

.footer-about {
  color: #AAAAAA;
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2D2D2D;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background-color: var(--primary);
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 18px;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #AAAAAA;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact-info {
  font-size: 14px;
  color: #AAAAAA;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--primary);
  font-size: 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #2D2D2D;
  font-size: 13px;
  color: #777777;
}

/* Catalog Controls Container */
.catalog-controls {
  display: none; /* Hidden on desktop since search is in header and filters are in sidebar */
  padding: 16px 24px;
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 45px;
  box-shadow: var(--shadow-sm);
}

.search-bar-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border-light);
  width: 100%;
  max-width: 320px;
  transition: var(--transition-smooth);
}

.search-bar-wrapper:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--border-light);
}

.search-bar-wrapper i {
  color: var(--text-muted);
}

.search-bar-wrapper input {
  border: none;
  background: none;
  font-size: 14px;
  width: 100%;
  font-weight: 500;
}

.filter-sort-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.filter-trigger-btn {
  display: none; /* Hidden on desktop, filters are in sidebar */
}

/* Hide Quick View / Product View button on all product cards */
.quick-view-btn {
  display: none !important;
}

/* Custom Styled Select Dropdown Menu */
.sort-select-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-smooth);
}
.sort-select-wrapper:hover {
  border-color: var(--primary);
  background-color: var(--bg-main);
}
.sort-select-wrapper:focus-within {
  border-color: #7e858a;
}

/* Hide native select visually but keep it focusable and functional */
.sort-select-wrapper select.hidden-native-select {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: -1;
}

.custom-select-trigger {
  padding: 8px 32px 8px 16px;
  font-size: 13px;
  color: #404040;
  font-weight: 600;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 250px;
  overflow-y: auto;
}

.sort-select-wrapper.active {
  z-index: 1010 !important;
}

.sort-select-wrapper.active .custom-select-options {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.custom-select-option {
  padding: 10px 16px;
  font-size: 13px;
  color: #404040;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-select-option:hover {
  background-color: var(--bg-main);
  color: var(--primary);
}

.custom-select-option.selected {
  background-color: var(--bg-main);
  color: var(--primary);
  font-weight: 700;
}

.custom-select-option.selected::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
}

.sort-select-wrapper select {
  background: transparent;
  border: none;
  padding: 8px 32px 8px 16px;
  font-size: 13px;
  color: #404040;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

/* Custom select arrow */
.sort-select-wrapper::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 12px;
  color: #7e858a;
  pointer-events: none;
}

.sort-select-wrapper.has-value {
  background-color: var(--bg-main) !important;
  border-color: var(--primary) !important;
}
.sort-select-wrapper.has-value select {
  color: var(--primary) !important;
  font-weight: 600 !important;
}
.sort-select-wrapper.has-value .custom-select-trigger {
  color: var(--primary) !important;
  font-weight: 600 !important;
}
.sort-select-wrapper.has-value::after {
  color: var(--primary) !important;
}

.results-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

/* Mobile Filter Drawer Overlay */
.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 2, 8, 0.4);
  backdrop-filter: blur(8px);
  z-index: 10999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}
.filter-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.filter-close-btn {
  display: none;
}

/* Responsive Styles */
.show-mobile, .mobile-filter-trigger-btn {
  display: none !important;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 44px;
  }
  .products-wrapper {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .products-wrapper main {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .noon-horizontal-filters {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }
  .filter-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    z-index: 11000;
    background: #ffffff;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
    overflow: hidden !important;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-right: 1px solid var(--border-light);
    border-radius: 0 20px 20px 0;
  }
  .filter-sidebar-scrollable {
    flex: 1;
    overflow-y: auto;
    padding: 30px 30px 95px 30px;
    width: 100%;
  }
  .filter-sidebar.active {
    left: 0;
  }
  .mobile-filter-apply-wrapper {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 30px;
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    z-index: 10;
  }
  .filter-apply-btn {
    width: 100%;
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .filter-apply-btn:hover {
    background-color: var(--primary-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
  }
  .filter-close-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 24px;
    right: 20px;
    background: var(--bg-main);
    border: none;
    font-size: 20px;
    color: var(--primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition-smooth);
    z-index: 15;
  }
  .filter-close-btn:hover {
    background-color: var(--primary);
    color: white;
  }
  .catalog-controls {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between !important;
    align-items: center;
    gap: 15px;
    padding: 12px 16px;
    margin-bottom: 24px;
  }
  .filter-trigger-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1.5px solid var(--border-light);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
  }
  .filter-trigger-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
  }
  .mobile-filter-trigger-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1.5px solid var(--border-light);
    color: var(--text-dark);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
  }
  .mobile-filter-trigger-btn:hover {
    background: var(--bg-main);
    border-color: var(--primary);
    color: var(--primary);
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-actions {
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
  }
  .action-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-bg {
    display: block;
    width: 100%;
    left: 0;
    clip-path: none;
    opacity: 0.25;
  }
  .hero-content {
    margin: 0 auto;
  }
  .category-grid {
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: -20px;
    margin-right: -20px;
  }
  .category-card {
    flex: 0 0 290px;
    height: 380px;
  }
  .category-card-title {
    font-size: 22px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo-text {
    font-size: 18px !important;
    white-space: nowrap !important;
  }
  .header-search-form {
    display: none !important;
  }
  .header-search-wrapper {
    padding: 6px 12px !important;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  nav {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    width: 80%;
    height: calc(100vh - var(--nav-height));
    background: var(--bg-main);
    z-index: 999;
    transition: var(--transition-smooth);
    padding: 40px;
    box-shadow: var(--shadow-lg);
  }
  nav.active {
    left: 0;
  }
  nav ul {
    flex-direction: column;
    gap: 24px;
  }
  .menu-toggle {
    display: block;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
  }
  .modal-content-wrapper {
    max-height: 90vh;
    overflow-y: auto;
    padding: 20px;
    width: 95%;
  }
  .hide-mobile {
    display: none !important;
  }
  .show-mobile {
    display: block !important;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-image-container {
    height: 240px;
  }
  .product-info {
    padding: 10px;
  }
  .product-title {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .product-price {
    font-size: 13px;
  }
  .product-price .original {
    font-size: 10px;
    margin-left: 2px;
  }
  .product-cat {
    font-size: 10px;
    margin-bottom: 4px;
  }
  .product-rating {
    font-size: 10px;
  }
  .cart-drawer {
    width: 100%;
    max-width: 100vw;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 32px;
  }
}

/* Hide Search features, Results Count, and Header Search Icon */
.search-bar-wrapper {
  display: none !important;
}

.results-count {
  display: none !important;
}

#search-btn {
  display: none !important;
}

.catalog-controls {
  justify-content: flex-end !important;
}

/* Color Swatch Options CSS */
.color-swatch-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border-dark);
  padding: 2px;
  background: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.color-swatch-btn:hover {
  transform: scale(1.1);
  border-color: var(--primary);
}

.color-swatch-btn.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 62, 108, 0.2);
}

.color-swatch-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Megamenu Styles */
.megamenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  box-shadow: var(--shadow-md);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  padding: 24px;
  display: none;
  z-index: 1100;
  min-width: 480px;
  margin-top: 1px;
}

.has-dropdown:hover .megamenu {
  display: block;
}

.megamenu-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.megamenu-col {
  text-align: left;
}

.megamenu-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  list-style: none;
}

.megamenu-col ul li a {
  font-size: 13px !important;
  text-transform: none !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  padding: 4px 0 !important;
  color: var(--text-muted) !important;
}

.megamenu-col ul li a::after {
  display: none !important;
}

.megamenu-col ul li a:hover {
  color: var(--primary) !important;
  padding-left: 4px !important;
}

.megamenu-title {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 6px;
  font-weight: 700;
}

.megamenu-promo {
  background: var(--bg-main);
  padding: 16px;
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.megamenu-promo h5 {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 4px;
  font-weight: 700;
}

.megamenu-promo p {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

.promo-btn {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff !important;
  background: var(--primary);
  padding: 6px 14px;
  border-radius: 4px;
}

.promo-btn::after {
  display: none !important;
}

.promo-btn:hover {
  background: var(--primary-hover);
}

/* Mobile Sidebar Navigation Drawer */
.mobile-nav-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 11000;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border-light);
}

.mobile-nav-sidebar.active {
  left: 0;
}

.mobile-nav-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-main);
}

.mobile-nav-close {
  background: var(--primary);
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.mobile-nav-close:hover {
  background: var(--primary-hover);
  transform: rotate(90deg);
}

.mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.mobile-nav-body > ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.mobile-nav-body > ul > li {
  width: 100%;
}

.mobile-nav-body > ul > li > a,
.mobile-nav-body > ul > li > .mobile-accordion-header > a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  padding: 6px 0;
  text-align: left;
}

.mobile-nav-body ul li a::after {
  display: none !important;
}

.mobile-nav-body ul li a.active {
  color: var(--primary);
}

.mobile-cat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-subcat-list {
  list-style: none;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 1.5px solid var(--border-light);
  margin-left: 4px;
  margin-top: 4px;
  align-items: flex-start;
}

.mobile-subcat-list li a {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--text-muted) !important;
  padding: 2px 0 !important;
}

.mobile-divider {
  height: 1px;
  background-color: var(--border-light);
  margin: 10px 0;
}

/* Mobile Search Drawer */
.mobile-search-bar-drawer {
  position: absolute;
  top: 75px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  z-index: 999;
}

.mobile-search-bar-drawer.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-search-form {
  display: flex;
  align-items: center;
  background: #F5F5F5;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid transparent;
}

.mobile-search-form:focus-within {
  border-color: var(--primary);
  background: #ffffff;
}

.mobile-search-form input {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
  outline: none;
  color: var(--text-dark);
}

.mobile-search-submit {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 16px;
}

/* Mobile Nav Accordion Styles */
.mobile-accordion {
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0;
}

.mobile-accordion li {
  width: 100%;
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu-link {
  display: block;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: var(--transition-smooth);
}

.mobile-menu-link::after {
  display: none !important; /* Remove any underlines */
}

.mobile-menu-link:hover, .mobile-menu-link.active {
  color: var(--primary);
}

.mobile-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mobile-accordion-header .mobile-menu-link {
  flex-grow: 1;
}

.mobile-accordion-toggle {
  background: none;
  border: none;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.mobile-accordion-toggle i {
  display: inline-block !important;
  transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-accordion-toggle:hover {
  color: var(--primary);
  background-color: var(--bg-main);
  border-radius: 4px;
}

.mobile-accordion-item.active .mobile-accordion-toggle i {
  transform: rotate(180deg);
  color: var(--primary);
}

.mobile-accordion-item.active > .mobile-menu-link,
.mobile-accordion-item.active > .mobile-accordion-header .mobile-menu-link {
  color: var(--primary);
  font-weight: 700;
}

.mobile-accordion-content {
  list-style: none;
  padding: 4px 0 12px 20px;
  margin: 8px 0 8px 8px;
  display: none;
  border-left: 2px solid var(--primary);
}

.mobile-accordion-item.active .mobile-accordion-content {
  display: block;
}

.mobile-submenu-link {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-muted);
  text-align: left;
  transition: var(--transition-smooth);
}

.mobile-submenu-link::after {
  display: none !important;
}

.mobile-submenu-link:hover, .mobile-submenu-link.active {
  color: var(--primary);
  padding-left: 6px;
  font-weight: 600;
}

/* ==========================================
   Ambraee.com Inspired Front-End UI Overrides
   ========================================== */

/* Main Colors & Background */
body {
  background-color: var(--bg-main) !important;
  color: var(--text-dark) !important;
}

/* Header Top Row */
.header-top-row {
  background-color: #ffffff !important;
  border-bottom: 1px solid var(--border-light) !important;
}

/* Logo styling */
.header-top-row .logo-text {
  color: var(--text-dark) !important;
}
.header-top-row .logo-text span {
  color: var(--primary) !important;
}
.header-top-row .logo-icon {
  background: var(--primary) !important;
}
.header-top-row .logo-icon::before {
  border-color: #ffffff !important;
}
.header-top-row .logo-icon::after {
  background: #ffffff !important;
}

/* Action items inside header */
.header-top-row .nav-actions .nav-btn {
  color: var(--text-dark) !important;
}
.header-top-row .nav-actions .nav-btn:hover {
  background-color: rgba(255, 62, 108, 0.05);
}
.header-top-row .nav-actions #cart-btn {
  color: var(--text-dark) !important;
}
.header-top-row .nav-actions #cart-badge {
  background-color: var(--primary) !important;
  color: #ffffff !important;
}

/* Bottom header nav - Clean white */
.header-bottom-row {
  background: #ffffff !important;
  border-bottom: 1px solid var(--border-light) !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02) !important;
}
.header-bottom-row nav ul a {
  color: var(--text-dark) !important;
  font-weight: 500 !important;
  letter-spacing: 1px;
}
.header-bottom-row nav ul a:hover,
.header-bottom-row nav ul a.active {
  color: var(--primary) !important;
}

/* Category Dropdown Menu */
.category-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 1000;
}
.has-dropdown {
  position: relative;
}
.has-dropdown:hover .category-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.category-dropdown ul {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
}
.category-dropdown ul li {
  width: 100%;
}
.category-dropdown ul li a {
  display: block !important;
  width: 100%;
  padding: 8px 24px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: var(--text-dark) !important;
  text-transform: uppercase !important;
  transition: all 0.2s ease !important;
  text-align: left;
  letter-spacing: 0.5px !important;
}
.category-dropdown ul li a::after {
  display: none !important;
}
.category-dropdown ul li a:hover {
  background-color: var(--bg-main) !important;
  color: var(--primary) !important;
}

/* Sidebar Subcategory List Filters styling */
.sidebar-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}
.sidebar-header-row .filter-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  text-transform: uppercase;
}
.clear-filters-link {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
}
.clear-filters-link:hover {
  background-color: rgba(255, 62, 108, 0.05);
}

/* Horizontal Filters Bar */
.noon-horizontal-filters {
  display: flex;
  align-items: center;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin-top: 12px;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 100;
}
.noon-filter-scroll-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
}
.noon-dropdown-filter {
  position: relative;
  display: inline-block;
}
.noon-dropdown-filter .dropdown-trigger {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.noon-dropdown-filter.has-value .dropdown-trigger {
  background-color: var(--bg-main) !important;
  border-color: var(--primary) !important;
  color: var(--primary) !important;
  font-weight: 600 !important;
}
.noon-dropdown-filter .dropdown-trigger:hover {
  border-color: var(--primary);
  background-color: var(--bg-main);
}
.noon-dropdown-filter .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  min-width: 160px;
  display: none;
  z-index: 100;
}
.noon-dropdown-filter.active .dropdown-menu {
  display: block;
}
.noon-dropdown-filter .dropdown-item {
  width: 100%;
  padding: 8px 12px;
  font-size: 13px;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}
.noon-dropdown-filter .dropdown-item:hover {
  background-color: var(--bg-main);
  color: var(--primary);
}

/* Active Chips */
.noon-active-chips-container {
  flex-grow: 1;
  overflow-x: auto;
  scrollbar-width: none;
}
.noon-active-chips-container::-webkit-scrollbar {
  display: none;
}
.noon-active-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.noon-filter-chip {
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.noon-filter-chip i {
  cursor: pointer;
  font-size: 10px;
  color: var(--text-muted);
}
.noon-filter-chip i:hover {
  color: #c02942;
}

/* Sort and Count */
.noon-sort-count-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.noon-sort-count-wrapper select {
  border: 1px solid var(--border-dark);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 4px;
  background-color: #ffffff;
  cursor: pointer;
}
.noon-sort-count-wrapper select:hover {
  border-color: var(--primary);
}
.noon-sort-count-wrapper .results-count {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

/* Floating Wishlist Button on Product Cards */
.product-card .wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}
.product-card .wishlist-btn:hover {
  transform: scale(1.1);
  color: var(--primary);
  border-color: var(--border-dark);
}
.product-card .wishlist-btn .fa-solid {
  color: var(--primary);
}

/* Color dots on product cards */
.product-color-dots {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: flex;
  gap: 4px;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 4px 6px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  z-index: 9;
}
.color-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: inline-block;
  cursor: pointer;
}

/* Ambraee Elegant Slideshow Hero */
.hero-slider-section {
  position: relative;
  height: 520px; /* Compact height for modern luxury feel */
  overflow: hidden;
  background-color: #1a1a1a;
}
.hero-slides-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Neutral overlay for premium photo contrast */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 3;
}
.hero-slider-section .container {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 4;
}
.hero-slider-content {
  max-width: 600px;
  color: #ffffff;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 20px;
}
.hero-slider-content .brand-badge {
  background-color: transparent;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.15em;
  font-size: 10px;
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 0; /* Sharp corners */
  display: inline-block;
}
.hero-slider-content .hero-title {
  font-size: 48px; /* Clean classic size */
  font-family: var(--font-serif);
  color: #ffffff !important;
  margin-top: 18px;
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 400;
}
.hero-slider-content .hero-desc {
  font-size: 15px; /* Compact and readable */
  color: rgba(255, 255, 255, 0.85) !important;
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.hero-slider-content .btn {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 12px 30px;
  border-radius: 0; /* Modern sharp Zara style */
  font-size: 13px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.hero-slider-content .btn:hover {
  background-color: transparent;
  color: #ffffff !important;
  transform: none;
}
.hero-slider-content .btn-outline {
  border-color: rgba(255, 255, 255, 0.8) !important;
  color: #ffffff !important;
  background: transparent !important;
}
.hero-slider-content .btn-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}

/* Slider Controls */
.slider-control-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 0;
  background-color: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 24px;
  transition: all 0.3s ease;
}
.slider-control-btn:hover {
  color: #ffffff;
  background-color: transparent;
}
.slider-control-btn.prev {
  left: 20px;
}
.slider-control-btn.next {
  right: 20px;
}

/* Slider Dots Indicators */
.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-indicator-dot:hover {
  background-color: rgba(255, 255, 255, 0.7);
}
.slider-indicator-dot.active {
  background-color: #ffffff;
  transform: scale(1.3);
}

/* Category Slider Elegant Cards */
.noon-cat-circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
}
.noon-cat-circle-card:hover {
  transform: translateY(-5px);
}
.noon-cat-circle-image-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  background-color: #ffffff;
}
.noon-cat-circle-card:hover .noon-cat-circle-image-wrapper {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.noon-cat-circle-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.noon-cat-circle-card:hover .noon-cat-circle-image-wrapper img {
  transform: scale(1.1);
}
.noon-cat-circle-title {
  margin-top: 15px;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

/* Elegant product card updates */
.product-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-dark);
}
.product-card .product-title a {
  font-family: var(--font-sans);
  color: var(--text-dark) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
}
.product-card .product-title a:hover {
  color: var(--primary) !important;
}
.product-card .product-badge {
  background-color: var(--primary) !important;
  color: #ffffff !important;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 4px;
}

/* Elegant price layout on homepage */
.noon-price-current {
  color: var(--primary) !important;
  font-family: var(--font-sans);
  font-size: 17px !important;
  font-weight: 700 !important;
}
.noon-price-original {
  font-family: var(--font-sans);
  color: var(--text-muted) !important;
  font-size: 13px !important;
}
.noon-price-discount {
  color: var(--secondary) !important;
  font-family: var(--font-sans);
  font-size: 12px !important;
  font-weight: 600 !important;
}

/* Ratings pill on cards */
.noon-rating-pill {
  background-color: var(--bg-main) !important;
  color: var(--primary) !important;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 2px 6px !important;
}

/* Features Banner bottom of homepage */
.noon-features-banner {
  background-color: #ffffff !important;
  color: var(--text-dark) !important;
  border-top: 1px solid var(--border-light) !important;
  border-bottom: 1px solid var(--border-light) !important;
}
.noon-features-banner i {
  color: var(--primary) !important;
  text-shadow: none !important;
}

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.filter-separator {
  display: none;
}

@media (max-width: 992px) {
  .noon-horizontal-filters {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 8px;
  }
  .noon-filter-scroll-wrapper {
    display: flex;
    white-space: nowrap;
    gap: 8px;
    padding: 4px 0 12px 0;
    align-items: center;
    width: 100%;
    min-width: 0;
  }
  .noon-filter-scroll-wrapper > * {
    flex-shrink: 0 !important;
  }
  .noon-filter-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }
  .filter-separator {
    display: inline-block;
    width: 1.5px;
    height: 20px;
    background-color: var(--border-light);
    margin: 0 4px;
    flex-shrink: 0;
  }
  .noon-sort-count-wrapper {
    justify-content: space-between;
  }
  .noon-active-chips-container {
    min-width: 0;
    width: 100%;
  }
  .noon-catalog-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 8px !important;
  }
  .noon-results-title {
    font-size: 14px !important;
    line-height: 1.4;
    word-break: break-word;
  }
}
@media (max-width: 768px) {
  .hero-slider-section {
    height: 380px; /* Elegant compact height for mobile */
  }
  .hero-slider-content {
    padding: 0 10px;
  }
  .hero-slider-content .hero-title {
    font-size: 32px;
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .hero-slider-content .hero-desc {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .slider-control-btn {
    display: none; /* Hide arrows on mobile, use dots/swipe instead */
  }
}

/* Category Banners Grid (Box and Fill) */
.category-banners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  width: 100%;
  margin-top: 40px;
}
.category-banners-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.category-banners-grid.cols-1 {
  grid-template-columns: 1fr;
}

.category-banner-card {
  display: block;
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.category-banner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.category-banner-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.category-banner-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.category-banner-card:hover img {
  transform: scale(1.05);
}

.category-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 62, 108, 0) 40%, rgba(255, 62, 108, 0.75) 100%);
  transition: var(--transition-smooth);
}

.category-banner-card:hover .category-banner-overlay {
  background: linear-gradient(180deg, rgba(255, 62, 108, 0.1) 30%, rgba(255, 62, 108, 0.85) 100%);
}

.category-banner-content {
  position: absolute;
  bottom: 35px;
  left: 30px;
  right: 30px;
  z-index: 2;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-banner-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-family: var(--font-sans);
}

.category-banner-title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
  letter-spacing: 0.5px;
}

.category-banner-btn {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  transition: var(--transition-smooth);
}

.category-banner-card:hover .category-banner-btn {
  color: #ffffff;
  gap: 12px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .category-banners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .category-banners-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-banners-grid.cols-1 {
    grid-template-columns: 1fr;
  }
  .category-banner-card {
    height: 340px;
  }
  .category-banner-title {
    font-size: 22px;
  }
  .category-banner-subtitle {
    font-size: 10px;
  }
  .category-banner-btn {
    font-size: 11px;
    margin-top: 4px;
  }
}

@media (max-width: 768px) {
  .category-banners-grid {
    gap: 12px;
  }
  .category-banner-card {
    height: 200px;
    border-radius: 6px;
  }
  .category-banner-content {
    bottom: 12px;
    left: 8px;
    right: 8px;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
  }
  .category-banner-title {
    font-size: 13px;
    line-height: 1.3;
  }
  .category-banner-subtitle,
  .category-banner-btn {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .category-banners-grid {
    gap: 8px;
  }
  .category-banner-card {
    height: 150px;
  }
  .category-banner-content {
    bottom: 8px;
    left: 4px;
    right: 4px;
  }
  .category-banner-title {
    font-size: 11px;
  }
}

/* Style favorites button on product cards inside info section */
.product-info .wishlist-btn {
  position: static;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.product-info .wishlist-btn:hover {
  transform: scale(1.1);
  color: var(--primary);
  border-color: var(--border-dark);
}

.product-info .wishlist-btn .fa-solid {
  color: var(--primary);
}

/* Hide add to cart globally, but show other actions */
#detail-add-btn,
#modal-add-btn {
  display: none !important;
}

/* Hide logo symbol icon */
.logo-icon {
  display: none !important;
}

/* Hide cart button, account links, and login flows globally */
#cart-btn,
#cart-drawer,
.cart-count,
.nav-actions a[href*="login.php"],
.nav-actions a[href*="account.php"],
.nav-actions a[href*="logout.php"],
#nav-menu a[href*="login.php"],
#nav-menu a[href*="account.php"],
#nav-menu a[href*="logout.php"],
#nav-menu .mobile-divider {
  display: none !important;
}

/* Pagination Styling */
.noon-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  margin-bottom: 20px;
  width: 100%;
}
.noon-pagination button {
  background: white;
  border: 1.5px solid var(--border-light);
  color: #404040;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
}
.noon-pagination button:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--bg-main);
  transform: translateY(-2px);
}
.noon-pagination button.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 10px rgba(255, 62, 108, 0.25);
}
.noon-pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Scroll to Top Button Styling */
.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(255, 62, 108, 0.3);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.scroll-to-top-btn.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-to-top-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(255, 62, 108, 0.4);
}

/* Instagram Floating Button */
.instagram-float-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  color: white !important;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(214, 36, 159, 0.4);
  z-index: 9999;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.instagram-float-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 20px rgba(214, 36, 159, 0.6);
}

@media (max-width: 768px) {
  .instagram-float-btn {
    bottom: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  .scroll-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
}

/* Product Reviews Styles */
.product-reviews-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}

.product-reviews-section h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.reviews-summary-layout {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.rating-summary-card {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border-light);
  padding: 30px 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.02);
}

.rating-summary-card h4 {
  font-size: 56px;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
  line-height: 1;
}

.rating-summary-card .stars {
  color: #ffc107;
  font-size: 20px;
  margin: 12px 0 6px;
}

.rating-summary-card .reviews-count {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

.reviews-list-container {
  flex: 2;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-item {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 24px;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.review-item:last-child {
  border-bottom: none;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}

.review-author {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text-dark);
  margin: 0;
}

.review-stars {
  margin-top: 4px;
}

.review-stars i {
  color: #ffc107;
  font-size: 12px;
  margin-right: 2px;
}

.review-date {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.review-comment {
  font-size: 13.5px;
  line-height: 1.6;
  color: #555;
  margin: 8px 0 0;
}

.review-image-wrapper {
  margin-top: 14px;
}

.review-image-wrapper img {
  max-width: 120px;
  max-height: 120px;
  border-radius: 8px;
  border: 1.5px solid var(--border-light);
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.review-image-wrapper img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .reviews-summary-layout {
    gap: 24px;
  }
  .review-item {
    gap: 12px;
  }
  .review-avatar {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
}

.reviews-photos-gallery::-webkit-scrollbar {
  display: none; /* Hide scrollbar in Chrome, Safari and Opera */
}

.carousel-nav-btn:hover {
  background-color: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
  transform: scale(1.1);
}
.carousel-nav-btn:active {
  transform: scale(0.95);
}

.gallery-photo-item:hover {
  transform: scale(1.05);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(255, 62, 108, 0.15);
}

.reviews-list-scrollable {
  max-height: 480px;
  overflow-y: auto;
  padding-right: 16px;
}
.reviews-list-scrollable::-webkit-scrollbar {
  width: 6px;
}
.reviews-list-scrollable::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 10px;
}
.reviews-list-scrollable::-webkit-scrollbar-thumb {
  background: var(--border-dark);
  border-radius: 10px;
}
.reviews-list-scrollable::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Reviews Listing Carousel Styles */
.reviews-list-carousel-outer {
  position: relative;
  width: 100%;
  margin-top: 20px;
}

.reviews-list-viewport {
  overflow: hidden;
  width: 100%;
  padding: 10px 4px;
}

.reviews-list-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.review-carousel-item {
  flex: 0 0 350px;
  box-sizing: border-box;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.review-carousel-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 62, 108, 0.08);
}

/* Mobile responsiveness for review carousel */
@media (max-width: 768px) {
  .review-carousel-item {
    flex: 0 0 280px !important;
    padding: 16px;
  }
  .reviews-list-carousel-outer .carousel-nav-btn {
    width: 30px !important;
    height: 30px !important;
  }
  #reviews-prev-btn {
    left: -8px !important;
  }
  #reviews-next-btn {
    right: -8px !important;
  }
}

/* Instagram Reels Carousel Styling */
.reels-carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.reels-carousel-outer .carousel-nav-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.reels-carousel-outer .carousel-nav-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.reel-carousel-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reel-carousel-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 62, 108, 0.25);
}

.reel-carousel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-carousel-item .video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 15px;
  color: #fff;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.reel-carousel-item .video-overlay i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  opacity: 0.8;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.reel-carousel-item:hover .video-overlay i {
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 0;
}

.reel-carousel-item .reel-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
}

@media (max-width: 768px) {
  .reel-carousel-item {
    flex: 0 0 170px !important;
    height: 300px !important;
  }
}

/* Trending Products Carousel Styling */
.trending-carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.trending-carousel-outer .carousel-nav-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: absolute;
  z-index: 10;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.trending-carousel-outer .carousel-nav-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.trending-viewport {
  overflow: hidden;
  width: 100%;
  padding: 10px 4px;
}

.trending-track,
.related-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  width: max-content;
}

.trending-track .product-card,
.related-track .product-card {
  flex: 0 0 285px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .trending-track .product-card,
  .related-track .product-card {
    flex: 0 0 220px;
  }
}

/* Mobile Bottom Navigation Bar Styles */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 60px !important;
  }

  .mobile-bottom-nav {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.08);
    border-top: 1.5px solid var(--border-light);
    z-index: 10000;
    justify-content: space-around;
    align-items: center;
    overflow: visible !important;
  }

  .mobile-search-btn {
    position: relative;
    overflow: visible !important;
  }

  .mobile-search-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #3b141a;
    border-radius: 50%;
    margin-top: -24px;
    box-shadow: 0 4px 12px rgba(59, 20, 26, 0.35);
    transition: transform 0.2s ease, background-color 0.2s ease;
    border: 3px solid #ffffff;
  }

  .mobile-search-icon-circle i {
    color: #ffffff !important;
    font-size: 16px !important;
  }

  .mobile-search-btn span {
    margin-top: 2px !important;
  }

  .mobile-search-btn:active .mobile-search-icon-circle {
    transform: scale(0.9);
  }

  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.1s ease;
    flex: 1;
    height: 100%;
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
  }

  .mobile-nav-item i {
    font-size: 18px;
    transition: transform 0.2s ease;
  }

  .mobile-nav-item:hover,
  .mobile-nav-item.active {
    color: var(--primary);
  }

  .mobile-nav-item:active i {
    transform: scale(0.85);
  }

  .instagram-float-btn {
    display: none !important;
  }

  .scroll-to-top-btn {
    bottom: 80px !important;
  }

  /* Reduce heading sizes on mobile view */
  .section-header {
    margin-bottom: 24px;
  }

  .section-subtitle {
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    display: block;
  }

  .section-title {
    font-size: 26px;
    line-height: 1.25;
    margin-top: 0;
  }

  .detail-title {
    font-size: 20px !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
  }

  .detail-price {
    font-size: 22px !important;
  }

  .detail-price-rating {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
    padding-bottom: 12px !important;
  }

  .detail-rating-container {
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    margin-left: 0 !important;
  }

  .detail-rating-container .product-rating {
    font-size: 12px !important;
    gap: 2px !important;
  }

  .detail-rating-container .rating-text {
    margin-top: 0 !important;
    font-size: 11px !important;
  }

  .product-cat {
    font-size: 11px !important;
  }

  /* Details Page Button Sizing & Margins on Mobile */
  .purchase-actions {
    gap: 8px !important;
    margin-top: 8px !important;
  }
  .purchase-actions .btn {
    flex: 1 1 calc(50% - 4px) !important;
    height: 42px !important;
    font-size: 11px !important;
    border-radius: 50px !important;
    padding: 0 12px !important;
  }
  .purchase-actions .detail-share-btn {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    flex: none !important;
  }
  .option-group {
    margin-bottom: 12px !important;
  }

  /* Make all storefront buttons small on mobile view */
  .btn,
  .btn-outline,
  #modal-add-btn,
  #modal-insta-btn,
  .modal-share-btn,
  #detail-add-btn,
  #detail-insta-btn,
  #detail-watch-reel-btn,
  .detail-share-btn,
  #write-review-toggle,
  #write-review-cancel,
  #copy-insta-dm-btn,
  #cart-checkout-btn,
  .hero-slider-content .btn,
  .hero-slider-content .btn-outline {
    padding: 10px 18px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    height: auto !important;
    min-height: unset !important;
    line-height: 1.4 !important;
  }

  /* Specific adjustment for share buttons so they remain compact square/circle */
  .modal-share-btn,
  .detail-share-btn {
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Make horizontal filters wrap and fit beautifully on mobile screens */
  .noon-filter-scroll-wrapper {
    flex-wrap: wrap !important;
    white-space: normal !important;
    overflow: visible !important;
    padding: 4px 0 !important;
    gap: 8px !important;
  }

  .noon-filter-scroll-wrapper .mobile-filter-trigger-btn {
    flex: 0 0 auto !important;
    padding: 8px 12px !important;
    font-size: 13px !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .noon-filter-scroll-wrapper .sort-select-wrapper {
    flex: 1 1 auto !important;
    min-width: 120px !important;
  }

  .noon-filter-scroll-wrapper select {
    font-size: 13px !important;
    padding: 8px 24px 8px 12px !important;
  }

  .noon-filter-scroll-wrapper .filter-separator {
    display: none !important;
  }
}

/* Home Page Categories Section (New Card Style) */
.home-categories-section {
  background: #FAF2EA; /* Soft beige/rose background matching screenshot */
  padding: 60px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.home-categories-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.home-categories-section .section-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #475569;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.home-categories-section .section-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: #1e293b;
  margin: 0;
}

/* Horizontal scrolling container */
.category-cards-scroll-wrapper {
  overflow-x: auto;
  padding: 10px 10px 40px 10px;
  margin: 0 -15px; /* Offset container padding for full-bleed mobile scroll */
  scroll-behavior: smooth;
}
/* Responsive Home Page Carousels (Desktop/Mobile unified styling) */
.category-carousel-outer,
.trending-carousel-outer,
.reels-carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.category-viewport,
.trending-viewport,
.reels-viewport {
  overflow: hidden;
  width: 100%;
  padding: 10px 4px;
}

.category-track,
.trending-track,
.reels-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  width: max-content;
}

.category-track {
  gap: 24px;
}

.trending-track,
.reels-track {
  gap: 20px;
}

/* Elegant Margins for Control Buttons */
.carousel-nav-btn {
  position: absolute;
  z-index: 10;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.carousel-nav-btn:hover {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.carousel-nav-btn i {
  font-size: 12px;
}

.carousel-nav-btn.prev {
  left: -18px; /* Float in desktop margins */
}
.carousel-nav-btn.next {
  right: -18px; /* Float in desktop margins */
}

/* Mobile responsive full-bleed carousels with native scroll snap */
@media (max-width: 768px) {
  .carousel-nav-btn {
    display: none !important; /* Hide navigation buttons on mobile touchscreens */
  }
  
  .category-viewport,
  .trending-viewport,
  .reels-viewport {
    overflow: hidden; /* Disable native scroll and snap, re-enable JS translation */
    margin: 0 -20px; /* Full-bleed margins */
    padding: 10px 20px;
    width: calc(100% + 40px);
  }
  
  .category-viewport::-webkit-scrollbar,
  .trending-viewport::-webkit-scrollbar,
  .reels-viewport::-webkit-scrollbar {
    display: none; /* Hide scrollbars */
  }
  
  .category-scroll-card,
  .trending-viewport .product-card,
  .reels-viewport .reel-carousel-item {
    flex-shrink: 0; /* Keep items from shrinking in flex tracks */
  }

  .category-track {
    gap: 12px !important; /* Smaller gap on mobile to fit 2 cards */
  }

  .category-scroll-card {
    flex: 0 0 calc(50vw - 26px) !important; /* Sized to fit exactly 2 cards side-by-side */
    padding: 16px 12px 35px 12px !important;
    border-radius: 12px !important;
  }
  
  .category-card-name {
    font-size: 14px !important;
    letter-spacing: 1px !important;
    margin-bottom: 2px !important;
  }
  
  .category-card-desc {
    font-size: 11px !important;
    margin-bottom: 12px !important;
    height: 32px !important;
    line-height: 1.3 !important;
  }
  
  .category-card-img-wrapper {
    height: 160px !important; /* Shorter image height for compact card proportions */
    border-radius: 10px !important;
    margin-bottom: 5px !important;
  }
  
  .category-card-img-wrapper img {
    border-radius: 10px !important;
  }
  
  .category-card-circle-btn {
    right: 8px !important;
    bottom: -18px !important;
    width: 60px !important;
    height: 60px !important;
    font-size: 8px !important;
    letter-spacing: 0.2px !important;
    line-height: 1.2 !important;
    padding: 6px !important;
  }
  
  .trending-viewport .product-card {
    flex: 0 0 220px; /* Balanced card size on mobile */
  }
  
  .reels-viewport .reel-carousel-item {
    flex: 0 0 170px !important; /* Compact on mobile */
    height: 300px !important;
  }
}

/* Category Card */
.category-scroll-card {
  flex: 0 0 280px; /* Fixed width on mobile/tablet */
  background: #FFF6F7; /* Soft pink-beige background matching team color */
  border: 1.5px solid #FCDADF; /* Subtle pink border */
  border-radius: 20px;
  padding: 24px 20px 45px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(192, 41, 66, 0.04);
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.category-scroll-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(192, 41, 66, 0.08);
  border-color: var(--primary);
}

.category-card-name {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
  text-transform: uppercase;
  margin: 0 0 4px 0;
  letter-spacing: 1.5px;
}

.category-card-desc {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 24px 0;
  line-height: 1.4;
  height: 36px; /* Multi-line constraint to align images */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: 16px;
  overflow: visible; /* To allow button to overlap without cropping */
  margin-bottom: 10px;
}

.category-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

/* Floating circular button */
.category-card-circle-btn {
  position: absolute;
  right: 15px;
  bottom: -25px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background-color: var(--primary); /* Signature primary pink color */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  box-shadow: 0 6px 15px rgba(192, 41, 66, 0.35);
  transition: all 0.3s ease;
  z-index: 5;
  padding: 12px;
  box-sizing: border-box;
}

.category-scroll-card:hover .category-card-circle-btn {
  transform: scale(1.08);
  background-color: #a02035; /* Darker signature pink */
  box-shadow: 0 8px 20px rgba(192, 41, 66, 0.45);
}

/* ==========================================
   Modern Classic Filter Section Upgrades
   ========================================== */

/* 1. Results Title Header styling */
.noon-results-title {
  font-size: 11px !important;
  font-weight: 500 !important;
  color: #9ca3af !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  font-family: var(--font-sans) !important;
  margin-bottom: 0 !important;
}
.noon-results-title span {
  color: #111827 !important;
  font-weight: 600 !important;
}

/* 2. Horizontal Filters top bar */
.noon-horizontal-filters {
  display: flex !important;
  align-items: center !important;
  border-top: 1px solid #e5e7eb !important;
  border-bottom: 1px solid #e5e7eb !important;
  padding: 12px 0 !important;
  margin-top: 16px !important;
  margin-bottom: 28px !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  gap: 16px !important;
  width: 100% !important;
  overflow: visible !important;
}

.noon-filter-scroll-wrapper {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  width: auto !important;
  overflow: visible !important;
}

/* 3. Filter dropdown triggers */
.sort-select-wrapper {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 0px !important; /* Sharp classic corners */
  height: 38px !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: none !important;
}
.sort-select-wrapper:hover {
  border-color: #111827 !important;
  background-color: #fafafa !important;
}
.custom-select-trigger {
  height: 100% !important;
  padding: 0 36px 0 16px !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  color: #374151 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  display: flex !important;
  align-items: center !important;
  font-family: var(--font-sans) !important;
}
.sort-select-wrapper::after {
  content: '\f107' !important;
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900 !important;
  font-size: 11px !important;
  color: #9ca3af !important;
  right: 16px !important;
  transition: transform 0.2s ease !important;
}
.sort-select-wrapper.active::after {
  transform: rotate(180deg) !important;
}

/* 4. Selected / Active filter states */
.sort-select-wrapper.has-value {
  background-color: #fff5f7 !important;
  border-color: var(--primary) !important;
}
.sort-select-wrapper.has-value .custom-select-trigger {
  color: var(--primary) !important;
  font-weight: 600 !important;
}
.sort-select-wrapper.has-value::after {
  color: var(--primary) !important;
}

/* 5. Custom options dropdown */
.custom-select-options {
  top: calc(100% + 1px) !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 0px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
  background: #ffffff !important;
  min-width: 100% !important;
}
.custom-select-option {
  padding: 10px 16px !important;
  font-size: 11px !important;
  color: #4b5563 !important;
  font-weight: 400 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}
.custom-select-option:hover {
  background-color: #f9fafb !important;
  color: var(--primary) !important;
}
.custom-select-option.selected {
  background-color: #fff5f7 !important;
  color: var(--primary) !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
.custom-select-option.selected::after {
  font-size: 9px !important;
  color: var(--primary) !important;
}

/* 6. Active Filter Chips */
.noon-filter-chip {
  background-color: #fff5f7 !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 0px !important;
  padding: 6px 12px !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--primary) !important;
}
.noon-filter-chip i {
  font-size: 9px !important;
  color: var(--primary) !important;
  opacity: 0.7 !important;
  transition: opacity 0.2s ease !important;
}
.noon-filter-chip i:hover {
  opacity: 1 !important;
  color: #111827 !important;
}

/* 7. Mobile Layout Optimizations */
@media (max-width: 992px) {
  .noon-horizontal-filters {
    padding: 12px 16px !important;
    background-color: #ffffff !important;
    border-top: 1px solid #e5e7eb !important;
    border-bottom: 1px solid #e5e7eb !important;
    margin-top: 8px !important;
    margin-bottom: 16px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    border-radius: 0 !important;
  }
  
  .noon-filter-scroll-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
    padding: 0 !important;
    flex-wrap: nowrap !important;
    overflow: visible !important;
  }
  
  .filter-separator {
    display: none !important;
  }
  
  .mobile-filter-trigger-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 42px !important;
    border: 1px solid #e5e7eb !important;
    background-color: #ffffff !important;
    color: #374151 !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    border-radius: 0px !important;
    width: 100% !important;
    box-shadow: none !important;
    margin: 0 !important;
  }
  
  .mobile-filter-trigger-btn i {
    margin-right: 6px !important;
    font-size: 12px !important;
  }
  
  .noon-filter-scroll-wrapper .sort-select-wrapper {
    flex: none !important;
    width: 100% !important;
    height: 42px !important;
    margin: 0 !important;
    border-radius: 0px !important;
  }
  
  .noon-filter-scroll-wrapper select {
    height: 100% !important;
  }
  
  .noon-active-chips-container {
    margin-top: 8px !important;
    width: 100% !important;
  }
}

/* ==========================================
   Modern Spacing & Product Visibility Upgrades
   ========================================== */

/* Ensure mobile-only elements are strictly hidden on desktop */
@media (min-width: 993px) {
  .show-mobile {
    display: none !important;
  }
}

/* Reduce whitespace and bring filters and products closer together */
.section {
  padding: 12px 0 60px !important;
}

.noon-breadcrumbs {
  margin-bottom: 12px !important;
}

.noon-catalog-header {
  margin-bottom: 8px !important;
}

.noon-horizontal-filters {
  padding: 6px 0 !important;
  margin-top: 8px !important;
  margin-bottom: 16px !important;
}

.products-wrapper {
  gap: 24px !important;
}

.product-grid {
  gap: 16px !important; /* Smaller gap makes product cards larger and more prominent */
}

/* Mobile-specific visibility adjustments */
@media (max-width: 992px) {
  .section {
    padding: 8px 0 40px !important;
  }
  
  .noon-breadcrumbs {
    margin-bottom: 8px !important;
  }
  
  .noon-horizontal-filters {
    padding: 8px 12px !important;
    margin-top: 4px !important;
    margin-bottom: 12px !important;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important; /* Extremely neat spacing between product cards */
  }
}

@media (max-width: 480px) {
  .product-image-container {
    height: 270px !important; /* Taller portrait height to show full sarees dramatically */
  }
  
  .product-info {
    padding: 8px !important;
  }
  
  .product-title {
    font-size: 13px !important;
    margin-bottom: 4px !important;
    line-height: 1.3 !important;
  }
  
  .product-price {
    font-size: 12px !important;
  }
}

/* Cute Loader Overlay for review form */
.cute-spinner {
  width: 46px;
  height: 46px;
  border: 4px solid #FCDADF; /* brand light pink */
  border-top: 4px solid var(--primary); /* brand primary pink */
  border-radius: 50%;
  animation: cute-spin 0.8s linear infinite;
  margin-bottom: 14px;
}

@keyframes cute-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Compact Mobile Footer Adjustments */
@media (max-width: 576px) {
  footer {
    padding: 35px 0 85px !important;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px 15px !important;
    margin-bottom: 25px !important;
  }
  .footer-logo {
    margin-bottom: 8px !important;
    gap: 8px !important;
  }
  .footer-logo-text {
    font-size: 18px !important;
  }
  .footer-about {
    font-size: 11px !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
    max-width: 100% !important;
  }
  .footer-col-title {
    font-size: 13px !important;
    margin-bottom: 10px !important;
  }
  .footer-col-title::after {
    bottom: -3px !important;
    width: 16px !important;
  }
  .footer-links li {
    margin-bottom: 6px !important;
  }
  .footer-links a, .footer-contact-info {
    font-size: 11.5px !important;
  }
  .footer-contact-item {
    margin-bottom: 8px !important;
    gap: 6px !important;
  }
  .footer-contact-item i {
    font-size: 12px !important;
  }
  .footer-bottom {
    padding-top: 15px !important;
    font-size: 10px !important;
  }
}

