:root {
    --header-maroon: #7d1616;
    --primary-color: #7d1616;
    --header-maroon-dark: #6a1010;
    --header-green: #14a95b;
    --header-brown: #7a2d22;
    --header-text: #111111;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* =========================
TOP HEADER
========================= */

.site-header__top {
    background: linear-gradient(
        180deg,
        #42191b 0%,
        #42191b 100%
    );
    padding: 10px;
}

/* .site-header__top-inner rules intentionally removed to avoid empty ruleset warning */

.site-header__social .social-icon {
    width: 25px;
    height: 25px;
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    text-decoration: none;
}
.site-header__social .social-icon i {
    font-size: 14px;
}

.site-header__social .social-icon:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

/* =========================
   MAIN HEADER
========================= */

.site-header__main {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    position: relative;
    overflow: visible;
}

.site-header__main.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1900;
}

.site-header__main-inner {
    /* min-height: 110px; */
    padding: 14px 40px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: visible;
}

/* =========================
   BRAND
========================= */

.brand {
    position: relative;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 2vw, 3rem);
    line-height: 1;
    white-space: nowrap;
}

.brand__yoog {
    color: var(--header-green);
}

.brand__nutrition {
    color: var(--header-brown);
}

.brand__mark {
    font-size: 0.3em;
    color: #666;
    top: 0;
}

/* =========================
   NAVIGATION
========================= */

.navbar-nav {
    gap: 24px;
}

.nav-link {
    color: var(--header-text) !important;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 8px 0 !important;
    transition: 0.3s ease;
}

.nav-link:hover {
    color: var(--header-maroon) !important;
}

.navbar-toggler i {
    font-size: 1.5rem;
    color: var(--header-maroon);
}

/* =========================
   DROPDOWN MENU
========================= */

.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    min-width: 220px;
    position: absolute;
    /* top: calc(100% + 8px); */
    left: 0;
    display: none !important;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    visibility: hidden;
    z-index: 1000;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
}

.dropdown-menu .dropdown-item {
    color: var(--header-text);
    font-size: 0.95rem;
    padding: 10px 18px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: block;
}

.dropdown-menu .dropdown-item:hover {
    background: rgba(125, 22, 22, 0.06);
    color: var(--header-maroon);
    padding-left: 22px;
}

.dropdown-toggle::after {
    transition: transform 0.2s ease;
}

.nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.desktop-nav .navbar-nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 24px;
}

.desktop-nav{
    min-width: 0;
    width: 100%;
    justify-self: center;
}

.desktop-nav .nav-item.dropdown{
    position: relative;
}

.desktop-nav .dropdown-menu{
    position: absolute !important;
    /* top: calc(100% + 12px) !important; */
    left: 0 !important;
    transform: none !important;
    margin: 0 !important;
    min-width: 220px;
    z-index: 2001;
}

/* Hide Bootstrap's default caret for desktop dropdowns (we use a custom icon) */
.desktop-nav .nav-link.dropdown-toggle::after {
    display: none !important;
}

.header-actions{
    flex: 0 0 auto;
    gap: 14px;
}

.header-action-link{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--header-maroon);
    background: #fff;
    border: 1px solid rgba(125, 22, 22, 0.14);
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
    text-decoration: none;
}

.header-action-link i{
    font-size: 1rem;
}

.header-menu-toggle{
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 10px;
    background: #fff;
    color: var(--header-maroon);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,.08);
}

.header-menu-toggle i{
    font-size: 1.4rem;
}

.header-mobile-menu{
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    visibility: hidden;
}

.header-mobile-menu.is-open{
    pointer-events: auto;
    visibility: visible;
}

.header-mobile-menu__backdrop{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    transition: opacity .25s ease;
}

.header-mobile-menu.is-open .header-mobile-menu__backdrop{
    opacity: 1;
}

.header-mobile-menu__panel{
    position: absolute;
    top: 0;
    right: 0;
    width: min(84vw, 340px);
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform .28s ease;
    box-shadow: -8px 0 28px rgba(0,0,0,.18);
    display: flex;
    flex-direction: column;
}

.header-mobile-menu.is-open .header-mobile-menu__panel{
    transform: translateX(0);
}

.header-mobile-menu__top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 14px;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.header-mobile-menu__top h5{
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.header-mobile-menu__close{
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f3f3f3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-mobile-menu__nav{
    list-style: none;
    margin: 0;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.header-mobile-menu__item{
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.header-mobile-menu__item:last-child{
    border-bottom: 0;
    padding-bottom: 0;
}

.header-mobile-menu__heading{
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    padding: 0;
    text-align: left;
}

.header-mobile-menu__toggle{
    justify-content: space-between;
}

.header-mobile-menu__toggle span{
    flex: 1 1 auto;
}

.header-mobile-menu__link{
    color: #222;
    text-decoration: none;
    font-size: 15px;
    padding: 2px 0;
}

.header-mobile-menu__toggle.header-mobile-menu__link{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 2px 0;
    text-transform: none;
    font-weight: 500;
    color: #222;
}

.header-mobile-menu__link:hover{
    color: var(--header-maroon);
}

.header-mobile-menu__chevron{
    transition: transform .2s ease;
    font-size: 13px;
}

.header-mobile-menu__heading.is-open .header-mobile-menu__chevron{
    transform: rotate(180deg);
}

.header-mobile-menu__submenu{
    display: none;
    padding-left: 12px;
    margin-top: 4px;
    flex-direction: column;
    gap: 10px;
}

.header-mobile-menu__submenu.is-open{
    display: flex;
}

.header-mobile-menu__submenu .header-mobile-menu__link{
    font-size: 14px;
    padding: 0;
    color: #444;
}

body.header-menu-open{
    overflow: hidden;
}

@media (min-width: 992px) {
    .header-menu-toggle,
    .header-mobile-menu {
        display: none !important;
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .site-header__main-inner {
        padding: 18px 0;
        align-items: center !important;
        display: flex;
        justify-content: space-between;
    }

    .navbar-collapse {
        margin-top: 20px;
        width: 100%;
    }

    .navbar-nav {
        gap: 10px;
    }

    .nav-link {
        padding: 6px 0 !important;
    }

    .site-header__main-inner{
        gap: 16px;
    }

    .desktop-nav{
        display: none !important;
    }

    .header-actions{
        display: none !important;
    }
}

/* =========================
   FOOTER
========================= */

.site-footer {
    /* background: #202020; */
    background: #42191b;
    /* color: rgba(255, 255, 255, 0.72); */
    /* color: #fff; */
}

.site-container {
    width: min(calc(100% - 32px), 1360px);
    margin: 0 auto;
}

.site-footer__inner {
    padding: 34px 0 0;
}

.site-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.site-footer__link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.98rem;
    transition: color 0.2s ease;
    text-decoration: none;
}

.site-footer__link:hover {
    color: #ffffff;
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon--muted {
    border-color: rgba(255, 255, 255, 0.42);
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    margin: 18px 0 0;
}

.site-footer__content {
    padding: 34px 0 56px;
}

.site-footer__heading-block {
    margin-bottom: 26px;
}

.site-footer__heading {
    margin: 0;
    font-size: clamp(1.8rem, 2.4vw, 2.4rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.62);
}

.site-footer__accent {
    display: block;
    width: 64px;
    height: 1px;
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.55);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(260px, 1fr);
    gap: 30px 48px;
}

.footer-block__title {
    margin: 0 0 12px;
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.58);
}

.footer-contact__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    text-decoration: none;
}

.footer-contact__item:hover {
    color: #ffffff;
}

.footer-contact__item--address {
    margin: 0;
}

.footer-contact__icon {
    width: 34px;
    min-width: 34px;
    height: 34px;
    border-radius: 6px;
    background: #ECE5D3;
    color: #42191b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-top: 2px;
}

.footer-policies {
    display: flex;
    flex-direction: column;
}

.footer-policy-link {
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: color 0.2s ease;
}

.footer-policy-link:last-child {
    border-bottom: 0;
}

.footer-policy-link:hover {
    color: #ffffff;
}

.site-footer__bar {
    background: #42191b;
}

.site-footer__bar-inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #ffffff;
}

.site-footer__copyright a{
    color: #f5f5f5;
    text-decoration: none;
}

.site-footer__policy,
.site-footer__copyright {
    margin: 0;
    color: inherit;
    font-size: 1rem;
    text-decoration: none;
}

@media (max-width: 1200px) {
    .site-footer__top,
    .site-footer__bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .site-footer__inner {
        padding-top: 24px;
    }

    .site-footer__top {
        flex-direction: column;
        align-items: center;
        gap: 0px;
    }

    .site-footer__nav {
        gap: 14px 18px;
        justify-content: center;
    }

    .site-footer__link {
        text-align: center;
        font-size: 0.95rem;
    }

    .site-footer__social {
        justify-content: center;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__heading {
        text-align: center;
    }

    .site-footer__accent {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-policies {
        padding: 12px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-policy-link {
        text-align: center;
        border-bottom-color: rgba(255, 255, 255, 0.12);
        padding: 8px 0;
        width: 100%;
        max-width: 360px;
    }

    .site-footer__content {
        padding-bottom: 42px;
    }

    .footer-contact__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
        margin-top: 12px;
    }

    .footer-contact__icon {
        margin-top: 0;
    }

    .site-footer__bar-inner {
        min-height: auto;
        padding: 12px 0;
        flex-direction: column;
        gap: 6px;
        align-items: center;
    }

    .site-footer__copyright,
    .site-footer__policy {
        font-size: 0.95rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .site-footer__heading {
        font-size: 1.25rem;
    }

    .site-footer__link {
        font-size: 0.9rem;
    }

    .footer-policy-link {
        padding: 6px 0;
    }

    .footer-contact__item {
        gap: 6px;
    }
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
    position: relative;
    overflow: hidden;
    height: 85vh;
    min-height: 500px;
}

.heroBgSlider {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.heroBgSlider .swiper-wrapper,
.heroBgSlider .swiper-slide {
    height: 100%;
    width: 100%;
}

.heroBgSlider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.64) 40%, rgba(255, 255, 255, 0.18) 100%); */
    z-index: 1;
    pointer-events: none;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, #d0d0d0 1px, transparent 1px);
    background-size: 25px 25px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    position: absolute;
    inset: 0;
    width: 100%;
    padding: 60px 20px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 52%;
}

.hero-content-inner {
    max-width: 520px;
    position: relative;
    z-index: 4;
}

.hero-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    position: relative;
}

.hero-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #7d1616;
    margin-top: 16px;
}

