/* ==========================================================================
   KIRAMEI - Luxury Handbag Restoration Website
   Static CSS compiled from Tailwind + Custom Variables
   ========================================================================== */

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

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */
:root {
  /* Luxury Cream & Gold Palette */
  --background: 45 20% 96%;
  --foreground: 30 25% 15%;

  --card: 45 20% 98%;
  --card-foreground: 30 25% 15%;

  --popover: 45 20% 98%;
  --popover-foreground: 30 25% 15%;

  /* Deep Luxury Brown */
  --primary: 30 30% 25%;
  --primary-foreground: 45 30% 95%;

  /* Warm Cream */
  --secondary: 45 25% 92%;
  --secondary-foreground: 30 25% 20%;

  /* Muted Gold */
  --muted: 40 20% 90%;
  --muted-foreground: 30 15% 45%;

  /* Gold Accent */
  --accent: 38 55% 55%;
  --accent-foreground: 45 30% 98%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;

  --border: 35 20% 85%;
  --input: 35 20% 88%;
  --ring: 38 55% 55%;

  --radius: 0.25rem;

  /* Custom Luxury Tokens */
  --luxury-cream: 45 30% 95%;
  --luxury-beige: 40 25% 90%;
  --luxury-taupe: 35 18% 82%;
  --luxury-gold: 38 55% 55%;
  --luxury-gold-light: 40 60% 70%;
  --luxury-brown: 30 30% 25%;
  --luxury-brown-light: 30 20% 35%;
  --luxury-brown-dark: 25 35% 15%;
  --luxury-purple: 260 60% 55%;
  --luxury-blue: 220 70% 50%;

  /* Section Backgrounds */
  --section-cream: 45 30% 95%;
  --section-taupe: 35 20% 88%;
  --section-gold-tint: 40 40% 92%;
  --section-dark: 25 35% 15%;

  /* Gradients */
  --gradient-logo: linear-gradient(135deg, hsl(260 60% 55%), hsl(220 70% 50%));
  --gradient-gold: linear-gradient(135deg, hsl(38 55% 55%), hsl(40 60% 70%));
  --gradient-hero: linear-gradient(180deg, hsl(45 30% 95% / 0.1), hsl(45 30% 95% / 0.8));

  /* Shadows */
  --shadow-soft: 0 4px 20px hsl(30 25% 15% / 0.08);
  --shadow-card: 0 8px 30px hsl(30 25% 15% / 0.1);
  --shadow-gold: 0 4px 20px hsl(38 55% 55% / 0.25);
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

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

a,
a:visited {
  color: inherit;
  text-decoration: none;
}

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

/* ==========================================================================
   Typography
   ========================================================================== */
.font-playfair {
  font-family: 'Playfair Display', serif;
}

.font-inter {
  font-family: 'Inter', sans-serif;
}

/* Text Colors */
.text-foreground { color: hsl(var(--foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-accent-foreground { color: hsl(var(--accent-foreground)); }
.text-luxury-gold { color: hsl(var(--luxury-gold)); }
.text-luxury-brown { color: hsl(var(--luxury-brown)); }

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

/* Text Sizes */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.1; }
.text-6xl { font-size: 3.75rem; line-height: 1.1; }
.text-7xl { font-size: 4.5rem; line-height: 1.1; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

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

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ==========================================================================
   Background Colors
   ========================================================================== */
.bg-background { background-color: hsl(var(--background)); }
.bg-foreground { background-color: hsl(var(--foreground)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-muted { background-color: hsl(var(--muted)); }
.bg-accent { background-color: hsl(var(--accent)); }

.bg-luxury-gold { background-color: hsl(var(--luxury-gold)); }
.bg-luxury-brown { background-color: hsl(var(--luxury-brown)); }
.bg-luxury-brown-dark { background-color: hsl(var(--luxury-brown-dark)); }
.bg-luxury-cream { background-color: hsl(var(--luxury-cream)); }

.bg-section-cream { background-color: hsl(var(--section-cream)); }
.bg-section-taupe { background-color: hsl(var(--section-taupe)); }
.bg-section-gold-tint { background-color: hsl(var(--section-gold-tint)); }
.bg-section-dark { background-color: hsl(var(--section-dark)); }

.bg-gradient-logo { background: var(--gradient-logo); }
.bg-gradient-gold { background: var(--gradient-gold); }

.bg-whatsapp { background-color: #25D366; }
.bg-whatsapp-dark { background-color: #128C7E; }
.bg-whatsapp-header { background-color: #075E54; }
.bg-whatsapp-chat { background-color: #ECE5DD; }

/* Opacity backgrounds */
.bg-foreground\/0 { background-color: hsl(var(--foreground) / 0); }
.bg-foreground\/10 { background-color: hsl(var(--foreground) / 0.1); }
.bg-foreground\/20 { background-color: hsl(var(--foreground) / 0.2); }
.bg-foreground\/30 { background-color: hsl(var(--foreground) / 0.3); }
.bg-foreground\/40 { background-color: hsl(var(--foreground) / 0.4); }
.bg-foreground\/50 { background-color: hsl(var(--foreground) / 0.5); }
.bg-foreground\/60 { background-color: hsl(var(--foreground) / 0.6); }

.bg-background\/20 { background-color: hsl(var(--background) / 0.2); }
.bg-background\/30 { background-color: hsl(var(--background) / 0.3); }
.bg-background\/95 { background-color: hsl(var(--background) / 0.95); }

.bg-primary-foreground\/5 { background-color: hsl(var(--primary-foreground) / 0.05); }
.bg-primary-foreground\/10 { background-color: hsl(var(--primary-foreground) / 0.1); }

.bg-luxury-gold\/5 { background-color: hsl(var(--luxury-gold) / 0.05); }
.bg-luxury-gold\/10 { background-color: hsl(var(--luxury-gold) / 0.1); }
.bg-luxury-gold\/20 { background-color: hsl(var(--luxury-gold) / 0.2); }
.bg-luxury-gold\/90 { background-color: hsl(var(--luxury-gold) / 0.9); }

.bg-luxury-brown\/90 { background-color: hsl(var(--luxury-brown) / 0.9); }

/* ==========================================================================
   Layout - Container
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* ==========================================================================
   Flexbox & Grid
   ========================================================================== */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1 1 0%; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }

.gap-0 { gap: 0; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* Grid columns */
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ==========================================================================
   Spacing
   ========================================================================== */
/* Margin */
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }
.-ml-2 { margin-left: -0.5rem; }
.-top-1 { top: -0.25rem; }
.-right-1 { right: -0.25rem; }
.-left-4 { left: -1rem; }
.-right-4 { right: -1rem; }
.-top-8 { top: -2rem; }
.-bottom-8 { bottom: -2rem; }

/* Padding */
.p-0 { padding: 0; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.pt-20 { padding-top: 5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-16 { padding-bottom: 4rem; }

/* ==========================================================================
   Width & Height
   ========================================================================== */
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-72 { width: 18rem; }
.w-full { width: 100%; }

.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-80 { height: 20rem; }
.h-full { height: 100%; }

.min-h-screen { min-height: 100vh; }
.min-h-\[420px\] { min-height: 420px; }

.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }

/* Aspect ratio */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }
.aspect-\[9\/16\] { aspect-ratio: 9 / 16; }

/* ==========================================================================
   Positioning
   ========================================================================== */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.inset-0 { inset: 0; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.top-4 { top: 1rem; }
.top-6 { top: 1.5rem; }
.bottom-6 { bottom: 1.5rem; }
.bottom-8 { bottom: 2rem; }
.left-4 { left: 1rem; }
.left-6 { left: 1.5rem; }
.right-4 { right: 1rem; }
.right-6 { right: 1.5rem; }
.top-1\/2 { top: 50%; }
.left-1\/2 { left: 50%; }

.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }

/* ==========================================================================
   Border & Rounded
   ========================================================================== */
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-r { border-right-width: 1px; }
.border-l { border-left-width: 1px; }

.border-border { border-color: hsl(var(--border)); }
.border-luxury-gold { border-color: hsl(var(--luxury-gold)); }
.border-primary-foreground\/10 { border-color: hsl(var(--primary-foreground) / 0.1); }
.border-primary-foreground\/20 { border-color: hsl(var(--primary-foreground) / 0.2); }
.border-primary-foreground\/50 { border-color: hsl(var(--primary-foreground) / 0.5); }
.border-border\/30 { border-color: hsl(var(--border) / 0.3); }
.border-border\/50 { border-color: hsl(var(--border) / 0.5); }
.border-luxury-gold\/20 { border-color: hsl(var(--luxury-gold) / 0.2); }
.border-luxury-gold\/30 { border-color: hsl(var(--luxury-gold) / 0.3); }

.rounded { border-radius: var(--radius); }
.rounded-sm { border-radius: calc(var(--radius) - 4px); }
.rounded-md { border-radius: calc(var(--radius) - 2px); }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* ==========================================================================
   Shadows
   ========================================================================== */
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }

.shadow-luxury { box-shadow: var(--shadow-soft); }
.shadow-luxury-card { box-shadow: var(--shadow-card); }
.shadow-luxury-gold { box-shadow: var(--shadow-gold); }

/* ==========================================================================
   Effects
   ========================================================================== */
.opacity-0 { opacity: 0; }
.opacity-40 { opacity: 0.4; }
.opacity-100 { opacity: 1; }

.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }

.object-cover { object-fit: cover; }
.object-top { object-position: top; }

.backdrop-blur-sm { backdrop-filter: blur(4px); }
.blur-2xl { filter: blur(40px); }

.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }

.resize-none { resize: none; }

.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* ==========================================================================
   Transitions
   ========================================================================== */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }

/* ==========================================================================
   Hover States
   ========================================================================== */
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:bg-foreground\/10 { background-color: hsl(var(--foreground) / 0.1); }
.group:hover .group-hover\:text-luxury-gold { color: hsl(var(--luxury-gold)); }
.group:hover .group-hover\:bg-foreground\/40 { background-color: hsl(var(--foreground) / 0.4); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }

.hover\:bg-luxury-gold:hover { background-color: hsl(var(--luxury-gold)); }
.hover\:bg-luxury-gold\/90:hover { background-color: hsl(var(--luxury-gold) / 0.9); }
.hover\:text-foreground:hover { color: hsl(var(--foreground)); }
.hover\:text-luxury-gold:hover { color: hsl(var(--luxury-gold)); }
.hover\:text-luxury-gold\/80:hover { color: hsl(var(--luxury-gold) / 0.8); }
.hover\:text-accent-foreground:hover { color: hsl(var(--accent-foreground)); }
.hover\:text-primary-foreground:hover { color: hsl(var(--primary-foreground)); }
.hover\:border-luxury-gold:hover { border-color: hsl(var(--luxury-gold)); }
.hover\:border-luxury-gold\/30:hover { border-color: hsl(var(--luxury-gold) / 0.3); }
.hover\:bg-background\/30:hover { background-color: hsl(var(--background) / 0.3); }
.hover\:bg-primary-foreground\/10:hover { background-color: hsl(var(--primary-foreground) / 0.1); }
.hover\:bg-primary-foreground\/60:hover { background-color: hsl(var(--primary-foreground) / 0.6); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@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);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.animate-shimmer {
  background: linear-gradient(90deg, hsl(var(--luxury-gold) / 0) 0%, hsl(var(--luxury-gold) / 0.3) 50%, hsl(var(--luxury-gold) / 0) 100%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

.animation-delay-100 { animation-delay: 0.1s; }
.animation-delay-200 { animation-delay: 0.2s; }
.animation-delay-300 { animation-delay: 0.3s; }
.animation-delay-400 { animation-delay: 0.4s; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn-sm {
  height: 2.25rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.875rem;
}

.btn-md {
  height: 2.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  height: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 1rem;
}

.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
}

.btn-primary,
.btn-primary:visited {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.btn-primary:hover {
  background-color: hsl(var(--primary) / 0.9);
}

.btn-gold,
.btn-gold:visited {
  background-color: hsl(var(--luxury-gold));
  color: hsl(var(--accent-foreground));
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background-color: hsl(var(--luxury-gold) / 0.9);
}

.btn-hero,
.btn-hero:visited {
  background-color: hsl(var(--luxury-gold));
  color: hsl(var(--accent-foreground));
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  box-shadow: var(--shadow-gold);
  border-radius: 0.25rem;
  transition: all 0.3s;
}
.btn-hero:hover {
  background-color: hsl(var(--luxury-gold-light));
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  transform: translateY(-1px);
}

.btn-outline,
.btn-outline:visited {
  background-color: transparent;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
}
.btn-outline:hover {
  background-color: hsl(var(--secondary));
}

.btn-gold-outline,
.btn-gold-outline:visited {
  background-color: transparent;
  border: 2px solid hsl(var(--primary-foreground) / 0.5);
  color: hsl(var(--primary-foreground)) !important;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.75rem 2rem;
  border-radius: 0.25rem;
  transition: all 0.3s;
}
.btn-gold-outline:hover {
  background-color: hsl(var(--primary-foreground) / 0.1);
  color: hsl(var(--primary-foreground)) !important;
}

.btn-ghost,
.btn-ghost:visited {
  background-color: transparent;
  color: hsl(var(--muted-foreground));
}
.btn-ghost:hover {
  background-color: hsl(var(--secondary));
  color: hsl(var(--foreground));
}

.btn-whatsapp,
.btn-whatsapp:visited {
  background-color: #25D366;
  color: white;
  border-radius: 9999px;
  font-weight: 500;
}
.btn-whatsapp:hover {
  background-color: #128C7E;
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: hsl(var(--luxury-gold));
  box-shadow: 0 0 0 3px hsl(var(--luxury-gold) / 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: hsl(var(--muted-foreground));
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.form-textarea {
  min-height: 8rem;
  resize: vertical;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsl(var(--background) / 0.95);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid hsl(var(--border));
}

.nav-fixed.scrolled {
  box-shadow: 0 4px 20px hsl(30 25% 15% / 0.08);
}

.nav-container {
  display: flex;
  flex-direction: column;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 4rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Custom logo sizing constraints */
.custom-logo-link {
  display: block;
  max-width: 350px;
  width: 100%;
}

.nav-logo .custom-logo-link img,
.nav-logo .custom-logo,
.nav-logo img {
  max-height: 40px !important;
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

.footer-logo .custom-logo-link img,
.footer-logo .custom-logo,
.footer-logo img {
  max-height: 40px !important;
  max-width: 350px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: hsl(var(--foreground));
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
  letter-spacing: 0.025em;
}

.nav-link:visited {
  color: hsl(var(--muted-foreground));
}

.nav-link:hover,
.nav-link:visited:hover {
  color: hsl(var(--foreground));
}

.nav-link.active,
.nav-link.active:visited {
  color: hsl(var(--luxury-gold));
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-btn {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--muted-foreground));
  border-radius: var(--radius);
  transition: all 0.2s;
  background: transparent;
  border: none;
  cursor: pointer;
}

.icon-btn:hover {
  background-color: hsl(var(--secondary));
  color: hsl(var(--foreground));
}

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.25rem;
  background-color: hsl(var(--luxury-gold));
  color: hsl(var(--accent-foreground));
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  margin-left: -0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: hsl(var(--foreground));
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid hsl(var(--border));
}

.mobile-menu:not(.hidden) {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

.mobile-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  letter-spacing: 0.025em;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.mobile-link:hover,
.mobile-link.active {
  color: hsl(var(--luxury-gold));
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 4rem;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(var(--luxury-brown-dark) / 0.8), hsl(var(--luxury-brown-dark) / 0.4), transparent);
}

.hero-overlay-center {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--luxury-brown-dark) / 0.7), hsl(var(--luxury-brown-dark) / 0.3), hsl(var(--luxury-brown-dark) / 0.5));
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 2rem;
}

.hero-content-slide {
  display: none;
}

.hero-content-slide.active {
  display: block;
  animation: fadeIn 0.5s ease-out;
}

.hero-content-slide.center {
  text-align: center;
}

.hero-text-wrapper {
  max-width: 42rem;
}

.hero-text-wrapper.center {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: hsl(var(--primary-foreground));
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: hsl(var(--primary-foreground) / 0.8);
  margin-bottom: 2.5rem;
  max-width: 32rem;
}

.hero-text-wrapper.center .hero-subtitle {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-text-wrapper.center .hero-buttons {
  justify-content: center;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: hsl(var(--background) / 0.2);
  backdrop-filter: blur(4px);
  border: 1px solid hsl(var(--primary-foreground) / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-foreground));
  transition: background-color 0.2s;
  cursor: pointer;
}

.hero-arrow:hover {
  background-color: hsl(var(--background) / 0.3);
}

.hero-arrow-left { left: 1rem; }
.hero-arrow-right { right: 1rem; }

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.75rem;
}

.hero-indicator {
  height: 0.5rem;
  border-radius: 9999px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.hero-indicator.active {
  width: 2rem;
  background-color: hsl(var(--luxury-gold));
}

.hero-indicator:not(.active) {
  width: 0.5rem;
  background-color: hsl(var(--primary-foreground) / 0.4);
}

.hero-indicator:not(.active):hover {
  background-color: hsl(var(--primary-foreground) / 0.6);
}

.hero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.25rem;
  background: var(--gradient-gold);
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
.section-header {
  text-align: center;
  padding: 4rem 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Product Card
   ========================================================================== */
.product-card {
  position: relative;
  flex-shrink: 0;
}

.product-card-image-wrapper {
  position: relative;
  overflow: hidden;
  background-color: hsl(var(--card));
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
}

.product-card-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.product-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: hsl(var(--luxury-gold) / 0.9);
  color: hsl(var(--accent-foreground));
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background-color: transparent;
  transition: background-color 0.3s;
}

.product-card:hover .product-card-overlay {
  background-color: hsl(var(--foreground) / 0.1);
}

.product-card-brand {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.product-card-name {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: hsl(var(--foreground));
  transition: color 0.2s;
}

.product-card:visited .product-card-name {
  color: hsl(var(--foreground));
}

.product-card:hover .product-card-name,
.product-card:visited:hover .product-card-name {
  color: hsl(var(--luxury-gold));
}

.product-card-price {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.product-card:visited .product-card-price {
  color: hsl(var(--muted-foreground));
}

/* ==========================================================================
   Carousel
   ========================================================================== */
.carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel-nav {
  display: none;
  gap: 0.5rem;
}

.carousel-nav-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.carousel-nav-btn:hover:not(:disabled) {
  background-color: hsl(var(--luxury-gold));
  border-color: hsl(var(--luxury-gold));
  color: hsl(var(--accent-foreground));
}

.carousel-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ==========================================================================
   Collection Block
   ========================================================================== */
.collection-block {
  display: grid;
}

.collection-lifestyle {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.collection-lifestyle-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.collection-lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsl(var(--foreground) / 0.6), hsl(var(--foreground) / 0.2), transparent);
}

.collection-lifestyle-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  padding-top: 2rem;
}

.collection-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: hsl(var(--primary-foreground));
  margin-bottom: 0.25rem;
}

.collection-tagline {
  color: hsl(var(--primary-foreground) / 0.8);
  font-size: 0.75rem;
  max-width: 28rem;
  display: none;
}

.collection-products {
  background-color: hsl(var(--section-cream));
  padding: 1.5rem;
}

.collection-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  height: 100%;
  max-width: 100%;
  min-width: 0;
}

.collection-product {
  position: relative;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.collection-product-image-wrapper {
  position: relative;
  overflow: hidden;
  background-color: hsl(var(--card));
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-soft);
}

.collection-product-image {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 !important;
  object-fit: cover !important;
  transition: transform 0.5s;
}

.collection-product:hover .collection-product-image {
  transform: scale(1.05);
}

.collection-product-overlay {
  position: absolute;
  inset: 0;
  background-color: transparent;
  transition: background-color 0.3s;
}

.collection-product:hover .collection-product-overlay {
  background-color: hsl(var(--foreground) / 0.1);
}

.collection-product-name {
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: hsl(var(--foreground));
  transition: color 0.2s;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  width: 100%;
  max-width: 100%;
}

.collection-product:visited .collection-product-name {
  color: hsl(var(--foreground));
}

.collection-product:hover .collection-product-name,
.collection-product:visited:hover .collection-product-name {
  color: hsl(var(--luxury-gold));
}

.collection-product-price {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.collection-product:visited .collection-product-price {
  color: hsl(var(--muted-foreground));
}

/* ==========================================================================
   Stats Row
   ========================================================================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: hsl(var(--luxury-brown));
  color: hsl(var(--primary-foreground));
}

.stat-item {
  padding: 2rem 0;
  text-align: center;
  border-right: 1px solid hsl(var(--primary-foreground) / 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 500;
  color: hsl(var(--luxury-gold));
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.7);
  letter-spacing: 0.025em;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: hsl(var(--luxury-brown-dark));
  color: hsl(var(--primary-foreground));
}

.footer-grid {
  display: grid;
  gap: 0;
  border-bottom: 1px solid hsl(var(--primary-foreground) / 0.1);
}

.footer-column {
  padding: 2.5rem;
  border-right: 1px solid hsl(var(--primary-foreground) / 0.1);
}

.footer-column:last-child {
  border-right: none;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.footer-description {
  color: hsl(var(--primary-foreground) / 0.6);
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: hsl(var(--primary-foreground) / 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-foreground) / 0.6);
  transition: all 0.2s;
}

.footer-social-link:hover {
  background-color: hsl(var(--luxury-gold));
  color: hsl(var(--accent-foreground));
}

.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  color: hsl(var(--primary-foreground) / 0.6);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: hsl(var(--luxury-gold));
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.6);
}

.footer-contact-icon {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--luxury-gold));
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2.5rem;
}

.footer-copyright {
  color: hsl(var(--primary-foreground) / 0.4);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-legal a {
  color: hsl(var(--primary-foreground) / 0.4);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: hsl(var(--primary-foreground));
}

/* ==========================================================================
   WhatsApp / Customer Love
   ========================================================================== */
.whatsapp-frame {
  position: relative;
  background-color: hsl(var(--card));
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  border: 1px solid hsl(var(--border) / 0.5);
  transition: all 0.5s;
}

.whatsapp-frame:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  border-color: hsl(var(--luxury-gold) / 0.3);
}

.whatsapp-header {
  background-color: #075E54;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.whatsapp-avatar {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-avatar span {
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
}

.whatsapp-name {
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
}

.whatsapp-status {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.625rem;
}

.whatsapp-chat-area {
  aspect-ratio: 9 / 16;
  background-color: #ECE5DD;
  position: relative;
  overflow: hidden;
}

.whatsapp-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.whatsapp-reaction-bar {
  background-color: hsl(var(--card));
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid hsl(var(--border) / 0.3);
}

/* ==========================================================================
   Brand Page
   ========================================================================== */
.brand-hero {
  position: relative;
  height: 280px;
  margin-top: 4rem;
  overflow: hidden;
}

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

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

.brand-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(var(--luxury-brown-dark) / 0.8), hsl(var(--luxury-brown-dark) / 0.5), transparent);
}

.brand-hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
}

.brand-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 500;
  color: hsl(var(--luxury-gold));
  margin-bottom: 0.75rem;
}

.brand-hero-tagline {
  color: hsl(var(--primary-foreground) / 0.8);
  font-size: 1rem;
  max-width: 32rem;
}

/* Filter Bar */
.filter-bar {
  position: sticky;
  top: 4rem;
  z-index: 40;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid hsl(var(--border));
}

.filter-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
}

