/** Shopify CDN: Minification failed

Line 735:0 Unexpected "}"

**/
:root {
  --color-primary: #b5ffed;
  --color-primary-stroke: #5e5d5d;
  --color-bg-light: #fdf9f7;
  --color-bg-alt: #eefcf9;
  --color-header-dark: #595959;
  --color-header-body: #4a4747;
  --color-top-header: #6a6a6a;
  --color-text-dark: #333333;
  --color-white: #ffffff;
  --border-width: 20px;
}

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

html {
  font-size: 17px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 1.65;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--border-width);
}

.main-nav {
  background-color: var(--color-top-header);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e0e0e0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--border-width);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  max-height: 50px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  align-items: center;
}

@media (min-width: 769px) {
  .nav-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: transparent;
    border-bottom: none;
    padding: 0;
    z-index: auto;
  }
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 10px 18px;
  text-decoration: none;
  color: var(--color-white);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.nav-link:hover {
  color: var(--color-text-dark);
  background-color: var(--color-primary);
  border-radius: 20px;
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  flex-shrink: 0;
  align-items: center;
  margin-left: auto;
}

.header-link {
  color: var(--color-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 14px;
  transition: opacity 0.3s;
}

.header-link:hover {
  opacity: 0.8;
}

.header-link i {
  font-size: 16px;
  color: var(--color-white);
}

/* BURGER MENU ICON */
.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 10px;
  flex-shrink: 0;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: var(--color-text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translateY(12px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-12px);
}

/* Mobile Styles */
.mobile-only {
  display: none !important;
}

@media (max-width: 768px) {
  .nav-right {
    display: none;
  }

  .burger-menu {
    display: flex;
    order: 3;
    margin-left: auto;
  }

  .burger-menu span {
    background-color: white;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    z-index: 99;
    list-style: none;
  }

  .nav-menu.active {
    display: flex;
    animation: slideDown 0.3s ease-out;
  }

  @keyframes slideDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .nav-item {
    width: 100%;
  }

  .nav-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 10px 0;
  }

  .nav-link {
    padding: 12px 20px;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-dark);
  }

  .nav-link:hover {
    background-color: transparent;
  }

  .nav-link.active {
    background-color: transparent;
    border-radius: 0;
  }

  .mobile-only {
    display: flex !important;
    color: var(--color-text-dark);
  }
}

/* SECTION NAVIGATION */
.section-nav {
  background-color: var(--color-white);
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 70px;
  z-index: 99;
}

.section-nav .nav-container {
  max-width: none;
  margin: 0;
  padding: 0 var(--border-width);
  display: block;
}

.section-menu {
  display: flex;
  list-style: none;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.section-menu .nav-item {
  position: relative;
}

.section-menu .nav-link {
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  color: var(--color-text-dark);
  font-weight: 500;
  font-size: 13px;
  transition: all 0.3s;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.section-menu .nav-link:hover,
.section-menu .nav-link.active {
  color: var(--color-text-dark);
  background-color: var(--color-primary);
  border-radius: 20px;
}

@media (max-width: 768px) {
  .section-nav {
    top: 70px;
    display: none;
  }

  .section-menu {
    flex-wrap: wrap;
    display: none;
  }

  .section-menu .nav-link {
    font-size: 13px;
    padding: 10px 14px;
  }
}

.hero-section {
  padding: 0;
  margin: 0;
  width: 100%;
}

.hero-split {
  display: flex;
  min-height: 650px;
}

.hero-left {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-light);
  padding: 80px 60px;
}

.hero-text {
  text-align: center;
}

.hero-buttons {
  justify-content: center;
}

.hero-ctas {
  justify-content: center;
}

.hero-right {
  flex: 0 0 50%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 650px;
}

.hero-text {
  max-width: 480px;
  width: 100%;
}

.hero-text h1 {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #595959;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #7f7268;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
}

.hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--color-header-body);
  background: white;
  border: 1px solid var(--color-primary-stroke);
  border-radius: 20px;
  padding: 6px 14px;
}

.cta-item i {
  font-size: 13px;
  color: var(--color-header-dark);
}

.btn {
  padding: 12px 32px;
  border: 2px solid var(--color-primary-stroke);
  border-radius: 25px;
  cursor: pointer;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  position: relative;
  overflow: visible;
}

.btn:hover {
  box-shadow: 0 7px 22px rgba(0,0,0,0.24);
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  border-color: var(--color-primary-stroke);
}

.btn-primary:hover {
  background-color: #a0ebe0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(181, 255, 237, 0.3);
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-text-dark);
  font-weight: 400;
  border-color: var(--color-primary-stroke);
}

.btn-secondary:hover {
  background-color: #f9f9f9;
  transform: translateY(-2px);
}

section {
  padding: 70px var(--border-width);
}

section h2 {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
  color: var(--color-header-dark);
  line-height: 1.3;
  margin-top: 0;
}

section h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-header-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--color-header-body);
  font-size: 16px;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* SECTION BOX - SMALL TEAL BOX */
.section-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-primary);
  border-radius: 8px;
  padding: 10px 24px;
  margin-bottom: 20px;
}

.section-box img {
  max-height: 30px;
  width: auto;
  flex-shrink: 0;
}

