
:root {
    --brand: #F59E0B;
    --brand-dark: #d98306;
    --accent: #0E7A4F;
    --text: #0E7A4F;
    --muted: #6b7280;
    --bg: #ffffff;
    --card: #ffffff;
    --paypal-gold: #F2B100;
    --shadow: 0 4px 24px rgba(0, 0, 0, .06);
    --shadow-hover: 0 8px 32px rgba(0, 0, 0, .12);
    --nav-bg: rgba(255, 255, 255, 0.74); /* леко матов фон */
    --nav-border: #e5e7eb;
    --green-linear-gradientd: linear-gradient(180deg, #f6fbf8 0%, #ffffff 100%);
    --bacgraund-linear-green: linear-gradient(
            180deg,
            rgba(14, 122, 79, 0.18) 0%,
            rgba(14, 122, 79, 0.08) 30%,
            rgba(255, 255, 255, 0) 100%
    );
}

* {
    box-sizing: border-box;
    max-width: 100vw;

    margin: 0;
    padding: 0
}

html {
    width: 100%;
    overflow-x: hidden;
}

html, body {

    background: var(--bacgraund-linear-green);

    min-height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;

}


body {
    font: 16px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

    color: var(--text);
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: transparent;


    overflow-y: auto;
    position: relative;


}


::-webkit-scrollbar {
    width: 8px;
}


::-webkit-scrollbar-track {

    background: var(--accent);
    border-radius: 10px;
}


::-webkit-scrollbar-thumb {
    background: var(--brand);
    border-radius: 10px;
}


::-webkit-scrollbar-thumb:hover {
    background: #555;
}


a {
    text-decoration: none;
    color: inherit
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}


.btn-3d {
    background: #fff;

    border: none;
    padding: 0.55rem 1rem;
    font-weight: 700;

    border-radius: 0.6rem;
    cursor: pointer;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    font-size: 0.85rem;
    white-space: nowrap;


}


.btn-3d:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);


    animation: bounce .35s ease-out;
}


.btn-3d:active {
    transform: translateY(1px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
}


.details-btn {
    background: #fff;
    border: 2px solid var(--brand);
    color: var(--brand);
    text-align: center;
}

.paypal-btn {
    background: #FFC439;
    color: #003087;
}

.klarna-btn {
    background: #000;
    color: #fff;
}


.cart-btn-2 {


    background: #fff;
    border: 2px solid var(--brand);
    border-radius: 1rem;

    color: #fff;
    padding: 0.55rem 0.8rem;
    font-size: 1rem;

    margin-top: -10px;


    grid-column: 1 / -1;
    justify-self: center;
}


.cart-btn-2:hover {
    transform: translateY(-4px) scale(1.1);
}


.kh-modal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    opacity: 0;
    transition: opacity .3s ease;
    z-index: 9999;
}

.kh-modal.hidden {
    pointer-events: none;
}


.kh-modal-box {
    background: transparent;
    width: 92%;
    max-width: 420px;

    padding: 2rem 2.2rem;
    border-radius: 18px;

    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.18);

    transform: translateY(25px);
    transition: transform .35s ease;
}

.kh-modal:not(.hidden) .kh-modal-box {
    transform: translateY(0);
}


.kh-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--accent, #0E7A4F);
    cursor: pointer;
}

.kh-modal-close:hover {
    color: #f60606;
}


.kh-modal-title {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 1000;
    margin-bottom: 1.4rem;

    color: var(--brand-dark);

    padding: .5rem -1rem -1rem -1rem;


    border-radius: 10px;


}