.product-count {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.count-number {
  font-weight: 500;
  color: hsl(var(--foreground));
}

.sort-dropdown {
  position: relative;
}

.sort-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.sort-trigger:hover {
  color: hsl(var(--foreground));
}

.sort-value {
  font-weight: 500;
  color: hsl(var(--foreground));
}

.sort-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 12rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  overflow: hidden;
  z-index: 50;
}

.sort-option {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  text-align: left;
  color: hsl(var(--foreground));
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.sort-option:hover {
  background: hsl(var(--secondary));
}

.sort-option.active {
  background: hsl(var(--secondary));
}

.brand-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid hsl(var(--border));
}

.brand-product-count {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.brand-sort-select {
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background-color: hsl(var(--background));
  font-size: 0.875rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
}

.brand-products {
  padding: 2rem 0 3rem;
}

.brand-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.brand-product-card {
  display: block;
  background: hsl(var(--card));
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border) / 0.5);
  text-decoration: none;
  transition: all 0.3s;
}

.brand-product-card:hover {
  border-color: hsl(var(--luxury-gold) / 0.3);
  box-shadow: 0 10px 40px -10px hsl(var(--foreground) / 0.15);
}

.brand-product-image-wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: hsl(var(--secondary) / 0.3);
}

.brand-product-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand-product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s;
}

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

