:root {
  --green-dark: #1c4a3a;
  --green-darker: #143229;
  --cream: #f4efe3;
  --gold: #c9a13b;
  --gold-dark: #a8811f;
  --text-dark: #22291f;
  --white: #ffffff;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background: #FCE8C7;
}
h1, h2, h3 { margin: 0; font-size : 40px;}
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

/* ---------- Header ---------- */
.site-header {
  background: #741803;
  color: var(--white);
  position: relative;
  z-index: 40;
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 100px;
  gap: 24px;
}
/* .logo is kept in the flex flow purely to reserve horizontal space —
   the visible <img> is pulled out with position:absolute (anchored to
   .site-header) so it can straddle the bar: top:100% + translateY(-50%)
   centers the image exactly on the header's bottom edge, giving a
   consistent 50/50 overlap no matter the header's actual height. */
.logo { flex-shrink: 0; width: 120px; }
.logo img {
  position: absolute;
  top: 100%;
  left: 100px;
  transform: translateY(-50%);
  width: 120px;
  height: auto;
  max-width: 100%;
  display: block;
  z-index: 45;
}
.logo-badge {
  background: linear-gradient(160deg, #e0212b, #a3101c);
  color: var(--white);
  font-weight: 800;
  font-size: 20px;
  padding: 8px 14px;
  border-radius: 6px;
  border: 2px solid var(--gold);
}
.logo-tagline {
  font-size: 10px;
  letter-spacing: .5px;
  opacity: .85;
  display: none;
}
@media (min-width: 640px) { .logo-tagline { display: inline; } }

.main-nav ul { display: flex; gap: 28px; }

 nav.main-nav a{padding:6px 2px;transition:color .15s;}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav li.active a { border-bottom: 2px solid var(--white); padding-bottom: 4px; }
.caret { font-size: 11px; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.search-form {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 20px;
  padding: 6px 12px;
}
.search-form input {
  border: none;
  outline: none;
  font-size: 14px;
  width: 160px;
}
.search-form button {
  border: none;
  background: none;
  cursor: pointer;
}
.header-actions a { font-size: 18px; }

.track-order {
  text-align: right;
  padding: 4px 24px 8px;
  font-size: 13px;
}

/* ---------- Hero ---------- */
.hero-new {
  color:var(--maroon-deep);
  background-color: #FCE8C7; /* fallback if image missing */
  padding: 70px 24px 40px;
}
.hero {
  background:
    linear-gradient(rgba(244,239,227,.55), rgba(244,239,227,.55)),
    url('assets/hero-kitchen.jpg') center/cover no-repeat;
  background-color: #FCE8C7; /* fallback if image missing */
  padding: 70px 24px 40px;
}
.hero-overlay {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  color: #741803;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero p {
  margin-top: 5px;
  font-size: 24px;
  font-weight: 500;
  color: #741803;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.btn {
  padding: 12px 26px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--green-dark);
  color: var(--green-dark);
}
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b9b3a0;
}
.dot.is-active { background: var(--gold-dark); width: 22px; border-radius: 5px; }

/* ---------- About ---------- */
.about {
  background: #FBE6C9;
  padding: 50px 24px 60px;
  text-align: center;
}
.about h2 {
  font-size: 26px;
  color: #741803;
  font-weight: 800;
}
.about-body {
  max-width: 100%;
  margin: 18px auto 0;
  font-size: 14.5px;
  line-height: 1.7;
  font-weight: 600;
}
.feature-grid {
  max-width: 1100px;
  margin: 44px auto 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.feature-card { width: 220px; padding: 0 20px; }
.feature-icon {
  width: 50%;
  margin: 0 auto 14px;
  -webkit-mask-size: 60%;
  mask-size: 60%;
}
.feature-card h3 {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.feature-card p { font-size: 13px; color: #555; line-height: 1.4; margin: 0; }
.feature-divider {
  width: 1px;
  align-self: stretch;
  background: #d8d2c0;
  margin: 6px 0;
}
@media (max-width: 800px) { .feature-divider { display: none; } }

/* ---------- Product range ---------- */
.product-range {
  background: #3a2a17;
  padding: 0px 0px 0px;
  text-align: center;
}
.product-range h2 {
  color: var(--cream);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 40px;
}
.product-strip {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.product-card { width: 100%; }
.product-card img {
  width: 100%;
  border-radius: 0px;
  display: block;
}
.product-placeholder {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-placeholder span {
  color: var(--white);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 1px;
}
.product-name {
  color: var(--cream);
  margin-top: 12px;
  font-weight: 600;
}

/* ---------- Why choose ---------- */
.why-choose {
  background: #FBE6C9;
  padding: 60px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  border-bottom: 3px solid #741803;
}
.why-text { max-width: 520px; }
.why-text h2 {
  font-size: 28px;
  color: #741803;
  font-weight: 800;
  margin-bottom: 16px;
}
.why-text p { font-size: 14px; font-weight: 600; margin: 4px 0; }
.why-illustration { font-size: 90px; }

/* ---------- Mobile header / collapsible nav ---------- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  flex-shrink: 0;
}
.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .header-inner {
    padding: 10px 16px;
    position: relative;
  }
  .logo { width: 90px; }
  .logo img { left: 16px; width: 90px; }
  .nav-toggle { display: block; }
  /* Positioned absolute (not part of the flex flow) so opening the
     menu never changes header-inner's height — that height is what
     the logo is anchored to, so this keeps the logo pinned at the
     top instead of sliding down with an expanding header. */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #5c0f0f;
    z-index: 35;
    box-shadow: 0 10px 20px rgba(0,0,0,.25);
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .main-nav ul li {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: right;
  }
  .main-nav ul li a {
    display: block;
    padding: 14px 16px;
  }
}

@media (max-width: 420px) {
  .logo { width: 70px; }
  .logo img { width: 70px; }
}