:root{
    --bg:#0b0d10;
    --bg-2:#12151a;
    --surface:#161a20;
    --surface-2:#1b2027;
    --text:#f3f4f6;
    --muted:#9ca3af;
    --line:rgba(255,255,255,.08);
    --line-strong:rgba(255,255,255,.14);
    --blue:#2563eb;
    --blue-dark:#1d4ed8;
    --white:#ffffff;
    --container:1240px;
    --radius:14px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    direction:rtl;
    background:var(--bg);
    color:var(--text);
    font-family:"Segoe UI",Tahoma,Arial,sans-serif;
    -webkit-font-smoothing:antialiased;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto;display:block}
.container{
    width:min(calc(100% - 48px), var(--container));
    margin-inline:auto;
}

/* Header */
.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(11,13,16,.94);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
}
.header-inner{
    min-height:82px;
    display:flex;
    align-items:center;
    gap:28px;
}
.brand{
    display:flex;
    align-items:center;
    margin-left:32px;
}
.brand-text{
    color:var(--white);
    font-size:34px;
    font-weight:800;
    letter-spacing:-1px;
}
.custom-logo{
    max-height:52px;
    width:auto;
}
.main-nav{
    display:flex;
    align-items:center;
    gap:28px;
    font-size:15px;
    color:#d1d5db;
}
.main-nav a:hover{color:var(--white)}
.header-actions{
    margin-right:auto;
    display:flex;
    align-items:center;
    gap:18px;
}
.cart-link{
    color:#d1d5db;
    font-size:14px;
}
.cart-link span{
    display:inline-grid;
    place-items:center;
    width:18px;
    height:18px;
    margin-right:6px;
    border-radius:999px;
    background:var(--white);
    color:#111827;
    font-size:11px;
    font-weight:700;
}

/* Buttons */
.button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    transition:.2s ease;
    border:1px solid transparent;
    font-weight:700;
}
.button:hover{transform:translateY(-1px)}
.button-primary{
    background:var(--blue);
    color:var(--white);
}
.button-primary:hover{background:var(--blue-dark)}
.button-secondary{
    background:transparent;
    color:var(--white);
    border-color:var(--line-strong);
}
.button-secondary:hover{
    border-color:rgba(255,255,255,.22);
    background:rgba(255,255,255,.03);
}
.button-light{
    background:var(--white);
    color:#0b0d10;
}
.button-small{
    min-height:42px;
    padding:0 18px;
}

/* Hero */
.hero{
    padding:110px 0 90px;
    border-bottom:1px solid var(--line);
}
.hero-grid{
    display:grid;
    grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr);
    gap:48px;
    align-items:center;
}
.eyebrow,
.section-kicker{
    font-size:12px;
    letter-spacing:1.6px;
    text-transform:uppercase;
    color:#9aa3af;
    font-weight:700;
}
.hero h1{
    margin:18px 0 18px;
    font-size:clamp(46px,6vw,88px);
    line-height:1.08;
    font-weight:800;
    letter-spacing:-2px;
}
.hero h1 span{
    color:var(--blue);
}
.hero-description{
    max-width:640px;
    color:var(--muted);
    font-size:18px;
    line-height:1.9;
    margin:0;
}
.hero-actions{
    display:flex;
    gap:14px;
    margin-top:32px;
}
.hero-actions .button{
    min-height:52px;
    padding:0 22px;
}

.hero-panel-box{
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:18px;
    padding:28px;
}
.panel-kicker{
    color:var(--white);
    font-size:18px;
    font-weight:700;
    margin-bottom:22px;
}
.panel-list{
    list-style:none;
    padding:0;
    margin:0;
}
.panel-list li{
    padding:14px 0;
    border-bottom:1px solid var(--line);
    color:#d1d5db;
    font-size:15px;
}
.panel-list li:last-child{border-bottom:0}

/* Intro strip */
.intro-strip{
    border-bottom:1px solid var(--line);
}
.intro-strip-inner{
    min-height:90px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:34px;
}
.intro-strip-inner p{
    margin:0;
    color:#d1d5db;
    font-size:16px;
    font-weight:600;
}