.brand-product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
}

.brand-product-badge.new {
  background-color: hsl(var(--luxury-gold));
  color: hsl(var(--accent-foreground));
}

.brand-product-badge.bestseller {
  background-color: hsl(var(--luxury-brown));
  color: hsl(var(--primary-foreground));
}

.brand-product-badge.rare {
  background-color: hsl(var(--luxury-purple));
  color: white;
}

.brand-product-info {
  padding: 1rem;
}

.brand-product-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.brand-product-card:hover .brand-product-name {
  color: hsl(var(--luxury-gold));
}

.brand-product-condition {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.brand-product-price {
  font-weight: 500;
  color: hsl(var(--luxury-brown));
  font-size: 0.875rem;
}

.brand-history {
  padding: 3rem 0 5rem;
  background: hsl(var(--section-taupe));
}

.brand-history-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.brand-history-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

.brand-history-text {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  font-size: 1rem;
}

/* ==========================================================================
   Product Detail Page
   ========================================================================== */
.product-gallery {
  position: relative;
}

.product-main-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.product-thumbnail {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.25rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  border: 2px solid transparent;
}

.product-thumbnail:hover,
.product-thumbnail.active {
  opacity: 1;
}

.product-thumbnail.active {
  border-color: hsl(var(--luxury-gold));
}

.product-info {
  padding: 1rem 0;
}

.product-brand {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.product-condition {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: hsl(var(--luxury-gold) / 0.1);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.product-condition-rank {
  width: 1.5rem;
  height: 1.5rem;
  background-color: hsl(var(--luxury-gold));
  color: hsl(var(--accent-foreground));
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.product-condition-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--luxury-gold));
}

.product-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Tabs */
.product-tabs {
  border-bottom: 1px solid hsl(var(--border));
  display: flex;
  gap: 2rem;
}

.product-tab {
  padding: 1rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}

.product-tab:hover {
  color: hsl(var(--foreground));
}

.product-tab.active {
  color: hsl(var(--luxury-gold));
  border-bottom-color: hsl(var(--luxury-gold));
}

.product-tab-content {
  display: none;
  padding: 1.5rem 0;
}

.product-tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
  font-size: 0.875rem;
}

