﻿/* ============================================================
   Seetha One Gram Jewellery - Luxury CSS Stylesheet
   A premium eCommerce experience for fine jewellery
   ============================================================ */

/* ===== Google Fonts Import ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600&display=swap');

/* ============================================================
   1. CSS Custom Properties
   ============================================================ */
:root {
  --color-primary: #7A3E1D;
  --color-primary-light: #8E4D2A;
  --color-primary-dark: #5A2E15;
  --color-secondary: #B8860B;
  --color-secondary-light: #D4A030;
  --color-accent: #E8D8B9;
  --color-accent-light: #F0E6D0;
  --color-bg: #FFFDF8;
  --color-bg-alt: #F7F1E5;
  --color-text: #2D1B0E;
  --color-text-light: #6B5A4A;
  --color-text-muted: #9A8A7A;
  --color-white: #FFFFFF;
  --color-black: #1A0F08;
  --color-success: #2E7D32;
  --color-error: #C62828;
  --color-warning: #F9A825;
  --color-star: #FFD700;
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1DA853;
  --gradient-gold: linear-gradient(135deg, #7A3E1D 0%, #B8860B 50%, #D4A030 100%);
  --gradient-gold-hover: linear-gradient(135deg, #8E4D2A 0%, #D4A030 50%, #E8C84A 100%);
  --gradient-dark: linear-gradient(135deg, #2D1B0E 0%, #5A2E15 100%);
  --gradient-hero: linear-gradient(135deg, rgba(45,27,14,0.92) 0%, rgba(90,46,21,0.88) 35%, rgba(122,62,29,0.75) 70%, rgba(184,134,11,0.3) 100%);
  --gradient-offer: linear-gradient(135deg, #7A3E1D 0%, #B8860B 50%, #D4A030 100%);
  --gradient-skeleton: linear-gradient(90deg, #F7F1E5 25%, #EDE4D4 50%, #F7F1E5 75%);
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;
  --fs-h1: clamp(2.5rem, 5vw, 4rem);
  --fs-h2: clamp(2rem, 4vw, 3rem);
  --fs-h3: clamp(1.5rem, 3vw, 2.25rem);
  --fs-h4: clamp(1.25rem, 2.5vw, 1.75rem);
  --fs-h5: clamp(1.1rem, 2vw, 1.35rem);
  --fs-h6: clamp(1rem, 1.5vw, 1.15rem);
  --fs-body: clamp(0.938rem, 1.2vw, 1rem);
  --fs-small: 0.813rem;
  --fs-tiny: 0.75rem;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --lh-tight: 1.1;
  --lh-normal: 1.5;
  --lh-relaxed: 1.7;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 50%;
  --shadow-sm: 0 1px 3px rgba(45,27,14,0.08);
  --shadow-md: 0 4px 12px rgba(45,27,14,0.12);
  --shadow-lg: 0 8px 30px rgba(45,27,14,0.15);
  --shadow-xl: 0 16px 48px rgba(45,27,14,0.20);
  --shadow-gold: 0 4px 20px rgba(122,62,29,0.25);
  --shadow-gold-lg: 0 8px 40px rgba(122,62,29,0.35);
  --shadow-card: 0 2px 16px rgba(45,27,14,0.08);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-navbar: 500;
  --z-offcanvas: 600;
  --z-overlay: 700;
  --z-modal: 800;
  --z-preloader: 900;
  --z-toast: 1000;
  --container-max: 1320px;
  --container-narrow: 960px;
  --container-wide: 1600px;
  --header-height: 80px;
  --header-height-scrolled: 64px;
}
/* ============================================================
   2. CSS Reset & Base Styles
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

a:hover {
  color: var(--color-primary);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

::selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-alt);
}

::-webkit-scrollbar-thumb {
  background: var(--color-text-muted);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-light);
}

/* ============================================================
   3. Container & Utility Classes
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section-padding {
  padding: var(--spacing-4xl) 0;
}

.section-padding-sm {
  padding: var(--spacing-2xl) 0;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* ============================================================
   4. Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  color: var(--color-text);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }
h6 { font-size: var(--fs-h6); }

p {
  margin-bottom: var(--spacing-md);
  line-height: var(--lh-relaxed);
}

p:last-child {
  margin-bottom: 0;
}

small, .text-small {
  font-size: var(--fs-small);
}

.text-tiny {
  font-size: var(--fs-tiny);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-primary {
  color: var(--color-primary);
}

.text-secondary {
  color: var(--color-secondary);
}

.text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.luxury-heading {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
}

.subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-sm);
}

blockquote {
  border-left: 3px solid var(--color-secondary);
  padding-left: var(--spacing-lg);
  font-style: italic;
  color: var(--color-text-light);
  margin: var(--spacing-lg) 0;
}

/* ============================================================
   5. Section Titles
   ============================================================ */
.section-title {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-title h2 {
  margin-bottom: var(--spacing-sm);
}

.section-title .subtitle {
  display: block;
  margin-bottom: var(--spacing-xs);
}

.section-title .title-decor {
  display: inline-block;
  width: 60px;
  height: 2px;
  background: var(--gradient-gold);
  margin-top: var(--spacing-md);
  border-radius: 2px;
  position: relative;
}

.section-title .title-decor::before,
.section-title .title-decor::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--color-secondary);
  border-radius: 50%;
  transform: translateY(-50%);
}

.section-title .title-decor::before {
  left: -10px;
}

.section-title .title-decor::after {
  right: -10px;
}

.section-title-left {
  text-align: left;
}
/* ============================================================
   6. Navigation / Header
   ============================================================ */
.header {
  position: static;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-navbar);
  height: var(--header-height);
  transition: all var(--transition-base);
  background: #1a100a;
}

.header.scrolled {
  background: #1a100a;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.30);
  height: var(--header-height-scrolled);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.header-logo {
  display: flex;
  align-items: center;
  z-index: 10;
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.header-logo img {
  height: 45px;
  width: auto;
  transition: height var(--transition-base);
}

.header.scrolled .header-logo img {
  height: 36px;
}

.header-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  letter-spacing: 0.05em;
  transition: color var(--transition-base);
}

.header-logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: var(--fw-medium);
  color: var(--color-accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.header-nav-link {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: var(--spacing-xs) 0;
  transition: color var(--transition-base);
}

.header-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width var(--transition-base);
}

.header-nav-link:hover {
  color: var(--color-accent);
}

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

.header-nav-link.active {
  color: var(--color-accent);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.header-action-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--transition-base);
}

.header-action-btn:hover {
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.10);
}

.header-action-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: var(--fw-bold);
  border-radius: var(--radius-full);
  padding: 0 5px;
  box-shadow: 0 2px 6px rgba(122, 62, 29, 0.35);
  animation: cartBadgePop 0.3s ease;
}

.cart-badge.empty {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* ============================================================
   7. Mobile Navigation (Off-Canvas Menu)
   ============================================================ */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 27, 14, 0.6);
  z-index: calc(var(--z-offcanvas) - 1);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(85vw, 400px);
  background: var(--color-bg);
  z-index: var(--z-offcanvas);
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-lg);
  border-bottom: 1px solid var(--color-bg-alt);
}