.section-box span {
  color: #595959;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* CHEF BOX - POSITIONED OVER IMAGE */
.chef-box {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: white !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  margin-bottom: 0 !important;
  width: fit-content !important;
  height: 25px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  color: #595959 !important;
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  z-index: 10 !important;
}

.chef-box img {
  width: 12px !important;
  height: 12px !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
}

.design-section {
  background-color: var(--color-bg-light);
  text-align: center;
}

.design-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0 var(--border-width);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-box {
  background: white;
  border-radius: 16px;
  border: 2px solid #e0e0e0;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}



@media (max-width: 768px) {
  /* --- Mobile: force single column grid --- */
  .features-grid {
    grid-template-columns: 1fr !important;
  }

  /* --- Mobile: feature cards --- */
  .feature-box {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    aspect-ratio: 4 / 5 !important;
    overflow: hidden !important;
    border-radius: 16px !important;
    background: #e0e0e0 !important;
  }

  /* Image stretches to fill the full card height */
  .feature-image {
    flex: 0 0 100% !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    z-index: 1;
  }

  /* Suppress the overlay pseudo-element on mobile */
  .feature-image::after {
    content: none !important;
  }

  /* Main image: always visible */
  .feature-img-main {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    z-index: 1;
  }

  /* Hover image: hidden until JS adds .show-hover */
  .feature-img-hover {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease-in-out !important;
    z-index: 2;
  }

  .feature-box.show-hover .feature-img-hover {
    opacity: 1 !important;
  }

  /* Text overlay: bottom of card by default */
  .feature-content {
    position: absolute !important;
    bottom: 0 !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    flex: none !important;
    margin: 0 !important;
    min-height: auto !important;
    padding: 40px 16px 14px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.92) 35%, white) !important;
    border-radius: 0 !important;
    z-index: 10 !important;
  }

  /* Safer Cutting & Stop Cross-Contamination: text overlay at TOP */
  .feature-box--top-text .feature-content {
    top: 0 !important;
    bottom: auto !important;
    justify-content: flex-start !important;
    background: linear-gradient(to top, transparent, rgba(255,255,255,0.92) 35%, white) !important;
    padding: 14px 16px 40px !important;
  }
}

.feature-image {
  flex: 0 0 40%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #f9f9f9;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-img-main,
.feature-img-hover {
  transition: opacity 0.4s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-img-main {
  opacity: 1;
}

.feature-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

}

@media (min-width: 769px) {
  .feature-image {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #f9f9f9;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
  }

  .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: static;
    display: block;
  }
}

.feature-content {
  flex: 1;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-box h3 {
  margin: 0 0 10px 0;
  font-size: 16px;
  text-align: left;
}

.feature-box p {
  font-size: 13px;
  color: var(--color-header-body);
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.shop-section {
  background-color: var(--color-bg-alt);
}

.shop-flex {
  display: flex;
  align-items: stretch;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.shop-image-container {
  flex: 0 0 450px;
  width: 450px;
  height: 450px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.ribbon {
  position: absolute;
  top: 20px;
  left: -10px;
  background: #f5b888;
  color: #333;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 12px;
  transform: skewX(-20deg);
  z-index: 10;
  line-height: 1.4;
}

.shop-scroll {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  position: relative;
}

.shop-scroll img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-carousel-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.shop-prev, .shop-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s ease;
  border-radius: 3px;
  user-select: none;
  z-index: 5;
}

.shop-next {
  right: 0;
}

.shop-prev {
  left: 0;
}

.shop-prev:hover, .shop-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.shop-info {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shop-info h2 {
  text-align: left;
  margin-bottom: 15px;
  font-size: 28px;
  color: var(--color-header-dark);
}

.shop-description {
  color: var(--color-header-body);
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 15px;
  text-align: left;
}

.shop-info p {
  color: var(--color-header-body);
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 15px;
  text-align: left;
}

.price {
  font-size: 32px;
  font-weight: 600;
  color: #595959;
  margin-bottom: 15px;
  text-align: left;
}

.shop-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}

.recipes-section {
  background-color: var(--color-bg-light);
}

.recipes-flex {
  display: flex;
  align-items: stretch;
  gap: 60px;
}

.recipes-image {
  flex: 1;
  position: relative;
}

.recipes-slideshow {
  width: 100%;
  height: 100%;
}

.recipes-slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fdf9f7;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.recipes-slide {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background: #fdf9f7;
}

.recipes-slide:first-child {
  opacity: 1;
}

.recipes-slide.active {
  opacity: 1;
}

.recipes-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.recipes-content {
  flex: 1;
  background: white;
  padding: 40px;
  border-radius: 12px;
}

.recipes-content h2 {
  text-align: left;
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--color-header-dark);
  margin-top: 0;
}

.recipes-content p {
  color: var(--color-header-body);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

.signup-stats {
  background: #f0f0f0;
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.signup-cursor-wrap {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--color-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-primary-stroke);
}

.signup-stats span {
  font-size: 13px;
  color: #595959;
  font-weight: 600;
  line-height: 1.4;
}

.recipes-form {
  display: flex;
  gap: 10px;
}

.recipes-form input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 14px;
  color: var(--color-text-dark);
}

.recipes-form input::placeholder {
  color: #999;
}

.recycling-section {
  background-color: white;
}

.recycling-flex {
  display: flex;
  align-items: stretch;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.recycling-content-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.recycling-content-box .section-box {
  margin-bottom: 15px;
  justify-content: center;
  display: inline-block;
  padding: 8px 16px;
}

.recycling-content-box h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--color-header-dark);
  line-height: 1.2;
  margin-top: 0;
}

.recycling-content-box .recycling-reveal-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-header-body);
  text-align: center;
  margin-bottom: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.recycling-content-box .btn {
  display: inline-block;
  margin-bottom: 20px;
}

/* Timeline Steps */
.recycling-steps-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 20px;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  align-items: center;
  text-align: center;
}

.timeline-step:not(:last-child) {
  padding-bottom: 0;
}

.step-number {
  min-width: 50px;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #595959;
  font-size: 20px;
  flex-shrink: 0;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
}

.step-image-small {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  margin-left: 0;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.step-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Text overlay on bottom half of image */
.step-image-text {
  position: relative;
  z-index: 10;
  background: rgba(181, 255, 237, 0.90);
  padding: 16px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #595959;
  text-align: center;
  line-height: 1.4;
  transition: opacity 0.3s ease;
  margin-bottom: 20px;
  margin-left: 15px;
  margin-right: 15px;
  max-width: 85%;
}

.timeline-step:hover .step-image-text {
  opacity: 0;
  pointer-events: none;
}

.timeline-connector {
  display: none;
}

.step {
  text-align: center;
}

.step-number {
  font-size: 48px;
  font-weight: 600;
  color: #595959;
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: #595959;
}

.product-care-section {
  background-color: var(--color-bg-alt);
  text-align: center;
}

.product-care-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 40px;
  max-width: 900px;
}