.breadcrumb-link {
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}

.breadcrumb-link:hover {
  color: hsl(var(--luxury-gold));
}

.breadcrumb-separator {
  color: hsl(var(--muted-foreground));
}

.breadcrumb-current {
  color: hsl(var(--foreground));
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

/* Contact Hero */
.contact-hero {
  padding: 4rem 0;
  text-align: center;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

.contact-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  max-width: 48rem;
  margin: 0 auto;
}

/* Contact Content Section */
.contact-content {
  padding-bottom: 4rem;
}

/* Contact Grid - 5 column split */
.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-form-col {
  /* Takes up more space on desktop */
}

/* Contact Section Title */
.contact-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

/* Contact Info List */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: hsl(var(--luxury-gold) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--luxury-gold));
}

.contact-info-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-weight: 500;
  color: hsl(var(--foreground));
}

.contact-info-value a {
  transition: color 0.2s;
}

.contact-info-value a:hover {
  color: hsl(var(--luxury-gold));
}

/* Contact Social Section */
.contact-social {
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--border));
}

.contact-social-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.contact-social-links {
  display: flex;
  gap: 0.75rem;
}

.contact-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: hsl(var(--luxury-gold) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--foreground));
  transition: all 0.3s;
}

.contact-social-link:hover {
  background-color: hsl(var(--luxury-gold));
  color: hsl(var(--accent-foreground));
}

.contact-social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* WhatsApp CTA Box */
.contact-whatsapp-cta {
  background-color: hsl(var(--luxury-gold) / 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid hsl(var(--luxury-gold) / 0.2);
}

.contact-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.contact-cta-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25D366;
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  transition: background-color 0.3s;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
}

.btn-whatsapp svg {
  width: 1rem;
  height: 1rem;
}

/* Contact Form Card */
.contact-form-card {
  background-color: hsl(var(--card));
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

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

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.375rem;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: hsl(var(--luxury-gold));
  box-shadow: 0 0 0 3px hsl(var(--luxury-gold) / 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: hsl(var(--muted-foreground));
}

.form-textarea {
  resize: none;
}

.form-note {
  font-size: 0.75rem;
  text-align: center;
  color: hsl(var(--muted-foreground));
}

.btn-full {
  width: 100%;
}

/* Why Shop Section */
.why-shop-section {
  padding: 4rem 0;
  background-color: hsl(var(--section-dark));
  color: hsl(var(--primary-foreground));
}

.why-shop-grid {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

.why-shop-item {
  text-align: center;
}

.why-shop-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  background-color: hsl(var(--luxury-gold) / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-shop-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--luxury-gold));
}

.why-shop-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: hsl(var(--primary-foreground));
}

.why-shop-desc {
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.7);
}

/* FAQ Teaser Section */
.faq-teaser {
  padding: 3rem 0;
  background-color: hsl(var(--section-gold-tint));
}

.faq-teaser-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.faq-teaser-text {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.faq-teaser-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--luxury-gold));
  font-weight: 500;
  transition: color 0.2s;
}

.faq-teaser-link:hover {
  color: hsl(var(--luxury-gold) / 0.8);
}

.faq-teaser-link svg {
  width: 1rem;
  height: 1rem;
}

/* Contact Page Responsive - md breakpoint (768px) */
@media (min-width: 768px) {
  .contact-title {
    font-size: 3rem;
  }

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

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

/* Contact Page Responsive - lg breakpoint (1024px) */
@media (min-width: 1024px) {
  .contact-hero {
    padding: 6rem 0;
  }

  .contact-title {
    font-size: 3.75rem;
  }

  .contact-content {
    padding-bottom: 6rem;
  }

  .contact-grid {
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
  }

  .contact-section-title {
    font-size: 1.875rem;
  }

  .contact-form-card {
    padding: 2rem;
  }

  .why-shop-section {
    padding: 5rem 0;
  }

  .faq-teaser {
    padding: 4rem 0;
  }

  .faq-teaser-title {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   Workshop Page
   ========================================================================== */
.workshop-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.workshop-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}

.workshop-gallery-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s;
}

.workshop-gallery-item:hover .workshop-gallery-image {
  transform: scale(1.05);
}

.workshop-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--foreground) / 0.6), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.workshop-gallery-label {
  color: hsl(var(--primary-foreground));
  font-size: 0.875rem;
  font-weight: 500;
}

.material-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}

.material-card .material-image-wrapper {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.material-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s;
}

.material-card:hover .material-image {
  transform: scale(1.1);
}

.material-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, hsl(var(--foreground) / 0.8), transparent);
  padding: 1.5rem;
}

.material-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: hsl(var(--primary-foreground));
  margin-bottom: 0.25rem;
}

.material-description {
  font-size: 0.75rem;
  color: hsl(var(--primary-foreground) / 0.8);
}

/* Workshop Hero Section */
.workshop-hero {
  padding: 5rem 0;
  text-align: center;
}

.workshop-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

.workshop-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.75;
  color: hsl(var(--muted-foreground));
  max-width: 48rem;
  margin: 0 auto;
}

/* Video Section */
.video-container {
  position: relative;
  margin-top: 3rem;
}

