.common-banner__section {
  background-color: #FFF7ED;
  padding: clamp(40px, 5vw, 90px) 0;
}

.common-banner__section .wrapper-small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 60px);
}

.common-banner__section .entry-container {
  max-width: 535px;
  width: 100%;
}

.common-banner__section .entry-container p {
  margin: clamp(14px, 3vw, 20px) 0 0;
}

.common-banner__section .author {
  display: flex;
  align-items: center;
  margin-top: 45px;
}

.common-banner__section .author img {
  width: 57px;
  height: 57px;
  min-width: 57px;
  border-radius: 50%;
}

.common-banner__section .author>div {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.common-banner__section .author>div:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 29px;
  background-color: #B3B0AC;
  display: block;
  margin: 0 25px 0 18px;
}

.common-banner__section .author span {
  font-size: 15px;
  font-weight: 700;
  color: #785F52;
}

.common-banner__section .author p {
  margin: 0;
  font-size: 13px;
  color: #65493B;
}

.breadcrumb {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  flex-wrap: wrap;
  row-gap: 4px;
}

.breadcrumb li {
  color: #33914B;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
}

.breadcrumb li:not(:last-child)::after {
  content: url(../img/breadcrumb.svg);
  margin: 0 10px;
}

.breadcrumb li a {
  color: #99C49C;
}

.common-banner__section .featured-image {
  max-width: 614px;
}

.common-banner__section .featured-image img {
  border-radius: 12px 12px 64px;
  width: 100%;
}

.our-impact__section .how-cook-content {
  margin: 0;
}

.our-impact__section .how-cook-content .section-title {
  background-color: var(--light);
}

.our-impact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 60px;
  row-gap: 30px;
}

.our-impact-wrapper span {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 700;
  letter-spacing: -2%;
  color: #8F451D;
  display: block;
  margin-bottom: 5px;
}

.mission-vision__section {
  background-color: #FFF7ED;
}

.mission-vision__section>div:not(:last-child) {
  padding-bottom: clamp(40px, 6vw, 90px);
}

.mission-vision {
  display: flex;
  align-items: start;
  gap: clamp(30px, 3vw, 60px);
}

.mission-vision>div {
  flex: 1;
}

.mission-vision h2 {
  font-size: clamp(26px, 3vw, 40px);
  color: #3E1C0C;
  margin: 0 0 12px;
}

.mission-vision__section .uk-slider-items>div {
  margin: 0 8px;
}

.mission-vision__section .uk-slider-items img {
  border-radius: 12px;
  width: 270px;
  height: 270px;
}

.brand-philosophy__section .wrapper-xsmall {
  max-width: 980px;
}

.brand-philosophy__section .section-wrap {
  max-width: 424px;
}

.brand-philosophy-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(305px, 1fr));
  gap: 20px;
}

.brand-philosophy {
  border-radius: 20px;
  border: 1px solid #0000000D;
  padding: 20px;
  transition: var(--transition);
}

.brand-philosophy:hover {
  box-shadow:
    0px 7px 16px 0px rgba(97, 47, 0, 0.10),
    0px 29px 29px 0px rgba(97, 47, 0, 0.09),
    0px 65px 39px 0px rgba(97, 47, 0, 0.05),
    0px 116px 47px 0px rgba(97, 47, 0, 0.01),
    0px 182px 51px 0px rgba(97, 47, 0, 0);
}

.brand-philosophy:nth-child(4n+1) {
  background-color: #E0F0E4;
}

.brand-philosophy:nth-child(4n+2) {
  background-color: #EFE9E0;
}

.brand-philosophy:nth-child(4n+3) {
  background-color: #F0E2E8;
}

.brand-philosophy:nth-child(4n) {
  background-color: #E6EEF1;
}

.brand-philosophy .icon {
  width: 63px;
  height: 63px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light);
  margin-bottom: 22px;
}

.brand-philosophy .icon img {
  max-width: 36px;
  max-height: 36px;
}

.brand-philosophy h3 {
  font-size: 18px;
  color: #3E1C0C;
  margin: 0 0 12px;
}

.brand-philosophy p {
  font-size: 16px;
  color: #6F5C4D;
}