.care-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.care-number {
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  color: #333;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 15px 0;
  flex-shrink: 0;
}

.care-box h3 {
  text-align: left;
  margin-bottom: 10px;
  color: #595959;
  margin-top: 0;
  font-size: 16px;
}

.care-box p {
  font-size: 14px;
  color: var(--color-header-body);
  line-height: 1.6;
  margin: 0;
}

.care-box p {
  font-size: 13px;
  color: var(--color-header-body);
  line-height: 1.6;
  margin: 0;
}

.care-button {
  text-align: center;
}

.about-section {
  background-color: var(--color-bg-light);
  padding: 100px var(--border-width) !important;
  text-align: center;
}

.about-section .section-box {
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
}

.about-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  position: relative;
  padding: 0 var(--border-width);
}

.about-content-wrapper {
  background: white;
  padding: 50px;
  border-radius: 16px;
  position: relative;
  z-index: 5;
}

.about-content-wrapper .section-box {
  margin-bottom: 20px;
}

.about-content-wrapper h2 {
  text-align: left;
  margin: 0 0 25px 0;
  font-size: 42px;
  font-weight: 700;
  color: var(--color-header-dark);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.about-content {
  text-align: left;
}

.about-content p {
  color: var(--color-header-body);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 15px 0;
  text-align: left;
}

.about-image-wrapper {
  position: relative;
  z-index: 10;
}

.about-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.recyclable-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #ffbe9f;
  color: #333;
  padding: 28px 35px;
  border-radius: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  z-index: 20;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.recyclable-badge strong {
  font-size: 40px;
  display: block;
  color: #333;
  margin-bottom: 4px;
  font-weight: 700;
}

.about-content-wrapper .section-box {
  margin-bottom: 20px;
  text-align: left;
}

.about-content-wrapper h2 {
  text-align: left;
  margin: 0 0 25px 0;
  font-size: 42px;
  font-weight: 700;
  color: var(--color-header-dark);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.about-content {
  flex: 1;
  text-align: left;
}

.about-content p {
  color: var(--color-header-body);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 15px 0;
  text-align: left;
}

.about-image-wrapper {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 10;
}

.about-image {
  position: relative;
  width: 100%;
  overflow: visible;
  border-radius: 16px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.recyclable-badge {
  position: absolute;
  bottom: -60px;
  left: -80px;
  background: #ffbe9f;
  color: #333;
  padding: 28px 35px;
  border-radius: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  z-index: 20;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.recyclable-badge strong {
  font-size: 40px;
  display: block;
  color: #333;
  margin-bottom: 4px;
  font-weight: 700;
}

.faq-section {
  background-color: var(--color-bg-light);
}

.faq-accordion {
  max-width: 900px;
  margin: 50px auto;
  background: white;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  overflow: hidden;
}

.faq-item {
  border-bottom: 2px solid #e0e0e0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: 22px;
  background: white;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #f9f9f9;
}

.faq-question i {
  color: var(--color-header-dark);
  font-size: 14px;
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 22px 22px;
  color: var(--color-header-body);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.faq-button {
  text-align: center;
}

.footer {
  background-color: var(--color-top-header);
  color: white;
  padding: 40px var(--border-width);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer .footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.useful-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row-reverse;
}

.useful-links a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  transition: opacity 0.3s;
  font-weight: 400;
  white-space: nowrap;
}

.useful-links a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-logo {
  display: flex;
  align-items: center;
}

.footer-bottom-logo-image {
  max-height: 35px;
  width: auto;
}

.copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  white-space: nowrap;
}

.footer-bottom-social {
  display: flex;
  gap: 12px;
}

.social-icon-small {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
  border: 1.5px solid white;
  border-radius: 50%;
  background: transparent;
}

.social-icon-small img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.social-icon-small:hover {
  background: white;
  transform: scale(1.1);
}

.social-icon-small:hover img {
  filter: brightness(0.5);
}

.footer-policies {
  display: flex;
  gap: 20px;
  font-size: 12px;
  flex-shrink: 0;
}

.footer-policies a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.footer-policies a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

@media (max-width: 768px) {
  :root {
    --border-width: 15px;
  }

  .hero-section {
    min-height: 500px;
  }

  .hero-background {
    min-height: 500px;
    padding: 80px var(--border-width);
  }

  .hero-text h1 {
    font-size: 26px;
  }

  .hero-container,
  .shop-flex,
  .recipes-flex {
    flex-direction: column;
    gap: 30px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-slideshow {
    display: block !important;
    width: 100%;
    height: 300px;
    min-height: 300px;
  }

  .slideshow-container {
    width: 100%;
    height: 300px;
  }

  .about-content-wrapper {
    margin-right: 0;
  }

  .recyclable-badge {
    bottom: 20px;
    left: 20px;
  }

  .feature-box {
    flex-direction: column;
  }

  .feature-image {
    flex: 0 0 auto;
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: transparent;
  }

  .feature-img-main,
  .feature-img-hover {
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: auto;
  }

  .feature-img-main {
    opacity: 1;
    z-index: 1;
  }

  .feature-img-hover {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 2;
  }

  .feature-box.show-hover .feature-img-hover {
    opacity: 1;
  }

  .recipes-flex {
    flex-direction: column;
  }

  .recipes-slideshow {
    display: block !important;
    width: 100%;
    height: 300px;
    min-height: 300px;
  }

  .recipes-slideshow-container {
    width: 100%;
    height: 300px;
  }

  .shop-image-container {
    flex: 0 0 100%;
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .shop-scroll {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    min-height: auto;
  }

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

  .btn {
    width: 100%;
    text-align: center;
  }

  .features-grid,
  .care-grid {
    grid-template-columns: 1fr;
  }

  .recycling-content-box {
    padding: 30px;
  }

  .recycling-steps-timeline {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }

  .step-number {
    margin-bottom: 15px;
  }

  .step-image-text {
    font-size: 13px;
    padding: 12px 12px;
  }

  .recycling-flex {
    flex-direction: column;
    gap: 30px;
  }

  .recycling-content,
  .recycling-steps-timeline {
    padding: 30px;
  }

  .recycling-steps {
    flex-direction: column;
    gap: 30px;
  }

  .shop-buttons,
  .recycling-buttons {
    flex-direction: column;
  }

  .recipes-form {
    flex-direction: column;
  }

  .footer-top .footer-container {
    flex-direction: column;
  }

  .footer-bottom .footer-container {
    flex-direction: column;
    gap: 15px;
  }

  section h2 {
    font-size: 26px;
  }

  .shop-info,
  .recipes-content,
  .about-content-wrapper {
    padding: 30px;
  }

  .shop-description {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --border-width: 12px;
  }

  .hero-section {
    min-height: 400px;
  }

  .hero-background {
    min-height: 400px;
    padding: 80px var(--border-width);
  }

  section {
    padding: 50px var(--border-width);
  }

  section h2 {
    font-size: 22px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .top-header-right {
    gap: 15px;
    font-size: 11px;
  }

  .nav-menu {
    gap: 5px;
  }

  .nav-link {
    padding: 8px 10px;
    font-size: 12px;
  }

  .form-row {
    flex-direction: column;
  }

  .useful-links {
    flex-direction: column;
    gap: 15px;
  }

  .useful-links a {
    font-size: 14px;
  }

  .footer .footer-container {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .useful-links {
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    text-align: center;
  }

  .useful-links a {
    font-size: 12px;
    white-space: normal;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-bottom-logo {
    order: -1;
  }

  .copyright {
    order: 0;
  }

  .footer-bottom-social {
    order: 1;
    justify-content: center;
  }

  .footer-policies {
    order: 2;
    justify-content: center;
    gap: 15px;
  }
}

/* ========== RECYCLING PROGRAM PAGE STYLES ========== */

.recycling-hero-section {
  background: var(--color-bg-light);
  padding: 100px var(--border-width);
  text-align: center;
}

.recycling-hero-section h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-header-dark);
  margin: 20px 0 10px 0;
  line-height: 1.2;
}

.recycling-hero-section h3 {
  font-size: 24px;
  color: var(--color-header-body);
  margin-bottom: 20px;
  font-weight: 500;
}

.recycling-how-section {
  background-color: #ffffff;
}

.recycling-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 60px 0;
}

.process-card {
  background: var(--color-bg-light);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  color: var(--color-header-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.process-card h3 {
  margin-bottom: 15px;
  color: var(--color-header-dark);
}

.process-card p {
  color: var(--color-header-body);
  line-height: 1.6;
}

.recycling-vision {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 80px;
  padding: 60px;
  background: var(--color-bg-light);
  border-radius: 16px;
}

.vision-icon {
  flex: 0 0 200px;
}

.vision-icon img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.vision-content {
  flex: 1;
}

.vision-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--color-header-dark);
}

.vision-content p {
  color: var(--color-header-body);
  line-height: 1.8;
  font-size: 15px;
}

.recycling-pricing-section {
  background: var(--color-bg-alt);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 60px 0;
}

.pricing-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  border: 2px solid #e0e0e0;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(181, 255, 237, 0.2);
  transform: scale(1.05);
}

.pricing-header {
  margin-bottom: 20px;
  flex: 1;
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.pricing-frequency {
  font-size: 15px;
  color: var(--color-header-body);
  line-height: 1.5;
  margin: 0;
}

.pricing-user-type {
  margin: 20px 0;
  padding: 20px;
  background: var(--color-bg-light);
  border-radius: 8px;
}

.pricing-user-type p {
  margin: 0 0 10px 0;
  font-weight: 600;
  color: var(--color-header-dark);
  font-size: 14px;
}

.pricing-user-type ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-user-type li {
  color: var(--color-header-body);
  font-size: 13px;
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}

.pricing-user-type li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary-stroke);
  font-weight: bold;
}

.pricing-badge {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-header-dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 15px 0;
}

.pricing-amount {
  margin: 30px 0;
}

.pricing-amount .price {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-header-dark);
  display: block;
}

.pricing-amount .price-old {
  font-size: 18px;
  color: #777;
  text-decoration: line-through;
  display: block;
  margin-bottom: 5px;
}

.pricing-amount .period {
  font-size: 16px;
  color: var(--color-header-body);
}

.pricing-includes {
  flex: 1;
  margin: 20px 0 30px 0;
}

.pricing-includes p {
  margin: 0 0 10px 0;
  font-weight: 600;
  color: var(--color-header-dark);
  font-size: 14px;
}

.pricing-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-includes li {
  color: var(--color-header-body);
  font-size: 13px;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.pricing-includes li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary-stroke);
  font-weight: bold;
}

.pricing-cta {
  text-align: center;
  margin-top: 80px;
  padding: 60px;
  background: white;
  border-radius: 16px;
  border: 2px solid #e0e0e0;
}

.pricing-cta h3 {
  font-size: 28px;
  margin-bottom: 30px;
}

.pricing-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.recycling-benefits-section {
  background: var(--color-bg-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.benefit-item {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #e0e0e0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  font-size: 48px;
  color: var(--color-primary-stroke);
  margin-bottom: 20px;
}

.benefit-item h3 {
  margin-bottom: 15px;
}

.benefit-item p {
  color: var(--color-header-body);
  font-size: 14px;
  line-height: 1.6;
}

.recycling-faq-section {
  background: white;
}

.recycling-cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #8ff5f5 100%);
  padding: 100px var(--border-width);
  text-align: center;
}

.recycling-cta-section h2 {
  color: var(--color-header-dark);
  font-size: 40px;
  margin-bottom: 20px;
}

.recycling-cta-section p {
  color: var(--color-header-dark);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== RESPONSIVE RECYCLING PROGRAM PAGE ========== */

@media (max-width: 1024px) {
  .recycling-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .recycling-vision {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .recycling-hero-section h1 {
    font-size: 32px;
  }
  
  .recycling-hero-section h3 {
    font-size: 18px;
  }
  
  .recycling-process-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 16px !important;
    padding-top: 20px !important;
    padding-bottom: 12px !important;
    scrollbar-width: none !important;
  }
  .pricing-grid::-webkit-scrollbar {
    display: none;
  }
  .pricing-card {
    flex: 0 0 80vw !important;
    max-width: 340px !important;
    scroll-snap-align: start !important;
    padding: 30px 20px !important;
  }
  /* Mobile order: Casual first, Foodie second, Aficionado last */
  .pricing-card:first-of-type {
    order: -1 !important;
  }
  .pricing-card.featured {
    order: 0 !important;
  }
  .pricing-card:last-of-type {
    order: 1 !important;
  }
  
  .pricing-buttons {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .recycling-cta-section h2 {
    font-size: 28px;
  }
  
  .recycling-cta-section p {
    font-size: 16px;
  }
  
  .process-card,
  .pricing-card,
  .benefit-item {
    padding: 30px 20px;
  }
  
  .pricing-cta {
    padding: 40px 20px;
  }
}

/* ========== PRODUCT INTRO PAGE STYLES ========== */

.product-hero-section {
  background: var(--color-bg-light);
  padding: 60px var(--border-width);
  text-align: left;
}

.hero-flex {
  display: flex;
  gap: 40px;
  align-items: center;
}

.hero-content {
  flex: 1;
}

.hero-video {
  flex: 0 0 300px;
  height: fit-content;
}

.video-container-vertical {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-container-vertical iframe {
  width: 100% !important;
  height: 100% !important;
}

.product-hero-section h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-header-dark);
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.product-hero-section h3 {
  font-size: 24px;
  color: var(--color-header-body);
  margin-bottom: 20px;
  font-weight: 500;
}

.product-intro-content {
  max-width: 600px;
}

.product-intro-content p {
  color: var(--color-header-body);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.product-intro-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .hero-flex {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  
  .hero-video {
    flex: 1;
    width: 100%;
  }
  
  .video-container-vertical {
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .product-hero-section {
    padding: 40px 20px;
  }
  
  .product-hero-section h1 {
    font-size: 32px;
  }
  
  .product-hero-section h3 {
    font-size: 18px;
  }
  
  .hero-flex {
    gap: 20px;
  }
  
  .hero-video {
    flex: 0 0 280px;
  }
  
  .video-container-vertical {
    max-width: 100%;
  }
}

.product-intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.product-intro-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-header-body);
  margin-bottom: 20px;
}

.product-component-section {
  background: var(--color-bg-alt);
  padding: 80px var(--border-width);
}

.product-component-section.alternate {
  background: white;
}

.component-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.component-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.component-content h3 {
  font-size: 20px;
  color: var(--color-header-body);
  margin-bottom: 30px;
  font-weight: 500;
}

.component-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-header-body);
  margin-bottom: 20px;
}

.component-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.product-combined-section {
  background: var(--color-bg-alt);
  padding: 100px var(--border-width);
}

.product-combined-section h2 {
  text-align: center;
  margin-bottom: 60px;
}

.combined-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.combined-feature {
  background: white;
  padding: 40px;
  border-radius: 16px;
  border: 2px solid #e0e0e0;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.combined-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.combined-feature h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.combined-feature p {
  color: var(--color-header-body);
  font-size: 14px;
  line-height: 1.6;
}

.product-cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #8ff5f5 100%);
  padding: 100px var(--border-width);
  text-align: center;
}

.product-cta-section h2 {
  color: var(--color-header-dark);
  font-size: 40px;
  margin-bottom: 20px;
}

.product-cta-section p {
  color: var(--color-header-dark);
  font-size: 18px;
  margin-bottom: 40px;
}

.btn-large {
  padding: 16px 48px;
  font-size: 16px;
}

/* ========== HELP & FAQ PAGE STYLES ========== */

.help-hero-section {
  background: linear-gradient(135deg, #fff5f7 0%, var(--color-bg-light) 100%);
  padding: 100px var(--border-width);
  text-align: center;
}

.help-hero-section h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-header-dark);
  margin: 0 0 15px 0;
}