.hero-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555555;
    margin: 24px 0 32px 0;
    font-weight: 400;
}

.hero-button {
    display: inline-block;
    padding: 14px 32px;
    background: #0eb052;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.hero-button:hover {
    background: #0a9640;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 176, 82, 0.3);
}

.hero-image {
    display: none;
}

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }
    
    .hero-section {
        min-height: 55vh;
        height: 55vh;
        max-height: 55vh;
    }
    
    .heroBgSlider {
        max-height: 55vh;
    }
    
    .heroBgSlider .swiper-wrapper,
    .heroBgSlider .swiper-slide {
        max-height: 55vh;
    }
    
    .hero-image {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    /* Let the hero section size to the image on small screens to avoid letterboxing */
    .hero-section {
        height: auto;
        min-height: auto;
        max-height: none;
    }
    
    .heroBgSlider {
        max-height: none;
    }
    
    .heroBgSlider .swiper-wrapper,
    .heroBgSlider .swiper-slide {
        max-height: none;
        height: auto;
    }

    .heroBgSlider .swiper-slide img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        display: block;
    }

    .hero-container {
        gap: 30px;
        padding: 30px 16px;
    }

    .hero-heading {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
    }

    .hero-text {
        font-size: 0.95rem;
        margin: 16px 0 24px 0;
    }

    .hero-image {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    /* Small phones: let image determine height so it shows fully */
    .hero-section {
        height: auto;
        min-height: auto;
        max-height: none;
    }

    .heroBgSlider {
        max-height: none;
    }

    .heroBgSlider .swiper-wrapper,
    .heroBgSlider .swiper-slide {
        max-height: none;
        height: auto;
    }

    .heroBgSlider .swiper-slide img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        display: block;
    }
    
    .hero-container {
        padding: 24px 16px;
    }
    
    .hero-heading {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }
}


/* =========================
   PRODUCT SECTION
========================= */

.nutrition-product-section{
    background: #fff;
    padding: 40px 0;
}

/* =========================
   WRAPPER
========================= */

.nutrition-product-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* =========================
   LEFT IMAGE
========================= */

.nutrition-product-image{
    display: flex;
    justify-content: center;
    align-items: center;
}

.nutrition-product-image-img{
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    height: auto;
    object-fit: cover;
    display: block;
}

/* =========================
   RIGHT CONTENT
========================= */

.nutrition-product-content{
    max-width: 650px;
}

/* SUBTITLE */

.nutrition-subtitle{
    font-size: 22px;
    color: #222;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 500;
}

/* TITLE */

.nutrition-product-content h2{
    font-size: 30px;
    line-height: 1.25;
    color: #111;
    font-weight: 700;
    margin-bottom: 28px;
}

.nutrition-product-content h2 span{
    color: #06a84f;
}

/* LINE */

.nutrition-line{
    width: 90px;
    height: 5px;
    background: #7c1d1d;
    border-radius: 30px;
    margin-bottom: 35px;
}

/* TEXT */

.nutrition-product-content p{
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 28px;
}

/* BUTTON */

.nutrition-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 60px;
    background: #06a84f;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
}

.nutrition-btn:hover{
    background: #111;
}

/* =========================
   LARGE SCREEN
========================= */

