/* ============================================
   HEAVENLY TREATS - Main Stylesheet
   heavenlytreats.fi
   ============================================ */

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

:root {
  --cream:     #FFF5F6;
  --cream-dark:#FBD0D4;
  --brown:     #2D1B1B;
  --brown-mid: #C0334D;
  --caramel:   #C4963A;
  --rose:      #E8737A;
  --rose-light:#FDE8D0;
  --text:      #2D1B1B;
  --text-light:#8B6060;
  --white:     #FFFFFF;
  --shadow:    0 4px 24px rgba(232,115,122,0.12);
  --radius:    12px;
  --transition:0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--brown);
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: 0 2px 12px rgba(61,26,14,0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--brown);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav-logo span {
  color: var(--caramel);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
}

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

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

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

.nav-cta {
  background: var(--rose);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem !important;
  transition: background var(--transition) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--caramel) !important;
  color: var(--white) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(201,149,108,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,165,165,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  background: var(--rose-light);
  color: var(--brown-mid);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 12px;
  line-height: 1.15;
}

.hero-title em {
  font-style: italic;
  color: var(--caramel);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-desc {
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image-box {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--cream-dark);
  box-shadow: var(--shadow);
}

.hero-image-box img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-image-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.85rem;
}

.hero-image-placeholder span {
  font-size: 3rem;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-icon { font-size: 1.6rem; }
.hero-badge-text strong { display: block; font-size: 1rem; color: var(--brown); }
.hero-badge-text small { font-size: 0.75rem; color: var(--text-light); }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--caramel);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,115,122,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--rose);
  border: 2px solid var(--rose);
}
.btn-outline:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.82rem;
}

/* ============================================
   SECTIONS
   ============================================ */

section { padding: 80px 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--brown);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 540px;
  font-weight: 300;
}

.section-head {
  margin-bottom: 48px;
}

.section-head.center {
  text-align: center;
}
.section-head.center .section-sub {
  margin: 0 auto;
}

/* ============================================
   WHY US STRIP
   ============================================ */

.why-strip {
  background: var(--rose);
  padding: 40px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.why-item {
  color: var(--white);
}

.why-icon { font-size: 1.8rem; margin-bottom: 8px; }
.why-title { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 4px; }
.why-desc { font-size: 0.82rem; color: rgba(255,255,255,0.65); font-weight: 300; }

/* ============================================
   PRODUCT CARDS
   ============================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(61,26,14,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(61,26,14,0.13);
}

.product-img {
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  overflow: hidden;
  position: relative;
}

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

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

.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.8rem;
}

.product-img-placeholder span { font-size: 2.4rem; }

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--rose);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.product-body {
  padding: 20px;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 6px;
}

.product-price {
  font-size: 0.95rem;
  color: var(--caramel);
  font-weight: 500;
  margin-bottom: 16px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 15%;
  width: 70%;
  height: 2px;
  background: linear-gradient(to right, var(--caramel), var(--rose));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rose);
  box-shadow: 0 4px 16px rgba(232,115,122,0.2);
}

.step-title {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--brown);
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 300;
}

/* ============================================
   REVIEWS
   ============================================ */

.reviews-bg {
  background: var(--cream-dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

@media (min-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews-grid .review-card:nth-child(4),
  .reviews-grid .review-card:nth-child(5) {
    grid-column: span 1;
  }
  .reviews-grid:has(.review-card:nth-child(5)) {
    grid-template-columns: repeat(5, 1fr);
  }
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 2px 12px rgba(61,26,14,0.06);
}

.review-stars {
  color: #F5A623;
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.review-author {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
}

.reviews-cta {
  text-align: center;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.rating-big {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}

.rating-info { text-align: left; }
.rating-stars { color: #F5A623; font-size: 1.1rem; letter-spacing: 2px; }
.rating-count { font-size: 0.82rem; color: var(--text-light); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, var(--rose) 0%, #C0334D 100%);
  padding: 70px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,149,108,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 12px;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto;
  font-weight: 300;
}

/* ============================================
   GALLERY GRID
   ============================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-dark);
  position: relative;
  cursor: pointer;
}

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

.gallery-item:hover img { transform: scale(1.06); }

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.8rem;
}

.gallery-placeholder span { font-size: 2.4rem; }

/* ============================================
   CONTACT
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 2px;
}

.contact-detail-text p {
  font-size: 0.92rem;
  color: var(--text);
}

.contact-form-box {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--caramel);
  background: var(--white);
}

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

/* ============================================
   FAQ
   ============================================ */

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--brown);
  gap: 16px;
}

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--caramel);
}

.faq-answer {
  font-size: 0.9rem;
  color: var(--text-light);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-weight: 300;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 12px;
}

.faq-item.open .faq-icon {
  background: var(--rose);
  color: var(--white);
  transform: rotate(45deg);
}

/* ============================================
   HOW TO ORDER STEPS
   ============================================ */

.order-steps { max-width: 800px; margin: 0 auto; }

.order-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  margin-bottom: 40px;
  align-items: start;
}

.order-step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

.order-step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.order-step-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 8px;
}

.order-step-content ul {
  list-style: disc;
  padding-left: 18px;
  font-size: 0.88rem;
  color: var(--text-light);
}

.order-step-content ul li { margin-bottom: 4px; }

/* ============================================
   BADGES ROW
   ============================================ */

.badges-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.badge span { font-size: 1.1rem; }

/* ============================================
   POLICY PAGES
   ============================================ */

.policy-content {
  max-width: 760px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.2rem;
  margin: 36px 0 12px;
  color: var(--brown);
}

.policy-content p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 12px;
  font-weight: 300;
  line-height: 1.8;
}

.policy-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

.policy-content ul li {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.policy-last-updated {
  display: inline-block;
  background: var(--cream-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 36px;
}

/* ============================================
   MAP
   ============================================ */

.map-box {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 320px;
  margin-top: 40px;
}

.map-box iframe {
  width: 100%; height: 100%;
  border: none;
}

/* ============================================
   SOCIAL LINKS
   ============================================ */

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--cream-dark);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--brown);
  color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #2D1B1B;
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--white);
}

.footer-brand-name span { color: var(--caramel); }

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition);
  color: var(--white);
}

.footer-social a:hover { background: var(--caramel); }

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 16px;
}

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

.footer-col ul a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

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

.pay-badge {
  background: rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ============================================
   ABOUT
   ============================================ */

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

.about-img-box {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream-dark);
  box-shadow: var(--shadow);
}

.about-img-box img { width: 100%; height: 100%; object-fit: cover; }

.about-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-light);
}

.about-placeholder span { font-size: 4rem; }

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.about-fact {
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 20px;
}

.about-fact-icon { font-size: 1.4rem; margin-bottom: 8px; }
.about-fact-title { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--brown); margin-bottom: 4px; }
.about-fact-desc { font-size: 0.8rem; color: var(--text-light); }

/* ============================================
   TABS (gallery / shop filter)
   ============================================ */

.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tab-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--cream-dark);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 500;
}

.tab-btn:hover, .tab-btn.active {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-box { aspect-ratio: 4/3; max-width: 480px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 56px 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); padding: 20px 24px 28px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); gap: 20px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .order-step { grid-template-columns: 56px 1fr; gap: 16px; }
  .order-step-num { width: 52px; height: 52px; font-size: 1.1rem; }
}

@media (max-width: 400px) {
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