.help-hero-section h3 {
  font-size: 24px;
  color: var(--color-header-body);
}

.faq-nav-section {
  background: white;
  padding: 40px var(--border-width);
  border-bottom: 2px solid #e0e0e0;
}

.faq-nav-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.faq-tab {
  padding: 12px 24px;
  border: 2px solid #e0e0e0;
  background: white;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.faq-tab:hover {
  border-color: var(--color-primary-stroke);
  color: var(--color-primary-stroke);
}

.faq-tab.active {
  background: var(--color-primary);
  color: var(--color-header-dark);
  border-color: var(--color-primary);
}

.help-faq-section {
  background: white;
  padding: 80px var(--border-width);
}

.help-faq-section h2 {
  text-align: center;
  margin-bottom: 60px;
}

.help-faq-section .faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--color-primary-stroke);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.faq-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.help-contact-cta {
  background: var(--color-bg-light);
  padding: 80px var(--border-width);
  text-align: center;
}

.help-contact-cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.help-contact-cta p {
  font-size: 16px;
  margin-bottom: 50px;
  color: var(--color-header-body);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-method {
  background: white;
  padding: 40px;
  border-radius: 16px;
}

.contact-method h3 {
  margin-bottom: 20px;
}

.social-links-horizontal {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--color-primary);
  color: var(--color-header-dark);
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.3s;
}

