@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap');

:root{
    --bg:#f5f5f3;
    --dark:#080c11;
    --dark-2:#0e141b;
    --card:#ffffff;
    --gold:#d8a13d;
    --gold-light:#f2c76f;
    --text:#111827;
    --muted:#89929c;
    --border:#e6e8eb;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Cairo',sans-serif;
    background:var(--bg);
    color:var(--text);
    -webkit-font-smoothing:antialiased;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    display:block;
    width:100%;
}

.container{
    width:min(1240px,92%);
    margin:auto;
}


/* HEADER */

.header{
    position:sticky;
    top:0;
    z-index:1000;

    background:rgba(8,12,17,.94);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.06);
}

.header-inner{
    height:72px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:30px;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.brand-icon{
    width:42px;
    height:42px;

    border:1px solid rgba(216,161,61,.35);

    border-radius:13px;

    background:rgba(255,255,255,.02);

    display:grid;
    place-items:center;

    font-size:18px;
}

.brand strong{
    color:#fff;

    display:block;

    font-size:18px;

    line-height:1;
}

.brand small{
    color:#6f7a85;

    display:block;

    font-size:7px;

    letter-spacing:2.3px;

    margin-top:6px;
}

.nav{
    display:flex;

    align-items:center;

    gap:34px;
}

.nav a{
    position:relative;

    color:#cfd4da;

    font-size:12px;

    font-weight:600;

    transition:.2s;
}

.nav a::after{
    content:"";

    position:absolute;

    right:0;
    bottom:-7px;

    width:0;
    height:1px;

    background:var(--gold);

    transition:.25s;
}

.nav a:hover{
    color:#fff;
}

.nav a:hover::after{
    width:100%;
}

.header-btn{
    color:var(--gold-light);

    border:1px solid rgba(216,161,61,.45);

    padding:9px 17px;

    border-radius:10px;

    font-size:10px;

    font-weight:800;

    transition:.25s;
}

.header-btn:hover{
    color:#111;

    background:linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );
}


/* HERO */

.hero{
    background:
        radial-gradient(
            circle at 25% 50%,
            rgba(216,161,61,.08),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #080c11,
            #111820
        );

    color:#fff;

    overflow:hidden;
}

.hero-grid{
    min-height:560px;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

    position:relative;
}

.hero-content{
    position:relative;

    z-index:2;
}

.hero-label{
    display:inline-flex;

    align-items:center;

    gap:9px;

    color:var(--gold-light);

    font-size:10px;

    font-weight:800;

    letter-spacing:1.5px;

    margin-bottom:18px;
}

.hero-label::before{
    content:"";

    width:30px;
    height:1px;

    background:var(--gold);
}

.hero h1{
    max-width:650px;

    font-size:53px;

    line-height:1.32;

    font-weight:900;

    letter-spacing:-1.8px;
}

.hero h1 span{
    color:var(--gold-light);
}

.hero p{
    color:#8f9aa5;

    max-width:590px;

    font-size:13px;

    line-height:2.1;

    margin:20px 0 30px;
}

.hero-buttons{
    display:flex;

    gap:11px;

    flex-wrap:wrap;
}

.btn-gold{
    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:145px;

    background:linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    );

    color:#111;

    padding:12px 21px;

    border-radius:10px;

    font-size:11px;

    font-weight:900;

    box-shadow:
        0 10px 30px rgba(216,161,61,.15);

    transition:.25s;
}

.btn-gold:hover{
    transform:translateY(-2px);

    box-shadow:
        0 15px 35px rgba(216,161,61,.23);
}

.btn-outline{
    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:135px;

    border:1px solid #313b46;

    color:#e5e7eb;

    padding:12px 20px;

    border-radius:10px;

    font-size:11px;

    font-weight:700;

    transition:.25s;
}

.btn-outline:hover{
    background:#151d26;
}


/* HERO VISUAL */

.hero-product{
    display:flex;

    align-items:center;

    justify-content:center;

    position:relative;
}

.hero-product::before{
    content:"";

    position:absolute;

    width:390px;
    height:390px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(216,161,61,.12),
            transparent 65%
        );
}

.hero-circle{
    width:340px;
    height:340px;

    border-radius:50%;

    border:1px solid #27313b;

    display:grid;

    place-items:center;

    position:relative;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(216,161,61,.05),
            transparent 60%
        );
}

.hero-circle::before,
.hero-circle::after{
    content:"";

    position:absolute;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.03);
}

.hero-circle::before{
    width:285px;
    height:285px;
}

.hero-circle::after{
    width:225px;
    height:225px;
}

.watch-emoji{
    font-size:135px;

    position:relative;

    z-index:3;

    filter:
        drop-shadow(
            0 24px 24px rgba(0,0,0,.55)
        );
}


/* FEATURES */

.features{
    background:#fff;

    border-bottom:1px solid var(--border);
}

.features-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);
}

.feature{
    min-height:100px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    border-left:1px solid var(--border);
}

.feature:last-child{
    border-left:0;
}

.feature-icon{
    width:43px;
    height:43px;

    border-radius:13px;

    background:#faf4e9;

    display:grid;

    place-items:center;

    font-size:18px;
}