.video-thumb {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: hsl(var(--foreground) / 0.3);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.video-overlay:hover {
  background: hsl(var(--foreground) / 0.4);
}

.play-button-lg {
  width: 5rem;
  height: 5rem;
  background: hsl(var(--luxury-gold));
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
  cursor: pointer;
}

.play-button-lg:hover {
  transform: scale(1.1);
  background: hsl(var(--luxury-gold-light));
}

.play-button-lg svg {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--accent-foreground));
  margin-left: 0.25rem;
}

/* Transformations Section */
.transformations-section {
  padding: 5rem 0;
  background: hsl(var(--secondary) / 0.3);
}

.transformations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.transformation-card {
  background: hsl(var(--card));
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
}

.transformation-image-wrapper {
  position: relative;
  overflow: hidden;
}

.transformation-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.5s;
}

.transformation-card:hover .transformation-image {
  transform: scale(1.05);
}

.before-label,
.after-label {
  position: absolute;
  top: 1rem;
  padding: 0.375rem 0.75rem;
  background: hsl(var(--foreground) / 0.8);
  color: hsl(var(--primary-foreground));
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.before-label {
  left: 1rem;
}

.after-label {
  right: 1rem;
  background: hsl(var(--luxury-gold));
  color: hsl(var(--accent-foreground));
}

.transformation-content {
  padding: 1.5rem;
}

.transformation-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
  transition: color 0.2s;
}

.transformation-card:hover .transformation-title {
  color: hsl(var(--luxury-gold));
}

.transformation-desc {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

/* Promise Section */
.promise-section {
  padding: 5rem 0;
  background: hsl(var(--luxury-gold) / 0.1);
  border-top: 1px solid hsl(var(--luxury-gold) / 0.2);
  border-bottom: 1px solid hsl(var(--luxury-gold) / 0.2);
}

.section-title-sm {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.promise-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.promise-card {
  text-align: center;
  padding: 2rem;
}

.promise-icon {
  width: 4rem;
  height: 4rem;
  background: hsl(var(--luxury-gold) / 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.promise-icon svg {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--luxury-gold));
}

.promise-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.promise-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* Materials Section */
.materials-section {
  padding: 5rem 0;
  background: hsl(var(--section-dark));
}

.materials-section .section-title,
.materials-section .section-subtitle {
  color: hsl(var(--primary-foreground));
}

.materials-section .section-subtitle {
  color: hsl(var(--primary-foreground) / 0.7);
}

.materials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.materials-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsl(var(--luxury-gold) / 0.2);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.materials-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--luxury-gold));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.material-image-wrapper {
  position: relative;
  overflow: hidden;
}

.material-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--foreground) / 0.8), transparent 50%);
  pointer-events: none;
}

.material-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.material-origin {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: hsl(var(--luxury-gold) / 0.2);
  color: hsl(var(--luxury-gold));
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.material-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: hsl(var(--primary-foreground));
  margin-bottom: 0.25rem;
  transition: color 0.3s;
}

.material-card:hover .material-title {
  color: hsl(var(--luxury-gold));
}

.material-desc {
  font-size: 0.75rem;
  color: hsl(var(--primary-foreground) / 0.8);
  line-height: 1.5;
}

.materials-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--primary-foreground) / 0.1);
}

.materials-footer p {
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.6);
}

/* Video Section */
.workshop-video-section {
  padding: 0 0 5rem;
}

.video-description {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.text-primary-foreground-70 {
  color: hsl(var(--primary-foreground) / 0.7);
}

/* Process Section */
.process-section {
  padding: 5rem 0;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

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

.step-number {
  width: 4rem;
  height: 4rem;
  background: hsl(var(--luxury-gold) / 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: hsl(var(--luxury-gold));
  transition: background 0.3s;
}

.process-step:hover .step-number {
  background: hsl(var(--luxury-gold) / 0.2);
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.step-desc {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* Workshop CTA Section */
.workshop-cta {
  padding: 5rem 0;
  background: hsl(var(--secondary) / 0.5);
  text-align: center;
}

.workshop-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.workshop-cta-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1.1; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }

  .brand-products-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

  .hero-title { font-size: 3rem; }
  .hero-subtitle { font-size: 1.25rem; }
  .section-title { font-size: 2.25rem; }

  .product-actions { flex-direction: row; }

  /* Brand Page - md */
  .brand-hero-title { font-size: 3rem; }
  .brand-history-title { font-size: 1.875rem; }

  /* Workshop Page - md */
  .workshop-title { font-size: 3rem; }
  .workshop-subtitle { font-size: 1.25rem; }
  .section-title-sm { font-size: 2.25rem; }
  .transformations-grid { grid-template-columns: repeat(2, 1fr); }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .workshop-cta-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1.1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1.1; }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1.1; }
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .lg\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .lg\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .lg\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .lg\:text-xs { font-size: 0.75rem; line-height: 1rem; }

  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .lg\:px-16 { padding-left: 4rem; padding-right: 4rem; }
  .lg\:py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .lg\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .lg\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:p-8 { padding: 2rem; }
  .lg\:p-10 { padding: 2.5rem; }
  .lg\:p-12 { padding: 3rem; }
  .lg\:pt-8 { padding-top: 2rem; }
  .lg\:pt-20 { padding-top: 5rem; }
  .lg\:pb-24 { padding-bottom: 6rem; }
  .lg\:mb-12 { margin-bottom: 3rem; }
  .lg\:mb-16 { margin-bottom: 4rem; }
  .lg\:mt-4 { margin-top: 1rem; }
  .lg\:mt-8 { margin-top: 2rem; }
  .lg\:mt-16 { margin-top: 4rem; }

  .lg\:gap-5 { gap: 1.25rem; }
  .lg\:gap-6 { gap: 1.5rem; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-10 { gap: 2.5rem; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:gap-16 { gap: 4rem; }

  .lg\:min-h-\[680px\] { min-height: 680px; }
  .lg\:h-20 { height: 5rem; }
  .lg\:h-24 { height: 6rem; }
  .lg\:h-\[500px\] { height: 500px; }
  .lg\:w-8 { width: 2rem; }
  .lg\:w-10 { width: 2.5rem; }
  .lg\:w-16 { width: 4rem; }
  .lg\:w-24 { width: 6rem; }
  .lg\:w-80 { width: 20rem; }

  .lg\:left-8 { left: 2rem; }
  .lg\:right-8 { right: 2rem; }

  .lg\:sticky { position: sticky; }
  .lg\:top-24 { top: 6rem; }
  .lg\:self-start { align-self: flex-start; }

  .lg\:rounded-3xl { border-radius: 1.5rem; }

  .hero-content { padding: 0 4rem; }
  .section-title { font-size: 3rem; }

  .nav-inner { height: 5rem; }
  .nav-links { display: flex; }
  .nav-logo-text { font-size: 1.5rem; }
  .mobile-menu-btn { display: none; }

  .hero-nav-btn.prev { left: 2rem; }
  .hero-nav-btn.next { right: 2rem; }

  .carousel-nav { display: flex; }

  .collection-lifestyle-content { align-items: flex-end; }
  .collection-lifestyle-overlay {
    background: linear-gradient(to top, hsl(var(--foreground) / 0.5), transparent, transparent);
  }
  .collection-brand-name { font-size: 2.25rem; }
  .collection-tagline { display: block; }
  .collection-products { padding: 2.5rem; }
  .collection-products-grid { gap: 1.5rem; }

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

  .brand-products-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
  .brand-hero { height: 360px; margin-top: 5rem; }
  .brand-hero-title { font-size: 3.75rem; }
  .brand-hero-tagline { font-size: 1.125rem; }
  .filter-bar { top: 5rem; }
  .filter-bar-inner { height: 4rem; }
  .brand-product-name { font-size: 1rem; }
  .brand-product-price { font-size: 1rem; }
  .brand-history { padding: 5rem 0; }
  .brand-history-title { font-size: 2.25rem; }

  .stat-number { font-size: 3rem; }

  /* Workshop Page - lg */
  .workshop-hero { padding: 7rem 0; }
  .workshop-title { font-size: 3.75rem; }
  .video-thumb { height: 550px; }
  .transformation-image { height: 18rem; }
  .materials-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .material-title { font-size: 1.25rem; }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .workshop-cta-title { font-size: 3.75rem; }
}

@media (min-width: 1280px) {
  .xl\:px-24 { padding-left: 6rem; padding-right: 6rem; }
  .hero-content { padding: 0 6rem; }
}

/* ==========================================================================
   Restoration Section
   ========================================================================== */
.restoration-section {
  background-color: hsl(var(--section-gold-tint));
  padding: 0;
}

.restoration-header {
  text-align: center;
  padding: 4rem 1rem 5rem;
}

.restoration-header .section-title {
  margin-bottom: 1rem;
}

.restoration-header .section-subtitle {
  max-width: 42rem;
  margin: 0 auto;
}

.restoration-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.restoration-video-wrapper {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.restoration-video-thumb {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  transition: transform 0.7s;
}

.restoration-video-wrapper:hover .restoration-video-thumb {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background-color: hsl(var(--foreground) / 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.restoration-video-wrapper:hover .video-overlay {
  background-color: hsl(var(--foreground) / 0.4);
}

.play-button {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  background-color: hsl(var(--luxury-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent-foreground));
  box-shadow: var(--shadow-gold);
  transition: transform 0.3s;
}

.play-button svg {
  margin-left: 0.25rem;
}

.restoration-video-wrapper:hover .play-button {
  transform: scale(1.1);
}

.video-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}

.video-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: hsl(var(--primary-foreground));
}

.video-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.7);
}

.before-after-wrapper {
  position: relative;
  overflow: hidden;
}

.before-after-image {
  width: 100%;
  height: 20rem;
  object-fit: cover;
}

.before-label,
.after-label {
  position: absolute;
  top: 1.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.before-label {
  left: 1.5rem;
  background-color: hsl(var(--luxury-brown) / 0.9);
  color: hsl(var(--primary-foreground));
}

.after-label {
  right: 1.5rem;
  background-color: hsl(var(--luxury-gold));
  color: hsl(var(--accent-foreground));
}

.before-after-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, hsl(var(--foreground) / 0.6), transparent);
}

.ba-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: hsl(var(--primary-foreground));
}