.social-link:hover {
  background: #a0ebe0;
  transform: translateY(-2px);
}

/* ========== MAINTENANCE & CARE PAGE STYLES ========== */

.maintenance-hero-section {
  background: linear-gradient(135deg, #f0fffe 0%, var(--color-bg-light) 100%);
  padding: 80px var(--border-width);
}

.maintenance-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.maintenance-hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-header-dark);
  margin: 0 0 15px 0;
}

.maintenance-hero-text p {
  font-size: 20px;
  color: var(--color-header-body);
}

.maintenance-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.care-component-section {
  background: white;
  padding: 80px var(--border-width);
}

.care-component-section.alternate {
  background: var(--color-bg-light);
}

.care-component-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.care-component-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.care-component-content h3 {
  font-size: 20px;
  color: var(--color-header-body);
  margin-bottom: 40px;
  font-weight: 500;
}

.care-info-box {
  margin-bottom: 30px;
  padding: 25px;
  background: var(--color-bg-light);
  border-radius: 12px;
  border-left: 4px solid var(--color-primary-stroke);
}

.care-info-box.special {
  background: linear-gradient(135deg, rgba(181, 255, 237, 0.1) 0%, rgba(181, 255, 237, 0.05) 100%);
  border-left-color: var(--color-primary);
  position: relative;
}