.feature strong{
    display:block;

    font-size:12px;
}

.feature span{
    display:block;

    color:#929aa3;

    font-size:9px;

    margin-top:3px;
}


/* PRODUCTS */

.products-section{
    padding:75px 0 85px;
}

.section-head{
    display:flex;

    align-items:end;

    justify-content:space-between;

    gap:30px;

    margin-bottom:30px;
}

.section-head span{
    color:#b47c1c;

    font-size:9px;

    font-weight:900;

    letter-spacing:2px;
}

.section-head h2{
    margin-top:4px;

    font-size:30px;

    font-weight:900;
}

.section-head p{
    color:#858e98;

    font-size:10px;
}

.products-grid{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;
}

.product-card{
    background:#fff;

    border:1px solid var(--border);

    border-radius:18px;

    overflow:hidden;

    position:relative;

    transition:
        transform .3s,
        box-shadow .3s;
}

.product-card:hover{
    transform:translateY(-6px);

    box-shadow:
        0 22px 50px rgba(15,23,42,.09);
}

.product-image{
    height:280px;

    background:#eeeeeb;

    position:relative;

    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .4s;
}

.product-card:hover .product-image img{
    transform:scale(1.045);
}

.product-badge{
    position:absolute;

    top:13px;
    right:13px;

    z-index:2;

    background:rgba(8,12,17,.91);

    backdrop-filter:blur(10px);

    color:#fff;

    padding:5px 10px;

    border-radius:99px;

    font-size:8px;

    font-weight:700;
}

.no-image{
    width:100%;
    height:100%;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    color:#969da5;

    font-size:46px;
}

.no-image span{
    margin-top:8px;

    font-size:9px;
}

.product-info{
    padding:16px;
}

.product-info h3{
    min-height:42px;

    font-size:13px;

    font-weight:700;

    line-height:1.7;
}

.product-bottom{
    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:10px;

    margin-top:13px;
}

.product-bottom strong{
    color:#aa7417;

    font-size:16px;

    font-weight:900;
}

.product-bottom a{
    background:#0a0f15;

    color:white;

    padding:8px 11px;

    border-radius:8px;

    font-size:8px;

    font-weight:700;

    transition:.2s;
}

.product-bottom a:hover{
    background:#1a2530;
}


/* EMPTY */

.empty{
    grid-column:1/-1;

    padding:70px 20px;

    border-radius:20px;

    border:1px dashed #d7dadd;

    background:white;

    text-align:center;
}

.empty > div{
    font-size:45px;
}

.empty h3{
    margin:8px 0 5px;

    font-size:17px;
}

.empty p{
    color:#8b949e;

    font-size:10px;
}


/* FOOTER */

.footer{
    background:#080c11;

    color:#fff;

    margin-top:0;
}

.footer-content{
    min-height:125px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;
}

.footer-content p{
    color:#707b86;

    font-size:9px;
}

.footer-bottom{
    border-top:1px solid #161d24;

    text-align:center;

    padding:17px;

    color:#56616c;

    font-size:8px;
}


/* TABLET */

@media(max-width:900px){

    .hero-grid{
        grid-template-columns:1fr;

        padding:65px 0;
    }

    .hero-product{
        display:none;
    }

    .hero h1{
        font-size:44px;
    }

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }

}


/* MOBILE */

@media(max-width:650px){

    .container{
        width:92%;
    }

    .header-inner{
        height:64px;
    }

    .nav{
        display:none;
    }

    .brand-icon{
        width:37px;
        height:37px;
    }

    .brand strong{
        font-size:15px;
    }

    .header-btn{
        padding:8px 11px;

        font-size:8px;
    }

    .hero-grid{
        min-height:auto;

        padding:52px 0;
    }

    .hero h1{
        font-size:34px;

        letter-spacing:-1px;
    }

    .hero p{
        font-size:11px;
    }

    .hero-buttons{
        gap:8px;
    }

    .btn-gold,
    .btn-outline{
        min-width:auto;

        padding:11px 16px;

        font-size:10px;
    }

    .features-grid{
        grid-template-columns:1fr;
    }

    .feature{
        min-height:76px;

        justify-content:flex-start;

        padding:12px 4px;

        border-left:0;

        border-bottom:1px solid var(--border);
    }

    .products-section{
        padding:55px 0;
    }

    .section-head{
        display:block;
    }

    .section-head h2{
        font-size:25px;
    }

    .section-head p{
        margin-top:5px;
    }

    .products-grid{
        grid-template-columns:repeat(2,1fr);

        gap:10px;
    }

    .product-card{
        border-radius:14px;
    }

    .product-image{
        height:185px;
    }

    .product-info{
        padding:10px;
    }

    .product-info h3{
        min-height:36px;

        font-size:11px;
    }

    .product-bottom{
        display:block;
    }

    .product-bottom strong{
        display:block;

        margin-bottom:8px;

        font-size:14px;
    }

    .product-bottom a{
        display:block;

        text-align:center;

        padding:8px;
    }

    .footer-content{
        display:block;

        padding:28px 0;
    }

    .footer-content p{
        margin-top:14px;
    }

}