.mobile-menu-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
}

.mobile-menu-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text);
  transition: background var(--transition-base);
}

.mobile-menu-close:hover {
  background: var(--color-bg-alt);
}

.mobile-menu-close svg {
  width: 20px;
  height: 20px;
}

.mobile-menu-nav {
  flex: 1;
  padding: var(--spacing-md) 0;
}

.mobile-menu-item {
  border-bottom: 1px solid var(--color-bg-alt);
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) var(--spacing-lg);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  transition: all var(--transition-base);
}

.mobile-menu-link:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
  padding-left: var(--spacing-xl);
}

.mobile-menu-link svg {
  width: 16px;
  height: 16px;
  color: var(--color-text-muted);
}

.mobile-menu-footer {
  padding: var(--spacing-lg);
  border-top: 1px solid var(--color-bg-alt);
}

.mobile-menu-social {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.mobile-menu-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--color-bg-alt);
  color: var(--color-text-light);
  transition: all var(--transition-base);
}

.mobile-menu-social a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.mobile-menu-contact {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

/* ============================================================
   8. Hero Section
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-black);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--spacing-lg);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: var(--fw-bold);
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-title .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  font-weight: var(--fw-light);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto var(--spacing-xl);
  line-height: var(--lh-relaxed);
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-float-element {
  position: absolute;
  pointer-events: none;
  animation: float 4s ease-in-out infinite;
}

.hero-float-element-1 {
  top: 15%;
  left: 8%;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(232, 216, 185, 0.20);
  border-radius: var(--radius-full);
}

.hero-float-element-2 {
  bottom: 20%;
  right: 10%;
  width: 40px;
  height: 40px;
  background: rgba(184, 134, 11, 0.15);
  border-radius: var(--radius-full);
  animation-delay: 2s;
}
/* ============================================================
   9. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gradient-gold-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.40);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-secondary);
}

.btn-outline-gold:hover {
  background: var(--gradient-gold);
  color: var(--color-white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.30);
}

.btn-whatsapp:hover {
  background: var(--color-whatsapp-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.40);
}

.btn-wishlist {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--color-white);
  color: var(--color-text-muted);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  padding: 0;
}

.btn-wishlist:hover {
  color: var(--color-error);
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.btn-wishlist.active {
  color: var(--color-error);
}

.btn-wishlist.active svg {
  fill: var(--color-error);
}

.btn-wishlist svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: transparent;
  transition: fill var(--transition-base);
}

.btn-add-cart {
  background: var(--color-text);
  color: var(--color-white);
  padding: 10px 20px;
  font-size: var(--fs-tiny);
}

.btn-add-cart:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-add-cart.added {
  background: var(--color-success);
}

.btn-buy-now {
  background: var(--gradient-gold);
  color: var(--color-white);
  padding: 10px 20px;
  font-size: var(--fs-tiny);
  box-shadow: var(--shadow-gold);
}

.btn-buy-now:hover {
  background: var(--gradient-gold-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

.btn-filter {
  background: var(--color-bg-alt);
  color: var(--color-text-light);
  padding: 8px 16px;
  font-size: var(--fs-tiny);
  border-radius: var(--radius-sm);
}

.btn-filter:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-filter.active {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-sm {
  padding: 8px 16px;
  font-size: var(--fs-tiny);
}

.btn-lg {
  padding: 16px 40px;
  font-size: var(--fs-body);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
}
/* ============================================================
   10. Featured Categories Grid
   ============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--spacing-lg);
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  cursor: pointer;
  text-align: center;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.category-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,27,14,0.60) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: var(--spacing-md);
}

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

.category-card-body {
  padding: var(--spacing-md);
}

.category-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  margin-bottom: var(--spacing-xs);
}

.category-card-count {
  font-size: var(--fs-tiny);
  color: var(--color-text-muted);
}

/* ============================================================
   11. Product Cards
   ============================================================ */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-card-image .product-secondary-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.product-badge {
  position: absolute;
  top: var(--spacing-sm);
  left: var(--spacing-sm);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  line-height: 1.2;
  white-space: nowrap;
}

.badge-sale {
  background: var(--color-error);
  color: var(--color-white);
}

.badge-new {
  background: var(--color-success);
  color: var(--color-white);
}

.badge-best-seller {
  background: var(--gradient-gold);
  color: var(--color-white);
}

.badge-out-of-stock {
  background: var(--color-text);
  color: var(--color-white);
}

.badge-custom {
  background: var(--color-secondary);
  color: var(--color-white);
}

.product-card-actions {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  z-index: 2;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-base);
}

.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-card-actions .btn-wishlist {
  width: 36px;
  height: 36px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.product-card-actions .btn-wishlist svg {
  width: 16px;
  height: 16px;
}

.product-quick-view {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--color-white);
  color: var(--color-text-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.product-quick-view:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1);
}

.product-quick-view svg {
  width: 16px;
  height: 16px;
}

.product-card-body {
  padding: var(--spacing-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-category {
  font-size: 0.7rem;
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-xs);
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  margin-bottom: var(--spacing-xs);
  line-height: 1.2;
  transition: color var(--transition-base);
}

.product-card-title:hover {
  color: var(--color-primary);
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-sm);
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  width: 14px;
  height: 14px;
  color: var(--color-star);
  fill: currentColor;
}

.star.empty {
  color: #DDD;
}

.rating-count {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

.product-card-price {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.price-current {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}

.price-original {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.price-discount {
  font-size: var(--fs-tiny);
  font-weight: var(--fw-medium);
  color: var(--color-success);
}

.product-card-footer {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: auto;
}

.product-card-footer .btn {
  flex: 1;
}

.product-card-footer .btn-whatsapp {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--radius-md);
}

.product-card-footer .btn-whatsapp svg {
  width: 18px;
  height: 18px;
}
/* ============================================================
   12. Best Seller & New Arrivals Sliders
   ============================================================ */
.slider-section {
  position: relative;
  overflow: hidden;
}

.slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-xl);
}