.care-info-box h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-header-dark);
  margin: 0 0 10px 0;
}

.care-info-box p {
  color: var(--color-header-body);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.care-tip-icon {
  font-size: 40px;
  color: var(--color-primary);
  margin-top: 15px;
  opacity: 0.6;
}

.care-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.care-icon,
.care-icon-wrong {
  flex: 1;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  background: white;
}

.care-icon {
  background: #f0fff4;
}

.care-icon-wrong {
  background: #fff5f5;
}

.care-icon i,
.care-icon-wrong i {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}

.care-icon p,
.care-icon-wrong p {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}

.care-component-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.care-checklist-section {
  background: white;
  padding: 80px var(--border-width);
}

.care-checklist-section h2 {
  text-align: center;
  margin-bottom: 60px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.checklist-item {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  border: 2px solid #e0e0e0;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.checklist-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.checklist-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: var(--color-header-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.checklist-item h3 {
  margin-bottom: 20px;
}

.checklist-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist-item li {
  color: var(--color-header-body);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}

.checklist-item li:last-child {
  border-bottom: none;
}

.maintenance-recycling-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, #8ff5f5 100%);
  padding: 100px var(--border-width);
  text-align: center;
}

.maintenance-recycling-cta h2 {
  color: var(--color-header-dark);
  font-size: 36px;
  margin-bottom: 20px;
}

.maintenance-recycling-cta p {
  color: var(--color-header-dark);
  font-size: 16px;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.recycling-benefits-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.benefit {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 12px;
}

.benefit i {
  font-size: 32px;
  color: var(--color-primary-stroke);
  display: block;
  margin-bottom: 15px;
}

.benefit h4 {
  margin: 0 0 8px 0;
  color: var(--color-header-dark);
  font-size: 14px;
}

.benefit p {
  margin: 0;
  color: var(--color-header-body);
  font-size: 12px;
}

.maintenance-faq-section {
  background: white;
  padding: 80px var(--border-width);
}

.maintenance-faq-section h2 {
  text-align: center;
  margin-bottom: 60px;
}

.maintenance-faq-section .faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

/* ========== RESPONSIVE STYLES FOR NEW PAGES ========== */

@media (max-width: 1024px) {
  .component-layout,
  .care-component-layout,
  .maintenance-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .combined-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .checklist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
  
  .recycling-benefits-mini {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .product-hero-section h1,
  .help-hero-section h1,
  .maintenance-hero-section h1 {
    font-size: 32px;
  }
  
  .component-layout,
  .care-component-layout,
  .maintenance-hero-content {
    gap: 30px;
  }
  
  .combined-features-grid,
  .checklist-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-nav-tabs {
    gap: 10px;
  }
  
  .faq-tab {
    padding: 10px 16px;
    font-size: 12px;
  }
  
  .care-icons {
    flex-direction: column;
  }
  
  .product-cta-section h2,
  .maintenance-recycling-cta h2 {
    font-size: 28px;
  }
}

/* ========== PRODUCT VIDEO SECTION ========== */

.product-video-section {
  background: white;
  padding: 80px var(--border-width);
}

.product-video-section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
}

.video-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

/* ========== PRODUCT CAROUSEL STYLES ========== */

.product-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.carousel-main {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
}

.carousel-main img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 400px;
  object-fit: cover;
}

.carousel-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.carousel-thumbs .thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
  object-fit: cover;
  flex-shrink: 0;
}

.carousel-thumbs .thumb:hover {
  border-color: var(--color-primary-stroke);
  opacity: 0.8;
}

.carousel-thumbs .thumb.active {
  border-color: var(--color-primary-stroke);
  box-shadow: 0 0 0 2px var(--color-primary);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-header-dark);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}

.carousel-nav:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-nav.prev {
  left: 10px;
}

.carousel-nav.next {
  right: 10px;
}

.features-list {
  margin: 25px 0;
}

.features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  color: var(--color-header-body);
  font-size: 14px;
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.features-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary-stroke);
  font-weight: bold;
}

@media (max-width: 768px) {
  .carousel-main img {
    min-height: 300px;
  }
  
  .carousel-thumbs {
    overflow-x: auto;
  }
  
  .carousel-nav {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

/* ========== OVERLAY IMAGE ARROWS ========== */

.image-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-header-dark);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}

.image-arrow:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.image-arrow.prev-arrow {
  left: 15px;
}

.image-arrow.next-arrow {
  right: 15px;
}

@media (max-width: 768px) {
  .image-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .image-arrow.prev-arrow {
    left: 10px;
  }
  
  .image-arrow.next-arrow {
    right: 10px;
  }
}

/* ========== IMAGE ARROW NAVIGATION ========== */

.image-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-header-dark);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}

.image-arrow:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.image-arrow.prev-arrow {
  left: 10px;
}

.image-arrow.next-arrow {
  right: 10px;
}

/* ========== ALTERNATING BACKGROUND COLORS FOR PAGES ========== */
/* Pages (excluding home) alternate between fdf9f7 and eefcf9 */

