/* ==========================================================================
   AINY ACCESSORIES - Deep Black & Gold Luxury Design System (Spacious Layout Edition)
   Brand Fonts: Myflora (Local OTF) / Cormorant Garamond / Outfit
   Colors:
   --bg-primary: #0A0908 (Pure Deep Black)
   --bg-secondary: #141210 (Obsidian Charcoal)
   --bg-card: #1C1916 (Gold-Bordered Metallic Card)
   --bg-input: #26211D
   --gold-primary: #D4A569 (Pure Metallic Gold)
   --gold-light: #F5D8A4 (Champagne Gold Accents)
   --gold-dark: #B88547 (Deep Bronze Gold)
   --text-light: #F9F0D6 (Champagne Light Text)
   --text-muted: #C7B299 (Warm Sand Text)
   ========================================================================== */

@font-face {
  font-family: 'Mirella';
  src: url('../resources/font/Mirella.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Myflora';
  src: url('../resources/font/Myflora.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --bg-primary: #f0eee4;
  --bg-secondary: #e2e2dA;
  --bg-card: #ffffff;
  --bg-input: #ffffff;

  --accent-pink: #b98391;
  --accent-light-pink: #F4DDE2;

  --gold-primary: #b98391;
  --gold-light: #2a2a35;
  --gold-dark: #8e5866;
  --gold-border: rgba(185, 131, 145, 0.35);

  --text-light: #2a2a35;
  --text-dark: #2a2a35;
  --text-muted: #5e5e6e;
  --noir: #000000;

  --font-logo: 'Mirella', 'Myflora', 'Cormorant Garamond', 'Playfair Display', serif;
  --font-heading: 'Mirella', 'Myflora', 'Cormorant Garamond', 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;

  --shadow-sm: 0 4px 20px rgba(42, 42, 53, 0.08);
  --shadow-md: 0 8px 30px rgba(42, 42, 53, 0.12);
  --shadow-lg: 0 15px 50px rgba(42, 42, 53, 0.18);
  --shadow-gold: 0 8px 30px rgba(185, 131, 145, 0.3);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

/* Reset & Setup */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

button {
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
}

/* CONTAINER WITH SPACIOUS SIDE MARGINS */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  color: var(--text-light);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '✦';
  display: block;
  font-size: 0.75rem;
  color: var(--gold-primary);
  margin-top: 0.3rem;
}

/* STICKY HEADER WRAPPER */
.sticky-header-wrapper {
  position: sticky;
  top: -1px;
  margin-top: -1px;
  z-index: 105;
  width: 100%;
}

/* ANNOUNCEMENT BAR */
.announcement-bar {
  background: #2a2a35;
  color: #f0eee4;
  padding: 0.55rem 1rem;
  text-align: center;
  font-size: 0.88rem;
  letter-spacing: 1px;
  font-family: var(--font-heading);
  border-bottom: 1px solid var(--gold-border);
}

.announcement-bar .carousel-text {
  transition: opacity 0.4s ease;
}

.announcement-bar span.highlight {
  color: #F4DDE2;
  font-weight: 700;
}

.site-header {
  background-color: rgba(240, 238, 228, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-border);
  box-shadow: var(--shadow-sm);
  padding: 0.6rem 0;
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 4rem;
}

.header-top-bar {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header-logo-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
  text-decoration: none;
}

.header-title-center {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 1.2rem;
  margin-left: auto;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(185, 131, 145, 0.35));
  transition: transform var(--transition-fast);
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.8px;
  white-space: nowrap;
  line-height: 1;
  transition: color var(--transition-fast);
}

.header-logo-left:hover .logo-img {
  transform: scale(1.06);
}

.header-title-center:hover .logo-title {
  color: var(--gold-primary);
}

/* Navigation Links Row - Centered Below Brand Title */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  font-family: var(--font-heading);
  border-top: 1px solid rgba(185, 131, 145, 0.2);
  padding-top: 0.5rem;
  width: 100%;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  padding: 0.4rem 0;
  position: relative;
  text-transform: capitalize;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--gold-primary);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.icon-btn {
  background: transparent;
  color: var(--gold-light);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  position: relative;
}

