:root{
    --bg:#ffffff;
    --card:#ffffff;
    --text:#111111;
    --muted:#6e6e73;
    --border:#ececec;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Manrope',sans-serif;
    background:var(--bg);
    color:var(--text);
}

.container{
    width:1440px;
    max-width:calc(100% - 40px);
    margin:auto;
}

.hero{
    padding:60px 0 40px;
}

.brand{
    display:flex;
    align-items:center;
    gap:24px;
}

.brand img{
    width:90px;
    height:90px;
    object-fit:contain;
    flex-shrink:0;
}

.brand-text h1{
    font-size:52px;
    font-family:'Montserrat',sans-serif;
    letter-spacing:-2px;
    line-height:1;
    margin:0;
}


.brand-text p{
    margin-top:10px;
    font-size:18px;
    color:#6e6e73;
}

.hero h1{
    font-size:64px;
    font-weight:800;
    letter-spacing:-3px;
}

.hero p{
    margin-top:12px;
    color:var(--muted);
    font-size:18px;
}

.categories{
    position:static;
    top:auto;
    z-index:100;

    backdrop-filter:blur(20px);
    background:rgba(255,255,255,.92);

    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
}

.categories .container{
    display:flex;
    gap:10px;
    overflow-x:auto;
    padding:14px 0;
}

.categories .container::-webkit-scrollbar{
    display:none;
}

.categories a{
    text-decoration:none;

    color:#fff;

    background:#2c8466;

    border:1px solid #2c8466;

    padding:10px 16px;

    border-radius:999px;

    white-space:nowrap;

    font-size:14px;
    font-weight:700;

    transition:.2s ease;
}

.categories a:hover{
    background:#236b53;
    border-color:#236b53;

    transform:translateY(-1px);
}

.section{
    padding:50px 0;
    scroll-margin-top:50px;
}

.section h2{
    font-size:42px;
    font-weight:800;
    letter-spacing:-1px;
    margin-bottom:30px;
}

.products{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.product{
    background:#fff;

    border:1px solid var(--border);

    border-radius:28px;

    overflow:hidden;

    transition:.25s ease;
}

.product-image{
    aspect-ratio:1/1;
    overflow:hidden;
}

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

    transition:.4s;
}

.product-content{
    padding:22px;
}

.product-content h3{
    font-size:24px;
    font-weight:800;
    letter-spacing:-0.5px;
}

.sizes{
    margin-top:18px;
}

.sizes div{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:12px 0;

    border-bottom:1px solid #f2f2f2;
}

.sizes div:last-child{
    border-bottom:none;
}

.sizes span{
    color:var(--muted);
}

.sizes b{
    font-size:18px;
}

@media (hover:hover){

    .product:hover{
        transform:translateY(-6px);

        box-shadow:
            0 20px 40px rgba(0,0,0,.08);
    }

    .product:hover img{
        transform:scale(1.05);
    }
}

@media(max-width:1200px){

    .products{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:900px){

    .products{
        grid-template-columns:repeat(2,1fr);
    }

    .hero h1{
        font-size:48px;
    }
}

@media(max-width:600px){

    .brand{
        flex-direction:column;
        text-align:center;
        gap:16px;
    }

    .brand img{
        width:90px;
        height:90px;
    }

    .brand-text h1{
        font-size:38px;
        letter-spacing:-1px;
    }

    .brand-text p{
        font-size:15px;
    }

    .container{
        max-width:calc(100% - 50px);
    }

    .products{
        grid-template-columns:1fr;
        gap:24px;
    }

    .hero{
        padding:40px 0 24px;
    }

    .hero h1{
        font-size:36px;
        letter-spacing:-1px;
    }

    .section h2{
        font-size:32px;
    }
}

.footer{
    margin-top:80px;
    padding:60px 0 30px;

    background:#fafafa;

    border-top:1px solid #ececec;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.footer-block h4{
    font-size:18px;
    font-weight:800;

    margin-bottom:18px;
}

.footer-block p{
    color:#6e6e73;
    line-height:1.7;
}

.footer-block a{
    display:block;

    color:#6e6e73;

    text-decoration:none;

    margin-bottom:12px;

    transition:.2s;
}

.footer-block a:hover{
    color:#111;
}

.footer-bottom{
    margin-top:40px;
    padding-top:25px;

    border-top:1px solid #ececec;

    color:#8e8e93;

    font-size:14px;
}

@media(max-width:768px){

    .footer{
        margin-top:50px;
        padding:40px 0 20px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:32px;
    }

    .footer-bottom{
        margin-top:30px;
    }
}

.cookie-banner{
    position:fixed;
    left:20px;
    right:20px;
    bottom:20px;

    z-index:1000;

    display:none;
}

.cookie-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

    padding:18px 20px;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(20px);

    border:1px solid #ececec;

    border-radius:20px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);
}