.slider-controls {
  display: flex;
  gap: var(--spacing-sm);
}

.slider-arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--color-white);
  color: var(--color-text);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  cursor: pointer;
}

.slider-arrow:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.05);
}

.slider-arrow:active {
  transform: scale(0.95);
}

.slider-arrow svg {
  width: 18px;
  height: 18px;
}

.slider-arrow.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.slider-track {
  display: flex;
  gap: var(--spacing-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--spacing-md);
  scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slider-track .product-card {
  min-width: calc(25% - 18px);
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* ============================================================
   13. Luxury Collection Showcase
   ============================================================ */
.collection-showcase {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin: var(--spacing-3xl) 0;
}

.collection-bg {
  position: absolute;
  inset: 0;
}

.collection-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,253,248,0.92) 0%, rgba(232,216,185,0.50) 100%);
}

.collection-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: var(--spacing-3xl);
}

.collection-subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--spacing-sm);
}

.collection-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
  line-height: 1.1;
}

.collection-description {
  color: rgba(45, 27, 14, 0.80);
  margin-bottom: var(--spacing-xl);
  font-weight: var(--fw-light);
}

/* ============================================================
   14. Customer Reviews / Testimonials
   ============================================================ */
.testimonials-section {
  background: var(--color-bg-alt);
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  margin-bottom: var(--spacing-md);
}

.testimonial-text {
  font-style: italic;
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--spacing-lg);
  font-size: var(--fs-body);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--color-accent);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: 1.05rem;
  color: var(--color-text);
}

.testimonial-role {
  font-size: var(--fs-tiny);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonials-slider {
  display: flex;
  gap: var(--spacing-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--spacing-md);
  scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonials-slider .testimonial-card {
  min-width: calc(33.33% - 16px);
  scroll-snap-align: start;
  flex-shrink: 0;
}
/* ============================================================
   15. Why Choose Us (Icon Grid)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
}

.feature-card {
  text-align: center;
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-bg-alt), var(--color-accent));
  color: var(--color-primary);
  font-size: 1.5rem;
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-gold);
  color: var(--color-white);
  transform: scale(1.1);
}

.feature-icon img, .feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  margin-bottom: var(--spacing-xs);
}

.feature-description {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  line-height: var(--lh-normal);
}

/* ============================================================
   16. Promotional Offer Banner
   ============================================================ */
.offer-banner {
  background: var(--gradient-offer);
  padding: var(--spacing-3xl) var(--spacing-lg);
  text-align: left;
  position: relative;
  overflow: hidden;
  margin: var(--spacing-3xl) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-2xl);
}

.offer-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  animation: goldShimmer 6s ease-in-out infinite;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: var(--fs-tiny);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
  backdrop-filter: blur(4px);
}

.offer-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
}

.offer-description {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 0 var(--spacing-lg);
}

.offer-text {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 0 var(--spacing-lg);
}

.offer-banner-content {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 600px;
}

.offer-banner-image {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.offer-banner-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.offer-banner .highlight {
  background: linear-gradient(135deg, #FFD700, #FFC107, #FFB300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.countdown-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: 1;
}

.countdown-sep {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: rgba(255,255,255,0.5);
  padding-top: 0;
}

.offer-countdown {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.countdown-item {
  text-align: center;
}

.countdown-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: 1;
}

.countdown-label {
  font-size: var(--fs-tiny);
  color: rgba(255, 255, 255, 0.70);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   18. Instagram Feed Section
   ============================================================ */
.video-section {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin: var(--spacing-3xl) 0;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--color-black);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.40);
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 2;
}

.video-play-btn:hover {
  background: var(--color-white);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn:hover svg {
  color: var(--color-primary);
}

.video-play-btn svg {
  width: 30px;
  height: 30px;
  color: var(--color-white);
  margin-left: 3px;
  transition: color var(--transition-base);
}

.video-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 27, 14, 0.40);
}
/* ============================================================
   18. Instagram Feed / Integration
   ============================================================ */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.instagram-item:hover img {
  transform: scale(1.12);
}

.instagram-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 27, 14, 0.50);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.instagram-item:hover .instagram-item-overlay {
  opacity: 1;
}

.instagram-item-overlay svg {
  width: 30px;
  height: 30px;
  color: var(--color-white);
}

.instagram-section {
  text-align: center;
  padding: var(--spacing-3xl) 0;
  background: var(--color-bg-alt);
}

.instagram-section .instagram-handle {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
  transition: color var(--transition-base);
}

.instagram-section .instagram-handle:hover {
  color: var(--color-secondary);
}

/* ============================================================
   19. Shop Page Layout
   ============================================================ */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--spacing-xl);
  padding-top: calc(var(--header-height) + var(--spacing-xl));
}

.shop-sidebar {
  position: sticky;
  top: calc(var(--header-height-scrolled) + var(--spacing-lg));
  align-self: start;
}

