
    :root {
      --cinnamon-primary: #7B3F00;
      --cinnamon-secondary: #EADDCA;
      --cinnamon-accent: #5F8670;
      --cinnamon-dark: #2A2118;
      --cinnamon-light: #FFF8F0;
    }

    body {
      font-family: 'Lato', sans-serif;
      background-color: #fff;
      margin: 0;
      padding: 0;
    }

    /* Hero Section */
    .hero-container {
      display: flex;
      flex-direction: row-reverse; /* Swaps left-right layout */
      align-items: center;
      justify-content: space-between;
      min-height: 100vh;
      background: #FFF3E0; /* Default background */
      padding: 60px 5%;
      gap: 40px;
      overflow: hidden;
      transition: background-color 0.5s ease; /* Smooth transition */
}

    .hero-left {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      width: 100%;
      max-width: 550px;
      height: 550px;
      margin-top:50px;
    }

    .hero-slide {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 30%;
      background-size: cover;
      background-position: center;
      box-shadow: 0 0 60px rgba(0, 0, 0, 0.15);
      opacity: 0;
      transform: scale(0.9);
      transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    }

    .hero-slide.active {
      opacity: 1;
      transform: scale(1);
      z-index: 2;
    }

    .hero-right {
      flex: 1;
      color: #222;
      padding: 20px 30px;
      background: linear-gradient(to bottom right, rgba(255, 240, 210, 0.6), rgba(255, 255, 255, 0.8));
      border-left: 4px solid #B29700;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(178, 151, 0, 0.1);
      animation: fadeInRight 1s ease-in-out;
      max-width: 550px;
    }

    .hero-right h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 1rem;
      color: #5A3E2B;
    }

    .hero-right p {
      font-size: 1.1rem;
      color: #444;
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .hero-right .btn {
      font-size: 1rem;
      padding: 12px 28px;
      background-color: #B29700;
      color: white;
      border: none;
      border-radius: 25px;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .hero-right .btn:hover {
      background-color: #a18100;
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(40px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .hero-left {
    width: 100%;
    height: auto;
    margin-top: 20px;
    aspect-ratio: 1/1; /* Keep it square and responsive */
    max-width: 90vw;
  }

  .hero-slide {
    border-radius: 20px;
    height: 100%;
    aspect-ratio: 1/1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .hero-right {
    max-width: 100%;
    padding: 20px 15px;
    margin-top: 20px;
    border-left: none;
    border-top: 4px solid #B29700;
  }

  .hero-right h1 {
    font-size: 2rem;
  }
}

.story-section {
  background: linear-gradient(to bottom right, var(--cinnamon-light), #FDF6EC);
}
.story-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--cinnamon-primary);
}

.story-divider {
  width: 80px;
  height: 4px;
  background-color: var(--cinnamon-accent);
  margin-bottom: 1rem;
  border-radius: 2px;
}

.story-paragraph {
  font-size: 1.1rem;
  color: #3A2100;
  line-height: 1.7;
}
.story-image-container {
  animation: fadeInLeft 1s ease-out;
}

.story-image {
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(178, 151, 0, 0.2);
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile stacking */
@media (max-width: 768px) {
  .story-heading {
    font-size: 2rem;
    text-align: center;
  }

  .story-paragraph {
    text-align: center;
  }

  .story-divider {
    margin-left: auto;
    margin-right: auto;
  }
}


.product-scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.product-scroll-container::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: var(--cinnamon-light);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  width: 280px;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.product-info {
  padding: 15px;
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cinnamon-primary);
  margin-bottom: 5px;
}

.product-description {
  font-size: 0.9rem;
  color: #555;
  font-family: 'Lato', sans-serif;
}
.btn.text-white {
  background-color: var(--cinnamon-accent);
  transition: all 0.3s ease;
}

.btn.text-white:hover {
  background-color: var(--cinnamon-dark);
  color: var(--cinnamon-light);
}

.journey-scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 40px;
  padding: 20px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.journey-scroll-container::-webkit-scrollbar {
  display: none;
}

.journey-step {
  flex: 0 0 auto;
  scroll-snap-align: start;
  background-color: var(--cinnamon-light);
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 25px 20px;
  width: 220px;
  position: relative;
  transition: transform 0.3s ease;
}

.journey-step:hover {
  transform: translateY(-5px);
}

.journey-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.journey-caption {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cinnamon-dark);
  font-family: 'Lato', sans-serif;
}

