/* SECTION */
.brand-section {
  padding: 80px 20px;
  background: linear-gradient(180deg,
      #f7ffe9 0%,
      #f0ffd9 40%,
      #ffffff 100%);
}


/* TEXT */
.brand-title {
  font-size: 48px;
  font-weight: 500;
}

.brand-desc {
  max-width: 650px;
  margin: auto;
  color: #555;
  font-size: 16px;
}

/* BUTTON */
.explore-btn {
  background: #2f3fe6;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 16px;
}

.explore-btn:hover {
  background: #1e2bd8;
  color: #fff;
}

/* IMAGE SHOWCASE */
.image-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

/* IMAGE CARD */
.img-card {
  width: 320px;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.image-showcase {
  margin-bottom: 60px;
}

.img-card img {
  display: block;
}

/* CENTER IMAGE BIGGER */
.img-card.center {
  width: 360px;
  height: 360px;
}

/* IMAGE */
.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/*  HOVER ZOOM */
.img-card:hover img {
  transform: scale(1.15);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .brand-title {
    font-size: 34px;
  }

  .image-showcase {
    flex-direction: column;
    gap: 30px;
  }

  .img-card,
  .img-card.center {
    width: 100%;
    max-width: 360px;
    height: 260px;
  }
}


/* about only orgainc  */

.about-organic-section {
  background: #ffffff;
}

/* LEFT SIDE */
.section-small-title {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 8px;
}

.about-title {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #222;
}

.about-title span {
  color: #7aa843;
  font-weight: 600;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 16px;
}

/* RIGHT CARDS */
.feature-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 18px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}



.icon-box {
  min-width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #eaf7df;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.feature-card h5 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-title {
    font-size: 2rem;
  }
}

.feature-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 18px;
  border: 1px solid #eee;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* HOVER EFFECT */
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border-color: #7aa843;
}

/* ICON ANIMATION */
.feature-card:hover .icon-box {
  transform: scale(1.12);
}

/* ACTIVE CARD */
.feature-card.active {
  border: 2px solid #1e88ff;
  box-shadow: 0 16px 36px rgba(30, 136, 255, 0.25);
}

/* Icon */
.icon-box {
  min-width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #eaf7df;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.35s ease;
}

@media (hover: none) {
  .feature-card:hover {
    transform: none;
    box-shadow: none;
  }
}

.icon-box img {
  width: 24px;
  /* try 20–28px if needed */
  height: 24px;
  object-fit: contain;
}

.feature-card:hover {
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.12),
    0 0 0 4px rgba(122, 168, 67, 0.15);
}


/* ===== Products Section ===== */
.products-section {
  background: #ffffff;
  overflow: visible;
}

/* ===== Product Card ===== */
.product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* ===== Image Wrapper ===== */
.img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}

.img-wrapper img {
  width: 100%;
  height: 220px;
  /* IMPORTANT: prevents hiding */
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .img-wrapper img {
  transform: scale(1.08);
}

/* ===== Image Title ===== */
.img-title {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

/* ===== Card Body ===== */
.card-body {
  padding: 20px;
}

/* ===== Tags ===== */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}

.tags span {
  background: #f1f7ea;
  color: #4f7c2f;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
}

/* ===== Explore Link ===== */
.explore-link {
  color: #4f7c2f;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.explore-link:hover {
  text-decoration: underline;
  transform: translateX(4px);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .img-wrapper img {
    height: 180px;
  }
}

.products-section {
  padding: 80px 0;
  background: #fff;
}

/* Card */
.product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
}

/* Image */
.img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: #f2f2f2;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Title on image */
.img-title {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

/* Body */
.card-body {
  padding: 20px;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}

.tags span {
  background: #f1f7ea;
  color: #4f7c2f;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
}

/* Link */
.explore-link {
  color: #4f7c2f;
  font-weight: 600;
  text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
  .img-wrapper {
    height: 180px;
  }
}

.product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  height: 100%;
  padding-bottom: 20px;
}

.product-card:hover {
  transform: translateY(-10px);
}

.img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: #f2f2f2;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-title {
  position: absolute;
  bottom: 22px;
  left: 22px;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

/* Body spacing */
.card-body {
  padding: 26px;
}

.card-body p {
  margin-top: 12px;
  margin-bottom: 18px;
  margin-left: 10px;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  margin-left: 10px;
}

.tags span {
  background: #f1f7ea;
  color: #4f7c2f;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;

}

/* Link */
.explore-link {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  margin-left: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .img-wrapper {
    height: 180px;
  }

  .card-body {
    padding: 22px;
  }
}

/*  seasonal section */

/* Section background */
.seasonal-section {
  background: #f7fbf1;
}

/* Card */
.season-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ✅ OUTER HOVER EFFECT ONLY */
.season-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

/* Icon */
.icon-box {
  width: 48px;
  height: 48px;
  background: #eaf3df;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

/* Text */
.season-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
}

