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

:root {
  --bg-primary: #f9f7f4;
  --bg-secondary: #f0ebe1;
  --bg-card: #ffffff;
  --bg-dark: #1a2e1e;
  --text-dark: #1c1c1c;
  --text-body: #555;
  --text-light: #888;
  --accent: #c4954a;
  --accent-dark: #a07832;
  --accent-light: #e8d4a8;
  --accent-muted: #f5ead8;
  --border: #e2d9c8;
  --green-deep: #1a2e1e;
  --green-mid: #2d4e35;
  --green-light: #4a7c59;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 12px rgba(26, 26, 26, 0.06);
  --shadow-md: 0 8px 32px rgba(26, 26, 26, 0.10);
  --shadow-lg: 0 20px 60px rgba(26, 26, 26, 0.14);
  --shadow-xl: 0 32px 80px rgba(26, 26, 26, 0.18);

  --transition-fast: 0.25s ease;
  --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.25;
}

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

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

.container {
  width: 92%;
  max-width: 1220px;
  margin: 0 auto;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#preloader .preloader-logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #fff;
  letter-spacing: 0.08em;
}

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

.preloader-dots {
  display: flex;
  gap: 8px;
}

.preloader-dots span {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: dot-bounce 1.4s ease-in-out infinite both;
}

.preloader-dots span:nth-child(1) { animation-delay: -0.32s; }
.preloader-dots span:nth-child(2) { animation-delay: -0.16s; }
.preloader-dots span:nth-child(3) { animation-delay: 0s; }

@keyframes dot-bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

.preloader-text {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ===== AFFILIATE BANNER ===== */
.affiliate-banner {
  background: var(--text-dark);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 2001;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  background: rgba(249, 247, 244, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--transition-fast), background var(--transition-fast);
}

header.scrolled {
  box-shadow: 0 4px 24px rgba(26, 26, 26, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.brand-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 2.8rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-body);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

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

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav ul {
  list-style: none;
  text-align: center;
}

.mobile-nav li {
  margin: 1.8rem 0;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #fff;
  transition: color var(--transition-fast);
}

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

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 15px 36px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent-dark);
  transition: all var(--transition-fast);
  text-align: center;
  border-radius: 60px;
  line-height: 1;
}

.btn:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 149, 74, 0.35);
}

.btn-solid {
  background: var(--accent);
  color: #fff;
}

.btn-solid:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-dark {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #fff;
}

.btn-dark:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 46, 30, 0.3);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-bg-shape {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(196, 149, 74, 0.08) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-muted);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 8px 16px;
  border-radius: 60px;
  margin-bottom: 1.8rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 1.8rem;
  color: var(--text-dark);
}

.hero-text h1 em {
  font-style: italic;
  color: var(--accent-dark);
}

.hero-text > p {
  font-size: 1.08rem;
  color: var(--text-body);
  margin-bottom: 2.8rem;
  line-height: 1.85;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 0.5rem;
}

.hero-price {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--text-dark);
  line-height: 1;
}

.hero-price-note {
  font-size: 0.85rem;
  color: var(--text-light);
}

.hero-img-wrap {
  position: relative;
}

.hero-img-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: var(--accent-muted);
  border-radius: var(--radius-xl);
  z-index: 0;
}

.hero-img-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-xl);
  transition: transform 0.6s ease;
}

.hero-img-wrap:hover img {
  transform: scale(1.02);
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3.5rem;
    padding: 60px 0;
  }
  .hero-text { max-width: 100%; order: 2; }
  .hero-text > p { margin-left: auto; margin-right: auto; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-badge { display: inline-flex; }
  .hero-img-wrap { order: 1; max-width: 480px; margin: 0 auto; }
  .hero-actions { justify-content: center; }
}

/* ===== MARQUEE ===== */
.marquee-section {
  background: var(--green-deep);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
  gap: 3rem;
}

.marquee-track span {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

.marquee-track .sep {
  color: var(--accent);
  font-size: 0.6rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== FEATURES ===== */
.features-section {
  padding: 110px 0;
  background: var(--bg-card);
  position: relative;
}

.section-label {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 1rem;
}

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

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

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

.feature-card {
  background: var(--bg-primary);
  padding: 2.8rem 2.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-light);
}

.feature-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--accent-muted), var(--bg-card));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.6rem;
  border: 1px solid var(--border);
}

.feature-icon-wrap svg {
  width: 30px;
  height: 30px;
  stroke: var(--accent-dark);
  stroke-width: 1.5;
  fill: none;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}

/* ===== PHILOSOPHY ===== */
.philosophy-section {
  padding: 110px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.philosophy-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 149, 74, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

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

.philosophy-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.philosophy-img img {
  width: 100%;
  transition: transform 0.6s ease;
}

.philosophy-img:hover img {
  transform: scale(1.03);
}

.philosophy-text .section-label {
  text-align: left;
  margin-bottom: 1.2rem;
}

.philosophy-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.8rem;
}

.philosophy-text > p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

@media (max-width: 900px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ===== PRODUCT HIGHLIGHT ===== */
.product-highlight {
  padding: 110px 0;
  background: var(--bg-card);
}

.product-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 90px;
}

