/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 仅隐藏 底部/横向 滚动条 */
html, body {
  overflow-x: hidden; /* 禁用横向滚动 + 隐藏横向滚动条 */
}

:root {
  --primary-green: #1B5E3C;
  --primary-green-light: #2D8B5A;
  --bg-cream: #F5F0E8;
  --bg-sage: #D4DED4;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #FFFFFF;
  --gold: #C9A962;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-cream);
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.header {
  background-color: var(--white);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-bottom: 2px solid var(--primary-green);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.nav-links {
  display: flex;
  gap: 50px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-green);
  transition: color 0.3s ease;
  padding-bottom: 5px;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-green-light);
}

.nav-links a.nav-active {
  color: var(--primary-green);
}

.nav-links a.nav-active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-green);
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.logo-brand {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-green);
  letter-spacing: 1px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background-color: var(--primary-green);
  transition: 0.3s;
}

/* Dropdown Navigation */
.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: block;
  padding: 10px 0;
}

/* Dropdown Menu (Level 2) */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 0;
}

.has-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu li a {
  display: block;
  padding: 14px 25px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.2s ease;
  border-left: 4px solid transparent;
}

.dropdown-menu li a:hover {
  background-color: var(--primary-green);
  color: var(--white);
  border-left-color: var(--primary-green);
}

.dropdown-menu li.has-submenu > a {
  position: relative;
  padding-right: 35px;
}

.dropdown-menu li.has-submenu > a::after {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid currentColor;
}

.dropdown-menu li.has-submenu:hover > a {
  background-color: #7DD3B0;
  color: var(--primary-green);
  border-left-color: var(--primary-green);
}

/* Submenu (Level 3) */
.submenu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  background-color: var(--white);
  box-shadow: 4px 4px 20px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 1001;
  padding: 0;
}

.has-submenu:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.submenu li a {
  padding: 12px 20px;
  font-size: 13px;
  border-left: none;
}

.submenu li a:hover {
  background-color: var(--bg-cream);
  color: var(--primary-green);
}

/* Hero Banner Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide-content {
  position: relative;
  z-index: 1;
  padding: 80px;
  padding-left: 80px;
  max-width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slide-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 25px;
  font-style: italic;
}

.hero-slide-content .hero-subtitle {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}

.hero-slide-content .hero-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
  font-style: italic;
}

.hero-slide-content .btn {
  width: fit-content;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 35px;
  height: 4px;
  border-radius: 2px;
  background-color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background-color: rgba(255,255,255,0.7);
}

.dot.active {
  background-color: var(--white);
  width: 50px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-green-light);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.btn-outline:hover {
  background-color: var(--text-dark);
  color: var(--white);
}

/* Small Changes Section */
.small-changes {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--white);
}

.small-changes h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  font-style: italic;
  color: var(--primary-green);
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.tab {
  padding: 14px 30px;
  background-color: #7DD3B0;
  color: var(--primary-green);
  border: none;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab:hover {
  background-color: #5AC495;
}

.tab.active {
  background-color: var(--primary-green);
  color: var(--white);
}

/* Tab Content */
.tab-content {
  display: none;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 25px;
  font-style: italic;
  line-height: 1.4;
  color: var(--text-dark);
}

.tab-description {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 50px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.eco-features {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.eco-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.eco-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco-icon svg {
  width: 60px;
  height: 60px;
}

.eco-icon-text {
  flex-direction: column;
}

.eco-percent {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-green);
}

.eco-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1;
}

.eco-feature span:last-child {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

/* Certification Logos */
.certification-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.certification-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.certification-logo svg {
  width: 70px;
  height: 70px;
}

.cert-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cert-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-green);
}

.cert-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-green);
}

.sedex-logo {
  gap: 5px;
}

.sedex-text {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-green);
  font-family: 'Open Sans', sans-serif;
}

.sedex-icon {
  width: 30px;
  height: 30px;
}

/* Products Section */
.products {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--bg-cream);
}

.products h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  font-style: italic;
  color: var(--primary-green);
}

.products-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto 50px;
}

.product-card {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 20px 40px;
}

