:root {
  --process-step-circle-color: #ffffff;
  --process-step-circle-color-2: #02837a;
}

.home-page {
  width: 100%;
}

.in-house-brand-page {
  background-color: #fcfcfc;
}

.in-house-brand-page .container {
  max-width: 1300px;
  width: 95%;
}

.story-section {
  padding: 4.5rem 0;
  background-color: #fcfcfc;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.story-inner {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  height: 100%;
  gap: 2rem;
  box-sizing: border-box;
}

.story-media {
  border-radius: 18px;
  overflow: hidden;
  height: auto;
  min-height: 100%;
  aspect-ratio: 5/4;
  width: 50%;
  background-color: rgba(255, 255, 255, 0) !important;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.story-media:hover .story-image {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.story-content {
  height: auto;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
}

.story-heading {
  font-family: "Source Serif 4", "Times New Roman", serif;
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: normal;
  line-height: 1.3;
  color: #000000;
  margin-bottom: 0rem;
}

.story-content .divider {
  margin: 0.5rem 0 !important;
}

.story-text {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #384338;
  margin-bottom: 0rem;
}

.story-cta-btn {
  margin-top: 0.75rem;
}

/* ============================================== WHY US ============================================== */
.why-us {
  padding: 4.5rem 0;
  background-color: #ffffff;
}

.why-us-inner {
  margin: 0 auto;
  padding: 0rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  height: auto;
}

.why-us-heading {
  font-family: "Source Serif 4", "Times New Roman", serif;
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.why-us-lead {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #4b4f4b;
  max-width: 95%;
  margin-bottom: 2rem;
}

.why-us-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 2.5rem;
  border-top: 1px solid #e2e4e2;
  padding-top: 1.75rem;
}

.why-us-benefits-grid {
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.why-us-benefit {
  padding: 1.5rem 1.25rem;
  border-radius: 16px;
  background-color: #f6f7f5;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  height: 100%;
  box-sizing: border-box;
}

.why-us-benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  overflow: hidden;
  background-color: var(--secondary-color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.why-us-benefit-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.why-us-benefit-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: #1a1a1a;
}

.why-us-benefit-text {
  font-size: 0.9rem;
  line-height: 1.25;
  color: #5b635b;
}

.why-us-stat-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.why-us-stat-label {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #5b635b;
}

.why-us-media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.why-us-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.why-us-image:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

@media (max-width: 900px) {
  .why-us-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .why-us-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.5rem;
  }

  .why-us-media {
    order: -1;
  }
}

/* ============================================== FEATURED PRODUCTS ============================================== */
.featured-products {
  padding: 4.5rem 0 3.5rem 0;
  background-color: var(--white-color-light);
}

.featured-products-inner {
  margin: 0 auto;
  padding: 0rem;
}

.featured-products-header {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.featured-products-heading {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: normal;
  color: #1a1a1a;
  margin: 0;
  flex-shrink: 0;
  text-align: center;
}

.featured-products-subtitle {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #6b6b6b;
  margin: 0;
  max-width: 36rem;
  text-align: right;
  text-align: center;
}

.swiper-featured-products {
  overflow: hidden;
  padding-bottom: 2rem;
}

.swiper-featured-products .swiper-slide {
  height: auto;
}

.nav-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 10;
  padding: 3rem 0 0 0;
}

.swiper-featured-products-prev,
.swiper-featured-products-next {
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  border-radius: 50%;
  color: var(--primary-color);
  margin: 0 !important;
  top: 0 !important;
  left: unset !important;
  right: unset !important;
  position: relative !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-featured-products-prev:hover,
.swiper-featured-products-next:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.swiper-featured-products-prev::after,
.swiper-featured-products-next::after {
  font-size: 1rem;
  font-weight: 700;
}

.featured-product-card {
  background-color: var(--primary-color);
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 350px;
  position: relative;
  border-radius: 10px;
}

.featured-product-content {
  padding: 2rem 1.75rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
}

.featured-product-title {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 1.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin: 0 0 0.75rem;
}

.featured-product-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #ffffff;
  margin: 0;
  flex-grow: 1;
}

.featured-product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--secondary-color);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: capitalize;
  text-decoration: none;
  margin-top: 1.25rem;
  transition: opacity 0.2s ease;
}

.featured-product-cta:hover {
  opacity: 0.85;
}

.featured-product-cta-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: rotate(-45deg);
}

.featured-product-cta-icon i {
  font-size: 0.75rem;
}

.featured-product-image-wrap {
  position: relative;
  flex-shrink: 0;
  width: 45%;
  min-width: 180px;
  align-self: stretch;
}