.season-card p {
  color: #555;
  font-size: 15px;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tags span {
  background: #f2f7ea;
  color: var(--green);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
}

/* Button */
.explore-btn {
  background: #2536e6;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
}

.explore-btn:hover {
  background: #1c2ccc;
}

/* Green text */
.text-green {
  color: var(--green);
}



.sustainability-section {
  background: #ffffff;
}

/* Feature Cards */
.sustain-card {
  background: #ffffff;
  border: 1px solid #eef0ec;
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  transition: all 0.3s ease;
}

.sustain-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

/* Icon Box */
.icon-box {
  width: 52px;
  height: 52px;
  background: #eaf3df;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-box img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* Card Text */
.sustain-card h6 {
  font-weight: 600;
  margin-bottom: 8px;
}

.sustain-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
}

/* Right Content */
.sustain-content h2 {
  font-weight: 500;
  font-size: 34px;
}

.sustain-content h2 span {
  color: var(--secondary-color);
}

.sustain-content p {
  color: #555;
  line-height: 1.7;
}

.sustain-content {
  margin-top: 50px;
}

@media (max-width: 991px) {
  .sustain-content {
    padding-left: 0;
    margin-top: 30px;
  }
}


/* CTA Section */
.cta-section {
  background: #ffffff;
}

/* CTA Box */
.cta-box {
  background: #2f6b45;
  /* dark green */
  border-radius: 12px;
  padding: 60px 40px;
  max-width: 900px;
}

/* Text */
.cta-box h2 span {
  color: #ffffff;
}

.cta-text {
  color: #e6f2ea;
  max-width: 650px;
  margin: 0 auto;
  font-size: 15px;
}

/* Buttons */
.btn-shop {
  background: #2f3cff;
  color: #fff;
  border-radius: 30px;
  padding: 10px 26px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-shop:hover {
  background: #1f2be0;
  color: #fff;
}

.btn-contact {
  background: #ffffff;
  color: #2f3cff;
  border-radius: 30px;
  padding: 10px 26px;
  font-weight: 500;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: transparent;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-box {
    padding: 40px 20px;
  }

  .cta-text {
    font-size: 14px;
  }
}

/* First button – Blue */
.btn-shop {
  background-color: #2f3cff;
  /* blue */
  color: #ffffff;
  border-radius: 30px;
  padding: 10px 28px;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease;
}

.btn-shop:hover {
  background-color: #1f2be0;
  color: #ffffff;
}

/* Second button – White */
.btn-contact {
  background-color: #ffffff;
  /* white */
  color: #2f3cff;
  /* blue text */
  border-radius: 30px;
  padding: 10px 28px;
  font-weight: 500;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}



/* video */
.brand-video-section {
  background: #f8f9fa;
}

.video-container {
  position: relative;
  max-width: 900px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Play Button Circle */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95px;
  height: 95px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}
.volume-btn {
  position: absolute;
  bottom: 20px;
  right: 80px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Blue Triangle */
.play-btn span {
  width: 0;
  height: 0;
  border-left: 24px solid #2f5bff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

/* Responsive */
@media (max-width: 768px) {
  .play-btn {
    width: 70px;
    height: 70px;
  }

  .play-btn span {
    border-left: 18px solid #2f5bff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
}

.video-container {
  position: relative;
  max-width: 1100px;
  /* wider */
  margin: auto;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Make video taller */
.video-container video {
  width: 100%;
  height: 500px;
  /* 👈 Increase height */
  object-fit: cover;
  /* Prevent distortion */
}

/* Responsive height */
@media (max-width: 992px) {
  .video-container video {
    height: 380px;
  }
}

@media (max-width: 576px) {
  .video-container video {
    height: 260px;
  }
}

.video-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;

  white-space: nowrap;
  /* Force 1 line */
  overflow: hidden;
  text-overflow: ellipsis;
  /* Add ... if too long */
  max-width: 90%;
}

@media (max-width: 768px) {
  .video-caption {
    font-size: 13px;
    /* Smaller font */
    padding: 6px 12px;
    /* Less padding */
    bottom: 10px;
    /* Slightly closer */
  }
}

.video-container {
  position: relative;
  overflow: hidden;
}

.video-toggle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.video-toggle:hover {
  background: rgba(0, 0, 0, 0.9);
}


/*  e catgloue */
/* Section */
.catalog-section {
  padding: 80px 0;
}

/* Heading */
.catalog-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}

.catalog-subtitle {
  text-align: center;
  margin-bottom: 30px;
}

/* Wrapper */
.flip-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

/* Flipbook */
#flipbook {
  margin: auto;
}

/* Page */
#flipbook .page {
  background: #fff;
  overflow: hidden;
}

/* Image */
#flipbook img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* IMPORTANT */
}

/* Shadow */
#flipbook .page {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn {
  margin: 5px;
}

/* COVER PAGE */
.cover-content {
  display: flex;
  height: 100%;
}

.cover-left {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cover-left h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.cover-left p {
  font-size: 15px;
  line-height: 1.6;
}

.cover-right {
  width: 50%;
}

.cover-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* END PAGE */
.end-page {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.end-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.end-content p {
  margin-bottom: 20px;
}

/* MOBILE */
@media (max-width: 768px) {

  .cover-content {
    flex-direction: column;
  }

  .cover-left,
  .cover-right {
    width: 100%;
  }

  .cover-left {
    padding: 20px;
    text-align: center;
  }
}

/* Fix wide screen stretching issue */
.flip-wrapper {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

#flipbook {
  width: 100%;
}

/* Mobile optimization for end page */
@media (max-width: 480px) {

  .end-page h1 {
    font-size: 24px !important;
    line-height: 1.2;
  }

  .end-page p {
    font-size: 14px !important;
    margin-top: 8px;
  }

  .end-page .btn,
  .end-page button {
    font-size: 13px !important;
    padding: 8px 14px !important;
    border-radius: 6px;
  }

  .end-page {
    padding: 15px 10px !important;
    text-align: center;
  }
}