/* ============================================
   SPACENK.BOUTIQUE -- Hauptstylesheet
   ============================================ */

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

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
  --color-primary: #1B2A4A;
  --color-secondary: #3D3D3D;
  --color-accent: #C8A96E;
  --color-bg-primary: #FFFFFF;
  --color-bg-secondary: #F5F5F0;
  --color-bg-tertiary: #1B2A4A;
  --color-text-primary: #2C2C2C;
  --color-text-secondary: #6B6B6B;
  --color-text-on-dark: #F0F0F0;
  --color-border: #E0E0E0;
  --color-success: #2E7D52;
  --color-error: #B33A3A;

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

  --spacing-base: 8px;
  --section-padding-v: 96px;
  --section-padding-h: 24px;
  --max-width: 1200px;
  --card-padding: 32px;
  --grid-gap: 32px;
  --border-radius: 2px;
  --transition-speed: 0.3s;
}

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

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

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

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input, select, textarea {
  font-family: var(--font-body);
}

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

/* ============================================
   Skip Navigation (Accessibility)
   ============================================ */
.skip-nav {
  position: absolute;
  top: -100px;
  left: 0;
  padding: 12px 24px;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  z-index: 9999;
  transition: top 0.3s;
}
.skip-nav:focus {
  top: 0;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-primary);
}

h1 { font-size: 48px; font-weight: 700; line-height: 1.2; }
h2 { font-size: 36px; font-weight: 700; line-height: 1.3; }
h3 { font-size: 24px; font-weight: 500; line-height: 1.4; }
h4 { font-size: 20px; font-weight: 500; line-height: 1.4; }

p { line-height: 1.7; }

.text-small  { font-size: 14px; line-height: 1.5; }
.text-caption { font-size: 12px; line-height: 1.4; }
.text-meta   { font-size: 14px; color: var(--color-text-secondary); }
.text-accent-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.quote-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 18px;
  color: var(--color-secondary);
  line-height: 1.6;
}

/* ============================================
   Layout Utilities
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-h);
}

.section {
  padding: var(--section-padding-v) 0;
}

.section--alt {
  background: var(--color-bg-secondary);
}

.section--dark {
  background: var(--color-bg-tertiary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header .section-subtitle {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--grid-gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--grid-gap); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap { gap: 16px; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--transition-speed) ease,
              color var(--transition-speed) ease,
              border-color var(--transition-speed) ease;
  text-decoration: none;
  border: 1.5px solid transparent;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn--primary:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary);
}

.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--secondary:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn--cart {
  background: var(--color-success);
  color: #fff;
  border-color: var(--color-success);
}
.btn--cart:hover {
  background: #245F42;
  border-color: #245F42;
}

.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border: none;
  padding: 0;
  letter-spacing: 0;
  text-transform: none;
  font-size: 14px;
  font-weight: 400;
  position: relative;
}
.btn--ghost::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width 0.4s ease;
}
.btn--ghost:hover::after { width: 100%; }

.btn--ghost-white {
  color: var(--color-text-on-dark);
}
.btn--ghost-white::after {
  background: var(--color-accent);
}

.btn--full { width: 100%; }

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

/* ============================================
   Divider
   ============================================ */
.divider {
  height: 1px;
  background: var(--color-border);
  border: none;
  margin: 0;
}

.divider--gold {
  width: 40px;
  background: var(--color-accent);
  margin: 16px 0;
}

/* ============================================
   Badges
   ============================================ */
.badge {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
}

.badge--new {
  background: var(--color-primary);
  color: #fff;
}

.badge--bestseller {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* ============================================
   Product Cards
   ============================================ */
.product-card {
  background: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-speed) ease,
              box-shadow var(--transition-speed) ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-bg-secondary);
}

.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image-wrap img {
  transform: scale(1.03);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.product-card__cart-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
  transition: transform var(--transition-speed) ease;
  border-radius: 0;
  padding: 12px 24px;
}

.product-card:hover .product-card__cart-btn {
  transform: translateY(0);
}

.product-card__info {
  padding: 16px 0;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 6px;
  line-height: 1.4;
}

.product-card__desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card__price {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  color: var(--color-text-primary);
}

/* Stars */
.stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent);
}

.stars svg {
  width: 14px;
  height: 14px;
  fill: var(--color-accent);
  stroke: var(--color-accent);
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: transform var(--transition-speed) ease,
              height var(--transition-speed) ease;
}