.ba-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.7);
}

/* Stats Row - Dark brown full-width bar */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: hsl(var(--luxury-brown));
  color: hsl(var(--primary-foreground));
}

.stat-item {
  padding: 2rem 1rem;
  text-align: center;
  border-right: 1px solid hsl(var(--primary-foreground) / 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 500;
  color: hsl(var(--luxury-gold));
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.7);
  letter-spacing: 0.05em;
}

.restoration-cta {
  text-align: center;
  padding: 3rem 1rem 4rem;
  background-color: hsl(var(--section-gold-tint));
}

.cta-text {
  font-family: 'Inter', sans-serif;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid hsl(var(--luxury-gold));
  color: hsl(var(--luxury-gold));
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.2s;
}

.btn-outline-gold:hover {
  background-color: hsl(var(--luxury-gold));
  color: hsl(var(--accent-foreground));
}

/* ==========================================================================
   New Arrivals Section
   ========================================================================== */
.new-arrivals-section {
  background-color: hsl(var(--section-cream));
  padding: 4rem 0;
}

.arrivals-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 2rem;
  margin-bottom: 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.arrivals-title-group h2 {
  margin-bottom: 0.5rem;
}

.section-subtitle-left {
  font-family: 'Inter', sans-serif;
  color: hsl(var(--muted-foreground));
}

.carousel-nav {
  display: none;
  gap: 0.5rem;
}

.carousel-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  cursor: pointer;
  color: hsl(var(--foreground));
}

.carousel-btn:hover:not(:disabled) {
  background-color: hsl(var(--luxury-gold));
  border-color: hsl(var(--luxury-gold));
  color: hsl(var(--accent-foreground));
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.arrivals-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0 2rem 1rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.arrivals-carousel::-webkit-scrollbar {
  display: none;
}

/* ==========================================================================
   Product Card (for carousels)
   ========================================================================== */
.product-card {
  flex-shrink: 0;
  width: 280px;
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  background-color: hsl(var(--card));
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
  display: block;
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: hsl(var(--luxury-gold) / 0.9);
  color: hsl(var(--accent-foreground));
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 9999px;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background-color: transparent;
  transition: background-color 0.3s;
}

.product-card:hover .product-overlay {
  background-color: hsl(var(--foreground) / 0.1);
}

.product-brand {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.product-name {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: hsl(var(--foreground));
  transition: color 0.2s;
}

.product-card:visited .product-name {
  color: hsl(var(--foreground));
}

.product-card:hover .product-name,
.product-card:visited:hover .product-name {
  color: hsl(var(--luxury-gold));
}

.product-price {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.product-card:visited .product-price {
  color: hsl(var(--muted-foreground));
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   Product Card Equal Height Fix
   ========================================================================== */
.arrivals-carousel {
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-image-wrapper {
  flex-shrink: 0;
}

/* Force aspect ratio on WooCommerce images (override inline styles) */
.product-image,
.product-image-wrapper img,
.arrivals-carousel .product-card img {
  aspect-ratio: 4 / 5 !important;
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
}

.product-name {
  flex-grow: 0;
  flex-shrink: 0;
  line-height: 1.4;
  min-height: 2.8em; /* Reserve exactly 2 lines: 1.4 line-height × 2 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-price {
  flex-grow: 0;
  flex-shrink: 0;
}

/* Ensure button stays at bottom */
.product-card .btn {
  margin-top: auto;
  flex-shrink: 0;
}

/* Product Info Wrapper - ensures button alignment */
.product-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 0.75rem;
}

.product-info .product-brand {
  margin-bottom: 0.25rem;
}

.product-info .product-name {
  margin-bottom: 0.5rem;
}

.product-info .product-price {
  margin-bottom: 0.75rem;
}

.product-info .btn {
  margin-top: auto;
}

/* ==========================================================================
   Collections Section
   ========================================================================== */
.collections-section {
  background-color: hsl(var(--background));
  padding: 4rem 0;
  overflow: hidden;
}

.collections-header {
  text-align: center;
  padding: 0 2rem;
  margin-bottom: 3rem;
}

.collection-block {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 0;
  overflow: hidden;
  max-width: 100%;
}

.collection-lifestyle {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.lifestyle-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.lifestyle-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsl(var(--foreground) / 0.6), hsl(var(--foreground) / 0.2), transparent);
}

.lifestyle-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1.5rem;
  padding-top: 2rem;
}

.collection-brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: hsl(var(--primary-foreground));
  margin-bottom: 0.5rem;
}

.collection-tagline {
  color: hsl(var(--primary-foreground) / 0.8);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: none;
}

.collection-products {
  background-color: hsl(var(--section-cream));
  padding: 1.5rem;
  overflow: hidden;
  max-width: 100%;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 100%;
  min-width: 0;
}

.collection-product {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.collection-product-image-wrapper {
  position: relative;
  overflow: hidden;
  background-color: hsl(var(--card));
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-soft);
}

.collection-product-image {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 !important;
  object-fit: cover !important;
  transition: transform 0.5s;
}

/* Override WooCommerce inline styles on collection images */
.collection-product-image-wrapper img,
.products-grid .collection-product img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 !important;
  object-fit: cover !important;
}

.collection-product:hover .collection-product-image {
  transform: scale(1.05);
}

.collection-product:hover .product-overlay {
  background-color: hsl(var(--foreground) / 0.1);
}

.collection-product-name {
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: hsl(var(--foreground));
  transition: color 0.2s;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  width: 100%;
  max-width: 100%;
}

.collection-product:visited .collection-product-name {
  color: hsl(var(--foreground));
}

.collection-product:hover .collection-product-name,
.collection-product:visited:hover .collection-product-name {
  color: hsl(var(--luxury-gold));
}

.collection-product-price {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.collection-product:visited .collection-product-price {
  color: hsl(var(--muted-foreground));
}

/* ==========================================================================
   Customer Love Section
   ========================================================================== */
.customer-love-section {
  background: linear-gradient(to bottom, hsl(var(--background)), hsl(var(--secondary) / 0.2));
  padding: 4rem 0 6rem;
}

.customer-love-header {
  text-align: center;
  margin-bottom: 3rem;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsl(var(--luxury-gold) / 0.1);
  color: hsl(var(--luxury-gold));
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.customer-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 28rem;
  margin: 0 auto 3rem;
}

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

.customer-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: hsl(var(--luxury-gold));
  margin-bottom: 0.25rem;
}

.customer-stat-label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* WhatsApp Gallery - 2 cols mobile, 3 cols desktop */
.whatsapp-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Decorative blurred elements */
.whatsapp-gallery::before {
  content: '';
  position: absolute;
  top: -2rem;
  left: -1rem;
  width: 6rem;
  height: 6rem;
  background-color: hsl(var(--luxury-gold) / 0.05);
  border-radius: 9999px;
  filter: blur(3rem);
}

.whatsapp-gallery::after {
  content: '';
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  width: 8rem;
  height: 8rem;
  background-color: hsl(var(--luxury-gold) / 0.05);
  border-radius: 9999px;
  filter: blur(3rem);
}

.whatsapp-card {
  background-color: hsl(var(--card));
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  border: 1px solid hsl(var(--border) / 0.5);
  transition: all 0.5s;
}

.whatsapp-card:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  border-color: hsl(var(--luxury-gold) / 0.3);
}

