:root {
  --primary: #6d0f2b;
  --primary-dark: #4f0b1f;
  --accent: #f08a24;
  --accent-light: #ffb45d;
  --green: #2f7d4d;
  --green-soft: #e7f4eb;
  --gold: #d9a441;
  --text: #1f1f1f;
  --muted: #666666;
  --white: #ffffff;
  --cream: #fff8f1;
  --bg-soft: #faf7f3;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

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

ul {
  list-style: none;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-alt {
  background: linear-gradient(180deg, #fffdf9 0%, #fdf6ef 100%);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-heading h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 10px 0 14px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1rem;
}

.section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(109, 15, 43, 0.08);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-mark img {
    height: 200px;   /* adjust size here */
    width: auto;
}

.logo-text {
    font-weight: 600;
    font-size: 16px;
}

.light-tag {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

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

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.logo {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
}

.logo-mark {
  font-size: 1.5rem;
}

.nav-menu {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-menu a {
  color: var(--text);
  font-weight: 600;
  transition: 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  border: none;
  background: var(--primary);
  color: var(--white);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
}

.hero {
  padding: 80px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(240, 138, 36, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(47, 125, 77, 0.14), transparent 28%),
    linear-gradient(180deg, #fffaf4 0%, #fff 100%);
}

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

.badge {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--primary-dark);
}

.hero-text p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-small {
  background: var(--accent);
  color: var(--white);
  padding: 10px 18px;
  min-height: 42px;
  font-size: 0.95rem;
}

.btn-small:hover {
  background: var(--primary);
}

.btn-light {
  background: var(--white);
  color: var(--primary);
}

.btn-light:hover {
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-highlights div {
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  min-width: 120px;
}

.hero-highlights strong {
  display: block;
  font-size: 1.2rem;
  color: var(--primary);
}

.hero-highlights span {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
}

.hero-card.large {
  background: linear-gradient(135deg, rgba(109, 15, 43, 0.08), rgba(240, 138, 36, 0.12));
  padding: 18px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.floating-tag {
  position: absolute;
  bottom: -12px;
  left: 24px;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 700;
  color: var(--primary);
}

.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.filter-btn {
  border: none;
  background: #f0ece8;
  color: var(--text);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.product-image {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image img {
  width: 100%;
  height: auto;
  max-height: 300px; /* adjust depending on your layout */
  object-fit: contain;
  border-radius: 0;
  transition: transform 0.45s ease;
}

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

.product-label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.featured-label {
  background: var(--green);
}

.shot {
  background: var(--primary);
}

.product-content {
  padding: 22px;
}

.product-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.product-content p {
  color: var(--muted);
  margin-bottom: 16px;
  min-height: 90px;
}

.benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.benefit-tags span {
  font-size: 0.82rem;
  background: #f7efe5;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
}

.featured {
  border: 2px solid rgba(47, 125, 77, 0.18);
}

.features-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-box,
.benefit-box {
  background: var(--white);
  padding: 28px 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.icon,
.benefit-icon {
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 14px;
}

.feature-box h3,
.benefit-box h3 {
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  color: var(--primary-dark);
}

.feature-box p,
.benefit-box p {
  color: var(--muted);
}

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

.story-image img {
  box-shadow: var(--shadow);
}

.story-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 14px 0 18px;
  line-height: 1.2;
}

.story-text p {
  color: var(--muted);
  margin-bottom: 16px;
}

.testimonial-slider {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  min-height: 170px;
}

.testimonial {
  display: none;
  background: var(--cream);
  padding: 36px 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.testimonial p {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.testimonial h4 {
  color: var(--muted);
  font-weight: 600;
}

.cta-section {
  padding: 40px 0 90px;
}

.cta-box {
  background:
    linear-gradient(135deg, rgba(109, 15, 43, 0.95), rgba(240, 138, 36, 0.95));
  color: var(--white);
  border-radius: 28px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 10px 0 10px;
}

.cta-box p {
  max-width: 620px;
  opacity: 0.95;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer {
  background: #1f120f;
  color: #f8eee7;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 30px;
  padding-bottom: 30px;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 14px;
  font-family: "Poppins", sans-serif;
}

.site-footer p,
.site-footer li {
  color: rgba(248, 238, 231, 0.82);
}

.site-footer a:hover {
  color: var(--accent-light);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form input {
  padding: 14px 16px;
  border-radius: 12px;
  border: none;
  outline: none;
}

.newsletter-form button {
  padding: 14px 16px;
  border: none;
  border-radius: 12px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: var(--primary);
}

.form-message {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #ffd9a6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0 28px;
  text-align: center;
}

.hidden {
  display: none !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 992px) {
  .hero-grid,
  .story-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .products-grid,
  .features-grid,
  .benefits-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    display: grid;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    display: none;
    box-shadow: var(--shadow);
  }

  .nav-menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-top: 50px;
  }

  .products-grid,
  .features-grid,
  .benefits-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-actions,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-small {
    width: 100%;
  }

  .cta-box {
    padding: 28px;
  }

  .product-image img {
    height: 240px;
  }
}