h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 1rem;
}
.section-subtitle,
.section-title {
    display: inline-block;
    position: relative;
}
.header__shop-bag,
.position-relative,
.section-subtitle,
.section-title {
    position: relative;
}
.header__nav-link:after,
.section-subtitle:before,
.section-title:after {
    left: 0;
    background: var(--primary-color);
    content: "";
}
.btn:hover:before,
.container,
.header,
.header__nav-link.active:after,
.header__nav-link:hover:after,
.w-100 {
    width: 100%;
}
.header__nav-link.active,
.header__nav-link:hover,
.header__phone-number a,
.menu-toggle:hover,
.mobile-menu__link.active,
.mobile-menu__link:hover,
.section-subtitle {
    color: var(--primary-color);
}
.header__submenu,
.list-unstyled,
.mobile-menu__list li,
.mobile-submenu {
    list-style: none;
}
.farming .section-description,
.farming .section-subtitle,
.farming .section-title,
.farming__feature-description,
.farming__feature-title,
.header__nav-link,
body {
    font-family: Poppins, sans-serif;
}
:root {
    --primary-color: #008f4f;
    --primary-hover: #00a85c;
    --secondary-color: #b22d30;
    --text-dark: #1a1a1a;
    --text-medium: #4d4c41;
    --text-light: #73705f;
    --text-white: #ffffff;
    --bg-light: #f5ede3;
    --border-radius: 12px;
    --box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
}
a {
    text-decoration: none;
    transition: var(--transition);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-subtitle {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding-left: 20px;
}
.section-subtitle:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.section-title {
    font-size: 2.5rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.section-title:after {
    position: absolute;
    bottom: -10px;
    width: 60px;
    height: 4px;
    border-radius: 2px;
}
.section-title.center {
    display: block;
    text-align: center;
}
.section-title.center:after {
    left: 50%;
    transform: translateX(-50%);
}
.category-card:hover .category-card__image,
.product-card:hover .product-card__image {
    transform: scale(1.1);
}
.section-description {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}
.text-center {
    text-align: center;
}
.text-start {
    text-align: left;
}
.text-end {
    text-align: right;
}
.btn,
.category-card__title,
.feature-card,
.process-step,
.stat-card,
.video-section__content {
    text-align: center;
}
.mb-0 {
    margin-bottom: 0;
}
.mt-0 {
    margin-top: 0;
}
.h-100 {
    height: 100%;
}
.d-flex,
.header__nav {
    display: flex;
}
.justify-content-center {
    justify-content: center;
}
.justify-content-between {
    justify-content: space-between;
}
.align-items-center {
    align-items: center;
}
.flex-column {
    flex-direction: column;
}
.position-absolute {
    position: absolute;
}
.body--locked,
.overflow-hidden {
    overflow: hidden;
}
.object-fit-cover {
    object-fit: cover;
}
.list-unstyled {
    padding-left: 0;
}
.section-padding {
    padding: 100px 0;
}
body .custom-logo {
    height: 60px;
    width: 175px;
}
@media (max-width: 767px) {
    body .custom-logo {
        height: 70px;
    }
}
.header__contact-inner img {
    width: 40px;
    height: auto;
    animation: 2s infinite pulse;
    transition: transform 0.3s;
}
@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
.header__contact-inner img:hover {
    transform: scale(1.08);
}
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}
.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.header__logo img {
    max-width: 180px;
    transition: 0.3s;
}
.header.scrolled .header__logo img {
    max-width: 198px;
}
.header__nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.header__nav-item {
    list-style: none;
    position: relative;
}
.header__nav-link {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}
.header__nav-link:after {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    transition: width 0.3s;
}
.header__contact {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header__contact-inner {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header__phone-text {
    color: #343131;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.375px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.header__phone-number a {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}
.header__phone-number a:hover {
    color: var(--primary-hover);
}
.header__shop-bag-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-color);
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}
.menu-toggle {
    font-size: 24px;
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 0 10px;
    z-index: 1001;
    position: relative;
    color: var(--text-dark);
    transition: var(--transition);
    display: none;
}
.header__submenu,
.mobile-menu {
    background: #fff;
    z-index: 1000;
    left: 0;
}
.menu-toggle--close {
    position: fixed;
    top: 15px;
    right: 15px;
    font-size: 30px;
    display: none;
}
@media (max-width: 1199px) {
    .menu-toggle--open {
        display: block;
    }
    .header__contact-inner,
    .header__nav {
        display: none;
    }
}
.menu-toggle--close.menu-toggle--active {
    display: inline-block;
}
.menu-toggle--open.menu-toggle--hidden {
    display: none;
}
.mobile-menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    padding: 30px;
    overflow-y: auto;
    transform: translateX(100%);
}
.mobile-menu--active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.mobile-menu__list {
    padding: 0;
}
.mobile-menu__item {
    border-bottom: 1px solid #eee;
    padding: 7px 0;
}
.mobile-menu__link {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 2px 0;
    transition: var(--transition);
}
.mobile-menu__link:hover {
    padding-left: 10px;
}
.mobile-menu__link-icon {
    width: 20px;
    height: 20px;
}
.header__submenu {
    display: none;
    position: absolute;
    top: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 10px 0;
    min-width: 200px;
}
.header__submenu-item {
    padding: 0;
}
.header__submenu-link {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
}
.btn,
.category-card,
.feature-card,
.hero-slider__partner-logo,
.swiper-pagination-bullet,
.whatsapp-chat {
    transition: var(--transition);
}
.btn--primary,
.header__submenu-link:hover {
    background: var(--primary-color);
    color: #fff;
}
.header__nav-item--has-submenu:hover .header__submenu,
.mobile-menu__item--has-submenu.active .mobile-submenu {
    display: block;
}
.mobile-submenu__item {
    border-bottom: 1px solid #eee;
    font-size: 15px;
}
.mobile-submenu {
    display: none;
    margin: 0;
    padding: 0 0 0 15px;
}
.mobile-menu__item--has-submenu > a:after {
    content: " ▼";
    font-size: 12px;
}
.mobile-submenu__link {
    display: block;
    padding: 5px 0;
    color: var(--text-dark);
    text-decoration: none;
}
.hero-slider {
    width: 100%;
    height: 10vh;
    min-height: 620px;
    max-height: 900px;
    position: relative;
}
.hero-slider__slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.hero-slider__slide:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0, rgba(0, 0, 0, 0.2) 100%);
}
.hero-slider__content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 0;
}
.hero-slider__tag {
    display: inline-block;
    padding: 8px 25px;
    border-radius: 50px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: 0.8s fadeInDown;
}
.hero-slider__title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: 0.8s fadeInUp;
}
.hero-slider__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 600px;
    animation: 0.8s 0.2s forwards fadeInUp;
    opacity: 0;
}
.hero-slider__buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: 0.8s 0.4s forwards fadeInUp;
    opacity: 0;
}
.hero-slider__partners {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
    animation: 0.8s 0.6s forwards fadeInUp;
    opacity: 0;
}
.hero-slider__partner-logo {
    height: 40px;
    opacity: 0.8;
}
.hero-slider__partner-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
}
.btn--outline:hover,
.btn--primary:hover,
.btn--secondary:hover,
.btn--white:hover {
    transform: translateY(-3px);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    gap: 8px;
}
.btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    z-index: -1;
}
.btn--primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 10px 20px rgba(0, 168, 92, 0.3);
}
.btn--outline {
    border: 2px solid #fff;
    background: 0 0;
    color: #fff;
}
.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}
.btn--secondary {
    background: var(--secondary-color);
    color: #fff;
}
.btn--white,
.whatsapp-chat__dot,
.whatsapp-chat__title {
    color: var(--primary-color);
}
.btn--secondary:hover {
    background: #c23535;
    box-shadow: 0 10px 20px rgba(194, 53, 53, 0.3);
}
.btn--white {
    background: #fff;
}
.btn--white:hover {
    background: #f5f5f5;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}
.btn-icon {
    width: 18px;
    height: 18px;
}
.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    opacity: 1;
    margin: 0 8px !important;
}
.swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
    transform: scale(1.3);
    width: 30px !important;
    border-radius: 10px !important;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 50px !important;
}
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #fff;
    padding: 5px 17px;
    border-radius: 50px;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: 2s infinite pulse;
}
.about__image,
.category-card,
.feature-card {
    border-radius: var(--border-radius);
}
.whatsapp-chat:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: none;
}
.whatsapp-chat__dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
}
.whatsapp-chat__dot {
    display: inline-block;
    font-size: 20px;
    line-height: 1;
}
.whatsapp-chat__title {
    font-size: 16px;
    font-weight: 700;
}
.whatsapp-chat__subtitle {
    color: #343131;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.about__subtitle,
.about__title span,
.product-card__title a {
    color: var(--primary-color);
}
.whatsapp-chat__dot:first-child {
    animation: 1.4s 0.2s infinite blink;
}
.whatsapp-chat__dot:nth-child(2) {
    animation: 1.4s 0.4s infinite blink;
}
.whatsapp-chat__dot:nth-child(3) {
    animation: 1s ease-in-out infinite bounce;
}
@keyframes blink {
    0%,
    100%,
    80% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}
@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}
.about,
.testimonials,
.why-choose-us {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}
.about__content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}
.about__content {
    flex: 1;
}
.about__icon {
    margin-bottom: 20px;
    animation: 0.8s fadeInLeft;
}
.about__subtitle {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    animation: 0.8s 0.2s forwards fadeInLeft;
    opacity: 0;
    position: relative;
    padding-left: 20px;
}
.about__text,
.about__title {
    margin-bottom: 25px;
    opacity: 0;
}
.about__subtitle:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
}
.about__title {
    color: var(--text-medium);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    animation: 0.8s 0.4s forwards fadeInLeft;
}
.about__text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    animation: 0.8s 0.6s forwards fadeInLeft;
}
.about__image {
    flex: 1;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
    animation: 0.8s fadeInRight;
}
.about__image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}
.slider-navigation__button img,
.testimonial-card__rating img {
    width: 20px;
    height: 20px;
}
.about__image:hover img {
    transform: scale(1.05);
}
.about__image-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0) 100%);
    color: #fff;
}
.about__image-quote {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.about__image-translation {
    font-size: 1.1rem;
    opacity: 0.9;
}
.about__features {
    margin: 40px 0;
}
.feature-card {
    display: flex;
    padding: 30px 20px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: #fff;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.benefit-card:hover,
.category-card:hover,
.feature-card:hover,
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.feature-card--natural {
    background-color: #e9ffd5 !important;
}
.feature-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 143, 79, 0.1);
    border-radius: 50%;
    padding: 15px;
}
.category-card,
.product-card {
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    overflow: hidden;
}
.feature-card__title {
    color: var(--text-medium);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}