.whatsapp-header {
  background-color: #075E54;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.whatsapp-avatar {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
}

.whatsapp-info {
  flex: 1;
  min-width: 0;
}

.whatsapp-name {
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.whatsapp-status {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.625rem;
}

.whatsapp-icon {
  color: rgba(255, 255, 255, 0.6);
  width: 1rem;
  height: 1rem;
}

.whatsapp-content {
  aspect-ratio: 9 / 16;
  background-color: #ECE5DD;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.whatsapp-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.whatsapp-card:hover .whatsapp-content img {
  transform: scale(1.05);
}

.whatsapp-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ECE5DD;
  padding: 1rem;
  gap: 0.5rem;
}

.whatsapp-placeholder svg {
  color: hsl(var(--muted-foreground));
  opacity: 0.5;
}

.whatsapp-placeholder span {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
}

/* Empty card state */
.whatsapp-card--empty {
  opacity: 0.7;
}

.whatsapp-card--empty:hover {
  opacity: 1;
}

.placeholder-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: hsl(var(--luxury-gold) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.placeholder-icon svg {
  color: hsl(var(--luxury-gold));
}

.placeholder-text {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
}

.placeholder-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.whatsapp-footer {
  background-color: hsl(var(--card));
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid hsl(var(--border) / 0.3);
}

.whatsapp-reaction {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.heart-icon {
  color: #E91E63;
  fill: #E91E63;
}

.whatsapp-stars {
  display: flex;
  gap: 0.125rem;
}

.star-icon {
  color: hsl(var(--luxury-gold));
  fill: hsl(var(--luxury-gold));
}

.customer-love-cta {
  text-align: center;
  margin-top: 3rem;
}

.customer-love-cta p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25D366;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
}

/* ==========================================================================
   Footer (Extended)
   ========================================================================== */
.footer {
  background-color: hsl(var(--luxury-brown-dark));
  color: hsl(var(--primary-foreground));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid hsl(var(--primary-foreground) / 0.1);
}

.footer-col {
  padding: 2rem;
  border-bottom: 1px solid hsl(var(--primary-foreground) / 0.1);
}

.footer-col:last-child {
  border-bottom: none;
}

.footer-brand {
  border-bottom: 1px solid hsl(var(--primary-foreground) / 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.footer-description {
  color: hsl(var(--primary-foreground) / 0.6);
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: hsl(var(--primary-foreground) / 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-foreground) / 0.6);
  transition: all 0.2s;
}

.social-link:hover {
  background-color: hsl(var(--luxury-gold));
  color: hsl(var(--accent-foreground));
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: hsl(var(--primary-foreground));
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: hsl(var(--primary-foreground) / 0.6);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: hsl(var(--luxury-gold));
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.6);
}

.contact-icon {
  color: hsl(var(--luxury-gold));
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
}

.footer-copyright {
  color: hsl(var(--primary-foreground) / 0.4);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-legal a {
  color: hsl(var(--primary-foreground) / 0.4);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: hsl(var(--primary-foreground));
}

/* ==========================================================================
   Responsive Updates for New Sections
   ========================================================================== */
@media (min-width: 768px) {
  .arrivals-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .carousel-nav {
    display: flex;
  }

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

  .restoration-video-thumb,
  .before-after-image {
    height: 31.25rem;
  }

  .play-button {
    width: 6rem;
    height: 6rem;
  }

  .stat-item {
    padding: 3rem 1rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .whatsapp-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  /* Masonry effect - every 2nd card (index 1, 4 in 0-based) offset */
  .whatsapp-card:nth-child(3n+2) {
    margin-top: 2rem;
  }

  .whatsapp-card {
    border-radius: 1.5rem;
  }

  .whatsapp-avatar {
    width: 2rem;
    height: 2rem;
  }

  .whatsapp-name {
    font-size: 0.875rem;
  }

  .whatsapp-status {
    font-size: 0.75rem;
  }

  .customer-stat-number {
    font-size: 1.875rem;
  }

  .customer-stat-label {
    font-size: 0.875rem;
  }

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

  .footer-col {
    border-bottom: none;
    border-right: 1px solid hsl(var(--primary-foreground) / 0.1);
  }

  .footer-col:nth-child(2n) {
    border-right: none;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .collection-block {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-block.reversed .collection-lifestyle {
    order: 2;
  }

  .collection-block.reversed .collection-products {
    order: 1;
  }

  .collection-lifestyle {
    min-height: 680px;
  }

  .lifestyle-gradient {
    background: linear-gradient(to top, hsl(var(--foreground) / 0.5), transparent, transparent);
  }

  .lifestyle-content {
    justify-content: flex-end;
    padding: 2rem;
  }

  .collection-brand-title {
    font-size: 2.25rem;
  }

  .collection-tagline {
    display: block;
    font-size: 1rem;
    max-width: 24rem;
  }

  .collection-products {
    padding: 2rem;
  }

  .products-grid {
    gap: 1.5rem;
  }

  .customer-love-section {
    padding: 6rem 0;
  }

  .customer-love-header {
    margin-bottom: 4rem;
  }

  .customer-stat-number {
    font-size: 2.25rem;
  }

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

  .footer-col {
    border-right: 1px solid hsl(var(--primary-foreground) / 0.1);
  }

  .footer-col:last-child {
    border-right: none;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .hero-arrow-left { left: 2rem; }
  .hero-arrow-right { right: 2rem; }
}

/* ==========================================================================
   Search Modal
   ========================================================================== */
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20vh;
}

.search-modal.active {
  display: flex;
}

.search-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.search-modal-content {
  position: relative;
  background: hsl(var(--card));
  padding: 2rem;
  border-radius: 1rem;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: searchModalIn 0.3s ease-out;
}

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

.search-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: hsl(var(--muted-foreground));
  padding: 0.25rem;
  transition: color 0.2s;
}

.search-close:hover {
  color: hsl(var(--foreground));
}

.search-modal .search-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-input {
  width: 100%;
  padding: 1rem;
  font-size: 1.25rem;
  border: 2px solid hsl(var(--border));
  border-radius: 0.5rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  transition: border-color 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: hsl(var(--luxury-gold));
}

.search-input::placeholder {
  color: hsl(var(--muted-foreground));
}

.search-modal .search-form button[type="submit"] {
  width: 100%;
}

/* ============================================
   Mobile Bottom Navigation
   ============================================ */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
  z-index: 99999; /* Higher than Chaty widget */
  justify-content: space-around;
  align-items: center;
  padding: 0 0.5rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.5rem;
  min-width: 60px;
  font-size: 0.625rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.bottom-nav-item:hover,
.bottom-nav-item:focus {
  color: hsl(var(--luxury-gold));
}

.bottom-nav-item svg {
  flex-shrink: 0;
}

/* WhatsApp item styling */
.bottom-nav-whatsapp {
  color: #25D366;
}

.bottom-nav-whatsapp:hover,
.bottom-nav-whatsapp:focus {
  color: #128C7E;
}

.bottom-nav-cart-count {
  position: absolute;
  top: 0.25rem;
  right: 0.5rem;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  color: white;
  background: hsl(var(--luxury-gold));
  border-radius: 8px;
}

/* Mobile responsive styles */
@media (max-width: 767px) {
  /* Show bottom nav on mobile */
  .mobile-bottom-nav {
    display: flex;
  }

  /* Hide header icons on mobile */
  .nav-icons {
    display: none;
  }

  /* Add padding to body to prevent content overlap */
  body {
    padding-bottom: 60px;
  }

  /* Mobile logo width */
  .custom-logo-link {
    max-width: 250px;
    width: 100%;
  }

  /* Hide Chaty widget on mobile when bottom nav is present */
  .chaty-widget,
  #chaty-widget,
  .chaty-channels-list {
    bottom: 70px !important;
  }

  /* Search modal mobile fixes */
  .search-modal {
    padding: 1rem;
    padding-top: 15vh;
    align-items: flex-start;
  }

  .search-modal-content {
    width: 100%;
    max-width: none;
    padding: 1.25rem;
    border-radius: 0.75rem;
  }

  .search-input {
    font-size: 1rem;
    padding: 0.875rem;
  }

  .search-close {
    top: 0.75rem;
    right: 0.75rem;
  }
}

/* ==========================================================================
   Product Detail Page - Complete Styles
   ========================================================================== */

/* Product Layout - Two column grid */
.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 1.5rem 0 3rem;
}

@media (min-width: 1024px) {
  .product-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem 0 4rem;
  }
}

/* Product Gallery */
.product-gallery {
  position: relative;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: hsl(var(--card));
  margin-bottom: 1rem;
}

.gallery-main-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 0.375rem;
  background: none;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0.6;
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.gallery-thumb:hover {
  opacity: 1;
}

.gallery-thumb.active {
  opacity: 1;
  border-color: hsl(var(--luxury-gold));
}

/* Product Info Section */
.product-info {
  padding: 0;
}

.product-brand-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .product-title {
    font-size: 2.25rem;
  }
}

/* Condition Badge */
.condition-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: hsl(var(--luxury-gold) / 0.1);
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
}