.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.shop-header-left {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.shop-header-right {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.shop-result-count {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

.shop-sort {
  padding: 8px 16px;
  border: 1px solid var(--color-bg-alt);
  border-radius: var(--radius-md);
  background: var(--color-white);
  font-size: var(--fs-small);
  color: var(--color-text-light);
  cursor: pointer;
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

/* ============================================================
   20. Filter Components
   ============================================================ */
.filter-widget {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  box-shadow: var(--shadow-card);
}

.filter-widget-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid var(--color-bg-alt);
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  cursor: pointer;
  font-size: var(--fs-small);
  color: var(--color-text-light);
  transition: color var(--transition-base);
  user-select: none;
}

.filter-checkbox:hover {
  color: var(--color-primary);
}

.filter-checkbox input[type=\"checkbox\"] {
  display: none;
}

.filter-checkbox .checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-text-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.filter-checkbox input:checked + .checkmark {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.filter-checkbox input:checked + .checkmark::after {
  content: '';
  width: 6px;
  height: 10px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}

.filter-count {
  margin-left: auto;
  font-size: var(--fs-tiny);
  color: var(--color-text-muted);
}

.price-range-slider {
  padding: var(--spacing-sm) 0;
}

.price-range-slider input[type=\"range\"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--color-bg-alt);
  outline: none;
  margin: var(--spacing-md) 0;
}

.price-range-slider input[type=\"range\"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.price-range-slider input[type=\"range\"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.price-range-slider input[type=\"range\"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  cursor: pointer;
  border: none;
}

.price-range-values {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--color-text);
}
/* ============================================================
   21. Search Component (Full-Screen Overlay)
   ============================================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 253, 248, 0.98);
  z-index: calc(var(--z-overlay) + 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-3xl) var(--spacing-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-close {
  position: absolute;
  top: var(--spacing-xl);
  right: var(--spacing-xl);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text);
  transition: all var(--transition-base);
}

.search-overlay-close:hover {
  background: var(--color-bg-alt);
  transform: rotate(90deg);
}

.search-overlay-close svg {
  width: 24px;
  height: 24px;
}

.search-overlay-input {
  width: 100%;
  max-width: 600px;
  margin-top: var(--spacing-4xl);
  position: relative;
}

.search-overlay-input input {
  width: 100%;
  padding: 20px 60px 20px 24px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--color-accent);
  transition: border-color var(--transition-base);
}

.search-overlay-input input:focus {
  border-color: var(--color-secondary);
}

.search-overlay-input input::placeholder {
  color: var(--color-text-muted);
}

.search-overlay-submit {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: color var(--transition-base);
}

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

.search-overlay-submit svg {
  width: 22px;
  height: 22px;
}

.search-results {
  width: 100%;
  max-width: 600px;
  margin-top: var(--spacing-xl);
  max-height: 50vh;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  transition: background var(--transition-base);
  cursor: pointer;
}

.search-result-item:hover {
  background: var(--color-bg-alt);
}

.search-result-img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.search-result-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  margin-bottom: 2px;
}

.search-result-info span {
  font-size: var(--fs-tiny);
  color: var(--color-text-muted);
}

.search-no-results {
  text-align: center;
  color: var(--color-text-muted);
  padding: var(--spacing-xl);
}

/* ============================================================
   22. Quick View Modal
   ============================================================ */
.quick-view-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.quick-view-modal.active {
  opacity: 1;
  visibility: visible;
}

.quick-view-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 27, 14, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.quick-view-content {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  transform: translateY(30px);
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-xl);
}

.quick-view-modal.active .quick-view-content {
  transform: translateY(0);
}

.quick-view-close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--color-white);
  color: var(--color-text);
  box-shadow: var(--shadow-md);
  z-index: 3;
  transition: all var(--transition-base);
}

.quick-view-close:hover {
  background: var(--color-error);
  color: var(--color-white);
  transform: rotate(90deg);
}

.quick-view-close svg {
  width: 18px;
  height: 18px;
}

.quick-view-gallery {
  position: relative;
  background: var(--color-bg-alt);
}

.quick-view-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-view-details {
  padding: var(--spacing-xl);
}

.quick-view-details .product-card-category {
  margin-bottom: var(--spacing-xs);
}

.quick-view-details h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--spacing-sm);
}

.quick-view-details .product-card-rating {
  margin-bottom: var(--spacing-md);
}

.quick-view-details .product-card-price {
  margin-bottom: var(--spacing-lg);
}

.quick-view-details .price-current {
  font-size: 1.5rem;
}

.quick-view-description {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--spacing-lg);
}

.quick-view-variants {
  margin-bottom: var(--spacing-lg);
}

.quick-view-variants label {
  display: block;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  margin-bottom: var(--spacing-sm);
  color: var(--color-text);
}

.quick-view-options {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.quick-view-option {
  padding: 6px 16px;
  border: 1px solid var(--color-bg-alt);
  border-radius: var(--radius-sm);
  font-size: var(--fs-tiny);
  color: var(--color-text-light);
  cursor: pointer;
  transition: all var(--transition-base);
  background: var(--color-white);
}

.quick-view-option:hover {
  border-color: var(--color-secondary);
}

.quick-view-option.active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.quick-view-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.quick-view-actions .btn {
  flex: 1;
  min-width: 140px;
}

.quick-view-actions .btn-whatsapp {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  padding: 0;
}
/* ============================================================
   23. Product Detail Page
   ============================================================ */
.product-detail {
  padding-top: calc(var(--header-height) + var(--spacing-xl));
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-3xl);
}

.product-gallery {
  position: relative;
}

.product-gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-alt);
  cursor: crosshair;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-gallery-main.zoomed img {
  transform: scale(2.5);
}

.product-gallery-thumbs {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
  overflow-x: auto;
  padding-bottom: var(--spacing-xs);
}

.product-gallery-thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-base);
  opacity: 0.6;
}

.product-gallery-thumb:hover {
  opacity: 0.8;
}

.product-gallery-thumb.active {
  border-color: var(--color-primary);
  opacity: 1;
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding-top: var(--spacing-md);
}

.product-info .product-card-category {
  margin-bottom: var(--spacing-xs);
}

.product-info h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: var(--spacing-md);
}

.product-info .product-card-rating {
  margin-bottom: var(--spacing-lg);
}

.product-info-availability {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-success);
}

.availability-dot.out-of-stock {
  background: var(--color-error);
}

.product-info .price-current {
  font-size: 2rem;
}

.product-info .price-original {
  font-size: 1.1rem;
}

.product-info .price-discount {
  font-size: var(--fs-body);
}

.product-info-description {
  margin-bottom: var(--spacing-xl);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}

.product-info-variants {
  margin-bottom: var(--spacing-xl);
}

.product-info-variants label {
  display: block;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  margin-bottom: var(--spacing-sm);
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-info-variants .quick-view-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.product-info-quantity {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-bg-alt);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.quantity-control button {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  color: var(--color-text);
  font-size: 1.2rem;
  transition: all var(--transition-base);
}

.quantity-control button:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.quantity-control input {
  width: 60px;
  height: 44px;
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  border: none;
  border-left: 1px solid var(--color-bg-alt);
  border-right: 1px solid var(--color-bg-alt);
  color: var(--color-text);
  -moz-appearance: textfield;
}

.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.product-info-actions .btn {
  flex: 1;
  min-width: 160px;
}

.product-info-actions .btn-wishlist {
  width: 52px;
  height: 52px;
}

.product-info-actions .btn-whatsapp {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  padding: 0;
}

.product-info-meta {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--color-bg-alt);
}

.product-info-meta-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

.product-info-meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-secondary);
}

.product-info-meta-item strong {
  color: var(--color-text-light);
  font-weight: var(--fw-medium);
}

.product-tabs {
  margin-bottom: var(--spacing-3xl);
}