.cookie-content p{
    margin:0;

    color:#6e6e73;

    font-size:14px;

    line-height:1.5;
}

.cookie-content a{
    color:#111;
    font-weight:600;
}

.cookie-content button{
    flex-shrink:0;

    border:none;

    background:#111;

    color:#fff;

    padding:12px 22px;

    border-radius:12px;

    cursor:pointer;

    font-weight:700;
}

@media(max-width:600px){

    .cookie-banner{
        left:12px;
        right:12px;
        bottom:12px;
    }

    .cookie-content{
        flex-direction:column;
        align-items:stretch;
    }

    .cookie-content button{
        width:100%;
    }
}

.franchise{
    padding-bottom:40px;
}

.franchise-hero{
    padding:40px 0 80px;
}

.franchise-badge{
    display:inline-block;

    padding:10px 16px;

    border-radius:999px;

    background:#f5f5f7;

    border:1px solid #ececec;

    font-size:14px;
    font-weight:700;
}

.franchise-hero h2{
    margin-top:24px;

    max-width:900px;

    font-size:72px;
    line-height:1;

    letter-spacing:-3px;

    font-weight:800;
}

.franchise-hero p{
    margin-top:24px;

    max-width:700px;

    color:#6e6e73;

    font-size:20px;

    line-height:1.7;
}

.franchise-btn{
    display:inline-flex;

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

    margin-top:32px;

    height:56px;

    padding:0 28px;

    border-radius:16px;

    background:#111;

    color:#fff;

    text-decoration:none;

    font-weight:700;
}

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

.stat{
    background:#fff;

    border:1px solid #ececec;

    border-radius:24px;

    padding:30px;
}

.stat strong{
    display:block;

    font-size:36px;

    font-weight:800;
}

.stat span{
    display:block;

    margin-top:10px;

    color:#6e6e73;
}

.franchise-section{
    padding:80px 0;
}

.franchise-section h2{
    font-size:48px;

    font-weight:800;

    letter-spacing:-2px;

    margin-bottom:40px;
}

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

.advantage{
    border:1px solid #ececec;

    border-radius:24px;

    padding:28px;
}

.advantage h3{
    font-size:24px;

    margin-bottom:12px;
}

.advantage p{
    color:#6e6e73;

    line-height:1.7;
}

.contact-card{
    border:1px solid #ececec;

    border-radius:32px;

    padding:60px;

    text-align:center;
}

.contact-card p{
    max-width:600px;

    margin:20px auto 0;

    color:#6e6e73;

    line-height:1.8;
}

