/* ============================================
   Wilderidge Craft - Premium Leather Goods
   Design System & Global Styles
   ============================================ */

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

/* ---- CSS Variables ---- */
:root {
  --color-bg: #0c0a09;
  --color-bg-alt: #1c1917;
  --color-bg-card: #292524;
  --color-surface: #1a1614;
  --color-gold: #c9a96e;
  --color-gold-light: #dfc89a;
  --color-gold-dark: #a68542;
  --color-cream: #f5f0e8;
  --color-cream-muted: #d4cfc5;
  --color-text: #e7e5e4;
  --color-text-muted: #a8a29e;
  --color-leather-brown: #8b5e3c;
  --color-leather-dark: #5c3a22;
  --color-border: rgba(201, 169, 110, 0.15);
  --color-border-hover: rgba(201, 169, 110, 0.35);

  --font-heading: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.15);

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

  --container-max: 1200px;
  --container-narrow: 900px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-cream);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: 0.015em;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

p {
  color: var(--color-text-muted);
  font-weight: 300;
  max-width: 65ch;
}

/* ---- Section Title ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--color-gold);
}

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

.section-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-normal);
  background: transparent;
}

.header.scrolled {
  background: rgba(12, 10, 9, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.logo-brand {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--color-cream);
  letter-spacing: 0.08em;
  line-height: 1;
}

.logo-tagline {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-gold);
  font-weight: 400;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-cream-muted);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-normal);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-gold);
}

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

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--color-cream);
  transition: all var(--transition-fast);
  display: block;
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 10, 9, 0.4) 0%,
    rgba(12, 10, 9, 0.2) 40%,
    rgba(12, 10, 9, 0.7) 80%,
    rgba(12, 10, 9, 1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content .section-label {
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-content h1 .highlight {
  color: var(--color-gold);
  font-style: italic;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: var(--color-cream-muted);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-bg);
}

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

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

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-bg);
  transform: translateY(-2px);
}

.btn-icon {
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ============================================
   FEATURES / HIGHLIGHTS
   ============================================ */
.features {
  padding: 6rem 0;
  background: var(--color-bg);
}

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

.feature-card {
  padding: 2.5rem 2rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

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

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
  padding: 6rem 0;
  background: var(--color-surface);
}

.products-header {
  text-align: center;
  margin-bottom: 4rem;
}

.products-header p {
  margin: 0 auto;
}

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

.product-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: pointer;
}

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

.product-card-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

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

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

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-gold);
  color: var(--color-bg);
  padding: 0.35rem 0.9rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.product-card-body {
  padding: 1.75rem;
}

.product-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.product-card-body .product-desc {
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-spec {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid var(--color-border);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold-light);
}

/* ============================================
   ABOUT / STORY SECTION
   ============================================ */
.about-section {
  padding: 7rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2px;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  pointer-events: none;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
}

.stat {
  text-align: left;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  display: block;
}

/* ============================================
   MISSION / VISION
   ============================================ */
.mission-vision {
  padding: 6rem 0;
  background: var(--color-surface);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mv-card {
  padding: 3rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  position: relative;
  transition: all var(--transition-normal);
}

.mv-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md);
}

.mv-card .mv-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.mv-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.mv-card p {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================
   VALUES
   ============================================ */
.values {
  padding: 6rem 0;
}

.values-header {
  text-align: center;
  margin-bottom: 4rem;
}

.values-header p {
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.value-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.85rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--color-leather-dark), var(--color-bg-alt));
  text-align: center;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.cta-banner h2 {
  margin-bottom: 1rem;
}

.cta-banner p {
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ============================================
   CRAFTSMANSHIP PROCESS
   ============================================ */
.process {
  padding: 6rem 0;
  background: var(--color-surface);
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-header p {
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.85rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 7rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info > p {
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.contact-item-icon {
  font-size: 1.5rem;
  color: var(--color-gold);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid var(--color-border);
  border-radius: 2px;
}

.contact-item-text h4 {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
}

.contact-item-text p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: 3rem;
  border-radius: 2px;
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-cream-muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
}

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

.footer-brand .logo {
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  font-size: 1rem;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
}

.social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(201, 169, 110, 0.08);
}

.footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  position: relative;
}

.page-hero p {
  position: relative;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

.breadcrumb {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

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

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

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

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

  .about-image img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-bg-alt);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    border-left: 1px solid var(--color-border);
    transition: right var(--transition-normal);
    z-index: 1001;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
  }

  .nav-overlay.open {
    display: block;
  }

  .hero-content {
    padding: 0 1rem;
  }

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

  .about-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

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

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

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .btn {
    padding: 0.85rem 1.75rem;
    font-size: 0.75rem;
  }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark);
  border-radius: 3px;
}

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

/* ============================================
   GALLERY (Products Page)
   ============================================ */
.product-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 2rem;
  transition: all var(--transition-normal);
}

.product-detail-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md);
}

.product-detail-img {
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

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

.product-detail-card:hover .product-detail-img img {
  transform: scale(1.04);
}

.product-detail-info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-detail-info h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.product-detail-info p {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.product-features {
  list-style: none;
  margin-bottom: 2rem;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.product-features li:last-child {
  border-bottom: none;
}

.product-features li .check {
  color: var(--color-gold);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .product-detail-card {
    grid-template-columns: 1fr;
  }

  .product-detail-img {
    min-height: 280px;
  }

  .product-detail-info {
    padding: 2rem;
  }
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-border);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 2rem);
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 2rem);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--color-gold);
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  z-index: 1;
}

.timeline-content {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: 2rem;
  border-radius: 2px;
  max-width: 450px;
}

.timeline-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-gold);
}

.timeline-content p {
  font-size: 0.88rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 1rem;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    padding-left: 3rem;
    padding-right: 0;
    justify-content: flex-start;
  }

  .timeline-dot {
    left: 1rem;
  }
}

/* Success Message */
.form-success {
  display: none;
  padding: 1rem 1.5rem;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--color-gold);
  border-radius: 2px;
  color: var(--color-gold);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 1rem;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

/* Map placeholder */
.map-container {
  margin-top: 4rem;
  height: 350px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.6) brightness(0.7) contrast(1.1);
  transition: filter var(--transition-normal);
}

.map-container:hover iframe {
  filter: grayscale(0.3) brightness(0.8) contrast(1.05);
}