.product-tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--color-bg-alt);
  gap: 0;
  overflow-x: auto;
}

.product-tab-btn {
  padding: var(--spacing-md) var(--spacing-xl);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition-base);
  white-space: nowrap;
  background: none;
  cursor: pointer;
}

.product-tab-btn:hover {
  color: var(--color-text);
}

.product-tab-btn.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.product-tab-content {
  padding: var(--spacing-xl) 0;
  display: none;
}

.product-tab-content.active {
  display: block;
}

.product-tab-content p {
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}

.product-tab-content table {
  margin-top: var(--spacing-md);
}

.product-tab-content table tr {
  border-bottom: 1px solid var(--color-bg-alt);
}

.product-tab-content table td {
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: var(--fs-small);
  color: var(--color-text-light);
}

.product-tab-content table td:first-child {
  font-weight: var(--fw-medium);
  color: var(--color-text);
  width: 140px;
}
/* ============================================================
   24. About Us Page
   ============================================================ */
.about-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-black);
  padding-top: var(--header-height);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: var(--spacing-lg);
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.about-story-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-content h2 {
  margin-bottom: var(--spacing-md);
}

.about-story-content p {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
}

.timeline {
  position: relative;
  padding: var(--spacing-3xl) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--gradient-gold);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-3xl);
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item-content {
  width: calc(50% - 40px);
  padding: var(--spacing-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.timeline-item-dot {
  position: absolute;
  left: 50%;
  top: var(--spacing-lg);
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
  text-align: center;
}

.trust-badge {
  padding: var(--spacing-xl);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.trust-badge-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--color-bg-alt);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.trust-badge-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: var(--fw-semibold);
  margin-bottom: var(--spacing-xs);
}

.trust-badge-text {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

/* ============================================================
   25. Contact Us Page
   ============================================================ */
.contact-page {
  padding-top: calc(var(--header-height) + var(--spacing-xl));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--spacing-3xl);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact-info-card {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.contact-info-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--color-bg-alt);
  color: var(--color-primary);
  font-size: 1.2rem;
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: var(--fw-semibold);
  margin-bottom: var(--spacing-xs);
}

.contact-info-card p {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: var(--lh-normal);
}

.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-card);
}

.contact-form-wrapper h3 {
  margin-bottom: var(--spacing-lg);
}

.map-placeholder {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-alt);
  position: relative;
  margin-top: var(--spacing-3xl);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-placeholder-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  gap: var(--spacing-sm);
}

.map-placeholder-overlay svg {
  width: 40px;
  height: 40px;
}
/* ============================================================
   26. Cart Page
   ============================================================ */
.cart-page {
  padding-top: calc(var(--header-height) + var(--spacing-xl));
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--spacing-xl);
  align-items: start;
}

.cart-table {
  width: 100%;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.cart-table thead {
  background: var(--color-bg-alt);
}

.cart-table th {
  padding: var(--spacing-md) var(--spacing-lg);
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  text-align: left;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-table td {
  padding: var(--spacing-md) var(--spacing-lg);
  vertical-align: middle;
  border-bottom: 1px solid var(--color-bg-alt);
}

.cart-table tbody tr:last-child td {
  border-bottom: none;
}

.cart-product {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

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

.cart-product-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  margin-bottom: 2px;
}

.cart-product-info span {
  font-size: var(--fs-tiny);
  color: var(--color-text-muted);
}

.cart-remove {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  transition: all var(--transition-base);
}

.cart-remove:hover {
  background: rgba(198, 40, 40, 0.10);
  color: var(--color-error);
}

.cart-remove svg {
  width: 16px;
  height: 16px;
}

.cart-totals {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-card);
  position: sticky;
  top: calc(var(--header-height-scrolled) + var(--spacing-lg));
}

.cart-totals h3 {
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  border-bottom: 2px solid var(--color-bg-alt);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
  font-size: var(--fs-small);
  color: var(--color-text-light);
}

.cart-total-row.total {
  font-size: var(--fs-h5);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  border-top: 2px solid var(--color-bg-alt);
  padding-top: var(--spacing-md);
  margin-top: var(--spacing-sm);
}

.cart-total-row.total .amount {
  color: var(--color-primary);
}

.cart-totals .btn {
  width: 100%;
  margin-top: var(--spacing-lg);
}

.coupon-input {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.coupon-input input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid var(--color-bg-alt);
  border-radius: var(--radius-md);
  font-size: var(--fs-small);
  color: var(--color-text);
  background: var(--color-bg);
}

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

.coupon-input button {
  padding: 10px 20px;
  background: var(--color-text);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-size: var(--fs-tiny);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.coupon-input button:hover {
  background: var(--color-primary);
}

/* ============================================================
   27. Checkout Page
   ============================================================ */
.checkout-page {
  padding-top: calc(var(--header-height) + var(--spacing-xl));
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.checkout-form-section {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--spacing-lg);
}

.checkout-form-section h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid var(--color-bg-alt);
}

.checkout-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.payment-method {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  border: 2px solid var(--color-bg-alt);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
}

.payment-method:hover {
  border-color: var(--color-accent);
}

.payment-method.active {
  border-color: var(--color-secondary);
  background: rgba(184, 134, 11, 0.05);
}

.payment-method input[type=\"radio\"] {
  display: none;
}

.payment-method .radio-custom {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.payment-method input:checked + .radio-custom {
  border-color: var(--color-secondary);
}

.payment-method input:checked + .radio-custom::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
}

.payment-method-info {
  flex: 1;
}

.payment-method-name {
  font-weight: var(--fw-medium);
  font-size: var(--fs-small);
  color: var(--color-text);
}

.payment-method-desc {
  font-size: var(--fs-tiny);
  color: var(--color-text-muted);
}

.payment-method-icon {
  width: 40px;
  height: 28px;
  object-fit: contain;
}

.order-summary {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-card);
  position: sticky;
  top: calc(var(--header-height-scrolled) + var(--spacing-lg));
}

.order-summary h3 {
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid var(--color-bg-alt);
}

.order-summary-item {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--color-bg-alt);
}

.order-summary-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.order-summary-item-info {
  flex: 1;
}

.order-summary-item-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
}

.order-summary-item-info span {
  font-size: var(--fs-tiny);
  color: var(--color-text-muted);
}

.order-summary-item-price {
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  font-size: var(--fs-small);
}
/* ============================================================
   28. User Account Pages
   ============================================================ */
.account-page {
  padding-top: calc(var(--header-height) + var(--spacing-xl));
}

