:root {
  --primary: #ff6b00;
  --primary-dark: #e05d00;
  --secondary: #5c3a21;
  --secondary-light: #8b5e3c;
  --bg: #f8f2ea;
  --surface: #fffdf9;
  --text: #2c241d;
  --muted: #6f6257;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
  --radius: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 42px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: var(--secondary);
  margin-bottom: 8px;
}

.section-header p {
  color: var(--muted);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 242, 234, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(92, 58, 33, 0.12);
}

.navbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--secondary);
}

.logo span {
  color: var(--primary);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  font-weight: 500;
  color: var(--secondary);
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.cart-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid rgba(92, 58, 33, 0.2);
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--secondary);
  font-size: 0.9rem;
}

.cart-pill strong {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--secondary);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  background: url("https://images.unsplash.com/photo-1493666438817-866a91353ca9?auto=format&fit=crop&w=1920&q=80")
    center/cover no-repeat;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17, 12, 8, 0.8), rgba(17, 12, 8, 0.35));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.eyebrow {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f7c9a9;
  margin-bottom: 12px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero p {
  margin-bottom: 28px;
  font-size: 1.04rem;
}

.btn {
  border: none;
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.25);
}

.about {
  background: var(--surface);
}

.about-content {
  max-width: 780px;
  text-align: center;
}

.about h2 {
  font-family: "Playfair Display", serif;
  color: var(--secondary);
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3.2vw, 2.3rem);
}

.about p {
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.product-card img {
  height: 210px;
  object-fit: cover;
}

.product-info {
  padding: 16px;
}

.product-info h3 {
  color: var(--secondary);
  font-size: 1.03rem;
  margin-bottom: 6px;
}

.price {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
}

.btn-card {
  width: 100%;
  border-radius: 10px;
  text-align: center;
}

.why-us {
  background: #f4ece3;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--surface);
  padding: 24px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.why-card h3 {
  color: var(--secondary);
  margin-bottom: 8px;
}

.why-card p {
  color: var(--muted);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stars {
  color: #f7a600;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.testimonial-card h4 {
  margin-top: 12px;
  color: var(--secondary-light);
}

.contact-wrap {
  background: var(--surface);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-copy h2 {
  font-family: "Playfair Display", serif;
  color: var(--secondary);
  margin-bottom: 10px;
}

.contact-copy p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  font-size: 0.92rem;
  color: var(--secondary);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(92, 58, 33, 0.2);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  background: #fffcf8;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.footer {
  background: var(--secondary);
  color: #f9ebe0;
  padding: 22px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  color: #ffe0cb;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: #fff;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fffaf4;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid rgba(92, 58, 33, 0.15);
    transform: translateY(-130%);
    transition: transform 0.25s ease;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .menu-toggle {
    display: flex;
  }

  .cart-pill {
    margin-left: auto;
  }
}

@media (max-width: 780px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 68px 0;
  }

  .hero {
    min-height: 78vh;
  }

  .hero p {
    font-size: 0.97rem;
  }
}