.site-header.hidden {
  transform: translateY(-100%);
}

.site-header.scrolled {
  height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

/* Logo */
.site-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-primary);
  letter-spacing: 1px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo span {
  color: var(--color-accent);
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-secondary);
  position: relative;
  padding-bottom: 4px;
  text-decoration: none;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width var(--transition-speed) ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary);
}

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

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  min-width: 200px;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-text-primary);
  border-bottom: 1px solid var(--color-border);
}

.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--color-bg-secondary); color: var(--color-primary); }
.nav-dropdown-menu a::after { display: none; }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.header-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  transition: color var(--transition-speed) ease;
  padding: 4px;
}

.header-search-btn:hover { color: var(--color-primary); }

.header-cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  transition: color var(--transition-speed) ease;
  padding: 4px;
  text-decoration: none;
}

.header-cart-btn:hover { color: var(--color-primary); }

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  width: 18px;
  height: 18px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}

/* Hamburger */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-secondary);
  padding: 4px;
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 24px;
  z-index: 1100;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.search-overlay.open {
  transform: translateY(0);
}

.search-overlay-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-overlay input {
  flex: 1;
  border: none;
  font-size: 18px;
  color: var(--color-text-primary);
  outline: none;
  font-family: var(--font-body);
  background: transparent;
}

.search-overlay-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-secondary);
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: var(--color-bg-primary);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}

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

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-secondary);
}

.mobile-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.mobile-menu-nav a {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  display: block;
}

.mobile-menu-nav a:hover { color: var(--color-accent); }

/* ============================================
   Page Header (Internal Pages)
   ============================================ */
.page-header {
  background: var(--color-primary);
  padding: 60px 0 50px;
  margin-top: 80px;
}

.page-header h1 {
  color: var(--color-text-on-dark);
  margin-bottom: 12px;
}

.page-header .page-subtitle {
  color: rgba(240,240,240,0.7);
  font-size: 16px;
  max-width: 600px;
}

.page-header .page-subtitle--accent {
  color: var(--color-accent);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--color-accent);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb-sep {
  color: rgba(200,169,110,0.5);
  font-size: 11px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  margin-top: 80px;
  overflow: hidden;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(27,42,74,0.8) 0%, rgba(27,42,74,0.5) 50%, transparent 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  max-width: 600px;
  width: 100%;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--color-text-on-dark);
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero__title-underline {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 16px 0 24px;
}

.hero__subtitle {
  font-size: 17px;
  color: rgba(240,240,240,0.9);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ============================================
   Trust Bar
   ============================================ */
.trust-bar {
  background: var(--color-bg-secondary);
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.trust-bar__items {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.trust-bar__item svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.trust-bar__text {
  font-size: 13px;
  color: var(--color-secondary);
  font-weight: 400;
  line-height: 1.4;
}

/* ============================================
   Category Cards
   ============================================ */
.category-card {
  position: relative;
  overflow: hidden;
}

.category-card__image {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--color-bg-secondary);
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-card__image img {
  transform: scale(1.03);
}

.category-card__info {
  padding: 20px 0 8px;
}

.category-card__info h3 {
  margin-bottom: 8px;
}

.category-card__info p {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
}

/* ============================================
   Split Section
   ============================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.split-section--reverse {
  direction: rtl;
}

.split-section--reverse > * {
  direction: ltr;
}

.split-section__image {
  overflow: hidden;
  background: var(--color-bg-secondary);
}

.split-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-section__content {
  padding: 64px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-section__content h2 {
  margin: 12px 0 24px;
}

.split-section__content p {
  color: var(--color-text-secondary);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}

/* ============================================
   Gift Section
   ============================================ */
.gift-section {
  padding: var(--section-padding-v) 0;
  background: var(--color-primary);
}

.gift-section h2 { color: var(--color-text-on-dark); }
.gift-section .section-subtitle { color: var(--color-accent); }

.gift-card {
  background: var(--color-bg-primary);
  border: 1px solid rgba(255,255,255,0.1);
  padding: var(--card-padding);
  text-align: center;
}

.gift-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--color-accent);
}

.gift-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.gift-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonial-card {
  border: 1px solid var(--color-border);
  padding: var(--card-padding);
  background: var(--color-bg-primary);
}

.testimonial-card__quote-mark {
  font-family: var(--font-heading);
  font-size: 64px;
  color: var(--color-accent);
  line-height: 0.8;
  margin-bottom: 16px;
  display: block;
}

.testimonial-card__text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 17px;
  color: var(--color-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card hr {
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  border: none;
  margin: 0 0 16px;
}

.testimonial-card__name {
  font-weight: 500;
  font-size: 13px;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.testimonial-card__location {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
}

/* ============================================
   Newsletter Section
   ============================================ */
.newsletter-section {
  padding: var(--section-padding-v) 0;
  background: var(--color-bg-secondary);
}

.newsletter-section .section-header {
  max-width: 600px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  border: 1.5px solid var(--color-border);
  border-right: none;
  padding: 14px 20px;
  font-size: 15px;
  color: var(--color-text-primary);
  outline: none;
  border-radius: 2px 0 0 2px;
  background: var(--color-bg-primary);
  transition: border-color var(--transition-speed) ease;
}

.newsletter-form input:focus {
  border-color: var(--color-primary);
}

.newsletter-form .btn {
  border-radius: 0 2px 2px 0;
}

.newsletter-legal {
  font-size: 12px;
  color: var(--color-text-secondary);
  text-align: center;
  margin-top: 12px;
}

.newsletter-legal a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--color-primary);
  padding: 72px 0 0;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text-on-dark);
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}