.product-intro section:nth-of-type(odd) {
  background: #fdf9f7;
}

.product-intro section:nth-of-type(even) {
  background: #eefcf9;
}

.help-faqs-page section:nth-of-type(odd) {
  background: #fdf9f7;
}

.help-faqs-page section:nth-of-type(even) {
  background: #eefcf9;
}

.maintenance-care-page section:nth-of-type(odd) {
  background: #fdf9f7;
}

.maintenance-care-page section:nth-of-type(even) {
  background: #eefcf9;
}

.recycling-program-page section:nth-of-type(odd) {
  background: #fdf9f7;
}

.recycling-program-page section:nth-of-type(even) {
  background: #eefcf9;
}

.recipes-page section:nth-of-type(odd) {
  background: #fdf9f7;
}

.recipes-page section:nth-of-type(even) {
  background: #eefcf9;
}

/* ========== SHOP & PRODUCT SECTION TEXT COLOR OVERRIDES ========== */
/* Change text colors from mint to grey only in shop and product sections */

.shop-section .price,
.product-price .price,
.product-price-section .price-large,
.products-section .price {
  color: #7f7268 !important;
}

.shop-section h2,
.shop-section h3,
.product-info h3,
.products-section .product-info h3 {
  color: #595959 !important;
}

/* ========== HOMEPAGE UPDATES ========== */