.product-divider {
  width: 1px;
  background-color: #ccc;
  align-self: stretch;
  margin: 40px 0;
}

.product-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-green);
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
}

.product-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.btn-shop {
  display: inline-block;
  padding: 15px 50px;
  background-color: var(--primary-green);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-shop:hover {
  background-color: var(--primary-green-light);
}

/* Impact Section */
.impact {
  background-color: var(--primary-green);
  padding: 80px 20px;
}

.impact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.impact-image {
  flex: 0 0 420px;
  border-radius: 0;
  overflow: hidden;
}

.impact-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.impact-content {
  flex: 1;
}

.impact-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 25px;
  font-style: normal;
  letter-spacing: 2px;
  font-family: 'Open Sans', sans-serif;
}

.impact-content p {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.9;
  opacity: 0.95;
}

/* Instagram Section */
.instagram {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--bg-cream);
  overflow: hidden;
}

.instagram h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-style: normal;
  letter-spacing: 2px;
}

.instagram-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.instagram-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.instagram-track {
  display: flex;
  gap: 20px;
  animation: scroll-left 25s linear infinite;
  width: max-content;
}

.instagram-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-300px * 3 - 60px));
  }
}

.instagram-item {
  width: 280px;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instagram-item:hover img {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background-color: var(--bg-sage);
  padding: 60px 20px 0;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-logo-icon {
  width: 70px;
  height: 70px;
}

.footer-brand {
  text-align: center;
}

.footer-brand-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-green);
}

.footer-brand-tagline {
  display: block;
  font-size: 9px;
  color: var(--primary-green);
  letter-spacing: 1px;
  margin-top: 2px;
}

.footer-links {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-column h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-style: normal;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a,
.footer-column p,
.footer-column p a {
  font-size: 12px;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.footer-column ul li a:hover,
.footer-column p a:hover {
  color: var(--primary-green);
}

.footer-column .address {
  margin-top: 15px;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background-color 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary-green-light);
}

.social-icons svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-light);
}

/* ====================== */
/* Contact Page Styles    */
/* ====================== */

/* Contact Hero Section */
.contact-hero {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 450px;
  padding: 60px 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  font-style: italic;
}

.contact-hero-content p {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.7;
}

/* Contact Form Section */
.contact-form-section {
  padding: 60px 20px;
  background-color: var(--bg-cream);
}

.contact-form-card {
  max-width: 850px;
  margin: 0 auto;
  background-color: var(--white);
  border: 2px solid var(--primary-green);
  border-radius: 8px;
  padding: 50px;
}

.contact-form-card h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.form-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form .form-group.full-width {
  margin-bottom: 25px;
}