.account-tabs {
  display: flex;
  border-bottom: 2px solid var(--color-bg-alt);
  margin-bottom: var(--spacing-xl);
  overflow-x: auto;
  gap: 0;
}

.account-tab {
  padding: var(--spacing-md) var(--spacing-xl);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  background: none;
}

.account-tab:hover {
  color: var(--color-text);
}

.account-tab.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.account-tab-content {
  display: none;
}

.account-tab-content.active {
  display: block;
}

.orders-table {
  width: 100%;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.orders-table thead {
  background: var(--color-bg-alt);
}

.orders-table th {
  padding: var(--spacing-md);
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  text-align: left;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.orders-table td {
  padding: var(--spacing-md);
  font-size: var(--fs-small);
  border-bottom: 1px solid var(--color-bg-alt);
  color: var(--color-text-light);
}

.order-status {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: var(--fs-tiny);
  font-weight: var(--fw-medium);
}

.order-status.pending { background: #FFF3E0; color: #E65100; }
.order-status.processing { background: #E3F2FD; color: #1565C0; }
.order-status.shipped { background: #E8F5E9; color: #2E7D32; }
.order-status.delivered { background: #E8F5E9; color: #1B5E20; }
.order-status.cancelled { background: #FFEBEE; color: #C62828; }

.addresses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.address-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-card);
  position: relative;
}

.address-card.default {
  border: 2px solid var(--color-secondary);
}

.address-card-label {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  font-size: 0.6rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-secondary);
  background: rgba(184, 134, 11, 0.10);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.address-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  margin-bottom: var(--spacing-xs);
}

.address-card p {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-sm);
}

.address-card-actions {
  display: flex;
  gap: var(--spacing-sm);
}

.address-card-actions button {
  font-size: var(--fs-tiny);
  color: var(--color-text-muted);
  transition: color var(--transition-base);
}

.address-card-actions button:hover {
  color: var(--color-primary);
}

.profile-form {
  max-width: 600px;
}

/* ============================================================
   29. Form Elements
   ============================================================ */
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  margin-bottom: var(--spacing-xs);
  color: var(--color-text);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-bg-alt);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.form-control:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.12);
  background: var(--color-white);
}

.form-control::placeholder {
  color: var(--color-text-muted);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B5A4A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E\");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-control.error {
  border-color: var(--color-error);
}

.form-control.success {
  border-color: var(--color-success);
}

.form-error {
  font-size: var(--fs-tiny);
  color: var(--color-error);
  margin-top: var(--spacing-xs);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  cursor: pointer;
  font-size: var(--fs-small);
  color: var(--color-text-light);
  user-select: none;
}

.custom-checkbox input[type=\"checkbox\"] {
  display: none;
}

.custom-checkbox .checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-text-muted);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.custom-checkbox input:checked + .checkmark {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.custom-checkbox input:checked + .checkmark::after {
  content: '';
  width: 5px;
  height: 9px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}
/* ============================================================
   30. WhatsApp Floating Button
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-sticky);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
}

.whatsapp-float-btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-whatsapp);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40);
  transition: all var(--transition-base);
  animation: pulse 2s ease-in-out infinite;
  position: relative;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.50);
  animation: none;
}

.whatsapp-float-btn svg {
  width: 26px;
  height: 26px;
  fill: var(--color-white);
}

.whatsapp-float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-white);
  color: var(--color-text);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: var(--fs-tiny);
  font-weight: var(--fw-medium);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  pointer-events: none;
}

.whatsapp-float-btn:hover .whatsapp-float-tooltip {
  opacity: 1;
  visibility: visible;
}

.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--color-white);
}

.whatsapp-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: var(--color-white);
  padding: var(--spacing-sm) var(--spacing-md);
  box-shadow: 0 -2px 20px rgba(45, 27, 14, 0.12);
  border-top: 1px solid var(--color-bg-alt);
}

.whatsapp-mobile-bar .btn-whatsapp {
  width: 100%;
  padding: 12px;
  font-size: var(--fs-body);
}

/* ============================================================
   31. Footer
   ============================================================ */
.footer {
  background: var(--color-text);
  color: rgba(45, 27, 14, 0.80);
  padding-top: var(--spacing-4xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--spacing-3xl);
  padding-bottom: var(--spacing-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-brand-description {
  font-size: var(--fs-small);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.60);
  margin-top: var(--spacing-md);
  max-width: 320px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  color: var(--color-white);
}

.footer-logo-sub {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  display: block;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  margin-bottom: var(--spacing-lg);
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-links a {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.60);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.footer-links a:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.footer-newsletter p {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.60);
  margin-bottom: var(--spacing-md);
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  font-size: var(--fs-small);
  border: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.40);
}

.newsletter-form input:focus {
  background: rgba(255, 255, 255, 0.10);
}

.newsletter-form button {
  padding: 12px 20px;
  background: var(--gradient-gold);
  color: var(--color-white);
  font-size: var(--fs-tiny);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--gradient-gold-hover);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.60);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--gradient-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.payment-icons {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
}

.payment-icon {
  height: 28px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
}

.payment-icon img {
  height: 100%;
  width: auto;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-lg) 0;
  font-size: var(--fs-tiny);
  color: rgba(255, 255, 255, 0.40);
}

.footer-bottom-links {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.40);
  transition: color var(--transition-base);
}

.footer-bottom-links a:hover {
  color: var(--color-accent);
}
/* ============================================================
   32. Breadcrumb Navigation
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) 0;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--color-text-muted);
  transition: color var(--transition-base);
}

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

.breadcrumb .separator {
  color: var(--color-text-muted);
  font-size: 0.7rem;
}

.breadcrumb .current {
  color: var(--color-text-light);
  font-weight: var(--fw-medium);
}

/* ============================================================
   33. Pagination
   ============================================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-3xl);
}

.pagination-item {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-text-light);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  cursor: pointer;
}

.pagination-item:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.pagination-item.active {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
}

.pagination-item.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-item svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   34. Wishlist Page
   ============================================================ */
.wishlist-page {
  padding-top: calc(var(--header-height) + var(--spacing-xl));
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.wishlist-empty {
  text-align: center;
  padding: var(--spacing-4xl) var(--spacing-lg);
}

.wishlist-empty svg {
  width: 80px;
  height: 80px;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-lg);
}

.wishlist-empty h3 {
  margin-bottom: var(--spacing-md);
}

.wishlist-empty p {
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-xl);
}

/* ============================================================
   35. Order Tracking Page
   ============================================================ */
