/*
Theme Name: LCW Luxury - Haute Horlogerie
Theme URI: https://luxuryclonewatches.uk
Author: LCW Studio
Author URI: https://luxuryclonewatches.uk
Description: Ultra-luxurious bespoke WordPress theme engineered specifically for luxury watch collections (luxuryclonewatches.uk). Built on a modular page-template architecture featuring dark obsidian aesthetics, brushed champagne gold accents, 1:1 Swiss clone comparison matrix, interactive horological showcases, and direct VIP WhatsApp concierge.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary
Text Domain: lcw-luxury
Tags: e-commerce, luxury, custom-templates, full-width-template, portfolio, dark-mode
*/

:root {
  /* Luxury Dark Palette */
  --bg-black: #060709;
  --bg-obsidian: #0c0e12;
  --bg-card: #12151c;
  --bg-card-hover: #181d26;
  --bg-elevated: #1e2430;
  --bg-glass: rgba(18, 21, 28, 0.75);
  --border-glass: rgba(212, 175, 55, 0.18);
  --border-subtle: rgba(255, 255, 255, 0.08);

  /* Haute Horlogerie Gold Tones */
  --gold-300: #fae69e;
  --gold-400: #e8c863;
  --gold-500: #d4af37;
  --gold-600: #b89228;
  --gold-700: #8c6d19;
  --gold-gradient: linear-gradient(135deg, #fae69e 0%, #d4af37 50%, #aa820a 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(250, 230, 158, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  --gold-glow: 0 0 25px rgba(212, 175, 55, 0.25);

  /* Metals & Accents */
  --metal-platinum: #f1f5f9;
  --metal-steel: #cbd5e1;
  --metal-dark: #64748b;
  --accent-emerald: #10b981;
  --accent-ruby: #e11d48;
  --accent-sapphire: #2563eb;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Shadows & Elevations */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.8);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Spacing & Layout */
  --container-max: 1360px;
  --container-narrow: 1040px;
  --header-height: 84px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-black);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-black);
  color: var(--metal-steel);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--metal-platinum);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }

p {
  margin-bottom: 1.25rem;
  color: #94a3b8;
}

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

a:hover {
  color: var(--gold-300);
}

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

/* Luxury Containers */
.lcw-container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.lcw-container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Gold Gradient Text */
.lcw-text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Section Titles */
.lcw-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.lcw-section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.lcw-section-subtitle::before,
.lcw-section-subtitle::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold-500);
}

.lcw-section-desc {
  max-width: 640px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  color: #94a3b8;
}

/* Buttons */
.lcw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.lcw-btn-gold {
  background: var(--gold-gradient);
  color: #0c0e12;
  box-shadow: var(--shadow-gold);
}

.lcw-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
  color: #000;
}

.lcw-btn-outline {
  background: rgba(18, 21, 28, 0.6);
  border-color: var(--border-glass);
  color: var(--metal-platinum);
  backdrop-filter: blur(8px);
}

.lcw-btn-outline:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-400);
  color: var(--gold-300);
  transform: translateY(-2px);
}

.lcw-btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.lcw-btn-whatsapp:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.lcw-btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
}

.lcw-btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

/* Glassmorphism Card */
.lcw-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition-smooth);
  position: relative;
}

.lcw-card:hover {
  border-color: var(--border-glass);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7), var(--gold-glow);
  transform: translateY(-4px);
}

/* Luxury Badges */
.lcw-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold-400);
}

.lcw-badge-emerald {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--accent-emerald);
}

/* Animations */
@keyframes goldShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.lcw-shimmer {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 0.2) 50%, rgba(212, 175, 55, 0) 100%);
  background-size: 200% 100%;
  animation: goldShimmer 3.5s infinite;
}
