.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    background: #000;
}

.slider-wrapper,
.slide {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 6s linear;
}

.slide.active .slide-bg img {
    transform: scale(1);
}


.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #fff;
    text-align: center;
}

.top-tag {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: 3px;
    transform: translateY(30px);
    opacity: 0;
    transition: 0.8s 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}

.slide-content h2 {
    font-size: clamp(40px, 6vw, 75px);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 25px;
    transform: translateY(40px);
    opacity: 0;
    transition: 0.8s 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(30px);
    opacity: 0;
    transition: 0.8s 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    transform: translateY(30px);
    opacity: 0;
    transition: 0.8s 0.9s cubic-bezier(0.2, 1, 0.3, 1);
}


.slide.active .top-tag,
.slide.active h2,
.slide.active p,
.slide.active .hero-actions {
    transform: translateY(0);
    opacity: 1;
}

.hero-btn {
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    font-size: 15px;
    transition: 0.3s;
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
}

.hero-btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slide-content h2 {
        font-size: 36px;
    }

    .hero-btn {
        width: 100%;
    }
}



/* */

.item-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.item-card-link:focus {
    outline: none;
}


.item-card {
    cursor: pointer;
    background: #fff;
    border-radius: 20px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.item-card:hover {
    transform: translateX(10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(26, 67, 50, 0.1);
}


.item-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin: 2px 0;
    display: block;
}

:root {
    --soft-green: #f2f7f4;
    --sage-green: #81c784;
    --luxury-gold: #c5a059;
}

.ingredient-focus {
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
}

.focus-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}


.focus-product-area {
    flex: 1;
    position: relative;
    background: var(--soft-green);
    border-radius: 40px;
    padding: 30px;
    height: 580px;
    overflow: hidden;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.02);
}