/* Design Button Styling */
.design-button {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Recycling Reveal Box */
.recycling-reveal-box {
  background: rgba(181, 255, 237, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: 30px;
  margin: 30px 0;
  border-radius: 8px;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.recycling-reveal-text {
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text-dark);
  text-align: left;
}

/* Interactive Step Cards */
.recycling-steps-interactive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.step-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-card:hover .step-image img {
  opacity: 1;
}

.step-card .step-number {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 15px;
}

.step-card h3 {
  font-size: 16px;
  margin: 10px 0 15px;
  color: var(--color-header-dark);
}

.step-image {
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 15px;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

/* Price Info Styling */
.price-info {
  margin: 15px 0;
}

.price-note {
  font-size: 13px;
  color: white;
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(135deg, var(--color-primary) 0%, #7dd3c0 100%);
  padding: 10px 15px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(181, 255, 237, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.price-note:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(181, 255, 237, 0.4);
}

/* Contact Section */
.contact-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 32px;
  color: var(--color-header-dark);
}

.contact-section > .container > p {
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-header-body);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(181, 255, 237, 0.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sub-menu slimmer version for non-homepage */
@media (max-width: 1024px) {
  .main-nav {
    padding: 10px 0;
  }
  
  .nav-link {
    padding: 8px 12px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .recycling-steps-interactive {
    grid-template-columns: 1fr;
  }
  
  .step-card .step-image {
    height: 150px;
  }
}

/* ========== PRODUCT CARE COLUMNS ========== */
.care-items-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
}

.care-item {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.care-item-left {
  flex-direction: row;
}

.care-item-right {
  flex-direction: row-reverse;
}

.care-icon-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.care-icon {
  width: 50px;
  height: 50px;
  color: white;
}

.care-icon-svg {
  width: 85px;
  height: 85px;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
}

.care-icon-img {
  width: 85px;
  height: 85px;
  object-fit: contain;
}

.care-content {
  flex: 1;
  text-align: left;
}

.care-item h4 {
  font-size: 16px;
  color: var(--color-header-dark);
  margin-bottom: 8px;
  margin-top: 0;
  font-weight: 600;
}

.care-item p {
  color: var(--color-header-body);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.care-button {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* ========== SLIDESHOW STYLES ========== */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.recipes-slideshow-container.slideshow-container {
  background: #fdf9f7;
}

.slide {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide:first-child {
  opacity: 1;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recipes-slide img {
  object-fit: contain;
  background: #fdf9f7;
}

.recipes-slide {
  background: #fdf9f7;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s ease;
  border-radius: 3px;
  user-select: none;
}

.next {
  right: 0;
}

.prev {
  left: 0;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 40px 0;
}

.about-slideshow {
  width: 100%;
  height: 100%;
}

.about-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-header-body);
  margin-bottom: 15px;
}

.recyclable-badge-inline {
  background: rgba(181, 255, 237, 0.15);
  border: 2px solid var(--color-primary);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: var(--color-header-dark);
  margin: 20px 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .care-item {
    padding: 16px;
    gap: 16px;
    flex-direction: row;
  }

  .care-item-right {
    flex-direction: row-reverse;
  }
  
  .care-icon-circle {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }
  
  .care-icon {
    width: 40px;
    height: 40px;
  }

  .care-icon-svg {
    width: 65px;
    height: 65px;
    filter: brightness(0) saturate(100%);
  }

  .care-icon-img {
    width: 65px;
    height: 65px;
  }
  
  .care-item h4 {
    font-size: 15px;
  }
  
  .care-item p {
    font-size: 13px;
  }
  
  .about-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .slide img {
    height: 300px;
  }
}

/* ========== PRODUCT INFO PAGE UPDATES ========== */

.combined-feature ul {
  list-style: disc;
  padding-left: 20px;
  margin: 15px 0 0 0;
}

.combined-feature li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-header-body);
  margin-bottom: 8px;
}

.combined-feature li:last-child {
  margin-bottom: 0;
}

/* ========== SIDE CART DRAWER ========== */
.side-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}

.side-cart-overlay.open {
  display: block;
}

.side-cart {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100%;
  height: 100vh;
  background: white;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.side-cart.open {
  transform: translateX(0);
}

.side-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.side-cart-header h2 {
  margin: 0;
  font-size: 24px;
  color: var(--color-header-dark);
}

.side-cart-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-header-dark);
  padding: 0;
  width: 30px;
  height: 30px;
}

.side-cart-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.empty-cart-message {
  text-align: center;
  color: var(--color-header-body);
  padding: 40px 20px;
}

.side-cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-cart-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.side-cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.side-cart-item-details {
  flex: 1;
}

.side-cart-item-details h4 {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: var(--color-header-dark);
}

.side-cart-item-details p {
  margin: 5px 0;
  font-size: 12px;
  color: var(--color-header-body);
}

.item-quantity {
  width: 50px;
  padding: 4px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.item-price {
  font-weight: 600;
  color: var(--color-header-dark);
}

.remove-item {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  font-size: 12px;
  padding: 5px;
  text-decoration: underline;
}

.side-cart-footer {
  border-top: 1px solid #e0e0e0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.side-cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-header-dark);
}

.side-cart-checkout,
.side-cart-continue {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  color: black;
}

.side-cart-checkout {
  background: var(--color-primary);
  color: black;
  font-weight: 600;
}

.side-cart-checkout:hover {
  opacity: 0.9;
  color: black;
}

.side-cart-continue {
  background: transparent;
  color: black;
  border: 1px solid var(--color-primary);
}

.side-cart-continue:hover {
  background: var(--color-primary);
  color: black;
}

.cart-count {
  font-size: 12px;
  background: #dc3545;
  color: white;
  padding: 2px 6px;
  border-radius: 50%;
  margin-left: 5px;
}

@media (max-width: 768px) {
  .side-cart {
    width: 100%;
  }
}

/* FEATURE CAROUSEL */
.carousel-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  margin-bottom: 40px;
}

.combined-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: opacity 0.5s ease-in-out;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 4px;
  z-index: 10;
  transition: background 0.3s;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.carousel-prev {
  left: 15px;
}

.carousel-next {
  right: 15px;
}

@media (max-width: 768px) {
  .carousel-wrapper {
    aspect-ratio: 1 / 1;
  }
}

/* Mobile hero - stack text on top, image below */
@media (max-width: 768px) {
  .hero-split {
    flex-direction: column;
    min-height: auto;
  }
  .hero-left {
    flex: 0 0 auto;
    padding: 40px 20px 20px 20px;
  }
  .hero-text h1 {
    font-size: 26px !important;
    margin-bottom: 14px !important;
  }
  .hero-text p {
    font-size: 14.5px !important;
    margin-bottom: 22px !important;
  }
  .hero-buttons {
    margin-bottom: 22px !important;
  }
  .hero-ctas {
    gap: 18px !important;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-right {
    flex: 0 0 auto;
    width: 100%;
    min-height: 0;
    height: 320px;
    background-position: center center;
  }
}


/* ===== SCROLL FADE-IN ANIMATIONS ===== */
.anim-enabled .feature-box,
.anim-enabled .cs-card,
.anim-enabled .bcard,
.anim-enabled .about-card,
.anim-enabled .team-card,
.anim-enabled .about-team-header,
.anim-enabled .rp-step-card,
.anim-enabled .pi-bcard,
.anim-enabled .recipe-card,
.anim-enabled .pricing-card,
.anim-enabled .benefit-item,
.anim-enabled .about-story-step,
.anim-enabled .chef-card,
.anim-enabled .timeline-step,
.anim-enabled .shop-flex,
.anim-enabled .pi-breakdown-image,
.anim-enabled .pi-breakdown-cards,
.anim-enabled .category-header,
.anim-enabled .rp-benefits-header,
.anim-enabled .rp-steps-header,
.anim-enabled .about-intro h2,
.anim-enabled .about-intro p,
.anim-enabled .reviews-creator-block,
.anim-enabled .reviews-amazon-block,
.anim-enabled .index-faqs .faq-item,
.anim-enabled .pi-faq-section .faq-item,
.anim-enabled .shop-faq-section .faq-item,
.anim-enabled .help-faq-section .faq-item,
.anim-enabled .pi-faq-section .rp-benefits-header,
.anim-enabled .shop-faq-section .rp-benefits-header,
.anim-enabled .about-cta {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.anim-enabled .feature-box.is-visible,
.anim-enabled .cs-card.is-visible,
.anim-enabled .bcard.is-visible,
.anim-enabled .about-card.is-visible,
.anim-enabled .team-card.is-visible,
.anim-enabled .about-team-header.is-visible,
.anim-enabled .rp-step-card.is-visible,
.anim-enabled .pi-bcard.is-visible,
.anim-enabled .recipe-card.is-visible,
.anim-enabled .pricing-card.is-visible,
.anim-enabled .benefit-item.is-visible,
.anim-enabled .about-story-step.is-visible,
.anim-enabled .chef-card.is-visible,
.anim-enabled .timeline-step.is-visible,
.anim-enabled .shop-flex.is-visible,
.anim-enabled .pi-breakdown-image.is-visible,
.anim-enabled .pi-breakdown-cards.is-visible,
.anim-enabled .category-header.is-visible,
.anim-enabled .rp-benefits-header.is-visible,
.anim-enabled .rp-steps-header.is-visible,
.anim-enabled .about-intro h2.is-visible,
.anim-enabled .about-intro p.is-visible,
.anim-enabled .reviews-creator-block.is-visible,
.anim-enabled .reviews-amazon-block.is-visible,
.anim-enabled .index-faqs .faq-item.is-visible,
.anim-enabled .pi-faq-section .faq-item.is-visible,
.anim-enabled .shop-faq-section .faq-item.is-visible,
.anim-enabled .help-faq-section .faq-item.is-visible,
.anim-enabled .pi-faq-section .rp-benefits-header.is-visible,
.anim-enabled .shop-faq-section .rp-benefits-header.is-visible,
.anim-enabled .about-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* The JS adds .scroll-fade to elements, but we also support direct class for safety */
.anim-enabled .scroll-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.anim-enabled .scroll-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Don't animate hero content - it's above the fold */
.anim-enabled .hero-section *,
.anim-enabled .help-hero-section *,
.anim-enabled .about-hero *,
.anim-enabled .pi-hero-section *,
.anim-enabled .rp-hero-section *,
.anim-enabled .recycling-hero-section * {
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .anim-enabled *,
  .scroll-fade {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