.order-tracking {
  padding-top: calc(var(--header-height) + var(--spacing-xl));
}

.tracking-form {
  max-width: 500px;
  margin: 0 auto var(--spacing-3xl);
  display: flex;
  gap: var(--spacing-md);
}

.tracking-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--color-bg-alt);
  border-radius: var(--radius-md);
  font-size: var(--fs-body);
  color: var(--color-text);
}

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

.tracking-timeline {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.tracking-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-bg-alt);
}

.tracking-step {
  position: relative;
  padding-bottom: var(--spacing-xl);
}

.tracking-step:last-child {
  padding-bottom: 0;
}

.tracking-step-dot {
  position: absolute;
  left: -33px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: var(--radius-full);
  background: var(--color-bg-alt);
  border: 2px solid var(--color-white);
  z-index: 2;
}

.tracking-step.completed .tracking-step-dot {
  background: var(--color-success);
}

.tracking-step.active .tracking-step-dot {
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(122, 62, 29, 0.15);
}

.tracking-step-status {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  margin-bottom: 2px;
}

.tracking-step-date {
  font-size: var(--fs-tiny);
  color: var(--color-text-muted);
}

.tracking-step-description {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  margin-top: var(--spacing-xs);
}
/* ============================================================
   36. Coupon System Styling
   ============================================================ */
.coupon-card {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--color-secondary);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--spacing-md);
  position: relative;
  overflow: hidden;
}

.coupon-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  opacity: 0.08;
  border-radius: 0 0 0 80px;
}

.coupon-card-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(184, 134, 11, 0.10);
  color: var(--color-secondary);
  font-size: 1.5rem;
}

.coupon-card-info {
  flex: 1;
}

.coupon-card-code {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 4px 12px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-xs);
}

.coupon-card-code button {
  font-size: var(--fs-tiny);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color var(--transition-base);
}

.coupon-card-code button:hover {
  color: var(--color-primary);
}

.coupon-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
}

.coupon-card-desc {
  font-size: var(--fs-tiny);
  color: var(--color-text-muted);
}

.coupon-card-expiry {
  font-size: var(--fs-tiny);
  color: var(--color-error);
  margin-top: var(--spacing-xs);
}

.coupon-card-action {
  flex-shrink: 0;
}

/* ============================================================
   37. Login / Register Modal
   ============================================================ */
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.auth-modal.active {
  opacity: 1;
  visibility: visible;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 27, 14, 0.60);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.auth-content {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  max-width: 440px;
  width: 100%;
  padding: var(--spacing-xl);
  transform: translateY(30px);
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}

.auth-modal.active .auth-content {
  transform: translateY(0);
}

.auth-close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  transition: all var(--transition-base);
}

.auth-close:hover {
  background: var(--color-bg-alt);
  color: var(--color-text);
}

.auth-close svg {
  width: 18px;
  height: 18px;
}

.auth-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.auth-header h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--spacing-xs);
}

.auth-header p {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

.auth-tabs {
  display: flex;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: var(--spacing-xl);
}

.auth-tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  background: none;
}

.auth-tab.active {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.auth-form .form-group {
  margin-bottom: var(--spacing-md);
}

.auth-form .btn {
  width: 100%;
  margin-top: var(--spacing-md);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
  color: var(--color-text-muted);
  font-size: var(--fs-tiny);
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-bg-alt);
}

.auth-social {
  display: flex;
  gap: var(--spacing-sm);
}

.auth-social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 12px;
  border: 1px solid var(--color-bg-alt);
  border-radius: var(--radius-md);
  font-size: var(--fs-small);
  color: var(--color-text-light);
  transition: all var(--transition-base);
}

.auth-social-btn:hover {
  border-color: var(--color-secondary);
  background: rgba(184, 134, 11, 0.05);
}

.auth-forgot {
  text-align: right;
  font-size: var(--fs-tiny);
  color: var(--color-primary);
  margin-top: var(--spacing-xs);
  cursor: pointer;
  display: block;
}

.auth-forgot:hover {
  text-decoration: underline;
}
/* ============================================================
   38. Toast / Notification System
   ============================================================ */
.toast-container {
  position: fixed;
  top: calc(var(--header-height) + var(--spacing-md));
  right: var(--spacing-lg);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
  min-width: 300px;
  max-width: 420px;
  animation: slideInRight 0.4s ease forwards;
  border-left: 4px solid var(--color-primary);
}

.toast.success {
  border-left-color: var(--color-success);
}

.toast.error {
  border-left-color: var(--color-error);
}

.toast.warning {
  border-left-color: var(--color-warning);
}

.toast-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-icon.success { color: var(--color-success); }
.toast-icon.error { color: var(--color-error); }
.toast-icon.warning { color: var(--color-warning); }

.toast-message {
  flex: 1;
  font-size: var(--fs-small);
  color: var(--color-text);
  line-height: var(--lh-normal);
}

.toast-close {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: color var(--transition-base);
}

.toast-close:hover {
  color: var(--color-text);
}

.toast.removing {
  animation: slideOutRight 0.3s ease forwards;
}

/* ============================================================
   39. Scroll to Top Button
   ============================================================ */
.scroll-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--gradient-gold);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  z-index: var(--z-sticky);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  cursor: pointer;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-lg);
}

.scroll-to-top svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   40. Image Lazy Loading Placeholder
   ============================================================ */
.lazy-image {
  position: relative;
  background: var(--color-bg-alt);
  overflow: hidden;
  min-height: 100px;
}

.lazy-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-skeleton);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

.lazy-image.loaded::before {
  display: none;
}

.lazy-image img {
  opacity: 0;
  transition: opacity var(--transition-base);
}

.lazy-image.loaded img {
  opacity: 1;
}