@media(max-width:1200px){

    .nutrition-product-wrapper{
        gap: 50px;
    }

    .nutrition-product-content h2{
        font-size: 52px;
    }
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .nutrition-product-section{
        padding: 70px 0;
    }

    .nutrition-product-wrapper{
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .nutrition-product-image{
        order: 1;
    }

    .nutrition-product-content{
        order: 2;
        max-width: 100%;
        text-align: center;
    }

    .nutrition-line{
        margin: 0 auto 30px;
    }

    .nutrition-product-content h2{
        font-size: 46px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width: 768px){
    .nutrition-product-image-img{
        max-width: 250px;
    }
}

@media(max-width:576px){

    .nutrition-product-section{
        padding: 50px 0;
    }

    .nutrition-product-wrapper{
        gap: 40px;
    }

    .nutrition-product-image-img{
        max-width: 200px;
    }

    /* CONTENT */

    .nutrition-subtitle{
        font-size: 16px;
        margin-bottom: 12px;
    }

    .nutrition-product-content h2{
        font-size: 32px;
        margin-bottom: 18px;
    }

    .nutrition-line{
        width: 70px;
        height: 4px;
        margin-bottom: 22px;
    }

    .nutrition-product-content p{
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 18px;
    }

    .nutrition-btn{
        width: 100%;
        padding: 15px 20px;
        font-size: 14px;
    }
}

/* =========================
   PRODUCTS SECTION
========================= */

.yoog-products-section{
    background: #ECE5D3;
    padding: 40px 0 60px;
    overflow: hidden;
}

/* =========================
   HEADER
========================= */

.yoog-products-header{
    text-align: center;
    margin-bottom: 44px;
}

.yoog-products-header span{
    display: inline-block;
    font-size: 18px;
    color: #666;
    margin-bottom: 12px;
}

.yoog-products-header h2{
    font-size: clamp(30px, 4vw, 35px);
    font-weight: 700;
    color: #111;
    margin: 0;
}

/* =========================
   SWIPER
========================= */

.yoogProductsSlider{
    padding: 0 4px 58px;
    overflow: visible;
}

.yoogProductsSlider .swiper-wrapper{
    align-items: stretch;
}

.yoogProductsSlider .swiper-slide{
    height: auto;
}

.yoogProductsSlider .swiper-slide{
    display: flex;
}

.yoogProductsSlider .swiper-slide .yoog-product-card{
    width: 100%;
}

/* =========================
   CARD
========================= */

.yoog-product-card{
    background: #fff;
    border-radius: 16px;
    padding: 0;
    text-align: center;
    height: 100%;
    min-height: 300px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    /* box-shadow: 0 12px 18px rgba(0,0,0,0.18); */

    transition: .3s;
    overflow: hidden;
}

.yoog-product-card:hover{
    transform: none;
    box-shadow: 0 18px 28px rgba(0,0,0,0.22);
}

/* =========================
   IMAGE
========================= */

.yoog-product-image{
    width: 100%;
    height: clamp(180px, 24vw, 320px);
    display: block;
    margin: 0;
    padding: 0;
    line-height: 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.yoog-product-image img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    transition: opacity .45s ease, transform .45s ease;
}

.yoog-product-image img.alt-img{
    opacity: 0;
    transform: scale(1);
    z-index: 2;
}

.yoog-product-image img.primary-img{
    opacity: 1;
    z-index: 1;
}

.yoog-product-card:hover .yoog-product-image img.primary-img{
    opacity: 0;
    transform: scale(1.02);
}

.yoog-product-card:hover .yoog-product-image img.alt-img{
    opacity: 1;
    transform: scale(1.06);
}

.yoog-product-content{
    padding: clamp(18px, 2vw, 15px);
}

/* =========================
   CONTENT
========================= */

.yoog-product-content h3{
    font-size: clamp(18px, 1vw, 15px);
    line-height: 1.25;
    color: #111;
    margin-bottom: 18px;
    font-weight: 600;
    word-break: normal;
    overflow-wrap: anywhere;
}

.yoog-product-content h3 sup{
    font-size: 55%;
    top: -0.55em;
}

.yoog-product-content p{
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.55;
    color: #555;
    margin: 0;
}

/* =========================
   PAGINATION
========================= */

.yoogProductsSlider .swiper-pagination{
    bottom: 0 !important;
}

.yoogProductsSlider .swiper-pagination-bullet{
    width: 13px;
    height: 13px;
    background: #222;
    opacity: 1;
    margin: 0 7px !important;
}

.yoogProductsSlider .swiper-pagination-bullet-active{
    background: #7b1d1d;
}

/* =========================
   LARGE SCREEN
========================= */

@media(max-width:1200px){

    .yoog-products-header h2{
        font-size: 46px;
    }

    .yoog-product-content h3{
        font-size: 24px;
    }

    .yoog-product-content p{
        font-size: 15px;
    }
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .yoog-products-section{
        padding: 70px 0;
    }

    .yoog-products-header{
        margin-bottom: 40px;
    }

    .yoog-products-header h2{
        font-size: 40px;
    }

    .yoog-product-card{
        min-height: 360px;
    }

    .yoog-product-image{
        height: 200px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .yoogProductsSlider{
        padding: 0 0 48px;
    }

    .yoog-products-section{
        padding: 48px 0;
    }

    .yoog-products-header{
        margin-bottom: 30px;
    }

    .yoog-products-header span{
        font-size: 15px;
    }

    .yoog-products-header h2{
        font-size: 28px;
    }

    .yoog-product-card{
        border-radius: 14px;
        min-height: auto;
    }

    .yoog-product-image{
        height: clamp(160px, 50vw, 200px);
    }

    .yoog-product-image img{
        object-fit: contain;
    }

    .yoog-product-content{
        padding: clamp(14px, 3vw, 18px);
    }

    .yoog-product-content h3{
        font-size: clamp(16px, 4vw, 20px);
        margin-bottom: 12px;
        font-weight: 600;
    }

    .yoog-product-content p{
        font-size: clamp(13px, 3vw, 14px);
        line-height: 1.5;
    }

    .yoogProductsSlider .swiper-pagination-bullet{
        width: 10px;
        height: 10px;
        margin: 0 5px !important;
    }
}

@media(max-width:640px){

    .yoog-products-section{
        padding: 40px 0;
    }

    .yoog-product-card{
        min-height: 280px;
    }

    .yoog-product-image{
        height: clamp(140px, 40vw, 180px);
    }

    .yoog-product-image img{
        object-fit: contain;
    }

    .yoog-product-content h3{
        font-size: clamp(14px, 3.5vw, 18px);
        margin-bottom: 10px;
    }

    .yoog-product-content p{
        font-size: clamp(12px, 2.5vw, 13px);
        line-height: 1.4;
    }
}

@media(max-width:480px){
    .yoog-products-section{
        padding: 36px 16px;
    }

    .yoog-products-header{
        margin-bottom: 24px;
    }

    .yoog-products-header h2{
        font-size: 24px;
    }

    .yoog-product-card{
        min-height: 260px;
        border-radius: 12px;
    }

    .yoog-product-image{
        height: clamp(130px, 35vw, 160px);
    }

    .yoog-product-image img{
        object-fit: contain;
    }

    .yoog-product-content{
        padding: 12px 10px;
    }

    .yoog-product-content h3{
        font-size: clamp(13px, 3vw, 16px);
        margin-bottom: 8px;
    }

    .yoog-product-content p{
        font-size: clamp(11px, 2vw, 12px);
        line-height: 1.4;
    }

    .yoogProductsSlider .swiper-pagination-bullet{
        width: 8px;
        height: 8px;
        margin: 0 4px !important;
    }
}

/* =========================
   NUT BUTTERS SECTION
========================= */

.nut-butters-section{
    position: relative;
    background:
        linear-gradient(90deg, rgba(17, 17, 17, 0.72) 0%, rgba(17, 17, 17, 0.52) 40%, rgba(17, 17, 17, 0.2) 100%),
        url('../images/hero-image/about-hero.jpg') center center / cover no-repeat;
    overflow: hidden;
    padding: 64px 0;
}

.nut-butters-container{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 500px;
}

.nut-butters-content{
    max-width: 620px;
    margin-right: auto;
}

.nut-butters-mobile-image{
    display: none;
}

.nut-butters-mobile-image img{
    width: 100%;
    max-width: 260px;
    height: auto;
    display: block;
    object-fit: contain;
}

.nut-butters-content h2{
    margin: 0;
    font-size: clamp(25px, 2vw, 42px);
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
}

.nut-butters-line{
    display: block;
    width: 86px;
    height: 6px;
    margin: 24px 0 26px;
    border-radius: 20px;
    background: #7b1d1d;
}

.nut-butters-content p{
    margin: 0;
    font-size: clamp(16px, 1.2vw, 22px);
    line-height: 1.34;
    color: rgba(255, 255, 255, 0.9);
}

.nut-butters-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* min-width: 250px;
    min-height: 76px; */
    margin-top: 38px;
    padding: 12px 36px;
    border-radius: 999px;
    background: #06ad54;
    color: #fff;
    text-decoration: none;
    font-size: clamp(18px, 1.2vw, 26px);
    font-weight: 600;
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.nut-butters-btn:hover{
    background: #078f47;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(6, 173, 84, 0.24);
}

.nut-butters-visual{
    display: none;
}

.nut-butters-visual img{
    width: min(60%, 850px);
    height: auto;
    display: block;
    object-fit: contain;
}

.nut-butter-drips{
    position: absolute;
    top: 0;
    left: 0;
    width: min(18vw, 210px);
    height: min(58vw, 470px);
    pointer-events: none;
}

.nut-butter-drip{
    position: absolute;
    top: -22px;
    display: block;
    width: 22px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, #b95000 0%, #f29a13 42%, #ffe2a3 62%, #c35e00 100%);
    box-shadow: inset -5px 0 8px rgba(118, 45, 0, 0.22);
}

.nut-butter-drip::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;
    width: 44px;
    height: 48px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle at 60% 24%, #ffd27e 0 18%, #e07a00 48%, #a94300 100%);
}

.drip-1{
    left: 0;
    width: 38px;
    height: 180px;
}

.drip-2{
    left: 62px;
    width: 45px;
    height: 300px;
}

.drip-2::after{
    width: 55px;
    height: 57px;
    bottom: -27px;
}

.drip-3{
    left: 142px;
    width: 28px;
    height: 220px;
}

.drip-4{
    left: 196px;
    width: 32px;
    height: 321px;
}

.drip-4::after{
    width: 42px;
    height: 53px;
    bottom: -34px;
}

@media(max-width:1200px){
    .nut-butters-section{
        padding: 60px 0;
    }

    .nut-butters-container{
        display: flex;
        align-items: center;
        min-height: 440px;
    }

    .nut-butters-content{
        max-width: 560px;
        margin-right: auto;
    }

    .nut-butter-drips{
        width: 150px;
        transform: scale(0.78);
        transform-origin: top left;
    }
}

@media(max-width:992px){
    .nut-butters-section{
        padding: 54px 0;
    }

    .nut-butters-container{
        display: flex;
        align-items: center;
        min-height: 380px;
    }

    .nut-butters-content{
        max-width: 520px;
        margin-right: auto;
    }
}

@media(max-width:768px){
    .nut-butters-section{
        padding: 50px 0 42px;
    }

    .nut-butters-content{
        margin-left: 0;
        max-width: 500px;
    }

    .nut-butters-container{
        min-height: 0;
    }

    .nut-butters-btn{
        min-width: 210px;
        min-height: 60px;
        margin-top: 28px;
    }

    .nut-butter-drips{
        transform: scale(0.52);
    }
}

@media(max-width:576px){
    .nut-butters-section{
        background: #ffffff;
        padding: 44px 0 36px;
    }

    .nut-butters-content{
        margin-left: 0;
        padding-top: 0;
        text-align: left;
        max-width: 100%;
    }

    .nut-butters-content h2{
        color: #111111;
    }

    .nut-butters-content p{
        color: #666666;
    }

    .nut-butters-mobile-image{
        display: flex;
        justify-content: center;
        margin: 14px 0 16px;
    }

    .nut-butters-line{
        margin: 18px 0 22px;
    }

    .nut-butters-content p{
        line-height: 1.55;
    }

    .nut-butters-btn{
        width: 100%;
        min-width: 0;
    }

    .nut-butter-drips{
        transform: scale(0.34);
    }
}

/* =========================
   OFFERINGS SECTION
========================= */

.offerings-section{
    background: #ffffff;
    padding: 60px 0 40px;
    overflow: hidden;
}

.offerings-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.offerings-header h2{
    margin: 0;
    color: #111;
    font-size: clamp(32px, 3vw, 42px);
    line-height: 1.2;
    font-weight: 700;
}

.offerings-header h2 span{
    color: #06ad54;
}

.offerings-line{
    display: block;
    width: 86px;
    height: 6px;
    margin-top: 16px;
    border-radius: 20px;
    background: #7b1d1d;
}

.offerings-view-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* min-width: 230px;
    min-height: 66px; */
    padding: 10px 30px;
    border-radius: 999px;
    background: #06ad54;
    color: #fff;
    text-decoration: none;
    font-size: clamp(18px, 1.2vw, 26px);
    font-weight: 500;
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.offerings-view-btn:hover{
    background: #078f47;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(6, 173, 84, 0.22);
}

.offeringsSlider{
    overflow: visible;
    padding: 0 40px 12px;
}

.offeringsSlider .swiper-wrapper{
    align-items: stretch;
}

.offeringsSlider .swiper-slide{
    height: auto;
}

.offering-card{
    height: auto;
    min-height: 0;
    padding: 0;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 34px;
    background: #fff;
    text-align: center;
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.offering-image{
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.offering-image img{
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.offering-card h3{
    margin: 0;
    width: 100%;
    padding: 12px 16px 16px;
    color: #565656;
    font-size: clamp(16px, 4vw, 20px);
    line-height: 1.3;
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.offeringsSlider .swiper-pagination{
    position: static;
    margin-top: 16px;
}

.offeringsSlider .swiper-pagination-bullet{
    width: 40px;
    height: 4px;
    border-radius: 999px;
    margin: 0 4px !important;
    background: #d7d7d7;
    opacity: 1;
}

.offeringsSlider .swiper-pagination-bullet-active{
    background: #7b1d1d;
}

@media(max-width:1200px){
    .offeringsSlider{
        padding-left: 20px;
        padding-right: 20px;
    }

    .offering-card{
        min-height: 0;
        height: auto;
        padding: 0;
        border-radius: 26px;
    }

    .offering-image{
        height: 190px;
    }

    .offering-card h3{
        padding: 0 16px 16px;
    }
}

@media(max-width:768px){
    .offerings-section{
        padding: 56px 0;
    }

    .offerings-header{
        align-items: flex-start;
        flex-direction: column;
    }

    .offerings-view-btn{
        min-width: 180px;
        min-height: 56px;
        width: auto;
    }

    .offeringsSlider{
        padding-left: 4px;
        padding-right: 4px;
    }

    .offering-image{
        height: 170px;
    }

    .offering-image img{
        object-fit: contain;
    }

    .offering-card h3{
        font-size: clamp(15px, 3.5vw, 18px);
        padding: 10px 12px 14px;
    }
}

@media(max-width:640px){
    .offerings-section{
        padding: 48px 16px;
    }

    .offeringsSlider{
        padding: 0;
    }

    .offering-image{
        height: 160px;
    }

    .offering-image img{
        object-fit: contain;
    }

    .offering-card{
        border-radius: 20px;
    }

    .offering-card h3{
        font-size: clamp(14px, 3vw, 16px);
        padding: 10px 12px 12px;
        line-height: 1.4;
    }
}

@media(max-width:480px){
    .offerings-section{
        padding: 40px 16px;
    }

    .offerings-header h2{
        font-size: clamp(24px, 5vw, 32px);
    }

    .offerings-view-btn{
        padding: 8px 20px;
        font-size: clamp(14px, 3vw, 16px);
    }

    .offeringsSlider{
        padding: 0;
    }

    .offering-image{
        height: 150px;
    }

    .offering-image img{
        object-fit: contain;
    }

    .offering-card{
        border-radius: 18px;
        border: 1px solid rgba(0,0,0,0.08);
        box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    }

    .offering-card h3{
        font-size: clamp(13px, 2.8vw, 15px);
        padding: 8px 10px 10px;
        line-height: 1.3;
    }

    .offeringsSlider .swiper-pagination-bullet{
        width: 25px;
        height: 3px;
    }
}

/* =========================
   QUOTE SECTION
========================= */

.quote-section{
    background: linear-gradient(180deg, #ffffff 0 24%, #ECE5D3 24% 100%);
    padding: 40px 0 0px;
    overflow: hidden;
}

.quote-container{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
    align-items: center;
    gap: 72px;
}

.quote-form-panel{
    background: #7b171b;
    color: #ffffff;
    border-radius: 30px 30px 0 0;
    padding: clamp(42px, 5vw, 78px) clamp(28px, 5vw, 62px) 28px;
}

.quote-form-panel h2{
    margin: 0;
    text-align: center;
    color: #ffffff;
    font-size: clamp(36px, 4vw, 35px);
    line-height: 1.15;
    font-weight: 700;
}

.quote-title-line{
    display: block;
    width: 176px;
    height: 5px;
    margin: 28px auto 56px;
    border-radius: 999px;
    background: #ffffff;
}

.quote-form{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 40px;
}

.quote-field{
    position: relative;
}

.quote-field input,
.quote-field select,
.quote-field textarea{
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.88);
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    padding: 0 0 10px;
    font: inherit;
    font-size: clamp(16px, 1vw, 22px);
    line-height: 1.2;
    outline: none;
}

.quote-field input::placeholder,
.quote-field textarea::placeholder{
    color: #ffffff;
    opacity: 1;
}

.quote-field select{
    appearance: none;
    cursor: pointer;
}

.quote-field select option{
    color: #111111;
}

.quote-field-select::after{
    content: '';
    position: absolute;
    right: 2px;
    top: 8px;
    width: 10px;
    height: 10px;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    transform: rotate(45deg);
    pointer-events: none;
}

.quote-field-message{
    grid-column: 1 / -1;
}

.quote-field-message textarea{
    /* min-height: 130px; */
    resize: vertical;
}

.quote-content{
    max-width: 560px;
}

.quote-content > span{
    display: block;
    margin-bottom: 12px;
    color: #08aa54;
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.15;
    font-weight: 500;
}

.quote-content h2{
    margin: 0;
    color: #070707;
    font-size: clamp(32px, 3vw, 35px);
    line-height: 1.32;
    font-weight: 700;
}

.quote-content-line{
    display: block;
    width: 88px;
    height: 6px;
    margin: 28px 0 30px;
    border-radius: 20px;
    background: #7b1d1d;
}

.quote-content p{
    margin: 0;
    color: #090909;
    font-size: clamp(20px, 2vw, 20px);
    line-height: 1.18;
}

@media(max-width:992px){
    .quote-section{
        background: #d9d9d9;
        padding: 54px 0;
    }

    .quote-container{
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .quote-content{
        max-width: 720px;
    }
}

@media(max-width:576px){
    .quote-section{
        padding: 42px 0;
    }

    .quote-form-panel{
        border-radius: 22px 22px 0 0;
        padding: 34px 22px 26px;
    }

    .quote-title-line{
        margin: 22px auto 38px;
        width: 130px;
    }

    .quote-form{
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .quote-field input,
    .quote-field select,
    .quote-field textarea{
        padding-bottom: 16px;
    }

    .quote-field-message textarea{
        min-height: 96px;
    }
}

/* =========================
   WHY CHOOSE US SECTION
========================= */

.why-choose-section{
    background: #ffffff;
    padding: 86px 0;
}

/* =========================
   ABOUT PAGE
========================= */

.about-hero-section{
    position: relative;
    height: 30vh;
    min-height: 20vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    /* background: linear-gradient(180deg, #f3f3f3 0%, #e7e7e7 100%); */
    background: url('../images/hero-image/hero-s.jpg') top center / cover no-repeat;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.about-hero-container{
    position: relative;
    z-index: 1;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-content{
    text-align: center;
}

.about-hero-content h1{
    margin: 0;
    color: #111;
    font-size: clamp(30px, 3vw, 30px);
    line-height: 1.08;
    font-weight: 600;
}

.about-hero-kicker{
    display: inline-block;
    margin-bottom: 10px;
    color: #06ad54;
    font-size: clamp(14px, 1.3vw, 15px);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-hero-breadcrumb{
    margin: 14px 0 0;
    color: #666;
    font-size: clamp(15px, 1.2vw, 15px);
    line-height: 1.3;
    font-weight: 600;
}

.about-hero-breadcrumb a{
    color: #111;
    text-decoration: none;
}

.about-hero-breadcrumb span{
    color: #8b8b8b;
}

.about-story-section,
.about-mission-section,
.about-cta-section{
    padding: 60px 0;
}

.about-story-section{
    background: #fff;
}

.about-story-grid{
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 56px;
    align-items: center;
}

.about-story-content > span:first-child,
.about-mission-section .section-title > span:first-child,
.about-cta-content > span{
    display: inline-block;
    margin-bottom: 12px;
    color: #06ad54;
    font-size: clamp(18px, 2vw, 25px);
    line-height: 1.2;
    font-weight: 600;
}

.about-story-content h2{
    margin: 0;
    color: #111;
    font-size: clamp(34px, 4vw, 35px);
    line-height: 1.15;
    font-weight: 600;
}

.about-story-content p{
    margin: 0 0 18px;
    color: #565656;
    font-size: 17px;
    line-height: 1.8;
}

.about-story-image{
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}

.about-story-image img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-mission-section{
    background: #ECE5D3;
}

.about-mission-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.about-mission-card{
    padding: 34px 28px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}

.about-mission-card h3{
    margin: 0 0 14px;
    color: #111;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
}

.about-mission-card p{
    margin: 0;
    color: #5c5c5c;
    font-size: 16px;
    line-height: 1.75;
}

.about-cta-section{
    /* background: linear-gradient(135deg, #7b171b 0%, #5d1114 100%); */
    background: #ECE5D3;
}

.about-cta-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.about-cta-content{
    max-width: 720px;
}

.about-cta-content > span{
    color: #000;
}

.about-cta-content h2{
    margin: 0;
    color: #000;
    font-size: clamp(34px, 4vw, 35px);
    line-height: 1.15;
    font-weight: 600;
}

.about-cta-content p{
    margin: 18px 0 0;
    color: #000;
    font-size: 17px;
    line-height: 1.75;
}

.about-cta-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 58px;
    padding: 0 28px;
    border-radius: 999px;
    background: #7b171b;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(0,0,0,0.14);
    transition: transform .25s ease, box-shadow .25s ease;
}

.about-cta-button:hover{
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(0,0,0,0.18);
}

@media(max-width:992px){
    .about-hero-section{
        height: 20vh;
        min-height: 20vh;
    }

    .about-hero-container{
        padding: 0 20px;
    }

    .about-story-grid,
    .about-mission-grid,
    .about-cta-container{
        grid-template-columns: 1fr;
    }

    .about-story-grid{
        gap: 34px;
    }

    .about-cta-container{
        display: grid;
    }
}

@media(max-width:576px){
    .about-hero-container,
    .about-story-section,
    .about-mission-section,
    .about-cta-section{
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .about-hero-section{
        height: 18vh;
        min-height: 18vh;
    }

    .about-hero-content h1{
        font-size: clamp(28px, 8vw, 36px);
    }

    .about-hero-breadcrumb{
        margin-top: 10px;
    }

    .about-story-image{
        border-radius: 18px;
    }

    .about-mission-card{
        padding: 26px 20px;
        border-radius: 16px;
    }

    .about-cta-button{
        width: 100%;
        min-width: 0;
    }
}

.section-title{
    text-align: center;
    max-width: 760px;
    margin: 0 auto 46px;
}

.section-title > span:first-child{
    display: inline-block;
    margin-bottom: 12px;
    color: #06ad54;
    font-size: clamp(20px, 2vw, 25px);
    line-height: 1.2;
    font-weight: 600;
}

.section-title h2{
    margin: 0;
    color: #111;
    font-size: clamp(32px, 4vw, 35px);
    line-height: 1.2;
    font-weight: 700;
}

.section-title-line{
    display: block;
    width: 92px;
    height: 6px;
    margin: 22px auto 0;
    border-radius: 999px;
    background: #7b1d1d;
}

/* =========================
   MEDIA PAGE
========================= */

.media-hero-section{
    background: url('../images/hero-image/hero2.jpg') top center / cover no-repeat;
}

.media-hero-content h1{
    max-width: 760px;
}

.media-section,
.media-detail-section,
.media-feature-section{
    padding: 84px 0;
    background: #fff;
}

.media-section{
    background: linear-gradient(180deg, #fff 0%, #faf7f2 100%);
}

.media-section-title{
    margin-bottom: 36px;
}

.media-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.media-card{
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 16px 34px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.media-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(0,0,0,0.12);
}

.media-card__image{
    position: relative;
    overflow: hidden;
    /* aspect-ratio: 1 / 0.95; */
        aspect-ratio: 2 / 1.1;
}

.media-card__image img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.media-card:hover .media-card__image img{
    transform: scale(1.04);
}

.media-card__content{
    padding: 22px 22px 24px;
}

.media-card__content span,
.media-detail-kicker,
.media-feature-kicker{
    display: inline-block;
    margin-bottom: 10px;
    color: #06ad54;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.media-card__content h3,
.media-detail-card h2,
.media-feature-panel h2{
    margin: 0;
    color: #111;
    line-height: 1.15;
    font-weight: 700;
}

.media-card__content h3{
    font-size: 24px;
}

.media-card__content p,
.media-detail-card p,
.media-feature-panel p{
    margin: 12px 0 0;
    color: #5c5c5c;
    font-size: 16px;
    line-height: 1.7;
}

.media-feature-section{
    background: #f6f1e7;
}

.media-feature-panel{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}

.media-feature-panel h2{
    font-size: clamp(30px, 3vw, 30px);
}

.media-feature-button{
    flex: 0 0 auto;
}

.media-detail-section{
    background: #fff;
}

.media-detail-layout{
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: stretch;
}

.media-detail-card,
.media-detail-image{
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}

.media-detail-card{
    padding: 32px;
}

.media-detail-card h2{
    font-size: clamp(32px, 4vw, 44px);
}

.media-detail-link{
    display: inline-flex;
    margin-top: 24px;
    padding: 12px 22px;
    border-radius: 999px;
    background: #7b171b;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.media-detail-link:hover{
    color: #fff;
}

.media-detail-image img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    min-height: 360px;
}

.media-related-title{
    margin-top: 54px;
}

.media-related-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.media-related-card{
    display: block;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    transition: transform .25s ease, box-shadow .25s ease;
}

.media-related-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 28px rgba(0,0,0,0.1);
}

.media-related-card img{
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.media-related-card div{
    padding: 16px;
}

.media-related-card span{
    display: inline-block;
    margin-bottom: 8px;
    color: #06ad54;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.media-related-card h3{
    margin: 0;
    color: #111;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
}

.media-category-hero{
    background-position: center;
    background-size: cover;
}

.media-hero-content--dark h1,
.media-hero-content--dark .about-hero-breadcrumb a{
    color: #fff;
}

.media-hero-content--dark .about-hero-breadcrumb span{
    color: rgba(255,255,255,0.75);
}

@media(max-width: 992px){
    .media-grid,
    .media-related-grid,
    .media-detail-layout{
        grid-template-columns: 1fr 1fr;
    }

    .media-feature-panel{
        flex-direction: column;
        align-items: flex-start;
    }
}

@media(max-width: 768px){
    .media-grid,
    .media-related-grid,
    .media-detail-layout{
        grid-template-columns: 1fr;
    }

    .media-section,
    .media-detail-section,
    .media-feature-section{
        padding: 64px 0;
    }

    .media-detail-card,
    .media-feature-panel{
        padding: 24px;
    }
}

@media(max-width: 576px){
    .media-card__content{
        padding: 18px;
    }

    .media-card__content h3{
        font-size: 20px;
    }

    .media-related-card img{
        height: 140px;
    }
}

/* =========================
   CONTACT PAGE
========================= */

.contact-hero-section{
    background: url('../images/hero-image/hero-s.jpg') top center / cover no-repeat;
}

.contact-section{
    padding: 84px 0;
    background: #ffffff;
}

.contact-grid{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: start;
}

.contact-details-panel,
.contact-form-card{
    height: 100%;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(0,0,0,0.06);
    padding: 30px;
}

.contact-section-title{
    margin-bottom: 28px;
}

.contact-section-title h2{
    font-size: clamp(28px, 3vw, 36px);
}

.contact-section-title .section-title-line{
    margin-left: 0;
}

.contact-detail-item{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-decoration: none;
    color: #444;
    margin-bottom: 18px;
}

.contact-detail-item p{
    margin: 0;
    line-height: 1.7;
    font-size: 16px;
}

.contact-detail-link:hover p{
    color: var(--header-maroon);
}

.contact-detail-icon{
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(14, 169, 91, 0.12);
    color: #14a95b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-social-block{
    margin-top: 28px;
}

.contact-social-block h3{
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.contact-social-links{
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-social-link{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #7b1d1d;
    border: 1px solid rgba(123, 29, 29, 0.16);
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-form-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-form-field{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-field--full{
    grid-column: 1 / -1;
}

.contact-form-field label{
    font-weight: 600;
    color: #222;
    font-size: 15px;
}

.contact-form-field input,
.contact-form-field textarea{
    width: 100%;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    color: #111;
    background: #fff;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus{
    border-color: #14a95b;
    box-shadow: 0 0 0 3px rgba(20, 169, 91, 0.12);
}

.contact-form-field textarea{
    resize: vertical;
    min-height: 160px;
}

.contact-submit-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 14px 28px;
    border: 0;
    border-radius: 999px;
    background: #7b1d1d;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform .2s ease, background .2s ease;
}

.contact-submit-btn:hover{
    background: #6a1010;
    transform: translateY(-2px);
}

.contact-map-section{
    background: #fff;
}

.contact-map-iframe{
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.why-choose-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.why-card{
    height: 100%;
    padding: 34px 26px 32px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.why-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(0,0,0,0.12);
}

.why-card-icon{
    width: 68px;
    height: 68px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: rgba(6, 173, 84, 0.12);
    color: #06ad54;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.why-card h3{
    margin: 0 0 14px;
    color: #111;
    font-size: clamp(21px, 1.8vw, 20px);
    line-height: 1.25;
    font-weight: 700;
}

.why-card p{
    margin: 0;
    color: #626262;
    font-size: 15px;
    line-height: 1.7;
}

/* =========================
   CERTIFICATES SECTION
========================= */

.certificates-section{
    background: #fff;
    padding: 86px 0;
}

.certificates-wrapper{
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: 56px;
}

.certificates-content > span{
    display: inline-block;
    margin-bottom: 12px;
    color: #06ad54;
    font-size: clamp(20px, 2vw, 30px);
    line-height: 1.2;
    font-weight: 600;
}

.certificates-content h2{
    margin: 0;
    color: #111;
    font-size: clamp(32px, 4vw, 40px);
    line-height: 1.18;
    font-weight: 700;
}

.certificates-line{
    display: block;
    width: 92px;
    height: 6px;
    margin: 24px 0 28px;
    border-radius: 999px;
    background: #7b1d1d;
}

.certificates-content p{
    margin: 0;
    color: #555;
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.55;
}

.certificates-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.certificate-card{
    min-height: 210px;
    padding: 28px 18px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 8px rgba(0,0,0,0.09);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.certificate-card i{
    width: 76px;
    height: 76px;
    margin-bottom: 22px;
    border: 2px solid rgba(123, 29, 29, 0.24);
    border-radius: 50%;
    color: #7b1d1d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.certificate-card h3{
    margin: 0;
    color: #111;
    font-size: clamp(18px, 1.6vw, 20px);
    line-height: 1.25;
    font-weight: 700;
}

@media(max-width:1200px){
    .why-choose-grid,
    .certificates-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(max-width:992px){
    .why-choose-section,
    .certificates-section{
        padding: 68px 0;
    }

    .certificates-wrapper{
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .certificates-content{
        max-width: 720px;
    }

    .contact-grid{
        grid-template-columns: 1fr;
    }

    .contact-section{
        padding: 64px 0;
    }

    .contact-map-iframe{
        height: 340px;
    }
}

@media(max-width:576px){
    .why-choose-section,
    .certificates-section{
        padding: 50px 0;
    }

    .section-title{
        text-align: left;
        margin-bottom: 30px;
    }

    .section-title-line{
        margin-left: 0;
    }

    .why-choose-grid,
    .certificates-grid{
        grid-template-columns: 1fr;
    }

    .why-card,
    .certificate-card{
        border-radius: 14px;
    }

    .contact-details-panel,
    .contact-form-card{
        padding: 22px;
        border-radius: 16px;
    }

    .contact-form-grid{
        grid-template-columns: 1fr;
    }

    .contact-section-title h2{
        font-size: 28px;
    }

    .contact-map-iframe{
        height: 280px;
    }
}

/* =========================
   FACTORY PAGE
========================= */

.factory-hero-section{
    background: #e9e9e9;
    padding: 74px 0 56px;
}

.factory-hero-section .about-hero-container{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 38px;
}

.factory-hero-content h1{
    margin: 16px 0 18px;
    color: #1d1d1d;
    font-size: clamp(44px, 5.2vw, 40px);
    line-height: 1.03;
    font-weight: 700;
    letter-spacing: -0.03em;
    max-width: 760px;
}

.factory-hero-kicker{
    display: inline-block;
    color: #0c8f46;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.factory-hero-content p{
    margin: 0;
    max-width: 620px;
    color: #4f4f4f;
    font-size: 18px;
    line-height: 1.8;
}

.factory-hero-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.factory-hero-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    background: #7b171b;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(123, 23, 27, 0.16);
}

.factory-hero-button:hover{
    color: #fff;
}

.factory-hero-button--ghost{
    background: #fff;
    color: #111;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: none;
}
.factory-hero-button--ghost:hover{
    background: #fff;
    color: #111;
}

.factory-hero-visual{
    position: relative;
    min-height: 520px;
}

.factory-hero-visual__main{
    width: min(100%, 540px);
    margin-left: auto;
    aspect-ratio: 1 / 1.05;
    border-radius: 50% 50% 0 0;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0,0,0,0.12);
}

.factory-hero-visual__main img,
.factory-hero-visual__badge img,
.gallery-card img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.factory-hero-visual__badge{
    position: absolute;
    left: 0;
    bottom: 12px;
    width: min(100%, 300px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}

.factory-features-section,
.quality-statement-section,
.certificates-section,
.gallery-section{
    padding: 86px 0;
    background: #fff;
}

.factory-section-title,
.gallery-section-title{
    margin-bottom: 38px;
}

.factory-feature-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.factory-feature-card{
    padding: 34px 28px;
    text-align: center;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}

.factory-feature-card__icon{
    width: 102px;
    height: 102px;
    margin: -76px auto 18px;
    border-radius: 50%;
    border: 3px solid #0cb657;
    background: #fff;
    color: #7b1d1d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.factory-feature-card__icon i{
    font-size: 34px;
}

.factory-feature-card h3{
    margin: 0;
    color: #111;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
}

.factory-feature-card__line{
    width: 64px;
    height: 5px;
    margin: 14px auto 18px;
    border-radius: 999px;
    background: #111;
}

.factory-feature-card p{
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.quality-statement-section{
    background: #f2f2f2;
}

.quality-statement-panel{
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
    gap: 26px;
    padding: 34px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 16px 34px rgba(0,0,0,0.08);
}

.quality-statement-panel__content span,
.certificates-content span,
.gallery-card__overlay span{
    display: inline-block;
    margin-bottom: 12px;
    color: #0c8f46;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.quality-statement-panel__content h2,
.certificates-content h2{
    margin: 0;
    color: #111;
    font-size: clamp(34px, 4vw, 35px);
    line-height: 1.08;
    font-weight: 700;
}

.quality-statement-panel__content p,
.certificates-content p{
    margin: 18px 0 0;
    color: #555;
    font-size: 17px;
    line-height: 1.8;
}

.quality-statement-panel__stats{
    display: grid;
    gap: 16px;
}

.quality-statement-panel__stats div{
    padding: 22px;
    border-radius: 20px;
    background: #ece5d3;
}

.quality-statement-panel__stats strong{
    display: block;
    margin-bottom: 8px;
    color: #111;
    font-size: 28px;
    line-height: 1;
}

.quality-statement-panel__stats span{
    color: #4f4f4f;
    font-size: 15px;
    line-height: 1.6;
}

.certificates-section{
    background: #fff;
}

.certificates-wrapper{
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: 36px;
}

.certificates-line{
    display: block;
    width: 92px;
    height: 6px;
    margin: 24px 0 0;
    border-radius: 999px;
    background: #7b1d1d;
}

.certificates-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.certificate-card{
    min-height: 210px;
    padding: 28px 22px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    /* box-shadow: 0 14px 28px rgba(0,0,0,0.08); */
    text-align: center;
}

.certificate-card i{
    width: 74px;
    height: 74px;
    margin-bottom: 18px;
    border-radius: 50%;
    border: 2px solid rgba(123, 29, 29, 0.2);
    color: #7b1d1d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.certificate-card h3{
    margin: 0 0 12px;
    color: #111;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}

.certificate-card p{
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.gallery-section{
    background: #fff;
}

.gallery-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.gallery-card{
    position: relative;
    min-height: 270px;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 16px 34px rgba(0,0,0,0.1);
}

.gallery-card::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.65) 100%);
}

.gallery-card__overlay{
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    padding: 20px;
}

.gallery-card__overlay h3{
    margin: 0;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 700;
}

.gallery-card__overlay p{
    margin: 8px 0 0;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    line-height: 1.5;
}

@media(max-width: 1200px){
    .factory-feature-grid,
    .gallery-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(max-width: 992px){
    .factory-hero-section .about-hero-container,
    .quality-statement-panel,
    .certificates-wrapper{
        grid-template-columns: 1fr;
    }

    .factory-hero-section{
        padding-top: 58px;
    }

    .factory-hero-visual{
        min-height: 420px;
        max-width: 620px;
        margin: 0 auto;
    }

    .factory-feature-card__icon{
        margin-top: -68px;
    }
}

@media(max-width: 768px){
    .factory-features-section,
    .quality-statement-section,
    .certificates-section,
    .gallery-section{
        padding: 68px 0;
    }

    .factory-feature-grid,
    .gallery-grid,
    .certificates-grid{
        grid-template-columns: 1fr;
    }

    .quality-statement-panel,
    .certificates-wrapper{
        gap: 24px;
    }
}

@media(max-width: 576px){
    .factory-hero-content h1{
        font-size: clamp(34px, 10vw, 48px);
    }

    .factory-hero-content p,
    .quality-statement-panel__content p,
    .certificates-content p{
        font-size: 16px;
    }

    .factory-hero-visual{
        min-height: 320px;
    }

    .factory-hero-visual__badge{
        width: 180px;
    }

    .factory-feature-card,
    .quality-statement-panel,
    .certificate-card{
        padding: 22px;
        border-radius: 18px;
    }

    .gallery-card{
        min-height: 220px;
    }
}


/* shop page  */

.filter-sidebar{
top:20px;
}

.shop-page{
    position: relative;
}

.shop-mobile-toolbar{
    display: flex;
    justify-content: flex-start;
}

.shop-filter-toggle{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    line-height: 1;
}

.shop-filter-toggle i{
    font-size: 14px;
}

.shop-mobile-panel{
    position: fixed;
    inset: 0;
    z-index: 1050;
    pointer-events: none;
    visibility: hidden;
}

.shop-mobile-panel.is-open{
    pointer-events: auto;
    visibility: visible;
}

.shop-mobile-panel__backdrop{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity .25s ease;
}

.shop-mobile-panel.is-open .shop-mobile-panel__backdrop{
    opacity: 1;
}

.shop-mobile-panel__sidebar{
    position: absolute;
    top: 0;
    left: 0;
    width: min(86vw, 340px);
    height: 100%;
    background: #fff;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .28s ease;
    box-shadow: 8px 0 28px rgba(0,0,0,.18);
}

.shop-mobile-panel.is-open .shop-mobile-panel__sidebar{
    transform: translateX(0);
}

.shop-mobile-panel__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 18px 12px;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.shop-mobile-panel__header h5{
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.shop-mobile-panel__close{
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f3f3f3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.shop-mobile-panel__body{
    padding: 18px;
}

.shop-mobile-panel .filter-box:last-child{
    margin-bottom: 0;
}

body.shop-panel-open{
    overflow: hidden;
}

.filter-box{

padding:20px;
border:1px solid #eee;
margin-bottom:20px;
border-radius:10px;
background:#fff;

}

.price-filter h5{
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 700;
}

.price-slider{
    position: relative;
    height: 34px;
    margin: 6px 0 12px;
}

.price-slider__track,
.price-slider__range{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    border-radius: 999px;
}

.price-slider__track{
    left: 0;
    right: 0;
    background: #dfe3e8;
}

.price-slider__range{
    left: 0;
    right: 25%;
    background: #8cc63f;
}

.price-slider input[type="range"]{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 34px;
    margin: 0;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
}

.price-slider input[data-price-min]{
    z-index: 3;
}

.price-slider input[data-price-max]{
    z-index: 4;
}

.price-slider input[type="range"]::-webkit-slider-runnable-track{
    height: 4px;
    background: transparent;
}

.price-slider input[type="range"]::-moz-range-track{
    height: 4px;
    background: transparent;
}

.price-slider input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #8cc63f;
    background: #fff;
    margin-top: -6px;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

.price-slider input[type="range"]::-moz-range-thumb{
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #8cc63f;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

.price-value{
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-top: 6px;
}

.price-value span{
    font-weight: 700;
}

.product-card{

border:1px solid #eee;
border-radius:10px;
overflow:hidden;
transition:.4s;

}

.product-card img{

width:100%;
height:250px;
object-fit:cover;

}

.product-card:hover{

transform:translateY(-5px);
box-shadow:0px 8px 20px rgba(0,0,0,.1);

}

.range-slider{

position:relative;
height:40px;

}

.range-slider input{

position:absolute;
width:100%;
pointer-events:none;
background:none;

}

.range-slider input::-webkit-slider-thumb{

pointer-events:auto;
height:18px;
width:18px;
border-radius:50%;
cursor:pointer;

}

.price-value{

margin-top:20px;
font-weight:600;

}

/* ==========================================
   YOOG NUTRITION GALLERY SECTION
========================================== */

.yoog-gallery-section {
    padding: 100px 0;
    background: #f8fafc;
}

.gallery-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.gallery-tag {
    display: inline-block;
    padding: 8px 18px;
    background: var(--primary-color);
    /* background: rgba(0, 128, 128, 0.1); */
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.gallery-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.gallery-header p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.4s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-cta {
    text-align: center;
    background: var(--primary-color);
    /* background: linear-gradient(135deg, #06283f, #008080); */
    padding: 40px 30px;
    border-radius: 25px;
    color: #fff;
}

.gallery-cta h3 {
    font-size: 34px;
    margin-bottom: 15px;
}

.gallery-cta p {
    max-width: 650px;
    margin: 0 auto 30px;
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.9;
}

.gallery-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #fff;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.gallery-btn:hover {
    transform: translateY(-3px);
    background: var(--header-green);
    color: #fff;
}

/* Responsive */

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-header h2 {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-header h2 {
        font-size: 28px;
    }

    .gallery-cta h3 {
        font-size: 26px;
    }
}

/* ==========================
   PRIVACY POLICY PAGE
========================== */

.policy-page {
    padding: 80px 0px;
    background: #ffffff;
}

/* .container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
} */

.policy-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 70px;
}

.policy-content h1 {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 35px;
}

.policy-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-content p {
    color: #5c6773;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.policy-content strong {
    color: #333;
    font-weight: 600;
}

/* Sidebar */

.policy-sidebar {
    padding-top: 5px;
}

.sidebar-widget {
    border-top: 1px solid #e5e7eb;
    padding: 35px 0;
}

.sidebar-widget:first-child {
    border-top: none;
    padding-top: 0;
}

.sidebar-widget label {
    display: block;
    font-size: 16px;
    color: #111827;
    margin-bottom: 12px;
}

.sidebar-widget h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.sidebar-widget p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.8;
}

.search-box {
    display: flex;
    gap: 15px;
}

.search-box input {
    flex: 1;
    height: 56px;
    border: 1px solid #d9d9d9;
    padding: 0 15px;
    outline: none;
    font-size: 16px;
}

.search-box button {
    border: none;
    background: #8ab72e;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 0 28px;
    cursor: pointer;
    transition: .3s;
}

.search-box button:hover {
    background: #6e9920;
}

/* Responsive */

@media (max-width: 991px) {

    .policy-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .policy-content h1 {
        font-size: 38px;
    }

    .sidebar-widget h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {

    .policy-page {
        padding: 60px 0;
    }

    .policy-content h1 {
        font-size: 32px;
    }

    .policy-content p {
        font-size: 16px;
    }

    .search-box {
        flex-direction: column;
    }

    .search-box button {
        height: 55px;
    }
}