.footer-brand__logo span { color: var(--color-accent); }

.footer-brand__desc {
  font-size: 13px;
  color: rgba(240,240,240,0.6);
  line-height: 1.8;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(240,240,240,0.75);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

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

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-payment-item {
  font-size: 11px;
  font-weight: 500;
  color: rgba(240,240,240,0.4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(240,240,240,0.2);
  padding: 4px 8px;
  border-radius: 2px;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(240,240,240,0.4);
}

/* ============================================
   Cookie Banner
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  z-index: 9000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

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

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner__text {
  font-size: 14px;
  color: var(--color-text-secondary);
  flex: 1;
}

.cookie-banner__text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ============================================
   Forms
   ============================================ */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.form-group label .required {
  color: var(--color-error);
}

.form-control {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  outline: none;
  transition: border-color var(--transition-speed) ease;
  font-family: var(--font-body);
  -webkit-appearance: none;
  appearance: none;
}

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

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

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

.form-error {
  font-size: 13px;
  color: var(--color-error);
  margin-top: 4px;
  display: none;
}

.form-error.visible {
  display: block;
}

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

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--color-border);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.form-checkbox label {
  font-size: 14px;
  color: var(--color-text-secondary);
  font-weight: 400;
  margin-bottom: 0;
}

.form-checkbox label a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ============================================
   Filter Bar (Products Page)
   ============================================ */
.filter-bar {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 80px;
  z-index: 100;
}

.filter-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
}

.filter-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 400;
  color: var(--color-secondary);
  border: 1px solid var(--color-border);
  background: transparent;
  cursor: pointer;
  border-radius: 2px;
  transition: all var(--transition-speed) ease;
  font-family: var(--font-body);
}

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

.filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.sort-select {
  font-size: 13px;
  color: var(--color-secondary);
  border: 1px solid var(--color-border);
  padding: 8px 36px 8px 14px;
  background: transparent;
  cursor: pointer;
  border-radius: 2px;
  font-family: var(--font-body);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

/* ============================================
   Pagination
   ============================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 48px 0;
}

.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 1px solid var(--color-border);
  background: transparent;
  cursor: pointer;
  color: var(--color-secondary);
  transition: all var(--transition-speed) ease;
  font-family: var(--font-body);
  border-radius: 2px;
}

.page-btn:hover { background: var(--color-bg-secondary); }

.page-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.page-btn--icon {
  color: var(--color-secondary);
}

/* ============================================
   Product Detail
   ============================================ */
.product-detail {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  padding: 48px 0;
}

.product-images__main {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-bg-secondary);
  margin-bottom: 16px;
}

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

.product-images__thumbs {
  display: flex;
  gap: 12px;
}

.product-thumb {
  aspect-ratio: 3/4;
  width: 80px;
  overflow: hidden;
  background: var(--color-bg-secondary);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition-speed) ease;
  flex-shrink: 0;
}

.product-thumb.active {
  border-color: var(--color-accent);
}

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

.product-info__category {
  margin-bottom: 8px;
}

.product-info h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.product-info__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.product-info__meta a {
  font-size: 13px;
  color: var(--color-text-secondary);
  text-decoration: underline;
}