.product-window {
    height: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.product-scroll-track {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: verticalScroll 30s linear infinite;
}

@keyframes verticalScroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.product-scroll-track:hover {
    animation-play-state: paused;
}


.item-card {
    background: #fff;
    border-radius: 20px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.item-img-wrapper {
    width: 90px;
    height: 90px;
    background: #f9f9f9;
    border-radius: 15px;
    padding: 5px;
}

.item-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.item-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.item-cat {
    font-size: 10px;
    font-weight: 800;
    color: var(--luxury-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.item-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin: 2px 0;
}

.item-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.item-arrow {
    color: #ddd;
    font-size: 18px;
    transition: 0.3s;
}

.item-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.item-card:hover .item-arrow {
    color: var(--primary);
    transform: translateX(5px);
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--dark);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}


.focus-content {
    flex: 1.2;
}

.main-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

.desc {
    font-size: 17px;
    color: #64748b;
    margin-bottom: 35px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin-bottom: 45px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 18px;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: var(--soft-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.shop-now-btn {
    padding: 20px 50px;
    background: var(--primary);
    color: #fff;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.4s;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(26, 67, 50, 0.2);
}

.shop-now-btn:hover {
    background: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .focus-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .main-title {
        font-size: 38px;
    }

    .focus-product-area {
        width: 100%;
        height: 450px;
    }
}


/**/

.premium-discovery {
    padding: 120px 0;
    background: radial-gradient(circle at top right, #f0f7f0, #ffffff);
}

.discovery-glass-box {
    display: grid;
    grid-template-columns: 350px 1fr;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

.discovery-nav {
    padding: 60px 40px;
    background: rgba(46, 125, 50, 0.03);
    border-right: 1px solid rgba(0, 0, 0, 0.03);
}

.nav-header span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 700;
}

.nav-header h2 {
    font-size: 32px;
    margin: 10px 0 40px;
    color: var(--dark);
}

.tabs-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-item {
    position: relative;
    background: none;
    border: none;
    padding: 22px 25px;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    z-index: 2;
    transition: 0.4s;
}

.menu-item.active {
    color: #fff;
}

.moving-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 66px;
    background: var(--primary);
    border-radius: 18px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.2);
}

.discovery-body {
    padding: 60px;
}

.content-panel {
    display: none;
    animation: panelEffect 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.content-panel.active {
    display: block;
}

@keyframes panelEffect {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tag {
    background: var(--soft-green);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.panel-info h3 {
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.panel-info p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.cta-link {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.cta-link:hover {
    color: var(--primary);
}

.panel-visual {
    height: 450px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.panel-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1100px) {
    .premium-discovery {
        padding: 60px 0;
    }

    .discovery-glass-box {
        grid-template-columns: 1fr;
        border-radius: 25px;
        margin: 0 10px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    }

    .discovery-nav {
        padding: 30px 15px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-header {
        text-align: center;
        margin-bottom: 20px;
    }

    .nav-header h2 {
        font-size: 24px;
        margin: 5px 0 15px;
    }


    .tabs-menu {
        flex-direction: row;
        overflow-x: auto;
        padding: 5px;
        gap: 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .tabs-menu::-webkit-scrollbar {
        display: none;
    }

    .menu-item {
        white-space: nowrap;
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 50px;
        background: #f1f5f9;
        flex-shrink: 0;
    }

    .moving-bg {
        display: none;
    }

    .menu-item.active {
        background: var(--primary);
        color: #fff;
    }

    .discovery-body {
        padding: 25px 15px;
    }

    .panel-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .panel-info {
        order: 2;
    }

    .panel-visual {
        order: 1;
        height: 220px;
        border-radius: 20px;
    }

    .panel-info h3 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .panel-info p {
        font-size: 14px;
        line-height: 1.6;
    }

    .cta-link {
        justify-content: center;
    }
}

/**/

:root {
    --primary: #1a4332;
    --dark: #0f172a;
    --soft-white: #f8fafc;
}

.minimal-products {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.minimal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.minimal-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.top-label {
    color: #c5a059;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;
}

.nav-btn:hover {
    background: #1a4332;
    color: #fff;
    border-color: #1a4332;
}


.minimal-slider-window {
    overflow: hidden;
    margin: 0 -10px;

}

.minimal-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 10px;
}

.minimal-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 250px;
    transition: 0.3s;
}

.product-frame {
    position: relative;
    height: 320px;
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    padding: 20px;
    transition: 0.5s;
}

.frame-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    backdrop-filter: blur(4px);
}

.view-btn {
    padding: 10px 20px;
    background: #1a4332;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}


.p-type {
    font-size: 10px;
    color: #c5a059;
    font-weight: 800;
    text-transform: uppercase;
}

.p-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 5px 0;
}

.price {
    font-size: 17px;
    font-weight: 800;
    color: #1a4332;
}


.minimal-card:hover .frame-overlay {
    opacity: 1;
}

.minimal-card:hover img {
    transform: scale(1.05);
}


@media (max-width: 1100px) {
    .minimal-card {
        flex: 0 0 calc(33.33% - 14px);
    }
}

@media (max-width: 768px) {
    .minimal-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 160px;
    }

    .product-frame {
        height: 240px;
    }

    .p-title {
        font-size: 14px;
    }
}












/* --- RESPONSIVE ADJUSTMENTS --- */

/* Hero Slider Responsive */
@media (max-width: 992px) {
    .hero-slider {
        height: 70vh;
    }

    .slide-content {
        padding: 0 20px;
    }

    .slide-content h2 {
        font-size: 45px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
    }

    .slide-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .slide-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 30px;
        text-align: center;
    }

    .slider-dots {
        bottom: 20px;
    }
}

/* Ingredient Focus Responsive */
@media (max-width: 992px) {
    .ingredient-focus {
        padding: 60px 0;
    }

    .focus-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .focus-content {
        text-align: center;
        width: 100%;
    }

    .main-title {
        font-size: 36px;
    }

    .focus-product-area {
        width: 100%;
        height: 400px;
        order: -1;
    }

    .benefit-list {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 28px;
    }

    .focus-product-area {
        height: 350px;
        padding: 15px;
    }

    .item-card {
        padding: 10px;
        gap: 12px;
    }

    .item-img-wrapper {
        width: 190px;
        height: 190px;
    }

    .item-name {
        font-size: 14px;
    }
}

/* Premium Discovery Responsive - Fixed Full Width */
@media (max-width: 1100px) {
    .premium-discovery {
        padding: 40px 0;
    }

    .discovery-glass-box {
        display: block;

        grid-template-columns: 1fr;
        border-radius: 20px;
        margin: 0 10px;
        width: auto;

    }

    .discovery-nav {
        padding: 20px 15px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        text-align: center;
        width: 100%;
    }

    .nav-header h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .tabs-menu {
        flex-direction: row;
        overflow-x: auto;
        padding: 10px 5px;
        gap: 8px;
        display: flex;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .menu-item {
        flex: 0 0 auto;

        padding: 10px 18px;
        font-size: 13px;
    }

    .discovery-body {
        padding: 20px;
        width: 100%;
    }

    .panel-grid {
        display: flex;
        flex-direction: column;

        gap: 20px;
        width: 100%;
    }

    .panel-visual {
        order: 1;
        height: 250px;
        width: 100%;

        border-radius: 15px;
    }

    .panel-info {
        order: 2;
        text-align: center;
        width: 100%;
        padding: 0;
    }

    .panel-info h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .panel-info p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .cta-link {
        display: inline-flex;
        justify-content: center;
        width: 100%;
        padding: 12px;
        background: var(--soft-green);
        border-radius: 10px;
    }
}

/* Minimal Products Slider Responsive */
@media (max-width: 1100px) {
    .minimal-card {
        flex: 0 0 calc(33.33% - 14px);
    }
}

@media (max-width: 768px) {
    .minimal-products {
        padding: 50px 0;
    }

    .minimal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }

    .minimal-header h2 {
        font-size: 26px;
    }

    .minimal-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 170px;
    }

    .product-frame {
        height: 220px;
        border-radius: 15px;
    }

    .p-title {
        font-size: 14px;
    }

    .price {
        font-size: 15px;
    }

    .nav-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .minimal-card {
        flex: 0 0 calc(80% - 10px);
    }


    .minimal-slider-window {
        margin: 0;
    }
}