.icon-btn:hover {
  background-color: rgba(212, 165, 105, 0.15);
  border-color: var(--gold-border);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 0;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(10, 9, 8, 0.94) 0%,
      rgba(10, 9, 8, 0.65) 50%,
      rgba(10, 9, 8, 0.25) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF !important;
  max-width: 620px;
  padding-left: 2vw;
}

.slide-tag {
  display: inline-block;
  background: #FFFFFF !important;
  color: #2a2a35 !important;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.slide-title {
  font-size: 2.7rem;
  color: #FFFFFF !important;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  font-weight: 400 !important;
  font-family: var(--font-heading);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.slide-subtitle {
  font-size: 1rem;
  color: #F0EEE4 !important;
  font-weight: 400 !important;
  margin-bottom: 1.8rem;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.slide-content .btn-primary {
  background: #2a2a35 !important;
  color: #FFFFFF !important;
  border: 1px solid var(--gold-border) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
  font-weight: 600 !important;
  font-size: 0.85rem;
  padding: 0.75rem 1.8rem;
}

.slide-content .btn-primary:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
}

/* BUTTONS SYSTEM */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: #000000 !important;
  padding: 0.85rem 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  transition: all var(--transition-normal);
  border: 1px solid var(--gold-light);
  max-width: 100%;
  white-space: normal;
  text-align: center;
  word-break: break-word;
}

.btn-primary i,
.btn-primary span,
.btn-primary strong {
  color: inherit !important;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 165, 105, 0.5);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  color: #000000 !important;
}

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

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active {
  background-color: var(--gold-primary);
  width: 28px;
  border-radius: 10px;
}

/* Category Grid & Cards */
.categories-section {
  padding: 3.8rem 0;
  background-color: var(--bg-secondary);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.category-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gold-border);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-primary);
}

.category-img-wrapper {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.category-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-body {
  padding: 1.5rem;
  text-align: center;
}

.category-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.category-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Hero Product Spotlight */
.hero-product-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.hero-product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-product-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold-border);
}

.hero-product-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold-primary);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.hero-product-details h2 {
  font-size: 2.5rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
  line-height: 1.15;
}

.hero-product-details .price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.current-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.old-price {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.hero-product-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

/* PRODUCTS GRID & RIGHTMOST CARD HOVER FIX */
.products-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: visible;
  /* removed: padding: 4rem 0; */
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  padding: 1rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.4rem;
  border: 1px solid var(--gold-border);
}

.filter-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
}

.filter-select {
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  background-color: var(--bg-input);
  color: var(--text-light);
  font-size: 0.88rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 2.2rem;
  overflow: visible;
  margin: 0 auto;
  padding-inline: 8px;
  /* buffer so the rightmost card's glow isn't clipped by body's overflow-x: hidden */
}

/* PRODUCT CARD WITH GUARANTEED HOVER RESPONSE ON ALL COLUMNS */
.product-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  /* keep this for the image corners */
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gold-border);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-primary);
  z-index: 99;
}

.product-img-box {
  height: 270px;
  overflow: hidden;
  position: relative;
  background-color: #110F0D;
  touch-action: pan-y;
}

.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform var(--transition-slow);
}

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

/* MULTI-IMAGE CAROUSEL CONTROL DOTS ON CARDS */
.card-image-dots {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 5px;
  z-index: 10;
}

.card-img-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.card-img-dot.active {
  background: var(--gold-primary);
  transform: scale(1.25);
}

.card-img-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: rgba(10, 9, 8, 0.85);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  z-index: 10;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.product-card:hover .card-img-arrow {
  opacity: 1;
}

.card-img-arrow.prev {
  left: 8px;
}

.card-img-arrow.next {
  right: 8px;
}

.card-img-arrow:hover {
  background: var(--gold-primary);
  color: #000;
}

.card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--gold-primary);
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  z-index: 8;
}

.quick-view-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  background: rgba(10, 9, 8, 0.94);
  color: var(--gold-light);
  font-size: 0.78rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-border);
  transition: all var(--transition-fast);
  white-space: nowrap;
  max-width: 90%;
  text-align: center;
  z-index: 12;
}