.kh-field,
.kh-field-r {
    font-weight: 600;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.kh-field,
.kh-field-r label {
    font-size: .9rem;
    margin-bottom: 5px;
    color: var(--accent, #0E7A4F);
}

.kh-field input {
    padding: .9rem;
    border-radius: 12px;
    border: 1px solid var(--brand-dark);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
    font-size: 1rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.kh-field-r input {
    padding: .4rem;
    border-radius: 12px;
    border: 1px solid #d5d5d5;
    font-size: 1rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.kh-field,
.kh-field-r input:focus {
    border-color: var(--brand, #F59E0B);
    /*  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);*/
    outline: none;
}


.kh-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-weight: 600;
    cursor: pointer;
    background: white;
    transition: all .2s ease;
    width: 100%;

    position: relative;


}

.kh-social-login {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 45px;
}

.kh-social-btn:hover {
    border-color: var(--brand, #F59E0B);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
    outline: none;
}

.kh-social-btn img {


    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
}


.google {
    border-color: #ddd;
}

.facebook {
    border-color: #1877f2;
}

.paypal {
    border-color: #003087;
}

.kh-divider {
    text-align: center;
    margin: 15px 0;
    position: relative;
}

.kh-divider span {
    background: white;
    padding: 0 10px;
    font-size: 14px;
    color: #777;
}

.kh-divider:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #ddd;
    z-index: -1;
}

.kh-i {
    font-weight: 700;
    background-color: #9E9E9E;
}


.kh-forgot {
    text-align: center;
    margin-bottom: 1.5rem;
}

.kh-forgot a {

    color: var(--accent, #0E7A4F);
    font-size: .85rem;
    font-weight: 600;
}


.kh-submit {
    background: var(--brand, #F59E0B);
    color: white;
    width: 100%;
    padding: .95rem;
    border: none;
    border-radius: 12px;

    font-size: 1.15rem;
    font-weight: 500;
    cursor: pointer;

    transition: background .2s ease;
}

.kh-submit:hover {
    background: var(--brand-dark, #d98306);
}


.kh-error-box {
    background: rgba(220, 0, 0, .12);
    color: rgba(255, 255, 255, 0.85);

    padding: .8rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
}

.input-error {
    border: 2px solid red;
    background-color: #ffe6e6;
}

/*@media (max-width: 480px) {
    .kh-modal-box {
        padding: 1.6rem 1.7rem;
        width: 90%;
    }
}*/


@media (max-width:480px){

    .kh-modal-box{
        width:92%;
        padding:1.2rem 1.2rem;
        max-height:85vh;
        overflow-y:auto;
    }

    .kh-social-login{
        gap:8px;
        margin-bottom:12px;
    }

    .kh-field-r{
        margin-bottom:.7rem;
    }

    .kh-submit{
        margin-top:10px;
    }

}

/* === CATEGORY PAGE CAROUSEL === */

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.fade-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    text-align: center;
}

.fade-item.active {
    opacity: 1;
    position: relative;
}


#footer {
    background: #0b1220;

    color: #fff;
    padding: 3rem 1rem 2rem;
    margin-top: 3rem;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;


    align-items: flex-start;
}

.footer-logo {
    width: 110px;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.footer-logo img {
    width: 55%;
    margin-right: 3rem;
}


.footer-col h4 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--brand);
}

.footer-col p {
    color: #cbd5e1;
    line-height: 1.55;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin: 0.35rem 0;
}

.footer-col a {
    color: #e2e8f0;
    text-decoration: none;
    transition: 0.2s;
}

.footer-col a:hover {
    color: var(--brand);
}

/* CERTIFICATES */
.footer-certificates {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
}

.footer-certificates img {
    width: 70px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

/* BOTTOM LINE */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    /*margin-top: 2.8rem;*/
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #94a3b8;


    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
/ margin-top: 2 rem;

}


/* TRUST SECTIONS */
.footer-trust {
    max-width: 1200px;
    margin: 1rem auto 0;

    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
    color: #e2e8f0;


    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    /*margin-top: 2rem;*/
    flex-wrap: wrap;
    text-align: center;
}

.trust-block h6 {
    font-size: 1rem;
    margin-bottom: .5rem;
    color: var(--brand);
}

.trust-logo {
    width: 160px;
    height: auto;
    opacity: .95;
}

.trust-logo-small {
    width: 85px;
    height: auto;
}

.trust-row {
    display: flex;
    align-items: center;
    gap: 15px;


    margin-top: .5rem;
}


.social-icon {

    filter: brightness(1) invert(0);

    display: flex;
    gap: 14px;
    margin-top: 1.2rem;


    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: 0.2s;

}

.social-icon.tiktok {
    width: 62px;
    height: 22px;
}

.social-icon:hover {
    transform: scale(1.1);
    filter: brightness(1.3);
}


/*zentrofuga*/
#load-nav {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    z-index: 99;
    display: none;
    align-items: center;
    justify-content: center;
}

#load-nav img {
    margin-top: 25rem;
    width: 100%;
    height: 100%;

    justify-content: center;
    align-items: center;
}


@supports (-webkit-touch-callout: none) {
    html, body {
        width: 100%;
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
    60% {
        transform: translateY(2px);
    }
    100% {
        transform: translateY(0);
    }

}


@media (min-width: 1200px) {
    body {
        max-width: 100%;
        margin: 0 auto;
    }

    .nav,
    .hero-grid,
    .grid,
    .products,
    .trust {
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
}


@media (min-width: 1400px) {
    .section h2 {
        font-size: 2.2rem;
        transform: translateX(1.2rem);
    }
}