.feature-card__description,
.product-card__description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
.categories,
.faq {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}
.category-card {
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: #fff;
    cursor: pointer;
    height: 100%;
    padding: 30px 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.category-card__image {
    width: 150px;
    height: 120px;
    object-fit: contain;
    transition: transform 0.5s;
}
.category-card__title {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
}
.products {
    position: relative;
    background-color: var(--bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}
.product-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.product-card__image-wrapper {
    padding: 30px;
    background: #f9f9f9;
    text-align: center;
    position: relative;
}
.product-card__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}
.product-card__image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    transition: transform 0.5s;
    margin: 0 auto;
}
.product-card__content {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    flex-grow: 1;
}
.product-card__title a {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}
.product-card__footer {
    display: flex;
    padding: 0 20px 20px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: auto;
}
.certifications__button,
.product-card__button {
    justify-content: center;
    transition: var(--transition);
}
.product-card__price {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}
.product-card__price--old {
    color: #999;
    font-size: 1rem;
    text-decoration-line: line-through;
    margin-left: 5px;
}
.product-card__button {
    border-radius: 50px;
    background: var(--primary-color);
    display: flex;
    padding: 10px 20px;
    align-items: center;
    gap: 8px;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.cta__title span,
.slider-navigation__button {
    color: var(--primary-color);
}
.product-card__button:hover {
    background: var(--primary-hover);
    box-shadow: 0 5px 15px rgba(0, 143, 79, 0.3);
    transform: translateY(-3px);
}
.product-card__button-icon {
    width: 16px;
    height: 16px;
}
.certifications {
    position: relative;
    background: #f9f9f9;
}
.certifications-slider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}
.certifications-slide {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    background: 0 0;
}
.certifications-slide__image {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}
.certifications-slide__image:hover {
    transform: translateY(-5px);
}
.certifications__button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 30px;
    display: inline-flex;
    align-items: center;
    z-index: 2;
}
.certifications__button:hover {
    background: var(--primary-color);
}
.certifications__button:hover .certifications__button-link,
.footer-social-link:hover,
.footer-social-links .social-link:hover i {
    color: #fff;
}
.certifications__button-link {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}
.slider-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}
.slider-navigation__button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}
.slider-navigation__button:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}
.slider-navigation__button--active {
    background-color: var(--primary-color);
    color: #fff;
}
.testimonial-card {
    background-color: #fff;
    display: flex;
    padding: 30px;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
    border-radius: var(--border-radius);
    height: 100%;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.testimonial-card__rating {
    margin-bottom: 15px;
}
.testimonial-card__content {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}
.testimonial-card__author-name,
.testimonial-card__highlight {
    color: var(--text-dark);
    font-weight: 600;
}
.testimonial-card__author {
    width: 100%;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
}
.testimonial-card__author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-card__author-name {
    font-size: 1.1rem;
    margin: 0;
}
.testimonial-card__author-title {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}
.instagram {
    position: relative;
    background: #fff;
}
.instagram-post {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    aspect-ratio: 1/1;
}
.instagram-post__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.benefit-card,
.faq-item__header,
.faq-item__icon,
.instagram-post__overlay,
.video-section__play-button {
    transition: var(--transition);
}
.instagram-post:hover .instagram-post__image {
    transform: scale(1.1);
}
.instagram-post__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 143, 79, 0.8);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta,
.cta__content,
.footer,
.footer__title,
.process-step,
.process-step__number,
.stat-card,
.stats,
.video-section {
    position: relative;
}
.instagram-post:hover .instagram-post__overlay {
    opacity: 1;
}
.instagram-post__icon,
.video-section__play-icon {
    width: 30px;
    height: 30px;
}
.cta {
    width: 100%;
    padding: 150px 0;
    background:
        linear-gradient(90deg, #fff 0, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.5) 100%) 0 0 / cover,
        url("./img/live_healthily.png") center center/cover no-repeat;
}
.cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}
.cta__content {
    z-index: 2;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.cta__title {
    color: var(--text-medium);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}
.cta__description {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 0 25px;
}
.stats {
    padding: 80px 0;
    background: var(--primary-color);
    color: #fff;
    overflow: hidden;
}
.stats:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("./img/pattern.png");
    opacity: 0.1;
}
.stat-card {
    padding: 30px 20px;
    z-index: 1;
}
.stat-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}
.stat-card__number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}
.process-step__icon,
.process-step__number {
    height: 60px;
    margin: 0 auto 20px;
    width: 60px;
}
.stat-card__title {
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.9;
}
.process {
    padding: 80px 0;
    background: #fff;
}
.process-step {
    padding: 0 20px;
}
.process-step__number {
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
}
.process-step:not(:last-child):after {
    content: "";
    position: absolute;
    top: 30px;
    left: calc(50% + 30px);
    width: calc(100% - 60px);
    height: 2px;
    background: var(--primary-color);
    opacity: 0.3;
}
.benefit-card__title,
.process-step__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}
.benefit-card__description,
.process-step__description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}
.benefit-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.faq-item,
.social-link {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.benefit-card__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 143, 79, 0.1);
    border-radius: 50%;
}
.video-section {
    padding: 100px 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)) 0 0 / cover,
        url("./img/video-bg.jpg") center center/cover no-repeat;
    color: #fff;
}
.video-section__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.video-section__play-button {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    cursor: pointer;
}
.video-section__play-button:hover {
    transform: scale(1.1);
    background: var(--primary-hover);
}
.video-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}
.video-section__description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}
.faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.faq-item__header {
    padding: 20px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item__header:hover {
    background: #f9f9f9;
}
.faq-item__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}
.faq-item__text,
.footer__info-text {
    color: var(--text-light);
    font-size: 1rem;
}
.faq-item__icon {
    width: 20px;
    height: 20px;
}
.faq-item__content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    background: #fff;
}
.faq-item__text {
    line-height: 1.6;
    padding-bottom: 20px;
}
.faq-item--active .faq-item__content {
    max-height: 500px;
}
.faq-item--active .faq-item__icon {
    transform: rotate(180deg);
}
.footer {
    padding: 80px 0 40px;
    background: #f9f9f9;
}
.footer-social-links .social-link i {
    color: #000;
}
.footer__info {
    max-width: 400px;
}
.footer__info-text {
    line-height: 1.8;
    margin: 20px 0 30px;
}
.footer__title {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
}
.footer__title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}
.footer__list-item {
    margin-bottom: 12px;
}
.footer__list-link {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    transition: var(--transition);
    display: inline-block;
}
.footer-social-link,
.footer__button-link,
.footer__contact-link:hover,
.footer__list-link:hover {
    color: var(--primary-color);
}
.footer-social-link {
    font-size: 20px;
    transition: color 0.3s;
}
.footer__button,
.footer__button-link,
.footer__contact-link {
    transition: var(--transition);
}
.footer__list-link:hover {
    transform: translateX(5px);
}
.footer__button {
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    background: rgba(0, 143, 79, 0.1);
    padding: 8px 15px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
}
.footer__button:hover,
.newsletter {
    background: var(--primary-color);
}
.footer__button:hover .footer__button-link,
.research-image__badge-icon i {
    color: #fff;
}
.footer__button-link {
    font-size: 0.9rem;
    font-weight: 500;
}
.footer__contact-link,
.footer__contact-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}
.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
}
.footer__contact-icon {
    width: 20px;
    height: 20px;
    margin-top: 3px;
}
.footer__contact-text {
    margin: 0;
}
.footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}
.footer__badge {
    height: 40px;
}
.newsletter {
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}
.newsletter__button,
.social-link {
    background: #fff;
    transition: var(--transition);
}
.newsletter__title {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}
.copyright__link:hover,
.newsletter__button {
    color: var(--primary-color);
}
.newsletter__form {
    display: flex;
    gap: 10px;
}
.newsletter__input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
}
.newsletter__input:focus {
    outline: 0;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}