/* Sections */
.products-section,
.process-section,
.why-section{
    padding:90px 0;
}
.section-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:24px;
    margin-bottom:36px;
}
.section-head h2{
    margin:10px 0 0;
    font-size:42px;
    line-height:1.15;
    letter-spacing:-1px;
}
.section-link{
    color:#d1d5db;
    font-size:14px;
}
.section-link:hover{color:#fff}

/* Products */
.woocommerce ul.products{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
    margin:0;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after{
    display:none !important;
}
.woocommerce ul.products li.product{
    width:auto !important;
    float:none !important;
    margin:0 !important;
    padding:0 0 18px;
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:16px;
    overflow:hidden;
    transition:.2s ease;
}
.woocommerce ul.products li.product:hover{
    transform:translateY(-3px);
    border-color:rgba(255,255,255,.16);
}
.woocommerce ul.products li.product img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    margin:0 0 16px !important;
    background:#111418;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title{
    padding:0 16px !important;
    font-size:15px !important;
    line-height:1.7;
    font-weight:700;
    color:var(--white);
}
.woocommerce ul.products li.product .price{
    display:block;
    padding:6px 16px 0;
    color:#dbe4f0 !important;
    font-size:14px !important;
}
.woocommerce ul.products li.product .button{
    width:calc(100% - 32px);
    margin:16px 16px 0 !important;
    min-height:44px;
    background:#0f1318 !important;
    color:#fff !important;
    border:1px solid var(--line) !important;
    border-radius:10px;
    font-size:13px !important;
    font-weight:700 !important;
}
.woocommerce ul.products li.product .button:hover{
    background:var(--blue) !important;
    border-color:var(--blue) !important;
}

/* Process */
.process-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}
.process-card{
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:16px;
    padding:28px;
}
.process-number{
    display:inline-block;
    margin-bottom:18px;
    color:var(--blue);
    font-size:14px;
    font-weight:800;
}
.process-card h3{
    margin:0 0 12px;
    font-size:22px;
}
.process-card p{
    margin:0;
    color:var(--muted);
    line-height:1.9;
    font-size:15px;
}

/* Why */
.why-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}
.why-card{
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:16px;
    padding:28px;
}
.why-card h3{
    margin:0 0 12px;
    font-size:22px;
}
.why-card p{
    margin:0;
    color:var(--muted);
    line-height:1.9;
    font-size:15px;
}

/* CTA */
.cta-section{
    padding:90px 0;
    border-top:1px solid var(--line);
}
.cta-box{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:30px;
    padding:36px;
    background:var(--blue);
    border-radius:20px;
}
.section-kicker-light{
    color:rgba(255,255,255,.75);
}
.cta-box h2{
    margin:12px 0 0;
    font-size:40px;
    line-height:1.25;
    color:#fff;
    max-width:680px;
}
.cta-box .button-light{
    min-height:50px;
    padding:0 22px;
    white-space:nowrap;
}

/* Footer */
.site-footer{
    border-top:1px solid var(--line);
    padding:34px 0;
}
.footer-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}
.footer-brand strong{
    display:block;
    font-size:24px;
    margin-bottom:8px;
}
.footer-brand p{
    margin:0;
    color:var(--muted);
    font-size:14px;
}
.footer-links{
    display:flex;
    gap:18px;
    font-size:14px;
    color:#d1d5db;
}
.footer-copy{
    color:var(--muted);
    font-size:13px;
}

/* Default pages */
.site-main{
    min-height:600px;
    padding:60px 0;
}
.default-page{
    max-width:900px;
}
.page-title{
    margin:0 0 20px;
    font-size:42px;
}
.entry-content{
    color:#d1d5db;
    line-height:2;
    font-size:16px;
}

/* Woo general */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error{
    background:var(--surface);
    color:var(--text);
    border-color:var(--blue);
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button{
    background:var(--blue);
    color:var(--white);
}

/* Responsive */
@media (max-width: 1024px){
    .hero-grid{
        grid-template-columns:1fr;
    }
    .woocommerce ul.products{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .process-grid,
    .why-grid{
        grid-template-columns:1fr;
    }
}

@media (max-width: 768px){
    .main-nav{display:none}
    .header-inner{
        min-height:74px;
    }
    .brand{
        margin-left:auto;
    }
    .header-actions{
        margin-right:0;
        gap:10px;
    }
    .cart-link{display:none}
    .hero{
        padding:72px 0 60px;
    }
    .hero h1{
        font-size:52px;
    }
    .hero-description{
        font-size:16px;
    }
    .hero-actions{
        flex-direction:column;
        align-items:stretch;
    }
    .intro-strip-inner{
        flex-direction:column;
        justify-content:center;
        gap:10px;
        padding:20px 0;
    }
    .section-head{
        flex-direction:column;
        align-items:flex-start;
    }
    .section-head h2{
        font-size:34px;
    }
    .cta-box{
        flex-direction:column;
        align-items:flex-start;
    }
    .cta-box h2{
        font-size:32px;
    }
    .footer-inner{
        flex-direction:column;
        align-items:flex-start;
    }
}

@media (max-width: 560px){
    .container{
        width:calc(100% - 28px);
    }
    .brand-text{
        font-size:28px;
    }
    .button-small{
        padding:0 14px;
        min-height:40px;
        font-size:13px;
    }
    .hero h1{
        font-size:42px;
    }
    .woocommerce ul.products{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:12px;
    }
    .woocommerce ul.products li.product .woocommerce-loop-product__title{
        font-size:13px !important;
    }
    .woocommerce ul.products li.product .price{
        font-size:13px !important;
    }
}
