:root{
    --bg:#f6f7fb;
    --surface:#ffffff;
    --text:#1f2937;
    --muted:#6b7280;
    --line:#e5e7eb;
    --primary:#1f3c88;
    --primary-2:#456cf0;
    --radius:22px;
    --shadow:0 20px 60px rgba(0,0,0,.08);
    --container:1240px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background:var(--bg);
    color:var(--text);
}
body.modal-open{overflow:hidden}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

.container{
    width:min(100% - 28px, var(--container));
    margin:auto;
}

.site-header{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(229,231,235,.9);
}
.header-inner{
    min-height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}
.logo-text,
.custom-logo-link{
    display:inline-flex;
    align-items:center;
}
.logo-text{
    font-size:24px;
    font-weight:800;
}
.custom-logo{
    max-height:56px;
    width:auto;
}
.menu-list{
    list-style:none;
    display:flex;
    gap:24px;
    margin:0;
    padding:0;
}
.menu-list a{
    font-weight:700;
    color:var(--text);
}
.mobile-menu-toggle{
    display:none;
    border:none;
    background:transparent;
    font-size:28px;
    cursor:pointer;
}

.hero-slider-section{
    position:relative;
    overflow:hidden;
    padding:24px 0 12px;
}
.hero-slide{display:none}
.hero-slide.active{display:block}
.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:36px;
    align-items:center;
    background:linear-gradient(135deg,#eef3ff,#ffffff);
    padding:46px;
    border-radius:32px;
    box-shadow:var(--shadow);
}
.hero-badge{
    display:inline-block;
    margin-bottom:14px;
    background:#e4ebff;
    color:var(--primary);
    padding:8px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
}
.hero-content h1{
    font-size:54px;
    line-height:1.06;
    margin:0 0 16px;
}
.hero-content p{
    font-size:18px;
    color:var(--muted);
    margin:0 0 20px;
}
.hero-image-wrap img{
    width:100%;
    border-radius:24px;
    object-fit:cover;
}
.hero-placeholder-card,
.image-placeholder{
    width:100%;
    min-height:320px;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#edf2ff;
    color:var(--primary);
    font-weight:700;
    text-align:center;
    padding:24px;
}

.section-head{
    text-align:center;
    margin-bottom:28px;
}
.section-head h2,
.archive-head h1{
    font-size:38px;
    margin:0 0 10px;
}
.section-head p{
    margin:0;
    color:var(--muted);
}

.category-section{
    padding:56px 0 24px;
}
.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}
.product-card{
    background:var(--surface);
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    border:1px solid var(--line);
    transition:.25s ease;
}
.product-card:hover{transform:translateY(-6px)}
.product-image{
    aspect-ratio:4/5;
    background:#eef2f7;
}
.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.product-content{padding:20px}
.product-content h3{
    margin:0 0 10px;
    font-size:24px;
}
.product-excerpt{
    color:var(--muted);
    font-size:15px;
    margin-bottom:14px;
}
.feature-list{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:16px;
}
.feature-list span{
    padding:8px 12px;
    background:#f3f4f6;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
}
.product-buttons{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:0 18px;
    border-radius:14px;
    font-weight:700;
    border:none;
    cursor:pointer;
}
.btn-primary{
    background:var(--primary);
    color:#fff;
}
.btn-secondary{
    background:#eef2ff;
    color:var(--primary);
}

.instagram-section{padding:56px 0 90px}
.insta-box{
    background:linear-gradient(135deg,var(--primary),var(--primary-2));
    color:#fff;
    padding:42px;
    border-radius:28px;
    text-align:center;
}
.insta-box h2{margin:0 0 18px}

.site-footer{padding:28px 0 36px}
.footer-inner{
    display:flex;
    justify-content:space-between;
    gap:20px;
    align-items:center;
}

.whatsapp-float{
    position:fixed;
    right:18px;
    bottom:18px;
    z-index:60;
    background:#25D366;
    color:#fff;
    padding:15px 18px;
    border-radius:999px;
    font-weight:700;
    box-shadow:var(--shadow);
}

.product-modal{
    position:fixed;
    inset:0;
    z-index:100;
    display:none;
}
.product-modal.active{display:block}
.modal-overlay{
    position:absolute;
    inset:0;
    background:rgba(17,24,39,.6);
}
.modal-box{
    position:relative;
    width:min(1100px, calc(100% - 24px));
    margin:40px auto;
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    z-index:2;
    max-height:calc(100vh - 80px);
    overflow:auto;
}
.modal-close{
    position:absolute;
    top:12px;
    right:12px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#111827;
    color:#fff;
    font-size:26px;
    cursor:pointer;
    z-index:4;
}
.modal-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    padding:24px;
}
.modal-gallery{
    display:grid;
    gap:14px;
}
.modal-gallery img{
    border-radius:18px;
    width:100%;
}
.modal-content h3{
    margin-top:0;
    font-size:34px;
}
.modal-description{
    color:var(--muted);
    margin-bottom:18px;
    line-height:1.7;
}
.default-content,
.single-product-wrap{padding:48px 0 80px}
.single-product-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:32px;
    align-items:start;
}
.single-product-media img{
    width:100%;
    border-radius:24px;
}
.no-products{
    grid-column:1/-1;
    color:var(--muted);
}

@media (max-width: 991px){
    .hero-grid,
    .modal-grid,
    .products-grid,
    .single-product-grid{
        grid-template-columns:1fr;
    }

    .hero-grid{padding:22px}
    .hero-content h1{font-size:36px}
    .section-head h2,
    .archive-head h1{font-size:28px}

    .mobile-menu-toggle{display:block}
    .main-nav{
        position:absolute;
        top:78px;
        left:0;
        right:0;
        background:#fff;
        border-bottom:1px solid var(--line);
        display:none;
    }
    .main-nav.menu-open{display:block}
    .menu-list{
        display:flex;
        flex-direction:column;
        gap:0;
        padding:12px 14px 18px;
    }
    .menu-list li a{
        display:block;
        padding:12px 0;
    }

    .product-buttons .btn{width:100%}
    .btn{min-height:54px;font-size:16px}
    .product-card{border-radius:20px}
    .product-content h3{font-size:22px}
    .hero-badge{font-size:12px}

    .whatsapp-float{
        right:12px;
        left:12px;
        bottom:12px;
        text-align:center;
        border-radius:16px;
    }
}