.featured-product-image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 900px) {
  .featured-products-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .featured-products-subtitle {
    text-align: left;
  }

  .featured-product-card {
    flex-direction: column;
    min-height: 380px;
  }

  .featured-product-image-wrap {
    width: 100%;
    min-height: 200px;
    order: -1;
  }

  .featured-product-image {
    position: relative;
    top: 0;
    right: 0;
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }

  .story-inner {
    flex-direction: column;
  }

  .story-content {
    max-width: 100%;
    width: 100%;
    order: 1;
  }

  .story-media {
    width: 100%;
    aspect-ratio: 16/11;
    order: 2;
  }

  .story-heading{
    text-align: left;
    font-size: 1.5rem;
  }

  .story-text {
    text-align: left;
    font-size: 1.1rem;
  }
}

.process {
  padding: 4.5rem 0;
  background-color: var(--primary-color);
}

.process-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0rem;
  text-align: center;
}

.process-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.process-heading {
  font-family: "Source Serif 4", "Times New Roman", serif;
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  margin-bottom: 0.75rem;
  color: var(--white-color);
}

.process-subtitle {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--white-color);
  max-width: 40rem;
  margin: 0 auto 0.5rem;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}

.process-step {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.process-step-circle {
  width: 110px;
  height: 110px;
  border-radius: 999px;
  margin: 0 auto 1rem;
  border: 2px solid #e6e7e9;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9fafb;
  position: relative;
}

.process-step-circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 999px;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.process-step.one .process-step-circle::before {
  /* 1/4 filled from bottom */
  background: linear-gradient(
    to top,
    var(--process-step-circle-color-2) 0%,
    var(--process-step-circle-color-2) 25%,
    var(--process-step-circle-color) 25%,
    var(--process-step-circle-color) 100%
  );
  transform: rotate(-145deg);
}
.process-step.two .process-step-circle::before {
  /* 1/2 filled from bottom */
  background: linear-gradient(
    to top,
    var(--process-step-circle-color-2) 0%,
    var(--process-step-circle-color-2) 50%,
    var(--process-step-circle-color) 50%,
    var(--process-step-circle-color) 100%
  );
  transform: rotate(-90deg);
}
.process-step.three .process-step-circle::before {
  /* 3/4 filled from bottom */
  background: linear-gradient(
    to top,
    var(--process-step-circle-color-2) 0%,
    var(--process-step-circle-color-2) 75%,
    var(--process-step-circle-color) 75%,
    var(--process-step-circle-color) 100%
  );
  transform: rotate(-45deg);
}
.process-step.four .process-step-circle::before {
  /* fully filled */
  background: linear-gradient(
    to top,
    var(--process-step-circle-color-2) 0%,
    var(--process-step-circle-color-2) 100%
  );
}

.process-step-number-wrapper {
  width: 90%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: inherit;
  border-radius: 999px;
  position: relative;
  z-index: 10;
}

.process-step-number {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-color);
}

.process-step-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white-color);
}

.process-step-text {
  font-size: 0.9rem;
  min-height: 5rem;
  line-height: 1.6;
  color: var(--white-color);
}

.process-arrow {
  font-size: 1.4rem;
  color: #cbd5f5;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;

  position: absolute;
  top: 25%;
  left: 0;
}

.process-arrow.one {
  left: 22.5%;
}

.process-arrow.two {
  left: 47.5%;
}

.process-arrow.three {
  left: 72.5%;
}

.process-arrow .dash {
  width: 70px;
  height: 2px;
  background-color: var(--secondary-color);
  margin: 0 auto;
  margin-right: -10px;
}

.process-arrow i {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-right: -10px;
}

.process-arrow-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.9;
}

