* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--curd-text);
  background: var(--curd-white);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary { background: var(--curd-caramel); color: #fff; }
.btn-primary:hover { background: var(--curd-caramel-dark); }
.btn-outline { border-color: var(--curd-teal); color: var(--curd-teal); }
.btn-outline:hover { background: var(--curd-teal); color: #fff; }
.btn-dark { background: var(--curd-teal-dark); color: #fff; }
.btn-dark:hover { background: #000; }

/* promo bar */
.promo-bar {
  background: var(--curd-gold);
  color: var(--curd-teal-dark);
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  padding: 10px;
  letter-spacing: 0.02em;
}

/* header */
.site-header { border-bottom: 1px solid var(--curd-border); background: #fff; }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.04em;
  color: var(--curd-teal-dark);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.header-logo span { font-size: 11px; font-weight: normal; letter-spacing: 0.15em; color: var(--curd-caramel); }
.header-nav { display: flex; gap: 32px; align-items: center; }
.nav-link { font-size: 15px; font-weight: 600; color: var(--curd-text); position: relative; }
.nav-drop { position: relative; }
.nav-drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--curd-border);
  min-width: 180px;
  padding: 8px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  z-index: 10;
}
.nav-drop:hover .nav-drop-menu { display: block; }
.nav-drop-menu a { display: block; padding: 8px 16px; font-size: 14px; }
.nav-drop-menu a:hover { background: var(--curd-cream); }
.header-icons { display: flex; gap: 18px; font-size: 18px; }

/* category grid */
.cat-grid {
  max-width: 1200px;
  margin: 24px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  background: var(--curd-cream);
  border-radius: 8px;
  padding: 28px 20px;
  min-height: 110px;
  display: flex;
  align-items: flex-end;
}
.cat-card h3 { font-size: 24px; color: var(--curd-teal-dark); }
.cat-1 { background: #F3E4CE; }
.cat-2 { background: #EFE0E4; }
.cat-3 { background: #DCE7DF; }
.cat-4 { background: #F6EAD8; }

/* hero */
.hero { position: relative; height: 460px; overflow: hidden; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-text {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.hero-text h1 { font-size: 52px; margin-bottom: 12px; }
.hero-text p { font-size: 17px; margin-bottom: 24px; }
.hero-cta { display: flex; gap: 16px; justify-content: center; }
.hero-cta .btn-outline { border-color: #fff; color: #fff; }
.hero-cta .btn-outline:hover { background: #fff; color: var(--curd-teal-dark); }

/* trust row */
.trust-row {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-icon {
  width: 64px; height: 64px;
  background: var(--curd-cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin: 0 auto 14px;
}
.trust-item p { font-weight: 600; font-size: 15px; }

/* cta banner */
.cta-banner {
  background: var(--curd-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 60px;
  border-radius: 8px;
  overflow: hidden;
}
.cta-banner-text h2 { font-size: 36px; color: var(--curd-teal-dark); margin-bottom: 20px; }
.cta-banner img { width: 320px; height: 220px; object-fit: cover; border-radius: 8px; }

/* product sections */
.product-section { max-width: 1200px; margin: 0 auto; padding: 48px 24px; }
.product-section.alt-bg { background: var(--curd-cream); max-width: 100%; }
.product-section.alt-bg .product-grid,
.product-section.alt-bg .section-title { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section-title { font-size: 28px; margin-bottom: 28px; color: var(--curd-teal-dark); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card img { border-radius: 8px; aspect-ratio: 1/1; object-fit: cover; margin-bottom: 14px; }
.product-card h4 { font-size: 16px; margin-bottom: 8px; }
.stars { color: var(--curd-caramel); font-size: 14px; margin-bottom: 8px; }
.stars span { color: var(--curd-text-light); margin-left: 4px; }
.price { font-size: 15px; }
.old-price { text-decoration: line-through; color: var(--curd-text-light); margin-right: 6px; }
.new-price { font-weight: bold; }
.save { color: var(--curd-caramel); margin-left: 6px; }

/* steps section */
.steps-section { background: var(--curd-teal); color: #fff; padding: 56px 24px; text-align: center; }
.steps-section .section-title { color: #fff; }
.steps-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--curd-caramel); color: #fff; font-weight: bold;
  margin-bottom: 14px;
}
.step p { font-size: 15px; opacity: 0.92; }

/* story section */
.story-section {
  max-width: 1100px;
  margin: 56px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.story-section img { border-radius: 8px; height: 340px; object-fit: cover; }
.story-text h2 { font-size: 30px; margin-bottom: 16px; color: var(--curd-teal-dark); }
.story-text p { margin-bottom: 20px; color: var(--curd-text-light); }

/* marquee */
.marquee-strip { background: var(--curd-cream); overflow: hidden; padding: 16px 0; border-top: 1px solid var(--curd-border); border-bottom: 1px solid var(--curd-border); }
.marquee-track { display: flex; gap: 48px; white-space: nowrap; font-size: 14px; font-weight: 600; color: var(--curd-teal-dark); }

/* newsletter */
.newsletter-section { text-align: center; padding: 56px 24px; max-width: 600px; margin: 0 auto; }
.newsletter-section h2 { font-size: 26px; margin-bottom: 10px; }
.newsletter-section p { color: var(--curd-text-light); margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input { flex: 1; padding: 14px; border: 1px solid var(--curd-border); border-radius: 4px; font-size: 15px; }

/* footer */
.site-footer { background: var(--curd-teal-dark); color: #EDE6DA; padding: 48px 24px 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 32px;
}
.footer-col h4 { color: #fff; margin-bottom: 14px; font-size: 15px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: #C9BFAE; margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid #3A4F49; text-align: center; padding: 20px; font-size: 13px; color: #A79C89; }

/* generic inner page layout (about/contact/privacy/terms/category pages) */
.page-header { background: var(--curd-cream); text-align: center; padding: 56px 24px; }
.page-header h1 { font-size: 36px; color: var(--curd-teal-dark); margin-bottom: 10px; }
.page-content { max-width: 800px; margin: 0 auto; padding: 48px 24px; }
.page-content h2 { font-size: 22px; margin: 28px 0 12px; color: var(--curd-teal-dark); }
.page-content p { margin-bottom: 14px; color: var(--curd-text-light); }
.contact-form { max-width: 600px; margin: 0 auto; padding: 48px 24px; }
.contact-form label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px; margin-bottom: 18px;
  border: 1px solid var(--curd-border); border-radius: 4px; font-family: inherit;
}
.category-grid {
  max-width: 1200px; margin: 0 auto; padding: 48px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}

@media (max-width: 900px) {
  .header-nav { display: none; }
  .cat-grid, .product-grid, .category-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid, .trust-row { grid-template-columns: 1fr; }
  .story-section { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; padding: 32px; gap: 20px; text-align: center; }
  .cta-banner img { width: 100%; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-text h1 { font-size: 34px; }
  .newsletter-form { flex-direction: column; }
}
