/* ================================================================
   MATIC FAMILIENHONIG — Design System CSS
   Based on .stitch/DESIGN.md
   ================================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Manrope:wght@300;400;500;600;700&display=swap');

/* ================================================================
   CSS CUSTOM PROPERTIES
   ================================================================ */
:root {
  /* Colors */
  --color-gold: #F5A623;
  --color-gold-dark: #D4940A;
  --color-gold-light: #F8C96A;
  --color-brown: #5C3D2E;
  --color-brown-dark: #3B2415;
  --color-cream: #FFF8E7;
  --color-white: #FFFFFF;
  --color-surface: #FDF5E6;
  --color-surface-alt: #F5ECD7;
  --color-text: #3B2415;
  --color-text-secondary: #7A5C3E;
  --color-green: #6B8E4E;
  --color-error: #C0392B;
  --color-gray: #8B7355;
  --color-gray-dark: #5A4A3A;
  --color-gray-light: #D4C5B0;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 48px;
  --space-2xl: 80px;
  --space-3xl: 120px;

  /* Shapes */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(92, 61, 46, 0.06);
  --shadow-md: 0 4px 20px rgba(92, 61, 46, 0.08);
  --shadow-lg: 0 8px 30px rgba(92, 61, 46, 0.12);

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-gold-dark);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--color-gold);
}

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-brown);
  line-height: 1.3;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 600; margin-bottom: 16px; }
h3 { font-family: var(--font-body); font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }
h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: 8px; }

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* ================================================================
   LAYOUT
   ================================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--space-3xl) 0;
}

.section--cream {
  background: var(--color-cream);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.text-center { text-align: center; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
  background: rgba(253, 245, 230, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(92, 61, 46, 0.08);
  padding: 8px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-bee {
  width: 100%;
  height: 100%;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-matic {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-brown);
  letter-spacing: 2px;
}

.nav-logo-divider {
  width: 28px;
  height: 2px;
  background: var(--color-gold);
  margin: 3px 0;
  border-radius: 1px;
}

.brand-sub {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: 0.5px;
}

.tagline {
  font-size: 0.65rem;
  color: var(--color-gray);
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-brown);
  padding: 6px 0;
  position: relative;
  transition: var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--color-gold-dark);
  font-weight: 600;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-btn {
  position: relative;
  background: none;
  border: 2px solid rgba(92, 61, 46, 0.2);
  color: var(--color-brown);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.cart-btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
  transform: scale(1.05);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-badge.hidden { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-brown);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(253, 245, 230, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 100px 32px 40px;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-brown);
  padding: 14px 20px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: rgba(245, 166, 35, 0.12);
  color: var(--color-gold-dark);
}

.mobile-menu a i {
  color: var(--color-gold);
  width: 24px;
  text-align: center;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/profi/dscf1042.webp') center/cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(59, 36, 21, 0.55) 0%,
    rgba(59, 36, 21, 0.40) 50%,
    rgba(59, 36, 21, 0.65) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.2);
  border: 1px solid rgba(245, 166, 35, 0.4);
  color: var(--color-cream);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge i {
  color: var(--color-gold);
}

.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 .highlight {
  color: var(--color-gold);
}

.hero-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--color-brown) 0%, var(--color-brown-dark) 100%);
  padding: 130px 0 60px;
  text-align: center;
}

.page-hero h1 {
  color: var(--color-gold);
  margin-bottom: 12px;
}

.page-hero .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
  color: var(--color-gold);
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn-primary:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--color-brown);
  border-color: rgba(92, 61, 46, 0.25);
}

.btn-secondary:hover {
  background: var(--color-brown);
  color: var(--color-white);
  border-color: var(--color-brown);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-brown);
  border-color: var(--color-white);
}

.btn-white:hover {
  background: var(--color-cream);
  border-color: var(--color-cream);
  color: var(--color-brown);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--color-white);
}

.btn-sm {
  font-size: 0.85rem;
  padding: 8px 20px;
}