.contact-form label {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.contact-form label .required {
  color: #e74c3c;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-green);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 14px 50px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  background-color: var(--primary-green-light);
}

/* Journey Section */
.journey-section {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.journey-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.journey-card {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  background-color: rgba(125, 211, 176, 0.95);
  padding: 40px;
  max-width: 400px;
  border-radius: 0;
}

.journey-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 10px;
  font-style: italic;
}

.journey-subtitle {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.journey-text {
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 25px;
}

.btn-journey {
  display: inline-block;
  background-color: var(--primary-green);
  color: var(--white);
  padding: 12px 25px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn-journey:hover {
  background-color: var(--primary-green-light);
}

/* Contact Info Section */
.contact-info-section {
  background-color: var(--primary-green);
  padding: 60px 20px;
}

.contact-info-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--white);
}

.contact-info-item h5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.contact-info-item p {
  font-size: 13px;
  color: var(--white);
  line-height: 1.5;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
  .contact-hero {
    height: 300px;
  }

  .contact-hero-content {
    padding: 40px 30px;
    max-width: 100%;
  }

  .contact-hero-content h1 {
    font-size: 2rem;
  }

  .contact-form-card {
    padding: 30px 20px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .journey-section {
    height: auto;
    min-height: 500px;
  }

  .journey-card {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    max-width: 100%;
    margin: 200px 20px 20px;
  }

  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

/* ====================== */
/* Our Story Page Styles  */
/* ====================== */

/* Story Hero Section */
.story-hero {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.story-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.story-hero-content {
  position: relative;
  z-index: 1;
  max-width: 400px;
  padding: 50px 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.1;
  margin-bottom: 15px;
  font-style: italic;
}

.story-hero-content p {
  font-size: 0.8rem;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Our Story Section */
.story-section {
  padding: 60px 20px;
  background-color: var(--white);
}

.story-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #3A7B8C;
  text-align: center;
  margin-bottom: 50px;
  font-style: italic;
}

.story-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  align-items: stretch;
}

.story-image {
  flex: 0 0 55%;
  border-radius: 0;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.story-text {
  flex: 1;
  background-color: #F5F9F8;
  border-left: 4px solid #5AABB5;
  padding: 40px 50px;
  display: flex;
  align-items: center;
}

.story-text p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.9;
  font-style: normal;
}

/* Our Values Section */
.values-section {
  padding: 60px 20px;
  background-color: #E8F4F2;
}

.values-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #3A7B8C;
  text-align: center;
  margin-bottom: 40px;
  font-style: italic;
}

.values-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.value-item {
  background-color: #3A7B8C;
  padding: 35px 25px 40px;
  text-align: center;
  min-width: 170px;
  flex: 1;
  border-radius: 12px;
}

.value-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

.value-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.5;
  text-transform: uppercase;
}

/* What We Do Section */
.what-we-do-section {
  padding: 60px 20px 80px;
  background-color: #7DD3B0;
}

.what-we-do-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #3A7B8C;
  text-align: center;
  margin-bottom: 25px;
  font-style: italic;
}

.what-we-do-intro {
  max-width: 1000px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 0.95rem;
  color: #3A7B8C;
  line-height: 1.8;
}

.services-grid {
  display: flex;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(58, 123, 140, 0.3);
  padding-top: 40px;
}

.service-item {
  flex: 1;
  padding: 0 40px;
  text-align: center;
  border-right: 1px solid rgba(58, 123, 140, 0.3);
}

.service-item:last-child {
  border-right: none;
}

.service-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3A7B8C;
  line-height: 1.3;
  margin-bottom: 20px;
  font-style: italic;
}

.service-item p {
  font-size: 0.85rem;
  color: #3A7B8C;
  line-height: 1.7;
}

/* Certified Factory Section */
.certified-section {
  display: flex;
  align-items: stretch;
  background-color: var(--white);
}

.certified-image {
  flex: 0 0 40%;
  overflow: hidden;
}

.certified-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.certified-content {
  flex: 1;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.certified-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #3A7B8C;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 25px;
}

.certified-content p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 35px;
}

.certification-logos {
  display: flex;
  gap: 60px;
  align-items: center;
}

.cert-logo svg {
  height: 50px;
  width: auto;
}

/* Certified Section Responsive */
@media (max-width: 768px) {
  .certified-section {
    flex-direction: column;
  }

  .certified-image {
    flex: none;
    height: 250px;
  }

  .certified-content {
    padding: 40px 30px;
  }

  .certified-section h2 {
    font-size: 2rem;
  }

  .certification-logos {
    gap: 30px;
    flex-wrap: wrap;
  }
}

/* Partner Section */
.partner-section {
  padding: 60px 20px 80px;
  background-color: #D6ECEA;
  text-align: center;
}

.partner-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #3A7B8C;
  margin-bottom: 20px;
  font-style: italic;
}

.partner-description {
  font-size: 0.95rem;
  color: #3A7B8C;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.partner-grid {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  flex: 1;
  background-color: #7DD3B0;
  padding: 40px 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partner-card h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #3A7B8C;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.partner-card p {
  font-size: 0.9rem;
  color: #3A7B8C;
  line-height: 1.6;
  margin-bottom: 20px;
}

.partner-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3A7B8C;
  transition: opacity 0.3s ease;
}

.partner-link:hover {
  opacity: 0.7;
}

.partner-image {
  flex: 1.2;
  overflow: hidden;
}

.partner-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

/* Partner Section Responsive */
@media (max-width: 992px) {
  .partner-grid {
    flex-wrap: wrap;
  }

  .partner-card,
  .partner-image {
    flex: 0 0 50%;
  }
}