.skeleton {
  background: linear-gradient(90deg, var(--color-bg-alt) 25%, #EDE4D4 50%, var(--color-bg-alt) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

.skeleton-text {
  height: 14px;
  margin-bottom: var(--spacing-sm);
  width: 80%;
}

.skeleton-text.short {
  width: 50%;
}

.skeleton-text.long {
  width: 100%;
}

.skeleton-image {
  aspect-ratio: 1;
  width: 100%;
  border-radius: var(--radius-sm);
}

.skeleton-price {
  height: 20px;
  width: 60%;
  margin-top: var(--spacing-sm);
}

.skeleton-badge {
  height: 24px;
  width: 80px;
  border-radius: var(--radius-full);
}
/* ============================================================
   41. Loading Screen / Preloader
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: var(--z-preloader);
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-lg);
}

.preloader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--color-bg-alt);
  border-top-color: var(--color-primary);
  border-radius: var(--radius-full);
  animation: spin 0.8s linear infinite;
}

.preloader-text {
  margin-top: var(--spacing-lg);
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================================
   42. Error 404 Page
   ============================================================ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--color-bg);
}

.error-content h1 {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: var(--fw-bold);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}

.error-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--spacing-md);
}

.error-content p {
  color: var(--color-text-muted);
  max-width: 400px;
  margin: 0 auto var(--spacing-xl);
}

.error-content .btn {
  margin: 0 auto;
}

/* ============================================================
   43. Compare Products Toggle
   ============================================================ */
.compare-toggle {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-sticky);
  background: var(--color-white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xl);
  padding: var(--spacing-sm) var(--spacing-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.compare-toggle.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.compare-toggle-count {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--color-text);
}

.compare-toggle-count span {
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}

.compare-toggle-btn {
  padding: 8px 20px;
  background: var(--gradient-gold);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: var(--fs-tiny);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-base);
}

.compare-toggle-btn:hover {
  background: var(--gradient-gold-hover);
  box-shadow: var(--shadow-gold);
}

/* ============================================================
   44. Cookie Consent Bar
   ============================================================ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--spacing-md) var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.cookie-consent.visible {
  transform: translateY(0);
}

.cookie-consent p {
  font-size: var(--fs-small);
  margin: 0;
  max-width: 700px;
}

.cookie-consent a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: var(--spacing-sm);
  flex-shrink: 0;
}

.cookie-accept {
  padding: 8px 20px;
  background: var(--gradient-gold);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-size: var(--fs-tiny);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.cookie-accept:hover {
  background: var(--gradient-gold-hover);
}

.cookie-decline {
  padding: 8px 20px;
  background: transparent;
  color: rgba(255, 255, 255, 0.60);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--radius-md);
  font-size: var(--fs-tiny);
  font-weight: var(--fw-medium);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.cookie-decline:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.40);
}
/* ============================================================
   45. Animations & Keyframes
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(30px);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes goldShimmer {
  0%, 100% {
    opacity: 0.3;
    transform: translateX(-10%);
  }
  50% {
    opacity: 0.6;
    transform: translateX(10%);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.60);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes cartBadgePop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
/* ============================================================
   46. Responsive Breakpoints
   ============================================================ */

/* Max 1200px (Desktop small) */
@media screen and (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 var(--spacing-lg);
  }

  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .shop-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .wishlist-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .slider-track .product-card {
    min-width: calc(33.33% - 16px);
  }
}

/* Max 1024px (Tablet landscape) */
@media screen and (max-width: 1024px) {
  :root {
    --header-height: 70px;
  }

  .header-nav-list {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
    display: none;
  }

  .shop-sidebar.active {
    display: block;
    position: fixed;
    inset: 0;
    z-index: var(--z-offcanvas);
    background: var(--color-white);
    padding: var(--spacing-xl);
    overflow-y: auto;
  }

  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-slider .testimonial-card {
    min-width: calc(50% - 12px);
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
  }

  .quick-view-content {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

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

  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slider-track .product-card {
    min-width: calc(50% - 12px);
  }
}

/* Max 768px (Tablet portrait / Mobile large) */
@media screen and (max-width: 768px) {
  .section-padding {
    padding: var(--spacing-2xl) 0;
  }

  .section-padding-sm {
    padding: var(--spacing-xl) 0;
  }

  .section-title {
    margin-bottom: var(--spacing-xl);
  }

  h1 { font-size: clamp(1.8rem, 6vw, 2.2rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 1.8rem); }
  h3 { font-size: clamp(1.2rem, 4vw, 1.5rem); }

  .hero {
    min-height: 85vh;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-actions .btn {
    padding: 12px 24px;
    font-size: var(--fs-tiny);
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
  }

  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .collection-content {
    padding: var(--spacing-xl);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }

  .testimonials-slider .testimonial-card {
    min-width: calc(100% - 0px);
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-left: 50px;
  }

  .timeline-item-content {
    width: 100%;
  }

  .timeline-item-dot {
    left: 12px;
    transform: none;
  }

  .offer-countdown {
    gap: var(--spacing-md);
  }

  .countdown-number {
    font-size: 1.5rem;
  }

  .cart-table thead {
    display: none;
  }

  .cart-table tbody tr {
    display: block;
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--color-bg-alt);
  }

  .cart-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    border: none;
  }

  .cart-table td::before {
    content: attr(data-label);
    font-weight: var(--fw-medium);
    font-size: var(--fs-tiny);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

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

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

  .cookie-consent {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-mobile-bar {
    display: block;
  }

  .whatsapp-float {
    bottom: 80px;
  }

  .scroll-to-top {
    bottom: 80px;
  }
}

/* Max 480px (Mobile small) */
@media screen and (max-width: 480px) {
  :root {
    --header-height: 60px;
    --header-height-scrolled: 56px;
  }

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

  .header.scrolled .header-logo img {
    height: 28px;
  }

  .header-logo-text {
    font-size: 1.1rem;
  }

  .header-action-btn {
    width: 34px;
    height: 34px;
  }

  .header-action-btn svg {
    width: 18px;
    height: 18px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-products-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
  }

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

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .product-card-body {
    padding: var(--spacing-sm);
  }

  .product-card-title {
    font-size: 0.95rem;
  }

  .product-card-footer .btn {
    padding: 8px 12px;
    font-size: 0.6rem;
  }

  .section-title .title-decor {
    width: 40px;
  }

  .offer-banner {
    padding: var(--spacing-xl) var(--spacing-md);
    flex-direction: column;
    text-align: center;
  }

  .offer-banner-content {
    max-width: 100%;
  }

  .offer-text {
    margin: 0 auto var(--spacing-lg);
  }

  .countdown {
    justify-content: center;
  }

  .offer-banner-image img {
    max-width: 300px;
  }

  .offer-countdown {
    gap: var(--spacing-sm);
  }

  .countdown-number {
    font-size: 1.25rem;
  }

  .trust-badges {
    grid-template-columns: 1fr;
  }

  .search-overlay-input input {
    font-size: 1.1rem;
    padding: 16px 50px 16px 16px;
  }

  .toast {
    min-width: unset;
    max-width: unset;
    width: calc(100vw - 32px);
  }

  .auth-content {
    padding: var(--spacing-lg);
  }
}