.cta-wrapper {
  background: radial-gradient(78.64% 78.64% at 78.64% 50%, #42C432 0%, #388F2D 100%);
  border-radius: 25px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(30px, 4vw, 60px) 0 clamp(60px, 9vw, 120px);
  position: relative;
}

.cta-wrapper::before,
.cta-wrapper::after {
  content: "";
  background-image: url(../img/cta-vector-1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.cta-wrapper::after {
  background-image: url(../img/cta-vector-2.png);
  background-position: right;
  left: auto;
  right: 0;
}

.cta-wrapper>div {
  position: relative;
  z-index: 1;
}

.cta-wrapper .entry-content {
  max-width: 281px
}

.cta-wrapper h2 {
  font-size: clamp(26px, 3vw, 32px);
  letter-spacing: -2%;
  color: var(--light);
  margin: 0 0 20px;
}

.cta-wrapper .icon {
  position: absolute;
  top: 50%;
  right: 42%;
  transform: translateY(-50%);
}

.chairman-wrapper {
  display: flex;
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
  max-width: 1074px;
  margin: 0 auto;
}

.chairman-wrapper>div:first-child {
  max-width: 439px;
  width: 100%;
  border-radius: 12px 12px clamp(12px, 4vw, 64px) 12px;
  overflow: hidden;
}

.chairman-wrapper>div:last-child {
  width: 100%;
}

.chairman-wrapper .featured-image img {
  width: 100%;
  height: 397px;
  object-fit: cover;
}

.chairman-wrapper .entry-content {
  background-color: #F9F2EC;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 28px 30px;
}

.chairman-wrapper .entry-content h3,
.team-member .entry-content h3 {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--primary-font);
  margin: 0 0 2px;
}

.chairman-wrapper .entry-content span,
.team-member .entry-content span {
  display: block;
  font-size: 16px;
  color: #897266;
}

.chairman-wrapper .content a,
.team-member .content a {
  color: #ED3A2D;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  margin: 20px 0 0;
}

.chairman-wrapper .entry-container h2,
.life-goldsun__section .entry-container h2 {
  font-size: clamp(26px, 3vw, 40px);
  color: #3E1C0C;
  margin: 0 0 clamp(12px, 2vw, 16px);
  letter-spacing: -2%;
}

.team-member__section .wrapper-small>div {
  max-width: 1074px;
  margin: 0 auto;
}

.team-member__section .wrapper-small>div:not(:last-child) {
  margin-bottom: clamp(40px, 6vw, 90px);
}

.team-member-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 20px;
}

.team-member {
  border-radius: 12px 12px 64px;
  overflow: hidden;
}

.team-member img {
  width: 100%;
  object-fit: cover;
  height: 334px;
}

.team-member .entry-content {
  background-color: #F9F2EC;
  padding: 20px 25px;
}

.team-member .content a {
  color: #479B5B;
  margin: 18px 0 0;
}

.life-goldsun__section .wrapper-xsmall {
  display: flex;
  align-items: center;
  gap: clamp(30px, 4vw, 55px);
}

.life-goldsun__section .featured-image {
  max-width: 439px;
  width: 100%;
}

.life-goldsun__section .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px 12px clamp(12px, 4vw, 64px) 12px;
}

.life-goldsun__section .entry-container {
  width: 100%;
}

.we-offer__section {
  background-color: #FCF1D8
}

.we-offer-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.product-banner__section {
  width: 100%;
  padding: 50px 0;
  background-color: #FFFBF5;
}

.product-banner__section .wrapper-medium {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 65px;
}

.product-banner__section .featured-image {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0) 0%, #F2C67F 100%);
  border-radius: 12px;
  padding: 80px 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  width: 55%;
}