.product-info__price {
  font-size: 28px;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.product-info__price-note {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.product-info__price-note a {
  color: var(--color-primary);
  text-decoration: underline;
}

.product-info__desc {
  font-size: 15px;
  color: var(--color-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--color-border);
  width: fit-content;
  border-radius: 2px;
  overflow: hidden;
}

.qty-btn {
  width: 40px;
  height: 44px;
  background: var(--color-bg-secondary);
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-speed) ease;
  font-family: var(--font-body);
}

.qty-btn:hover { background: var(--color-border); }

.qty-input {
  width: 56px;
  height: 44px;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  text-align: center;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--color-text-primary);
  outline: none;
  background: var(--color-bg-primary);
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.product-meta-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--color-text-secondary);
}

.product-meta-item svg { color: var(--color-accent); flex-shrink: 0; margin-top: 1px; }

/* Product Tabs */
.product-tabs {
  margin: 48px 0;
}

.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  gap: 0;
}

.tab-btn {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: color var(--transition-speed) ease,
              border-color var(--transition-speed) ease;
  font-family: var(--font-body);
}

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

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

.tab-content {
  display: none;
  padding: 32px 0;
  animation: fadeIn 0.3s ease;
}

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

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

.tab-content p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.details-table {
  width: 100%;
}

.details-table tr:nth-child(odd) td { background: var(--color-bg-secondary); }

.details-table td {
  padding: 12px 16px;
  font-size: 14px;
}

.details-table td:first-child {
  font-weight: 500;
  color: var(--color-text-primary);
  width: 40%;
}

.details-table td:last-child {
  color: var(--color-text-secondary);
}

/* ============================================
   Cart Page
   ============================================ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  padding: 48px 0;
  align-items: start;
}

.cart-table {
  width: 100%;
}

.cart-table thead tr {
  border-bottom: 1px solid var(--color-border);
}

.cart-table th {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  padding: 12px 16px;
  text-align: left;
}

.cart-table td {
  padding: 20px 16px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.cart-product-cell {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-product-img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  background: var(--color-bg-secondary);
  flex-shrink: 0;
}

.cart-product-name {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.cart-product-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
}

.cart-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-secondary);
  transition: color var(--transition-speed) ease;
}

.cart-remove-btn:hover { color: var(--color-error); }

.cart-summary {
  background: var(--color-bg-secondary);
  padding: var(--card-padding);
  position: sticky;
  top: 100px;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.cart-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-primary);
  border-top: 1px solid var(--color-border);
  margin-top: 8px;
}

.cart-summary__note {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-top: 8px;
}

.coupon-form {
  display: flex;
  gap: 0;
  margin: 16px 0;
}

.coupon-form input {
  flex: 1;
  border: 1px solid var(--color-border);
  border-right: none;
  padding: 10px 14px;
  font-size: 13px;
  outline: none;
  font-family: var(--font-body);
  border-radius: 2px 0 0 2px;
}

.coupon-form .btn {
  border-radius: 0 2px 2px 0;
  padding: 10px 16px;
  font-size: 12px;
}

/* Empty Cart */
.empty-cart {
  text-align: center;
  padding: 96px 0;
}

.empty-cart__icon {
  color: var(--color-border);
  margin: 0 auto 24px;
}

.empty-cart h2 {
  margin-bottom: 12px;
  color: var(--color-secondary);
}

.empty-cart p {
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

/* ============================================
   Checkout
   ============================================ */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  padding: 48px 0;
  align-items: start;
}

.checkout-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-secondary);
}

.checkout-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-border);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
}

.checkout-step.active .checkout-step__num {
  background: var(--color-primary);
  color: #fff;
}

.checkout-step.done .checkout-step__num {
  background: var(--color-success);
  color: #fff;
}

.checkout-step__sep {
  flex: 1;
  height: 1px;
  background: var(--color-border);
  margin: 0 8px;
  min-width: 24px;
}

.checkout-section {
  border: 1px solid var(--color-border);
  padding: 28px;
  margin-bottom: 24px;
}