@media (max-width: 600px) {
  .partner-card,
  .partner-image {
    flex: 0 0 100%;
  }

  .partner-section h2 {
    font-size: 2rem;
  }
}

/* Story Contact Section */
.story-contact-section {
  padding: 60px 20px;
  background-color: var(--white);
}

.story-contact-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 40px;
  font-style: italic;
}

.story-contact-form-card {
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 40px;
}

/* Story Page Responsive */
@media (max-width: 768px) {
  .story-hero {
    height: 250px;
  }

  .story-hero-content {
    padding: 30px;
    max-width: 100%;
  }

  .story-hero-content h1 {
    font-size: 2rem;
  }

  .story-content {
    flex-direction: column;
  }

  .story-image {
    flex: none;
    width: 100%;
  }

  .values-grid {
    flex-direction: column;
    align-items: center;
  }

  .value-item {
    width: 100%;
    max-width: 300px;
  }

  .services-grid {
    flex-direction: column;
  }

  .service-item {
    border-right: none;
    border-bottom: 1px solid #ccc;
    padding: 20px;
  }

  .service-item:last-child {
    border-bottom: none;
  }

  .partner-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .story-contact-form-card {
    padding: 20px;
  }
}

/* ====================== */
/* Product List Page      */
/* ====================== */

/* Cat/Dog Hero Section */
.cat-hero {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.cat-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.cat-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(27, 94, 60, 0.95) 0%, rgba(27, 94, 60, 0.7) 70%, transparent 100%);
  z-index: 1;
}

.cat-hero-content {
  position: relative;
  z-index: 2;
  max-width: 400px;
  padding: 60px 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cat-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.cat-hero-content p {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.7;
}

/* Product List Section */
.product-list-section {
  padding: 60px 20px;
  background-color: var(--white);
}

.product-list-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 40px;
  font-style: italic;
}

.products-row {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
  padding-left: 20px;
}

.products-row-left {
  justify-content: flex-start;
}