.newsletter__button {
    border: none;
    border-radius: 50px;
    padding: 0 25px;
    font-weight: 600;
    cursor: pointer;
}
.newsletter__button:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
}
.social-links {
    display: flex;
    gap: 15px;
    margin: 10px 0;
}
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}
.social-link:hover img {
    filter: brightness(0) invert(1);
}
.social-link img {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}
.copyright {
    padding: 10px 0;
    background: #f0f0f0;
}
.copyright__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.copyright__text {
    color: var(--text-light);
    font-size: 0.9rem;
}
.copyright__link {
    color: var(--text-light);
    transition: var(--transition);
}
.copyright__payments {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.copyright__payment {
    height: 25px;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@media (max-width: 1920px) {
    .container {
       max-width: 95% !important;
    }
}
@media (max-width: 1600px) {
    .container {
         max-width: 95% !important;
    }
}
@media (max-width: 1200px) {
	.container {
         max-width: 95% !important;
    }
    .section-padding {
        padding: 80px 0;
    }
    .hero-slider__title {
        font-size: 3rem;
    }
    .about__content-wrapper {
        gap: 30px;
    }
    .section-title {
        font-size: 2.2rem;
    }
}
@media (max-width: 992px) {
    .section-padding {
        padding: 60px 0;
    }
    .section-title,
    .video-section__title {
        font-size: 2rem;
    }
    .hero-slider {
        min-height: 550px !important;
    }
    .hero-slider__title {
        font-size: 2.5rem;
    }
    .hero-slider__description {
        font-size: 1.1rem;
    }
    .about__content-wrapper {
        flex-direction: column;
    }
    .about__content {
        order: 1;
    }
    .about__image {
        order: 2;
    }
    .process-step:not(:last-child):after {
        display: none;
    }
    .footer__col {
        margin-bottom: 40px;
    }
}
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    .section-title,
    .video-section__title {
        font-size: 1.8rem;
    }
    .hero-slider {
        min-height: 600px !important;
    }
    .hero-slider__title {
        font-size: 2rem;
    }
    .hero-slider__buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-slider__partners {
        justify-content: center;
    }
    .btn {
        width: 100%;
    }
    .certifications-slide {
        flex-direction: column;
        gap: 20px;
    }
    .certifications__button {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: 20px;
    }
    .cta {
        padding: 100px 0;
    }
    .cta__content {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
    .newsletter__form {
        flex-direction: column;
    }
    .video-section__description {
        font-size: 1rem;
    }
}
@media (max-width: 576px) {
    .section-title {
        font-size: 1.6rem;
    }
    .hero-slider {
        min-height: 450px;
    }
    .hero-slider__title {
        font-size: 1.8rem;
    }
    .hero-slider__tag {
        font-size: 14px;
    }
    .header__logo img {
        max-width: 120px;
        height: 50px;
    }
    .mobile-menu {
        padding: 20px 20px 30px;
    }
    .whatsapp-chat {
        bottom: 25px;
        right: 15px;
        padding: 5px 10px;
        gap: 0;
    }
    .whatsapp-chat__subtitle,
    .whatsapp-chat__title {
        display: none;
    }
    .copyright__inner {
        flex-direction: column;
        text-align: center;
    }
    .stat-card__number {
        font-size: 2.5rem;
    }
    .stat-card__title {
        font-size: 1rem;
    }
    .video-section__title {
        font-size: 1.5rem;
    }
}
@media (max-width: 400px) {
    .section-title {
        font-size: 1.4rem;
    }
    .hero-slider__title {
        font-size: 1.5rem;
    }
    .hero-slider__description {
        font-size: 1rem;
    }
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    .section-subtitle {
        font-size: 0.9rem;
    }
}
.visit-locations .btn img {
    width: 20px;
}
.farming.section-padding {
    background-color: #f8f9fa;
    padding: 80px 0;
}
.farming .section-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #28a745;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.farming .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}
.farming .section-title span {
    color: #28a745;
}
.farming .section-description {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}
.farming__content .row {
    align-items: flex-start;
    min-height: 600px;
}
.farming__feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.farming__feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.farming__feature-icon {
    flex: 0 0 60px;
    margin-right: 20px;
}
.farming__feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.farming__feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}
.farming__feature-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}
.farming__image-sticky {
    position: sticky;
    top: 20px;
    z-index: 1;
}
.farming__image-sticky .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.farming__image-sticky:hover .img-fluid {
    transform: scale(1.03);
}
@media (max-width: 992px) {
    .farming.section-padding {
        padding: 60px 0;
    }
    .farming .section-title {
        font-size: 30px;
    }
    .farming__content .row {
        min-height: auto;
    }
    .farming__feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .farming__feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .farming__image-sticky {
        position: static;
        margin-bottom: 30px;
    }
}
@media (max-width: 576px) {
    .farming .section-title {
        font-size: 24px;
    }
    .farming .section-subtitle {
        font-size: 16px;
    }
    .farming .section-description {
        font-size: 14px;
    }
    .farming__feature {
        padding: 15px;
    }
    .farming__feature-title {
        font-size: 18px;
    }
    .farming__feature-description {
        font-size: 14px;
    }
}
.testimonial-card__rating i {
    color: gold;
}
.footer-certifications {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 2fr));
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    padding-bottom: 30px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}
.footer-certifications img {
    max-width: 110px;
    width: 100%;
    max-height: 60px;
    height: auto;
    object-fit: contain;
}
.footer-certifications img:hover {
    transform: scale(1.15);
    transition: transform 0.3s;
}
@media (max-width: 991px) {
    .why-choose-us .row {
        gap: 25px 0;
    }
    .certifications-slider {
        padding: 0;
    }
}
.home .product-card__image-wrapper img {
    object-fit: contain;
}
.certifications-slider img {
    max-height: 500px !important;
    height: 500px;
}
.home .added_to_cart.wc-forward {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 8px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.home .added_to_cart.wc-forward:hover {
    background-color: var(--primary-hover);
    color: var(--text-white);
    text-decoration: none;
}