.btn-lg {
  font-size: 1.05rem;
  padding: 16px 36px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.mt-8 { margin-top: 8px; }

/* ================================================================
   SECTION HEADERS
   ================================================================ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold-dark);
  margin-bottom: 12px;
}

.subtitle {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

/* ================================================================
   FEATURES STRIP
   ================================================================ */
.features-strip {
  background: var(--color-brown);
  padding: 20px 0;
}

.features-strip .container {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-cream);
  font-size: 0.9rem;
  font-weight: 500;
}

.feature-item i {
  color: var(--color-gold);
  font-size: 1rem;
}

/* ================================================================
   PRODUCT CARDS
   ================================================================ */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-img-wrap img {
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-green);
  color: var(--color-white);
  padding: 4px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-weight {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold-dark);
  margin-bottom: 8px;
}

.product-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-info p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  flex: 1;
}

.product-footer {
  margin-top: 16px;
}

/* Add-to-cart button */
.add-to-cart-btn,
[data-product-id] {
  background: var(--color-gold);
  color: var(--color-white);
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.add-to-cart-btn:hover,
[data-product-id]:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.3);
}

/* ================================================================
   ABOUT / STORY SECTION
   ================================================================ */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(253, 245, 230, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.badge-icon {
  font-size: 1.8rem;
}

.badge-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-brown);
}

.badge-text span {
  font-size: 0.75rem;
  color: var(--color-gray);
}

.about-list {
  margin: 24px 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.about-list li i {
  color: var(--color-gold);
  margin-top: 4px;
  width: 16px;
  flex-shrink: 0;
}

/* ================================================================
   TRUST SECTION
   ================================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.trust-icon {
  width: 72px;
  height: 72px;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.trust-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials {
  background: var(--color-surface);
  padding: var(--space-3xl) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: var(--color-gold);
  margin-bottom: 16px;
  font-size: 0.85rem;
  display: flex;
  gap: 2px;
}

.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--color-brown);
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 166, 35, 0.15);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  background: var(--color-gold);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-brown);
}

.testimonial-author-info span {
  font-size: 0.78rem;
  color: var(--color-gray);
}

/* ================================================================
   NEWSLETTER / CTA BANNER
   ================================================================ */
.newsletter {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  padding: var(--space-2xl) 0;
  text-align: center;
  color: var(--color-white);
}

.newsletter h2 {
  color: var(--color-white);
  margin-bottom: 12px;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 24px;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ================================================================
   TIMELINE
   ================================================================ */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 3px;
  background: linear-gradient(to bottom, var(--color-gold), var(--color-gold-dark));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 40px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-year {
  position: absolute;
  left: 0;
  top: 0;
}

.timeline-year span {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-gold-dark);
  min-width: 40px;
  text-align: center;
}

.timeline-dot {
  position: absolute;
  left: 15px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--color-gold);
  border: 3px solid var(--color-cream);
  border-radius: 50%;
  z-index: 1;
}

.timeline-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--color-brown);
}

.timeline-content p {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ================================================================
   GALLERY GRID (small, for inline galleries)
   ================================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245, 166, 35, 0.12);
}

.contact-info-item:last-of-type { border-bottom: none; }

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(245, 166, 35, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-info-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--color-brown);
  margin-bottom: 2px;
}

.contact-info-text span,
.contact-info-text a {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
}

.contact-info-text a:hover { color: var(--color-gold); }

.opening-hours {
  margin-top: 24px;
  padding: 20px;
  background: var(--color-white);
  border-radius: var(--radius-md);
}

.opening-hours h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-brown);
  margin-bottom: 14px;
}

.opening-hours h4 i { color: var(--color-gold); }

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(245, 166, 35, 0.15);
  font-size: 0.88rem;
}

.hours-row:last-of-type { border-bottom: none; }

.hours-row .day { color: var(--color-text-secondary); }
.hours-row .time { font-weight: 700; color: var(--color-brown); }

