﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --bg: #f9f7f2;
  --surface: #ffffff;
  --surface-soft: #fff8eb;
  --text: #2b2a33;
  --muted: #6f6d78;
  --primary: #ff8a2b;
  --primary-dark: #de5b00;
  --accent: #ffd37c;
  --border: rgba(43, 42, 51, 0.08);
  --shadow: 0 24px 72px rgba(97, 76, 48, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #fbf7f0 0%, #f4efe5 100%);
  color: var(--text);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
.button {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand,
.brand-footer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
}

.brand-mark {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
}

.brand small {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--text);
  font-weight: 500;
}

.header-cta {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 8px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  background: var(--text);
  border-radius: 999px;
  margin: 4px 0;
}

.hero-section {
  padding: 64px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff4e3;
  color: #b66c00;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  line-height: 0.98;
}

.hero-copy p {
  margin: 24px 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  background: #fff;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 138, 43, 0.12);
}

..hero-media {
  background: linear-gradient(140deg, #fffdf8 30%, #fff4dc 100%);
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow);
  min-height: 520px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 24px;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.section-product-hero {
  padding: 64px 0 50px;
}

.product-hero-media {
  background: linear-gradient(140deg, #fffdf8 30%, #fff4dc 100%);
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow);
  min-height: 520px;
}

.product-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 24px;
}

.product-hero-copy {
  max-width: 560px;
}

.product-page-price {
  margin: 20px 0 16px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.product-highlights {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.product-highlights p {
  margin: 0;
  padding: 16px 18px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(43, 42, 51, 0.08);
  color: var(--muted);
}

.product-contact-note {
  margin: 20px 0 0;
  padding: 18px 20px;
  background: #fff7e8;
  border-left: 4px solid var(--primary);
  border-radius: 18px;
  color: var(--text);
  font-weight: 500;
}

.product-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.section {
  padding: 60px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head span {
  display: inline-block;
  color: #b06d00;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  line-height: 1.1;
}

.product-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(98, 74, 30, 0.08);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px rgba(98, 74, 30, 0.14);
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.product-price {
  margin: 0 0 16px;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.2rem;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.product-features li::before {
  content: "✔";
  display: inline-block;
  margin-right: 10px;
  color: var(--primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 18px 38px rgba(255, 138, 43, 0.22);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(43, 42, 51, 0.12);
}

.button-tertiary {
  background: #fff7ec;
  color: var(--primary-dark);
  border-color: transparent;
}

.benefits-grid,
.guide-grid,
.steps-grid,
.testimonial-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}

.benefits-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-card,
.guide-card,
.step-card,
.testimonial-card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 18px 34px rgba(112, 92, 57, 0.06);
}

.benefit-card h3,
.guide-card h3,
.step-card h4,
.contact-card h3 {
  margin-top: 0;
}

.benefit-card p,
.guide-card p,
.step-card p,
.testimonial-card p,
.contact-card p {
  color: var(--muted);
  margin: 16px 0 0;
  line-height: 1.75;
}

.guide-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  display: grid;
  gap: 18px;
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.section-steps .step-card h4 {
  margin: 0;
}

.section-cta-alt {
  background: linear-gradient(90deg, #fff4db 0%, #fff1d7 100%);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 32px;
  border: 1px solid rgba(255, 171, 70, 0.18);
  box-shadow: 0 20px 48px rgba(255, 148, 0, 0.08);
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
}

.cta-panel p {
  margin: 12px 0 0;
  color: var(--muted);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  min-height: 220px;
}

.testimonial-card strong {
  display: block;
  margin-top: 22px;
  color: var(--text);
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.pickup-note {
  margin-top: 22px;
  color: var(--muted);
  text-align: center;
}

.site-footer {
  padding: 36px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.footer-grid h4 {
  margin-bottom: 12px;
  color: var(--text);
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
}

.footer-note {
  text-align: center;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 960px) {
  .hero-grid,
  .footer-grid,
  .contact-grid,
  .guide-grid,
  .testimonials-grid,
  .benefits-grid,
  .product-grid,
  .product-hero-grid,
  .product-details-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 42px;
  }

  .hero-media,
  .product-hero-media {
    padding: 20px;
  }

  .product-card img {
    height: 200px;
  }

  .cta-panel {
    flex-direction: column;
    text-align: center;
  }

  .contact-actions {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100%, calc(100% - 24px));
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    flex-direction: column;
    gap: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(43, 42, 51, 0.08);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 20px 48px rgba(93, 67, 35, 0.12);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav a {
    padding: 10px 0;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: 2.6rem;
  }

  .button {
    width: 100%;
  }

  .product-info {
    padding: 20px;
  }

  .section {
    padding: 42px 0;
  }
}

@media (max-width: 530px) {
  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .cta-panel {
    padding: 24px;
  }

  .button,
  .button-primary,
  .button-secondary {
    padding: 14px 18px;
  }
}