.condition-rank {
  width: 2rem;
  height: 2rem;
  background-color: hsl(var(--luxury-gold));
  color: hsl(var(--accent-foreground));
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.condition-details {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.condition-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--luxury-gold));
}

.condition-desc {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* Product Description */
.product-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

/* Product Price Section */
.product-price-section {
  margin-bottom: 1.5rem;
}

.product-price {
  font-size: 1.75rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

/* Product Actions - Buttons */
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

/* WhatsApp Inquiry Button */
.whatsapp-inquiry {
  margin-bottom: 1.5rem;
}

.btn-whatsapp-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background-color: #25D366;
  color: white;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 0.875rem;
  transition: background-color 0.3s;
  text-decoration: none;
}

.btn-whatsapp-full:hover {
  background-color: #128C7E;
}

.btn-whatsapp-full svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--border));
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
}

.trust-badge svg {
  color: hsl(var(--luxury-gold));
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Product Tabs Section
   ========================================================================== */
.product-tabs-section {
  padding: 2rem 0 3rem;
  border-top: 1px solid hsl(var(--border));
  margin-top: 2rem;
}

.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid hsl(var(--border));
  margin-bottom: 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-btn {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  margin-bottom: -1px;
}

.tab-btn:hover {
  color: hsl(var(--foreground));
}

.tab-btn.active {
  color: hsl(var(--luxury-gold));
  border-bottom-color: hsl(var(--luxury-gold));
}

.tabs-content {
  padding: 0;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease-out;
}

.tab-panel.active {
  display: block;
}

.tab-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.tab-summary {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* Condition Columns */
.condition-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .condition-columns {
    grid-template-columns: 1fr 1fr;
  }
}

.condition-column h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.condition-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.condition-list li {
  position: relative;
  padding-left: 1.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.condition-list li:last-child {
  border-bottom: none;
}

.condition-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.875rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background-color: hsl(var(--muted-foreground));
}

.condition-list.gold li::before {
  background-color: hsl(var(--luxury-gold));
}

/* Auth List (Authenticity Tab) */
.auth-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.auth-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.auth-list li:last-child {
  border-bottom: none;
}

.auth-list li svg {
  color: hsl(var(--luxury-gold));
  flex-shrink: 0;
}

/* Specifications Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table th,
.specs-table td {
  padding: 0.875rem 0;
  font-size: 0.875rem;
  text-align: left;
}

.specs-table th {
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  width: 40%;
}

.specs-table td {
  color: hsl(var(--foreground));
}

/* ==========================================================================
   Related Products Section
   ========================================================================== */
.related-products-section {
  background-color: hsl(var(--section-cream));
  padding: 3rem 0 4rem;
}

.related-products-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
  color: hsl(var(--foreground));
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .related-products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.related-product-card {
  display: block;
  text-decoration: none;
  transition: transform 0.3s;
}

.related-product-card:hover {
  transform: translateY(-4px);
}

.related-product-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: hsl(var(--card));
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-soft);
}

.related-product-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.related-product-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
  line-height: 1.3;
  transition: color 0.2s;
}

.related-product-card:hover .related-product-name {
  color: hsl(var(--luxury-gold));
}

.related-product-price {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

/* Related Products - Mobile Fix (< 480px) */
@media (max-width: 479px) {
  .related-products-section {
    padding: 2rem 0 3rem;
  }

  .related-products-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .related-products-grid {
    gap: 0.75rem;
  }

  .related-product-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.75rem;
  }

  .related-product-price {
    font-size: 0.75rem;
  }

  .related-products-section .section-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

/* ==========================================================================
   Breadcrumbs (Product Detail)
   ========================================================================== */
.breadcrumbs {
  padding: 1rem 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-item a:hover {
  color: hsl(var(--luxury-gold));
}

.breadcrumb-item.current {
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  font-weight: 500;
}

.breadcrumb-separator {
  display: flex;
  align-items: center;
  padding: 0 0.25rem;
  color: hsl(var(--muted-foreground));
}

.breadcrumb-separator svg {
  width: 1rem;
  height: 1rem;
}

/* ==========================================================================
   Product Detail - Mobile Narrow Viewport (< 480px)
   ========================================================================== */
@media (max-width: 479px) {
  /* Reduce product layout gap for narrow screens */
  .product-layout {
    gap: 1.5rem;
    padding: 1rem 0 2.5rem;
  }

  /* Reduce container padding on product pages */
  .single-product .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Breadcrumbs mobile adjustments */
  .breadcrumbs {
    padding: 0.75rem 0;
  }

  .breadcrumb-item a,
  .breadcrumb-item.current {
    font-size: 0.75rem;
  }

  /* Product title size for narrow screens */
  .product-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  /* Brand label spacing */
  .product-brand {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
  }

  /* Condition badge compact layout */
  .condition-badge {
    padding: 0.625rem 0.875rem;
    gap: 0.625rem;
  }

  .condition-rank {
    width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
  }

  .condition-label {
    font-size: 0.65rem;
  }

  .condition-text {
    font-size: 0.8rem;
  }

  /* Product description - allow natural wrapping */
  .product-description {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  /* Price adjustment */
  .product-price {
    font-size: 1.375rem;
    margin: 1rem 0;
  }

  /* WhatsApp button full width */
  .whatsapp-inquiry-btn {
    font-size: 0.9rem;
    padding: 0.875rem 1.5rem;
  }

  /* Trust badges compact layout */
  .trust-badges {
    gap: 0.75rem;
    padding-top: 1rem;
  }

  .trust-badge {
    padding: 0.625rem 0.875rem;
    gap: 0.5rem;
  }

  .trust-badge svg {
    width: 1rem;
    height: 1rem;
  }

  .trust-badge span {
    font-size: 0.7rem;
  }

  /* Footer logo - match header on mobile */
  .footer-logo .custom-logo-link img,
  .footer-logo .custom-logo,
  .footer-logo img {
    max-width: 200px !important;
  }
}