@media (max-width: 900px) {
  .process-steps {
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
  }

  .process-arrow {
    display: none;
  }

  .process-step {
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .story-section,
  .why-us,
  .featured-products,
  .process,
  .charts {
    padding: 2.5rem 0;
  }

  .process-header {
    margin-bottom: 1.5rem;
  }

  .story-inner {
    gap: 1.5rem;
  }

  .story-media {
    border-radius: 16px;
    margin-top: 1rem;
    background-color: transparent;
  }
/* 
  .why-us-benefits-grid {
    grid-template-columns: 1fr;
  } */

  .process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

  .process-step {
    max-width: 300px;
  }

  .process-step-circle {
    width: 130px;
    height: 130px;
  }

  .process-step-title {
    font-size: 1.1rem;
  }

  .process-subtitle {
    font-size: 0.98rem;
    margin: 0 auto 0rem;
  }

  .process-step-number {
    font-size: 1.2rem;
  }

  .nav-buttons {
    padding-top: 1rem;
  }

  .process-step-text {
    min-height: fit-content !important;
  }
}


/* ==============================Segments: Retailers & Cooks =======================*/
.about-segments {
  padding: 4.5rem 0 5rem;
  background-color: #f5f1eb;
  color: #111827;
}

.about-segments.retailers-section {
  padding: 4.5rem 0 5rem;
  background-color: #ffffff;
  color: #111827;
}

.about-segments.cooks-section {
  padding: 4.5rem 0 5rem;
  background-color: #e6eae9 !important;
  color: #111827;
}

.about-segments-header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.about-segments-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.about-segments-title {
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.about-segments-lead {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #4b5563;
}

.about-segment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}

.about-segment-row.cooks {
  background-color: #ffffff00;
}

.about-segment-row:last-of-type {
  margin-bottom: 0;
}

.about-segment-row--reverse {
  flex-direction: row-reverse;
}

.about-segment-content {
  flex: 1 1 50%;
}

.about-segment-content .divider {
  margin: 1.25rem 0 1rem 0;
  max-width: 200px;
}

.about-segment-media {
  flex: 1 1 50%;
  overflow: hidden;
  border-radius: 24px;
}

.about-segment-media img {
  aspect-ratio: 7/5;
  max-height: 350px;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(15, 61, 46, 0.22);
  transition: transform 0.3s ease;
}

.about-segment-media img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.about-segment-label {
  display: inline-flex;
  align-items: center;
  padding: 0;
  font-size: 1.5rem;
  text-transform: capitalize;
  letter-spacing: normal;
  color: #07504b;
  margin-bottom: 1.1rem;
  font-weight: 600;
}

.about-segment-heading {
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  margin-bottom: 0.8rem;
  color: #111827;
}

.about-segment-body {
  font-size: 0.97rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 1.25rem;
}

.about-segment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #111827;
}

.about-segment-list li::before {
  content: "•";
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .about-segments.retailers-section {
    padding: 2.5rem 0;
  }

  .about-segment-row,
  .about-segment-row--reverse {
    flex-direction: column;
    gap: 1rem;
  }

  .about-segment-media {
    max-width: none;
    width: 100%;
    height: auto;
    aspect-ratio: 5/4;
  }
}


/* ====================Our Commitment section================= */
.our-commitment {
  background-color: #f5f1eb;
  padding: 4rem 0rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.our-commitment-inner {
  height: auto;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.our-commitment-media {
  width: 45%;
  height: auto;
  display: flex;
  justify-content: center;
}

.our-commitment-media-shape {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  /* max-height: 500px; */
  /* aspect-ratio: 4 / 3; */
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.our-commitment-media-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-commitment-content {
  width: 55%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #0f3d2e;
}

.our-commitment-heading {
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0rem;
  color: #000000;
}

.our-commitment-content .divider {
  margin: 0.5rem 0 1.5rem 0 !important;
}

.story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}

.story-content-text {
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  color: #000000;
  margin-bottom: 0rem;
}

.story-content .contact-us-btn {
  margin-top: 1rem;
  background-color: #000000;
  color: #fff;
}

.story-content .contact-us-btn svg {
  fill: #fff;
}

.story-content .contact-us-btn:hover {
  background-color: #fff;
  color: #0f3d2e;
}

.story-content .contact-us-btn:hover svg {
  fill: #0f3d2e;
}

.our-commitment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.commitment-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px dotted rgba(15, 61, 46, 0.3);
}

.commitment-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.commitment-item-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
  color: var(--primary-color) !important;
}

.commitment-item-number {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #000000;
  color: var(--primary-color) !important;
}

.commitment-item-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #000000;
  color: var(--primary-color) !important;
}

.commitment-item-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0.1rem 0 0;
  color: #000000;
  padding-left: 0.5rem;
  list-style: outside;
}

.commitment-item-text.list {
  padding-left: 1.5rem;
}

.commitment-item-text li {
  list-style: outside;
}
 
.commitment-item-text-icon-text {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}


.commitment-item-text p {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

.commitment-item-text span {
  display: inline-block
}

.commitment-item-text span i {
  font-size: 8px !important;
}

.our-commitment .contact-us-btn {
  padding: 1rem 2rem;
}

.commitment-item-text p:last-child {
  margin-bottom: 0;
}

.commitment-item-text-icon {
  display: inline-block;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .our-commitment-inner {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .our-commitment-media,
  .our-commitment-content {
    flex: 0 0 auto;
    width: 100%;
  }

  .our-commitment-content {
    order: 2;
  }

  .our-commitment-media {
    order: 1;
  }

  .our-commitment-media-shape {
    max-width: 420px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0px;
  }

  
  .our-commitment-media-shape img {
    border-radius: 10px;
  }
}

@media (max-width: 600px) {
  .our-commitment {
    padding: 3.5rem 0rem 1rem 0rem;
  }

  .our-commitment-inner {
    flex-direction: column;
    align-items: center;
    text-align: left;
    width: 95%;
    margin: 0 auto;
  }

  .our-commitment-heading {
    font-size: 1.7rem;
    margin-bottom: 0rem;
  }

  .in-house-brand-page .hero-actions a.btn-ghost {
    display: none !important;
  }
}