.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-secondary);
  margin-bottom: 14px;
}

.gallery-main img {
  width: 100%;
  transition: opacity 0.3s ease, transform 0.4s ease;
  cursor: zoom-in;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2.5px solid transparent;
  opacity: 0.55;
  transition: all var(--transition-fast);
}

.gallery-thumbs img:hover,
.gallery-thumbs img.active {
  opacity: 1;
  border-color: var(--accent);
}

.product-details h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.2rem;
}

.product-details .product-price {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.product-details .product-price-note {
  font-size: 0.85rem;
  color: var(--text-light);
  font-family: var(--font-sans);
}

.product-details > p {
  font-size: 1.02rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.product-specs {
  list-style: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 2rem 0;
}

.product-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

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

.product-specs .spec-label {
  font-weight: 600;
  color: var(--text-dark);
}

.product-specs .spec-value {
  color: var(--text-light);
}

@media (max-width: 900px) {
  .product-highlight-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .product-gallery { position: static; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--green-deep);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(196, 149, 74, 0.1) 0%, transparent 70%);
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 1.2rem;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 110px 0;
  background: var(--bg-secondary);
}

.faq-container {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem 1.8rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  outline: none;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent-dark);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform var(--transition-fast);
  line-height: 1;
  flex-shrink: 0;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer p {
  padding: 0 1.8rem 1.5rem;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.85;
}

/* ===== INTERNAL PAGES ===== */
.internal-page {
  padding: 130px 0 80px;
}

.editorial-article {
  max-width: 800px;
  margin: 0 auto;
}

.editorial-article img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.editorial-article h3 {
  font-size: 1.7rem;
  margin: 2.8rem 0 1rem;
  color: var(--text-dark);
}

.editorial-article p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 1.4rem;
  line-height: 1.9;
}

.pull-quote {
  border-left: 3px solid var(--accent);
  padding-left: 2rem;
  margin: 2.8rem 0;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--text-dark);
}

.pull-quote cite {
  display: block;
  margin-top: 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-style: normal;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ===== COMPARISON ===== */
.comparison-wrapper {
  margin-top: 5rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 1.2rem 1.6rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
}

.comparison-table th {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-dark);
  background: var(--bg-secondary);
}

.comparison-table td:first-child,
.comparison-table th:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.highlight-col {
  background: rgba(196, 149, 74, 0.07);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1020px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-card);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.contact-person {
  margin-bottom: 2.5rem;
}

.contact-person .person-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.contact-person p {
  font-size: 0.93rem;
  color: var(--text-body);
  margin-bottom: 0.4rem;
}

.contact-person strong {
  color: var(--text-dark);
  display: block;
  margin-top: 1.2rem;
  margin-bottom: 0.3rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.company-info {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.company-info p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.contact-form-wrap {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-input {
  width: 100%;
  padding: 15px 0;
  margin-bottom: 1.6rem;
  border: none;
  border-bottom: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-input:focus {
  border-bottom-color: var(--accent);
}

.form-input::placeholder {
  color: var(--text-light);
}

textarea.form-input {
  resize: none;
  rows: 5;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ===== LEGAL ===== */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 3rem;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-content h2 {
  font-size: 1.35rem;
  margin: 2.5rem 0 1rem;
  color: var(--text-dark);
}

.legal-content p {
  color: var(--text-body);
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
  line-height: 1.85;
}

/* ===== FOOTER ===== */
footer {
  background: var(--green-deep);
  padding: 80px 5% 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  max-width: 1220px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1.4rem;
  display: block;
  letter-spacing: 0.04em;
}

.footer-col > p,
.footer-col > a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-bottom: 0.65rem;
  display: block;
  transition: color var(--transition-fast);
  line-height: 1.7;
}

.footer-col > a:hover {
  color: var(--accent-light);
}

.footer-col > p strong {
  color: #fff;
  display: block;
  margin-bottom: 0.3rem;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 1.6rem;
}

.footer-bottom {
  max-width: 1220px;
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: -300px;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  padding: 0;
  z-index: 9999;
  transition: bottom var(--transition-slow);
  box-shadow: 0 -8px 32px rgba(26, 26, 26, 0.12);
}

#cookie-banner.active {
  bottom: 0;
}

.cookie-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 24px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-inner .cookie-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cookie-inner .cookie-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-dark);
  stroke-width: 1.5;
  fill: none;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 0;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--accent-dark);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-actions .btn {
  padding: 11px 22px;
  font-size: 0.76rem;
}

@media (max-width: 700px) {
  .cookie-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }
  .cookie-actions {
    justify-content: center;
  }
}

/* ===== STICKY BUY BAR ===== */
.sticky-buy-bar {
  position: fixed;
  bottom: -80px;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 14px 5%;
  z-index: 900;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: bottom var(--transition-slow);
  box-shadow: 0 -4px 24px rgba(26,26,26,0.08);
}

.sticky-buy-bar.active {
  bottom: 0;
}

.sticky-buy-bar .sticky-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sticky-buy-bar .sticky-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-dark);
}

.sticky-buy-bar .sticky-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-dark);
}

.sticky-buy-bar .btn {
  padding: 12px 28px;
  font-size: 0.76rem;
}