.product-list-card {
  width: 190px;
  border: 2px solid var(--primary-green);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-list-image {
  width: 100%;
  height: 150px;
  background-color: #F5F5F0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.product-list-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-list-info {
  padding: 15px;
  flex: 1;
  background: linear-gradient(to bottom, #E8F5EE 0%, #F5F5F0 100%);
}

.product-list-info h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.product-list-info p {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
}

.btn-view-range {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: var(--primary-green);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-view-range:hover {
  background-color: var(--primary-green-light);
}

/* Product List Responsive */
@media (max-width: 992px) {
  .products-row {
    gap: 15px;
  }

  .product-list-card {
    width: calc(33.33% - 15px);
    min-width: 170px;
  }
}

@media (max-width: 768px) {
  .cat-hero {
    height: 280px;
  }

  .cat-hero::before {
    width: 100%;
    background: linear-gradient(90deg, rgba(27, 94, 60, 0.9) 0%, rgba(27, 94, 60, 0.6) 100%);
  }

  .cat-hero-content {
    padding: 40px 30px;
    max-width: 100%;
  }

  .cat-hero-content h1 {
    font-size: 2.5rem;
  }

  .product-list-card {
    width: calc(50% - 10px);
    min-width: 150px;
  }

  .products-row-left {
    justify-content: center;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .product-list-card {
    width: 100%;
    max-width: 250px;
  }
}

/* ====================== */
/* Product Detail Page    */
/* ====================== */

/* Product Detail Section */
.product-detail-section {
  padding: 40px 20px 60px;
  background-color: var(--bg-cream);
}

.product-detail-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* Product Gallery */
.product-gallery {
  display: flex;
  gap: 20px;
  flex: 0 0 450px;
}

.gallery-thumbnails {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.thumb-nav {
  width: 60px;
  height: 30px;
  background: #F5F5F0;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.thumb-nav:hover {
  background-color: #eee;
}

.thumbnail {
  width: 60px;
  height: 60px;
  border: 2px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background-color: #F5F5F0;
  padding: 5px;
}

.thumbnail.active {
  border-color: var(--primary-green);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-main {
  flex: 1;
  background-color: #F5F5F0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  min-height: 350px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}

.gallery-main img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
  transition: transform 0.1s ease-out;
}

.gallery-main.zooming {
  cursor: zoom-out;
}

.gallery-main.zooming img {
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zoom-lens {
  display: none;
}

/* Product Info */
.product-info {
  flex: 1;
}

.product-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-style: italic;
}

.product-description {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-features-list {
  list-style: none;
  margin-bottom: 25px;
}

.product-features-list li {
  font-size: 0.85rem;
  color: var(--text-dark);
  padding: 4px 0;
  position: relative;
  padding-left: 15px;
}

.product-features-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--text-dark);
}

.btn-contact-us {
  display: block;
  width: 100%;
  max-width: 300px;
  padding: 15px;
  background-color: var(--primary-green);
  color: var(--white);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0;
  transition: background-color 0.3s ease;
}

.btn-contact-us:hover {
  background-color: var(--primary-green-light);
}

/* Product Details Accordion */
.product-details-accordion {
  max-width: 1000px;
  margin: 40px auto 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.accordion-arrow {
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 0 0 20px;
}

.accordion-content.active {
  display: block;
}

.accordion-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Product Features Section */
.product-features-section {
  padding: 60px 20px;
  background-color: var(--primary-green);
}

.product-features-section h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 3px;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-item {
  flex: 1;
  max-width: 280px;
  text-align: center;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-item h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.feature-item p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

/* Partner Section Detail */
.partner-section-detail {
  padding: 60px 20px;
  background: linear-gradient(135deg, #3A8B7C 0%, #4A9B8C 100%);
  text-align: center;
}

.partner-section-detail h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  font-style: italic;
}

.partner-section-detail > p {
  font-size: 0.9rem;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.btn-partner-outline {
  display: inline-block;
  padding: 12px 40px;
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-partner-outline:hover {
  background-color: var(--white);
  color: var(--primary-green);
}

/* Recommended Products Section */
.recommended-section {
  padding: 60px 20px;
  background-color: var(--white);
}

.recommended-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 40px;
  font-style: italic;
}

.recommended-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.recommended-item {
  width: 200px;
  text-align: center;
}

.recommended-image {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.recommended-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.recommended-item h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-green);
  line-height: 1.4;
}

/* Product Detail Responsive */
@media (max-width: 768px) {
  .product-detail-container {
    flex-direction: column;
  }

  .product-gallery {
    flex: none;
    width: 100%;
    flex-direction: column-reverse;
  }

  .gallery-thumbnails {
    flex-direction: row;
    justify-content: center;
  }

  .gallery-main {
    min-height: 280px;
  }

  .features-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .recommended-grid {
    gap: 20px;
  }

  .recommended-item {
    width: calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .recommended-item {
    width: 100%;
    max-width: 200px;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-slider {
    height: 450px;
  }

  .hero-slide-content {
    max-width: 60%;
    padding: 40px;
  }

  .hero-slide-content h1 {
    font-size: 2.8rem;
  }

  .impact-container {
    flex-direction: column;
    gap: 40px;
  }

  .impact-image {
    flex: none;
    width: 100%;
    max-width: 450px;
  }

  .impact-content {
    text-align: center;
  }

  .footer-links {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-slider {
    height: 400px;
  }

  .hero-slide-content {
    max-width: 70%;
    padding: 30px;
  }

  .hero-slide-content h1 {
    font-size: 2.2rem;
  }

  .hero-slide-content .hero-subtitle {
    font-size: 1rem;
  }

  .small-changes h2 {
    font-size: 1.8rem;
  }

  .tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab {
    width: 100%;
    max-width: 300px;
  }

  .eco-features {
    gap: 30px;
  }

  .products-grid {
    flex-direction: column;
    align-items: center;
  }

  .product-divider {
    width: 80%;
    height: 1px;
    margin: 20px 0;
  }

  .product-card {
    padding: 20px;
  }

  .instagram-item {
    width: 250px;
    height: 250px;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-270px * 3));
    }
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .social-icons {
    justify-content: center;
  }
}