.product-card:hover .quick-view-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.quick-view-btn:hover {
  background: var(--gold-primary);
  color: #000;
}

.product-info {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--gold-primary);
  font-size: 0.82rem;
  margin-bottom: 0.6rem;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.6rem;
}

.product-price {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.product-old-price {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.4rem;
}

.add-cart-btn {
  width: 100%;
  margin-top: 0.9rem;
  background-color: var(--bg-secondary);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
  padding: 0.7rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  word-break: break-word;
}

.add-cart-btn:hover {
  background-color: var(--gold-primary);
  color: #000;
  box-shadow: var(--shadow-gold);
}

/* QUICK VIEW IN-PLACE CAROUSEL SLIDER (NO SCROLL BELOW) */
.quick-view-img-box {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #110F0D;
  touch-action: pan-y;
}

.quick-view-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}

.qv-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(10, 9, 8, 0.85);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  z-index: 10;
  transition: all var(--transition-fast);
}

.qv-slider-arrow.prev {
  left: 12px;
}

.qv-slider-arrow.next {
  right: 12px;
}

.qv-slider-arrow:hover {
  background: var(--gold-primary);
  color: #000;
}

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

.qv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.qv-dot.active {
  background: var(--gold-primary);
  transform: scale(1.25);
  width: 22px;
  border-radius: 10px;
}

/* INFORMATION CONTENT TEMPLATE PAGES */
.info-page-container {
  max-width: 900px;
  margin: 3.5rem auto;
  padding: 3rem;
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-md);
  line-height: 1.8;
}

.info-page-container h1 {
  font-size: 2.6rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.info-page-container h2 {
  font-size: 1.6rem;
  color: var(--gold-primary);
  margin: 1.8rem 0 0.8rem;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 0.4rem;
}

.info-page-container p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.info-page-container ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style: disc;
  color: var(--text-muted);
}

.info-page-container li {
  margin-bottom: 0.5rem;
}

/* SEPARATE CHECKOUT PAGE STYLING */
.checkout-page-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  margin-top: 2.5rem;
}

.checkout-box {
  background-color: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-md);
}

.order-summary-box {
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-primary);
  position: sticky;
  top: 100px;
}

.advance-payment-banner {
  background: linear-gradient(135deg, rgba(212, 165, 105, 0.2) 0%, rgba(184, 133, 71, 0.1) 100%);
  border: 2px solid var(--gold-primary);
  padding: 1.4rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  text-align: center;
}

.advance-payment-amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0.4rem 0;
}

/* Cart Drawer */
.cart-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.cart-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background-color: var(--bg-secondary);
  border-left: 1px solid var(--gold-border);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-normal);
}

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

.cart-header {
  padding: 1.5rem;
  background-color: var(--bg-primary);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gold-border);
}

.cart-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(212, 165, 105, 0.15);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

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

.cart-item-title {
  font-weight: 600;
  color: var(--gold-light);
  font-size: 0.95rem;
}

.cart-item-price {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  background-color: var(--bg-input);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  color: var(--gold-light);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-footer {
  padding: 1.5rem;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--gold-border);
}

.checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: #000;
  padding: 0.75rem;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
  text-align: center;
  display: block;
}

/* Floating WhatsApp Widget */
.whatsapp-widget-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
}

.whatsapp-float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  animation: pulse-wa 2s infinite;
  pointer-events: auto;
}

.whatsapp-popup {
  pointer-events: auto;
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-popup {
  width: 320px;
  max-width: 90vw;
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold-primary);
  overflow: hidden;
  margin-bottom: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.35s ease;
}

.whatsapp-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-header {
  background-color: var(--bg-primary);
  color: var(--gold-light);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid var(--gold-border);
}

.wa-avatar-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.wa-body {
  padding: 1.2rem;
}

.wa-msg-bubble {
  background-color: var(--bg-input);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.wa-start-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background-color: #25D366;
  color: #fff;
  padding: 0.85rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  word-break: break-word;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-card);
  width: 100%;
  max-width: 800px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold-primary);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 34px;
  height: 34px;
  background: var(--bg-primary);
  color: var(--gold-light);
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.quick-view-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.quick-view-details {
  padding: 2.2rem;
}

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
}