@media(max-width:900px){

    .franchise-hero h2{
        font-size:48px;
        letter-spacing:-1px;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

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

@media(max-width:600px){

    .franchise-hero{
        padding:20px 0 50px;
    }

    .franchise-hero h2{
        font-size:36px;
    }

    .franchise-hero p{
        font-size:16px;
    }

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

    .contact-card{
        padding:30px;
    }

    .franchise-section h2{
        font-size:32px;
    }

    .franchise-btn{
        width:100%;
    }
}

.franchise-gallery{
    padding:20px 0 80px;
}

.gallery-grid{
    display:grid;

    grid-template-columns:2.5fr 1fr;
    grid-template-rows:250px 250px;

    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:28px;

    display:block;
}

.gallery-grid img:nth-child(1){
    grid-row:1 / span 2;
}

@media(max-width:768px){

    .franchise-gallery{
        padding:10px 0 50px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        grid-template-rows:auto;

        gap:16px;
    }

    .gallery-grid img:nth-child(1){
        grid-row:auto;
        height:340px;
    }

    .gallery-grid img:nth-child(2),
    .gallery-grid img:nth-child(3){
        height:220px;
    }

    .gallery-grid img{
        border-radius:22px;
    }
}

.modal-overlay{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(8px);

    display:none;

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

    padding:20px;

    z-index:9999;
}

.modal-overlay.show{
    display:flex;
}

.modal{
    position:relative;

    width:100%;
    max-width:520px;

    background:#fff;

    border-radius:32px;

    padding:40px;

    animation:modalShow .25s ease;
}

@keyframes modalShow{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

.modal-close{
    position:absolute;

    right:20px;
    top:20px;

    width:40px;
    height:40px;

    border:none;

    background:#f5f5f7;

    border-radius:12px;

    cursor:pointer;

    font-size:24px;
}

.modal h3{
    font-size:32px;
    font-weight:800;

    letter-spacing:-1px;
}

.modal-description{
    margin-top:16px;

    color:#6e6e73;

    line-height:1.7;
}

.contact-card-modal{
    margin-top:30px;

    display:flex;
    flex-direction:column;
    gap:16px;
}

.contact-item{
    padding:20px;

    border:1px solid #ececec;

    border-radius:20px;
}

.contact-item span{
    display:block;

    font-size:13px;

    color:#6e6e73;

    margin-bottom:8px;
}

.contact-item a,
.contact-item strong{
    color:#111;

    font-size:22px;

    font-weight:800;

    text-decoration:none;
}

@media(max-width:600px){

    .modal{
        padding:28px;
        border-radius:24px;
    }

    .modal h3{
        font-size:26px;
    }

    .contact-item a,
    .contact-item strong{
        font-size:18px;
    }
}

.footer-franchise-btn{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;

    padding:14px 24px;

    background:#2c8466;
    color:#fff !important;

    border-radius:14px;

    font-weight:700;
    text-decoration:none;

    transition:.2s ease;

    box-shadow:0 8px 20px rgba(44,132,102,.25);
}

.footer-franchise-btn:hover{
    background:#236b53;
    color:#fff !important;

    transform:translateY(-2px);

    box-shadow:0 12px 25px rgba(44,132,102,.35);
}

.franchise-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-top:32px;

    padding:16px 28px;
    min-height:56px;

    background:#2c8466;
    color:#fff;

    border:none;
    border-radius:16px;

    text-decoration:none;
    font-weight:700;

    transition:.2s ease;

    box-shadow:0 8px 20px rgba(44,132,102,.25);
}

.franchise-btn:hover{
    background:#236b53;
    color:#fff;

    transform:translateY(-2px);

    box-shadow:0 12px 25px rgba(44,132,102,.35);
}

.delivery-btn{
    position:fixed;

    right:20px;
    bottom:20px;

    z-index:900;

    display:flex;
    align-items:center;
    gap:10px;

    height:58px;
    padding:0 24px;

    background:#2c8466;
    color:#fff;

    border-radius:999px;

    text-decoration:none;
    font-weight:700;
    font-size:15px;

    box-shadow:0 12px 30px rgba(44,132,102,.35);

    transition:.25s ease;
}

.delivery-btn img{
    width:24px;
    height:24px;
    object-fit:contain;

    flex-shrink:0;
}

.delivery-btn:hover{
    background:#236b53;
    color:#fff;

    transform:translateY(-2px);
}

@media(max-width:600px){

    .brand-text p{
        display:none;
    }

}

@media(max-width:600px){

    .hero{
        position:sticky;
        top:0;
        z-index:1000;

        padding:12px 0;

        background:#fafafa;

        border-bottom:1px solid #ececec;
    }

    .brand{
        flex-direction:row;
        justify-content:flex-start;
        text-align:left;
        gap:12px;
    }

    .brand img{
        width:42px;
        height:42px;
    }

    .brand-text h1{
        font-size:22px;
        letter-spacing:-0.5px;
    }

    .brand-text p{
        display:none;
    }
}

.mobile-menu-btn{
    display:none;
}

@media(max-width:768px){

    .hero{
        position:sticky;
        top:0;
        z-index:1000;

        background:#fafafa;
        border-bottom:1px solid #ececec;

        padding:12px 0;
    }

    .hero-content{
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    .brand{
        flex-direction:row;
        gap:12px;
    }

    .brand-text p{
        display:none;
    }

    .brand img{
        width:42px;
        height:42px;
    }

    .brand-text h1{
        font-size:22px;
    }

    .mobile-menu-btn{
        display:flex;
        align-items:center;
        justify-content:center;

        width:44px;
        height:44px;

        border:none;
        background:#fff;

        border-radius:12px;
        border:1px solid #ececec;

        font-size:24px;
        cursor:pointer;
    }
}

.mobile-menu-overlay{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.4);

    display:none;

    z-index:9999;
}

.mobile-menu-overlay.show{
    display:block;
}

.mobile-menu{
    position:absolute;

    top:0;
    right:0;

    width:300px;
    max-width:90vw;

    height:100%;

    background:#fafafa;

    padding:24px;

    overflow:auto;
}

.mobile-menu-header{
    display:flex;
    align-items:center;
    gap:12px;

    margin-bottom:30px;
}

.mobile-menu-header img{
    width:42px;
    height:42px;
}

.mobile-menu-nav a{
    display:block;

    padding:16px 0;

    color:#111;

    text-decoration:none;

    font-weight:700;

    border-bottom:1px solid #ececec;
}

.mobile-menu-close{
    position:absolute;
    top:20px;
    right:20px;

    border:none;
    background:none;

    font-size:32px;
    cursor:pointer;
}

@media(max-width:768px){

    .brand{
        flex-direction:row !important;
        align-items:center;
        gap:12px;
    }

    .brand img{
        width:42px !important;
        height:42px !important;
        object-fit:contain;
    }

    .brand-text h1{
        font-size:22px !important;
        line-height:1.1;
    }

    .brand-text p{
        display:none;
    }

    .hero{
        border-bottom:1px solid #ececec;
    }
}

.mobile-menu-brand{
    display:flex;
    align-items:center;
    gap:12px;

    margin-bottom:30px;
    padding-bottom:20px;

    border-bottom:1px solid #ececec;
}

.mobile-menu-brand img{
    width:48px;
    height:48px;
    object-fit:contain;
    flex-shrink:0;
}

.mobile-menu-brand strong{
    display:block;
    font-size:20px;
    font-weight:800;
}

.mobile-menu-brand span{
    display:block;
    margin-top:4px;
    font-size:13px;
    color:#6e6e73;
}

.brand-link{
    text-decoration:none;
    color:inherit;
}

.brand-link:hover{
    color:inherit;
}

@media(max-width:768px){

    .categories{
        border-top:none;
    }

}

.product-variants{
    display:flex;
    flex-wrap:wrap;
    gap:8px;

    margin-top:18px;
}

.volume-badge{
    border:none;

    height:38px;
    padding:0 14px;

    border-radius:999px;

    background:#f5f5f7;
    color:#6e6e73;

    font-size:13px;
    font-weight:800;

    cursor:pointer;

    transition:.2s ease;
}

.volume-badge:hover{
    background:#e9e9ed;
}

.volume-badge.active{
    background:#2c8466;
    color:#fff;

    box-shadow:0 8px 20px rgba(44,132,102,.25);
}

.product-price{
    margin-top:18px;

    font-size:32px;
    font-weight:800;

    color:#111;

    letter-spacing:-1px;
}

.product{
    display:flex;
    flex-direction:column;

    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    overflow:hidden;

    transition:.25s ease;
}

.product-content{
    display:flex;
    flex-direction:column;
    flex:1;

    padding:22px;
}

.product-content p{
    margin-top:8px;
    color:var(--muted);
    line-height:1.6;
    font-size:14px;
}

.product-variants{
    margin-top:auto;
    padding-top:16px;
}

.product-price{
    margin-top:16px;

    font-size:32px;
    font-weight:800;

    color:#111;

    line-height:1;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.social-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.social-link a {
    display: inline-flex !important;
    align-items: center;
    margin: 0 !important;
}

.link{
    color:#111;
    text-decoration:none;
    font-weight:600;

    transition:color .2s ease;
}

.link:hover{
    color:#111;
    opacity:.7;
    text-decoration:none;
    text-underline-offset:3px;
}

.link:active{
    opacity:.8;
}

.product-page{
    padding:50px 0 80px;
}

.breadcrumbs{
    display:flex;
    align-items:center;
    gap:10px;

    margin-bottom:40px;

    font-size:14px;
    color:#6e6e73;
}

.product-layout{

    display:grid;
    grid-template-columns:1fr 520px;

    gap:70px;

    align-items:start;

}

.product-photo{

    border:1px solid #ececec;

    border-radius:32px;

    overflow:hidden;

    background:#fff;

}

.product-photo img{

    width:100%;
    display:block;

    aspect-ratio:1/1;

    object-fit:cover;

}

.product-details{

    position:sticky;

    top:30px;

}

.product-category{

    display:inline-flex;

    align-items:center;

    height:36px;

    padding:0 14px;

    border-radius:999px;

    background:#f5f5f7;

    color:#6e6e73;

    font-size:13px;

    font-weight:700;

}

.product-details h1{

    margin-top:18px;

    font-size:56px;

    line-height:1;

    letter-spacing:-2px;

    font-weight:800;

}

.product-description{

    margin-top:20px;

    color:#6e6e73;

    line-height:1.8;

    font-size:17px;

}

.product-details .product-variants{

    margin-top:35px;

}

.product-details .product-price{

    margin:30px 0;

    font-size:56px;

    font-weight:800;

    letter-spacing:-2px;

}

.product-details .franchise-btn{

    width:100%;

    justify-content:center;

}

.product-text{

    margin-top:80px;

    max-width:900px;

}

.product-text h2{

    font-size:38px;

    font-weight:800;

    margin-bottom:20px;

}

.product-text p{

    color:#6e6e73;

    line-height:1.9;

    font-size:17px;

}

@media(max-width:1000px){

    .product-layout{

        grid-template-columns:1fr;

        gap:40px;

    }

    .product-details{

        position:static;

    }

}

@media(max-width:600px){

    .product-page{

        padding:30px 0 60px;

    }

    .product-details h1{

        font-size:36px;

        letter-spacing:-1px;

    }

    .product-details .product-price{

        font-size:42px;

    }

    .product-text h2{

        font-size:30px;

    }

}

.similar-products{

    margin-top:90px;

}

.section-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}

.section-header h2{

    font-size:38px;

    font-weight:800;

}

.slider-buttons{

    display:flex;

    gap:10px;

}

.slider-buttons button{

    width:48px;
    height:48px;

    border:none;

    background:#f5f5f7;

    border-radius:14px;

    cursor:pointer;

    font-size:20px;

    transition:.2s;

}

.slider-buttons button:hover{

    background:#2c8466;
    color:#fff;

}

.similar-card{

    flex:0 0 380px;

    width:380px;

    background:#fff;

    border:1px solid #ececec;

    border-radius:26px;

    overflow:hidden;

    text-decoration:none;

    color:#111;

    transition:.25s ease;

}

.similar-card img{

    display:block;

    width:100%;

    height:300px;

    object-fit:cover;

}

.similar-slider::-webkit-scrollbar{

    display:none;

}

.similar-slider{

    display:flex;

    gap:22px;

    overflow-x:auto;

    scroll-behavior:smooth;

    scrollbar-width:none;

    padding-bottom:10px;

}

.similar-slider::-webkit-scrollbar{
    display:none;
}

.similar-card{

    flex:0 0 320px;

    width:320px;

    background:#fff;
    border:1px solid #ececec;
    border-radius:26px;
    overflow:hidden;

    text-decoration:none;
    color:#111;

    transition:.25s ease;

}

.similar-card img{

    width:100%;
    height:320px;

    object-fit:cover;

    display:block;

}

.similar-card:hover{

    transform:translateY(-6px);

}

.similar-content{

    padding:20px;

}

.similar-content h3{

    font-size:22px;

    font-weight:800;

}

.similar-price{

    margin-top:14px;

    font-size:28px;

    font-weight:800;

}


.similar-card img{

    width:100%;

    aspect-ratio:1;

    object-fit:cover;

}

.similar-content{

    padding:20px;

}

.similar-content h3{

    font-size:22px;

    font-weight:800;

}

.similar-price{

    margin-top:14px;

    font-size:28px;

    font-weight:800;

}

@media(max-width:768px){

    .similar-card{

        flex:0 0 260px;

        width:260px;

    }

    .similar-card img{

        height:260px;

    }

}