/* ================================================================
   FORMS
   ================================================================ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 6px;
}

.required {
  color: var(--color-gold);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(92, 61, 46, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.form-control::placeholder {
  color: var(--color-gray-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235C3D2E' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.error-msg {
  display: block;
  font-size: 0.8rem;
  color: var(--color-error);
  margin-top: 4px;
  min-height: 1.2em;
}

.form-control.error {
  border-color: var(--color-error);
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-brown);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--color-gold-dark);
}

.faq-question i {
  color: var(--color-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--color-brown);
  color: var(--color-cream);
  padding: 60px 0 0;
  margin-top: var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-top: 16px;
}

.footer .nav-logo {
  color: var(--color-cream);
}

.footer .brand-matic {
  color: var(--color-gold);
}

.footer .brand-sub {
  color: rgba(255, 255, 255, 0.7);
}

.footer .tagline {
  color: rgba(255, 255, 255, 0.4);
}

.footer .nav-logo-divider {
  background: rgba(245, 166, 35, 0.4);
}

.footer-col h4 {
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--color-gold);
}

.footer-col li i {
  color: var(--color-gold);
  width: 18px;
  margin-right: 8px;
  font-size: 0.85rem;
}

.footer-col li span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.footer-links h4 {
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.footer-links a:hover { color: var(--color-gold); }

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
}

.footer-bottom-links a:hover {
  color: var(--color-gold);
}

/* ================================================================
   CART PANEL
   ================================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(59, 36, 21, 0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--color-white);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(92, 61, 46, 0.1);
}

.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-brown);
}

.cart-close {
  background: none;
  border: none;
  color: var(--color-gray);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  transition: var(--transition-fast);
}

.cart-close:hover { color: var(--color-brown); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(92, 61, 46, 0.1);
  background: var(--color-cream);
}

.cart-shipping-note {
  font-size: 0.82rem;
  color: var(--color-gray);
  margin-bottom: 12px;
  text-align: center;
}

/* Cart item styles */
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(92, 61, 46, 0.08);
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-brown);
}

.cart-item-detail {
  font-size: 0.8rem;
  color: var(--color-gray);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(92, 61, 46, 0.2);
  background: var(--color-white);
  color: var(--color-brown);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.cart-item-qty button:hover {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.cart-item-qty span {
  font-weight: 700;
  min-width: 24px;
  text-align: center;
}

.cart-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--color-gray);
}

.cart-empty i {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 12px;
  display: block;
}

/* ================================================================
   COOKIE BANNER
   ================================================================ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  z-index: 9997;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner p {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.cookie-banner a { color: var(--color-gold-dark); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 10px;
}

/* ================================================================
   TOAST NOTIFICATIONS
   ================================================================ */
.toast-container {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: var(--color-white);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  color: var(--color-brown);
  animation: toastIn 0.4s ease, toastOut 0.4s ease 3s forwards;
  max-width: 350px;
}

@keyframes toastIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes toastOut {
  to { transform: translateX(100%); opacity: 0; }
}

/* ================================================================
   LEGAL PAGES
   ================================================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 0;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(245, 166, 35, 0.2);
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--color-brown);
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.legal-content ul {
  margin: 12px 0 20px 20px;
  list-style: disc;
}

.legal-content li {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--color-gold-dark);
  text-decoration: underline;
}

/* ================================================================
   FADE-IN ANIMATIONS
   ================================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.15s; }
.fade-in-delay-2 { transition-delay: 0.3s; }
.fade-in-delay-3 { transition-delay: 0.45s; }

/* ================================================================
   WAVE DIVIDER
   ================================================================ */
.wave-divider {
  height: 60px;
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.wave-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--color-white);
  clip-path: ellipse(55% 60% at 50% 0%);
}

.wave-divider--reverse::before {
  clip-path: ellipse(55% 60% at 50% 100%);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 767px) {
  .hero-content {
    padding: 60px 0 40px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .features-strip .container {
    gap: 20px;
    justify-content: center;
  }

  .feature-item span {
    display: none;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery-item { height: 160px; }

  .section {
    padding: 60px 0;
  }

  .page-hero {
    padding: 110px 0 40px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item { height: 200px; }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}