.form-label span.req {
  color: #E74C3C;
}

.form-input {
  background-color: var(--bg-input);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: #000;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.form-input::placeholder {
  color: #666;
}

.form-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 165, 105, 0.25);
  color: #000;
}

/* Ensure browser autofill & input typing font color is always black */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #000 !important;
  transition: background-color 5000s ease-in-out 0s;
}

.payment-info-box {
  background-color: var(--bg-primary);
  border: 1px dashed var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.bank-details-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.bank-details-row strong {
  color: var(--gold-light);
}

.compulsory-alert {
  background: rgba(231, 76, 60, 0.15);
  border-left: 4px solid #E74C3C;
  color: #FADBD8;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 90vw;
}

.toast {
  background: var(--bg-card);
  color: var(--gold-light);
  border-left: 4px solid var(--gold-primary);
  border: 1px solid var(--gold-border);
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Reviews Grid */
.reviews-section {
  padding: 4rem 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.review-card {
  background-color: var(--bg-card);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border);
}

.review-quote {
  font-size: 2.2rem;
  color: var(--gold-primary);
  line-height: 1;
}

.review-stars {
  color: var(--gold-primary);
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.review-text {
  font-style: italic;
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
}

.reviewer-name {
  font-weight: 600;
  color: var(--gold-light);
  font-size: 0.95rem;
}

.reviewer-loc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Social Media Grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.social-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
}

.social-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.social-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 9, 8, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.social-card:hover img {
  transform: scale(1.1);
}

.social-card:hover .social-overlay {
  opacity: 1;
}

.social-icon {
  font-size: 2.2rem;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

/* Site Footer */
.site-footer {
  background-color: var(--bg-primary);
  color: var(--text-light);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--gold-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--gold-primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.newsletter-input {
  background: var(--bg-input);
  border: 1px solid var(--gold-border);
  padding: 0.7rem 1rem;
  color: #fff;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  width: 100%;
}

.newsletter-btn {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: #000;
  padding: 0.7rem 1.2rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 165, 105, 0.15);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Print Invoice Override */
@media print {
  body * {
    visibility: hidden;
  }

  #printable-invoice,
  #printable-invoice * {
    visibility: visible;
  }

  #printable-invoice {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff !important;
    color: #000 !important;
    padding: 20px;
  }
}

/* COMPREHENSIVE MOBILE RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .container {
    padding: 0 1.5rem;
  }

  .header-container {
    padding: 0.5rem 1.5rem;
  }

  .header-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
  }

  .header-logo-left {
    display: flex !important;
    flex-shrink: 0 !important;
    align-items: center;
    visibility: visible !important;
  }

  .header-logo-left .logo-img {
    display: block !important;
    height: 38px;
    width: auto;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .header-title-center-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Removed overflow: hidden so absolute elements are visible */
  }

  .logo-title {
    font-size: 1.4rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  .header-actions {
    flex-shrink: 0;
    gap: 0.6rem;
  }

  .header-actions .icon-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .categories-section,
  .hero-product-section,
  .products-section,
  .reviews-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .social-grid {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .site-footer {
    padding: 2.5rem 0 1.5rem;
  }

  .section-title-wrapper {
    margin-bottom: 1.5rem;
  }

  .checkout-page-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .order-summary-box {
    position: static;
  }

  .hero-product-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(240, 238, 228, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid var(--gold-border);
    gap: 0.1rem;
    box-shadow: var(--shadow-md);
    z-index: 105;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu .nav-link {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(185, 131, 145, 0.15);
    width: 100%;
    font-size: 1.05rem;
    color: var(--text-dark);
  }

  .nav-menu .nav-link:last-child {
    border-bottom: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .slide-title {
    font-size: 2.4rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .btn-primary {
    padding: 0.8rem 1.8rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
  }

  .header-container {
    padding: 0.4rem 0.8rem;
  }

  .header-logo-left .logo-img {
    height: 32px;
  }

  .logo-title {
    font-size: 1.15rem;
    letter-spacing: 0px;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .header-actions .icon-btn {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .slide-title {
    font-size: 2rem;
  }

  .slide-subtitle {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .hero-slider {
    height: 400px;
  }

  .filter-bar {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    text-align: center;
  }

  .checkout-box {
    padding: 1.5rem;
  }

  .info-page-container {
    padding: 1.5rem 1.2rem;
    margin: 1.5rem 0;
  }

  .info-page-container h1 {
    font-size: 1.8rem;
  }

  .info-page-container h2 {
    font-size: 1.2rem;
  }

  /* MOBILE BUTTON RESPONSIVENESS */
  .btn-primary {
    width: 100%;
    padding: 0.75rem 1.2rem;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
  }

  .add-cart-btn {
    padding: 0.7rem 0.4rem;
    font-size: 0.8rem;
  }

  .checkout-btn {
    padding: 0.65rem;
    font-size: 0.75rem;
  }

  .wa-start-btn,
  #checkout-wa-btn {
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
  }

  .quick-view-btn {
    font-size: 0.75rem;
    padding: 0.45rem 1rem;
  }
}

/* ==========================================================================
   PRODUCT DETAIL PAGE (PDP), ZOOM & SIZE SELECTOR STYLES
   ========================================================================== */
.pdp-breadcrumbs-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--gold-border);
  padding: 1rem 0;
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .pdp-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.pdp-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.pdp-main-img-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.pdp-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-fast);
  cursor: zoom-in;
}

.pdp-discount-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #E74C3C, #C0392B);
  color: #fff;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);

}

.pdp-zoom-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(10, 9, 8, 0.85);
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(5px);
  transition: all var(--transition-fast);
}

.pdp-zoom-btn:hover {
  background: var(--gold-primary);
  color: var(--noir);
}

.pdp-thumbnails-list {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.pdp-thumb-item {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  background: var(--bg-card);
}

.pdp-thumb-item.active,
.pdp-thumb-item:hover {
  border-color: var(--gold-primary);
  opacity: 1;
  box-shadow: 0 0 15px rgba(212, 165, 105, 0.3);
}

.pdp-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PDP RIGHT DETAILS PANEL */
.pdp-info-col {
  display: flex;
  flex-direction: column;
}

.pdp-title {
  font-size: 2.5rem;
  line-height: 1.25;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

.pdp-stock-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.pdp-stock-indicator.in-stock {
  background: rgba(46, 204, 113, 0.15);
  color: #2ECC71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.pdp-stock-indicator.low-stock {
  background: rgba(243, 156, 18, 0.15);
  color: #F39C12;
  border: 1px solid rgba(243, 156, 18, 0.3);
}

.pdp-stock-indicator.out-of-stock {
  background: rgba(231, 76, 60, 0.15);
  color: #E74C3C;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.pdp-price-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-border);
}

.pdp-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-primary);
  font-family: var(--font-heading);
}

.pdp-old-price {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pdp-save-badge {
  font-size: 0.8rem;
  background: rgba(212, 165, 105, 0.15);
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.pdp-desc-text {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.96rem;
  margin-bottom: 1.8rem;
}

.pdp-option-label {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 600;
}

.pdp-sizes-grid {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.pdp-size-btn {
  min-width: 55px;
  padding: 0.6rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  color: var(--text-light);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.pdp-size-btn:hover,
.pdp-size-btn.active {
  background: var(--gold-primary);
  color: var(--noir);
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 165, 105, 0.4);
}

.pdp-qty-picker {
  display: flex;
  align-items: center;
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  overflow: hidden;
}

.pdp-qty-picker button {
  width: 38px;
  height: 44px;
  background: rgba(212, 165, 105, 0.1);
  color: var(--gold-light);
  font-size: 1.1rem;
  font-weight: 700;
  transition: background var(--transition-fast);
}

.pdp-qty-picker button:hover {
  background: var(--gold-primary);
  color: var(--noir);
}

.pdp-qty-picker input {
  width: 45px;
  text-align: center;
  font-weight: 700;
  color: var(--gold-light);
  font-size: 1rem;
}

.pdp-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--gold-border);
  padding-top: 1.5rem;
}

@media (max-width: 600px) {
  .pdp-trust-badges {
    grid-template-columns: 1fr;
  }
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.trust-badge-item i {
  font-size: 1.5rem;
  color: var(--gold-primary);
}

.trust-badge-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gold-light);
}

.trust-badge-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ADMIN PORTAL DASHBOARD & INVENTORY MANAGEMENT STYLES
   ========================================================================== */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.admin-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: var(--shadow-sm);

}

.admin-stat-icon {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-sm);
  background: rgba(212, 165, 105, 0.12);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-primary);
}