.product-banner__section .featured-image .main-product-img {
  width: 100%;
  max-width: 364px;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-banner__section .featured-image .main-product-img:hover {
  transform: scale(1.02);
}

.product-banner__section .featured-image .thumbnails {
  display: flex;
  gap: 0.75rem;
  margin: 0 -40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
}

.product-banner__section .featured-image .thumbnails::-webkit-scrollbar {
  display: none;
}

.product-banner__section .featured-image .thumbnails .thumb {
  flex-shrink: 0;
  width: 106px;
  height: 76px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  border: 3px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
  background-color: var(--light);
}

.product-banner__section .featured-image .thumbnails .thumb:hover {
  transform: translateY(-3px);
}

.product-banner__section .featured-image .thumbnails .thumb.active {
  border-color: #33914B;
}

.product-banner__section .entry-container {
  width: 45%;
}

.product-banner__section .entry-container>div:not(:last-child) {
  margin-bottom: clamp(25px, 3vw, 40px);
}

.product-banner__section .entry-container .breadcrumb {
  margin: 0 0 10px;
}

.product-banner__section .entry-container h1 {
  margin: 0 0 14px;
}

.product-banner__section .entry-container .buy-section span {
  font-size: 18px;
  color: #513223;
  margin-bottom: 0.85rem;
  font-weight: 500;
  display: block;
}

.product-banner__section .entry-container .buy-section .buy-buttons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.product-banner__section .entry-container .buy-section .buy-buttons a {
  border: 3px solid #F8560680;
  border-radius: 37px;
  width: 82px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-banner__section .entry-container .share-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.product-banner__section .entry-container .share-row span {
  font-weight: 500;
  color: #513223;
}

.product-banner__section .featured-image .thumbnails-slider {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.product-banner__section .featured-image .thumbnails-slider .slide-btn {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--deep-brown);
  box-shadow: 0 2px 8px rgba(46, 26, 14, 0.12);
  padding: 0;
}

.product-banner__section .featured-image .thumbnails-slider .slide-btn:hover,
.product-banner__section .featured-image .thumbnails-slider .slide-btn:focus {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.product-banner__section .featured-image .thumbnails-slider .slide-btn:disabled {
  opacity: 0;
}

.product-filter__section ul.tabs {
  background-color: #FCF1D8;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 10px;
  padding: 20px;
  margin: 0;
}

.product-filter__section ul.tabs li {
  border: 1px solid #3E1C0C4D;
  border-radius: 42px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
  color: #3E1C0C;
  text-transform: uppercase;
  cursor: pointer;
}

.product-filter__section ul.tabs li.active {
  background-color: #33914B;
  border-color: #33914B;
  color: var(--light);
}

.product-filter__section .tab-wrapper {
  max-width: 952px;
  margin: 0 auto;
  padding-top: clamp(30px, 4vw, 60px);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.related-product__section {
  background-color: #FFFAF4;
}

.related-product-wrapper {
  max-width: 987px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  padding-top: 15px;
}

.product-card {
  box-shadow: 0px 5px 0px 0px #3E1C0C;
  border-radius: 12px;
  text-align: center;
  padding: 0 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: clamp(15px, 3vw, 30px);
  height: 372px;
}

.product-card:nth-child(3n+1) {
  background: linear-gradient(355.42deg, #C5EDFF 0.94%, #D8F3FF 93.52%);
}

.product-card:nth-child(3n+2) {
  background: linear-gradient(355.42deg, #FFC8C7 4.26%, #FFE8E8 96.85%);
}

.product-card:nth-child(3n) {
  background: linear-gradient(176.13deg, #E3FFE0 2.77%, #D4FFD2 96.43%);
}

.product-card img {
  transition: var(--transition);
}

.product-card:hover img {
  transform: scale(1.1);
}

.page-template-template-product-single-php .faqs__section,
body.single .faqs__section {
  background-color: #FFFAF4;
  padding-top: 20px;
}

.page-template-template-product-single-php .site-footer,
body.single .site-footer {
  background-color: #FFFAF4;
}

.single-blog__section .wrapper-xsmall {
  display: flex;
  align-items: start;
  gap: 35px;
}

.content__area #ez-toc-container {
  display: none;
}

.signle-blog-wrapper {
  width: 100%;
}

.single-blog__section .sidebar {
  max-width: 361px;
  width: 100%;
}

.sidebar>#ez-toc-container a.ez-toc-toggle {
  display: none;
}

.sidebar>#ez-toc-container {
  background-color: #FAF7EF;
  border: 1px solid #0000001A;
  border-radius: 12px;
  padding: 30px 25px;
}

.sidebar>#ez-toc-container .ez-toc-title {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--secondary-font);
  color: #513223;
  margin-bottom: 10px;
  display: block;
}

.sidebar>#ez-toc-container a {
  font-size: 15px;
  font-weight: 500;
  color: #765E50;
}

.sidebar>#ez-toc-container ul li {
  line-height: 1.3;
  position: relative;
}

.sidebar>#ez-toc-container ul li::before {
  content: url(../img/arrow.svg);
}

.sidebar>#ez-toc-container ul li:not(:last-child) {
  margin-bottom: 6px;
}

.ez-toc-counter nav ul li a::before {
  display: none;
}

@media (max-width: 1200px) {
  .mission-vision__section .uk-slider-items img {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 1100px) {
  .our-impact-wrapper {
    padding: 0 !important;
  }
}

@media (max-width: 767px) {

  .common-banner__section .featured-image,
  .cta-wrapper .icon {
    display: none;
  }

  .mission-vision__section .uk-slider-items img {
    width: 160px;
    height: 160px;
  }

  .chairman-wrapper {
    flex-direction: column;
    align-items: start;
  }

  .product-banner__section .wrapper-medium {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .life-goldsun__section .wrapper-xsmall {
    flex-direction: column;
  }

  .life-goldsun__section .featured-image {
    max-width: 100%;
  }
}

@media (max-width: 567px) {

  .mission-vision,
  .cta-wrapper {
    flex-direction: column;
  }

  .cta-wrapper {
    padding: 35px 35px 0;
    text-align: center;
  }

  .cta-wrapper .secondary-btn {
    margin: 0 auto;
  }

  .mission-vision h2 {
    margin: 0 0 8px;
  }

  .chairman-wrapper .entry-content {
    padding: 20px 25px;
  }
}