.checkout-section h3 {
  font-size: 18px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-option {
  border: 1.5px solid var(--color-border);
  padding: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color var(--transition-speed) ease;
  border-radius: 2px;
}

.payment-option:has(input:checked) {
  border-color: var(--color-primary);
}

.payment-option input[type="radio"] {
  accent-color: var(--color-primary);
}

.payment-option-label {
  font-size: 14px;
  font-weight: 500;
}

.cc-fields {
  margin-top: 16px;
  display: none;
}

.cc-fields.visible { display: grid; gap: 16px; }

.checkout-summary {
  background: var(--color-bg-secondary);
  padding: var(--card-padding);
  position: sticky;
  top: 100px;
}

.checkout-product-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.checkout-product-thumb {
  width: 60px;
  height: 75px;
  object-fit: cover;
  background: var(--color-border);
  flex-shrink: 0;
}

.checkout-product-info { flex: 1; }

.checkout-product-name {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.checkout-product-qty {
  font-size: 12px;
  color: var(--color-text-secondary);
}

.checkout-product-price {
  font-size: 14px;
  font-weight: 500;
}

.ssl-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.ssl-notice svg { color: var(--color-success); }

/* ============================================
   About Page
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.value-card {
  padding: var(--card-padding);
  background: var(--color-bg-primary);
  text-align: center;
}

.value-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--color-accent);
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.stats-section {
  background: var(--color-primary);
  padding: 64px 0;
}

.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-item__label {
  font-size: 13px;
  color: var(--color-text-on-dark);
  font-weight: 400;
}

/* ============================================
   Gift Page
   ============================================ */
.occasion-card {
  background: var(--color-bg-primary);
}

.occasion-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-bg-secondary);
}

.occasion-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.occasion-card:hover .occasion-card__image img {
  transform: scale(1.03);
}

.occasion-card__content {
  padding: 24px 0;
}

.occasion-card__content h3 { margin-bottom: 12px; }

.occasion-card__content p {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.occasion-products {
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
  margin-bottom: 16px;
}

.occasion-product-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 13px;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

.occasion-product-link:hover { color: var(--color-accent); }

.occasion-product-link span:last-child {
  color: var(--color-text-secondary);
}

/* Budget Bands */
.budget-band {
  background: var(--color-bg-primary);
  padding: 28px;
  margin-bottom: 16px;
  border: 1px solid var(--color-border);
}

.budget-band__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.budget-band__header h3 { margin-bottom: 0; }

.budget-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.budget-product {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.budget-product__img {
  width: 70px;
  height: 88px;
  object-fit: cover;
  background: var(--color-bg-secondary);
  flex-shrink: 0;
}

.budget-product__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 4px;
  line-height: 1.4;
}

.budget-product__price {
  font-size: 12px;
  color: var(--color-text-secondary);
}

.budget-product:hover .budget-product__name {
  color: var(--color-accent);
}

/* Gift Service Features */
.gift-service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.gift-service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.gift-service-list li svg { color: var(--color-success); flex-shrink: 0; }

/* ============================================
   Legal Pages
   ============================================ */
.legal-content {
  max-width: 800px;
  padding: 64px 0;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 18px;
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.widerruf-form {
  background: var(--color-bg-secondary);
  padding: 32px;
  border: 1px solid var(--color-border);
  margin: 24px 0;
}

.versand-table {
  margin: 24px 0;
}

.versand-table th {
  background: var(--color-primary);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 500;
}

.versand-table td {
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-secondary);
}

.versand-table tr:nth-child(even) td {
  background: var(--color-bg-secondary);
}

/* ============================================
   Scroll to Top
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-speed) ease,
              background var(--transition-speed) ease;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover { background: var(--color-accent); }

/* ============================================
   Slider (Recommendations)
   ============================================ */
.product-slider {
  position: relative;
  overflow: hidden;
}

.product-slider__track {
  display: flex;
  gap: 32px;
  transition: transform 0.4s ease;
}

.product-slider__item {
  flex: 0 0 calc(25% - 24px);
  min-width: 0;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: var(--color-secondary);
  transition: all var(--transition-speed) ease;
}

.slider-btn:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.slider-btn--prev { left: -22px; }
.slider-btn--next { right: -22px; }

/* ============================================
   Animations & Fade In
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   FAQ Accordion
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-primary);
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform var(--transition-speed) ease;
  color: var(--color-accent);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 0;
  min-height: 600px;
}

.contact-info {
  background: var(--color-bg-secondary);
  padding: 48px;
}

.contact-info h3 { margin-bottom: 28px; }

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-info-item svg {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item span {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact-form-col {
  padding: 48px;
  background: var(--color-bg-primary);
}

.contact-form-col h3 { margin-bottom: 28px; }

/* ============================================
   Wrapper / Main content offset for fixed header
   ============================================ */
.main-content {
  padding-top: 80px;
}

.main-content--no-offset {
  padding-top: 0;
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