.admin-stat-val {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  font-family: var(--font-heading);
}

.admin-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.3rem;
}

.admin-toolbar {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
  align-items: center;
}

.admin-table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  overflow-x: auto;
  box-shadow: var(--shadow-md);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.admin-table th {
  background: var(--bg-secondary);
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1.2rem 1rem;
  border-bottom: 1px solid var(--gold-border);
}

.admin-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(212, 165, 105, 0.12);
  vertical-align: middle;
}

.admin-table tr:hover {
  background: rgba(212, 165, 105, 0.04);
}

.admin-table-thumb {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--gold-border);
  cursor: pointer;
}

.admin-cat-badge {
  background: rgba(212, 165, 105, 0.15);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.admin-sizes-pill {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.admin-stock-control {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 0.2rem;
}

.admin-stock-control button {
  width: 26px;
  height: 26px;
  background: var(--bg-card);
  color: var(--gold-primary);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.admin-stock-control button:hover {
  background: var(--gold-primary);
  color: var(--noir);
}

.admin-stock-control .stock-val {
  min-width: 30px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.admin-stock-control .stock-val.in-stock {
  color: #2ECC71;
}

.admin-stock-control .stock-val.low-stock {
  color: #F39C12;
}

.admin-stock-control .stock-val.out-of-stock {
  color: #E74C3C;
}

.admin-act-btn {
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.admin-act-btn.edit {
  background: rgba(212, 165, 105, 0.15);
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
}

.admin-act-btn.edit:hover {
  background: var(--gold-primary);
  color: var(--noir);
}

.admin-act-btn.delete {
  background: rgba(231, 76, 60, 0.15);
  color: #E74C3C;
  border: 1px solid #E74C3C;
}

.admin-act-btn.delete:hover {
  background: #E74C3C;
  color: #fff;
}



/* OUT OF STOCK STYLING */
.product-card.out-of-stock-card {
  opacity: 0.88;
}

.card-tag.out-of-stock-tag {
  background: #E74C3C !important;
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pdp-out-of-stock-banner {
  background: rgba(231, 76, 60, 0.12);
  border: 1px solid #E74C3C;
  color: #E74C3C;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* COMPULSORY CHECKOUT NOTICE ALERT */
.compulsory-alert {
  background-color: #FFF0F0 !important;
  border: 1px solid #F5C6CB !important;
  border-left: 4px solid #D9534F !important;
  padding: 1.1rem 1.3rem !important;
  border-radius: 6px !important;
  font-size: 0.92rem !important;
  color: #721C24 !important;
  line-height: 1.6 !important;
  margin: 1.5rem 0 !important;
}

.compulsory-alert strong {
  color: #721C24 !important;
  font-weight: 700 !important;
}

.compulsory-alert i {
  color: #D9534F !important;
  font-size: 1.1rem !important;
}

/* ==========================================================================
   ADMIN PORTAL & EDIT MODAL MOBILE OPTIMIZATION STYLES
   ========================================================================== */

/* Base class definitions for admin modal elements */
.admin-category-checkbox-grid {
  display: flex;
  gap: 0.8rem 1.2rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-border);
}

.admin-category-checkbox-grid label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-light);
  cursor: pointer;
  background: rgba(185, 131, 145, 0.08);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 165, 105, 0.2);
  transition: all 0.2s ease;
}

.admin-category-checkbox-grid label:has(input:checked) {
  background: rgba(212, 165, 105, 0.25);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  font-weight: 600;
}

.admin-upload-flex-row {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.admin-modal-btn-row {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
  border-top: 1px solid var(--gold-border);
  padding-top: 1.2rem;
}

/* MEDIA QUERIES FOR TABLETS & PHONES (<= 768px) */
@media (max-width: 768px) {

  /* Admin Header & Banner */
  .admin-header-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.75rem !important;
  }

  .admin-header-actions .btn-primary {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.85rem 1.2rem !important;
    font-size: 0.88rem !important;
  }

  /* Admin Dashboard Stat Cards */
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.8rem !important;
    margin-bottom: 1.5rem !important;
  }

  .admin-stat-card {
    padding: 0.9rem !important;
    gap: 0.6rem !important;
  }

  .admin-stat-icon {
    width: 42px !important;
    height: 42px !important;
    font-size: 1.1rem !important;
  }

  .admin-stat-val {
    font-size: 1.3rem !important;
  }

  .admin-stat-label {
    font-size: 0.7rem !important;
  }

  /* Search & Filter Toolbar */
  .admin-toolbar {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.8rem !important;
  }

  .admin-toolbar>div,
  .admin-toolbar select {
    width: 100% !important;
    min-width: 0 !important;
  }

  /* Admin Product Table & Controls */
  .admin-table-wrapper {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    border-radius: var(--radius-sm) !important;
    margin-bottom: 2rem;
  }

  .admin-table {
    min-width: 600px !important;
  }

  .admin-table th,
  .admin-table td {
    padding: 0.75rem 0.6rem !important;
    font-size: 0.84rem !important;
  }

  .admin-table-thumb {
    width: 45px !important;
    height: 45px !important;
  }

  .admin-stock-control {
    padding: 0.3rem !important;
  }

  .admin-stock-control button {
    width: 32px !important;
    height: 32px !important;
    font-size: 1.1rem !important;
  }

  .admin-stock-control .stock-val {
    min-width: 34px !important;
    font-size: 0.95rem !important;
  }

  .admin-act-btn {
    padding: 0.5rem 0.8rem !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
  }

  /* ADMIN MODALS MOBILE LAYOUT (Product Edit, Category, Hero) */
  .modal-content {
    width: 96% !important;
    max-width: 96% !important;
    padding: 1.2rem 1rem !important;
    max-height: 88vh !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
  }

  .modal-close-btn {
    top: 0.8rem !important;
    right: 0.8rem !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 1.2rem !important;
  }

  /* Force Form Grid to 1 Column on Mobile */
  .form-grid,
  .admin-form-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .form-group,
  .form-group.full-width {
    grid-column: span 1 !important;
    width: 100% !important;
  }

  /* Form Inputs on Mobile (16px prevents iOS zoom) */
  .form-input,
  .form-group select,
  .form-group textarea {
    font-size: 16px !important;
    padding: 0.8rem 0.9rem !important;
    border-radius: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Stacked Upload Rows on Mobile */
  .admin-upload-flex-row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.6rem !important;
    width: 100% !important;
  }

  .admin-upload-flex-row input,
  .admin-upload-flex-row textarea {
    width: 100% !important;
  }

  .admin-upload-btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0.8rem !important;
    font-size: 0.9rem !important;
  }

  /* Mobile Category Checkboxes Grid */
  .admin-category-checkbox-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.6rem !important;
    padding: 0.8rem !important;
  }

  .admin-category-checkbox-grid label {
    padding: 0.6rem 0.7rem !important;
    font-size: 0.85rem !important;
    justify-content: flex-start !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Stacked Full-Width Action Buttons at Bottom of Modal */
  .admin-modal-btn-row {
    flex-direction: column-reverse !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
    margin-top: 1.2rem !important;
    padding-top: 1rem !important;
  }

  .admin-modal-btn-row button {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.9rem 1rem !important;
    font-size: 0.95rem !important;
  }

  /* PRODUCT DETAIL PAGE (PDP) MOBILE RESPONSIVE OPTIMIZATION */
  .pdp-section {
    padding: 1.5rem 1rem 3rem !important;
  }

  .pdp-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .pdp-main-img-wrap {
    border-radius: 12px !important;
  }

  .pdp-main-img {
    height: 340px !important;
    object-fit: cover !important;
  }

  .pdp-thumbnails-list {
    gap: 0.5rem !important;
    padding-bottom: 0.4rem !important;
  }

  .pdp-thumb-item {
    width: 65px !important;
    height: 65px !important;
    border-radius: 8px !important;
  }

  .pdp-info-col {
    padding: 0 !important;
  }

  .pdp-title {
    font-size: 1.65rem !important;
    line-height: 1.25 !important;
    color: var(--gold-light) !important;
    margin-bottom: 0.6rem !important;
    word-break: break-word !important;
  }

  .pdp-stock-indicator {
    font-size: 0.78rem !important;
    padding: 0.2rem 0.6rem !important;
  }

  .pdp-price-box {
    padding: 0.75rem 1rem !important;
    margin-bottom: 1.2rem !important;
    border-radius: 8px !important;
    flex-wrap: wrap !important;
  }

  .pdp-price {
    font-size: 1.65rem !important;
  }

  .pdp-desc-text {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.2rem !important;
  }

  .pdp-option-group {
    margin-bottom: 1.2rem !important;
  }

  .pdp-option-label {
    font-size: 0.88rem !important;
  }

  .pdp-sizes-grid {
    gap: 0.5rem !important;
  }

  .pdp-size-btn {
    min-width: 48px !important;
    padding: 0.5rem 0.8rem !important;
    font-size: 0.85rem !important;
    border-radius: 6px !important;
  }

  .pdp-qty-picker button {
    width: 36px !important;
    height: 42px !important;
  }

  .pdp-qty-picker input {
    width: 40px !important;
  }

  .pdp-add-cart-btn {
    flex: 1 !important;
    padding: 0.85rem 1rem !important;
    font-size: 0.92rem !important;
  }

  .wa-start-btn {
    width: 100% !important;
    padding: 0.85rem 1rem !important;
    font-size: 0.92rem !important;
  }

  .pdp-trust-badges {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
    padding-top: 1.2rem !important;
  }

  .trust-badge-item {
    gap: 0.6rem !important;
  }

  .trust-badge-item i {
    font-size: 1.25rem !important;
  }

  .trust-badge-item strong {
    font-size: 0.82rem !important;
  }

  #pdp-reviews-container {
    margin-top: 2.5rem !important;
    padding-top: 2rem !important;
  }

  .reviews-summary-box {
    padding: 1.2rem 1rem !important;
    gap: 1.2rem !important;
    flex-direction: column !important;
    text-align: center !important;
  }

  .reviews-avg-score {
    font-size: 2.6rem !important;
  }

  .review-card {
    padding: 1rem 1.1rem !important;
  }

  .review-form-box {
    padding: 1.2rem 1rem !important;
  }

  .wa-float-btn,
  #wa-float-btn {
    bottom: 15px !important;
    right: 15px !important;
    width: 52px !important;
    height: 52px !important;
    font-size: 1.6rem !important;
    z-index: 9990 !important;
  }
}

@media (max-width: 480px) {
  .admin-stats-grid {
    grid-template-columns: 1fr !important;
  }

  .admin-category-checkbox-grid {
    grid-template-columns: 1fr !important;
  }
}

/* CUSTOMER REVIEWS & RATINGS STYLES */
.reviews-container {
  max-width: 900px;
  margin: 0 auto;
}

.reviews-summary-box {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--bg-card);
  padding: 1.8rem 2rem;
  border-radius: 12px;
  border: 1px solid var(--gold-border);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.reviews-avg-rating {
  text-align: center;
  min-width: 140px;
}

.reviews-avg-score {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
}

.reviews-stars-gold {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin: 0.3rem 0;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 165, 105, 0.15);
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.review-card:hover {
  border-color: var(--gold-primary);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.review-author {
  font-weight: 700;
  color: var(--gold-light);
  font-size: 1.05rem;
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-comment {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.review-form-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 2rem;
}

.star-rating-select-group {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
}