/* =====================================
   WOK & WRAP - FINAL FULL CSS
   DESKTOP + TABLET + MOBILE FIXED
===================================== */

/* ================= RESET ================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#080808;
    color:#fff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

button{
    cursor:pointer;
    border:none;
    font-family:'Poppins',sans-serif;
}

.selected{
    border:2px solid #ffb400 !important;
    box-shadow:0 0 25px rgba(255,180,0,.35);
    transform:scale(1.03);
}

/* ================= HEADER ================= */
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;
    background:#0b0b0b;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 70px;
    border-bottom:1px solid rgba(255,180,0,.15);
    z-index:999;
}

.logo h1,
.logo{
    font-size:42px;
    font-weight:800;
    line-height:1;
}

.logo span{
    color:#ffb400;
}

.logo p{
    color:#bdbdbd;
    font-size:12px;
    letter-spacing:4px;
    margin-top:6px;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:#fff;
    font-weight:500;
    position:relative;
    transition:.3s;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#ffb400;
    transition:.3s;
}

nav a:hover{
    color:#ffb400;
}

nav a:hover::after{
    width:100%;
}

.icons{
    display:flex;
    gap:18px;
    font-size:22px;
}

.icons i{
    transition:.3s;
}

.icons i:hover{
    color:#ffb400;
}

/* ================= HERO ================= */
.hero{
    position:relative;
    overflow:hidden;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
    padding:150px 70px 80px;
}

.hero::before{
    content:"";
    position:absolute;
    right:-250px;
    top:50%;
    transform:translateY(-50%);
    width:550px;
    height:550px;
    background:radial-gradient(circle,
        rgba(255,180,0,.18) 0%,
        rgba(255,180,0,.08) 45%,
        transparent 75%);
    filter:blur(40px);
    z-index:-1;
}

.left h1{
    font-size:72px;
    line-height:1.1;
    font-weight:800;
}

.left h1 span{
    display:block;
    color:#ffb400;
}

.left p{
    margin:25px 0;
    color:#cfcfcf;
    font-size:20px;
    max-width:580px;
}

.hero-info{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin:35px 0;
}

.info-box{
    display:flex;
    align-items:center;
    gap:15px;
    background:#111;
    border:1px solid rgba(255,180,0,.18);
    border-radius:14px;
    padding:18px;
    min-width:220px;
}

.info-box i{
    color:#ffb400;
    font-size:28px;
}

.buttons{
    display:flex;
    gap:20px;
    margin:35px 0;
    flex-wrap:wrap;
}

.gold{
    background:#ffb400;
    color:#000;
    padding:16px 36px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
}

.gold:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(255,180,0,.35);
}

.outline{
    background:transparent;
    color:#ffb400;
    border:2px solid #ffb400;
    padding:16px 36px;
    border-radius:10px;
    transition:.3s;
}

.outline:hover{
    background:#ffb400;
    color:#000;
}

.apps{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.apps img{
    height:32px;
}

.right{
    position:relative;
    display:flex;
    justify-content:flex-end;
}

.right img{
    width:720px;
    animation:float 5s ease-in-out infinite;
}

@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-12px);}
    100%{transform:translateY(0);}
}

.halal{
    position:absolute;
    right:40px;
    top:30px;
    width:90px;
    height:90px;
    border-radius:50%;
    border:3px solid #ffb400;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#ffb400;
    font-weight:700;
    background:rgba(0,0,0,.5);
}

/* ================= GLOBAL SECTION ================= */
section{
    padding:80px 70px;
}

.section-title{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
    color:#fff;
}

.section-subtitle{
    text-align:center;
    color:#bdbdbd;
    margin-top:-25px;
    margin-bottom:45px;
}

/* ================= HOME MENU CENTERED 3 UP / 2 DOWN ================= */
.home-menu-grid{
    max-width: 1380px;
    margin: 0 auto;
    padding: 10px 20px 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
    justify-content: center;
    align-items: stretch;
}

/* common card */
.home-menu-card{
    background:#111;
    border:1px solid rgba(255,180,0,.20);
    border-radius:22px;
    overflow:hidden;
    text-decoration:none;
    color:#fff;
    display:flex;
    flex-direction:column;
    transition:.3s ease;
    min-height:420px;
    box-shadow:0 12px 28px rgba(0,0,0,.22);
}

.home-menu-card:hover{
    transform:translateY(-6px);
    border-color:#ffb400;
    box-shadow:0 18px 40px rgba(255,180,0,.12);
}

.home-menu-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}

.home-menu-card h3{
    font-size:34px;
    line-height:1.05;
    font-weight:800;
    margin:18px 18px 8px;
    color:#fff;
}

.home-menu-card p{
    margin:0 18px 20px;
    color:#d3d3d3;
    font-size:16px;
    line-height:1.5;
}

/* ===== TOP ROW: 3 cards ===== */
.home-menu-card:nth-child(1),
.home-menu-card:nth-child(2),
.home-menu-card:nth-child(3){
    grid-column: span 2;
}

/* ===== BOTTOM ROW: 2 cards CENTERED ===== */
.home-menu-card:nth-child(4){
    grid-column: 2 / span 2;
}

.home-menu-card:nth-child(5){
    grid-column: 4 / span 2;
}

/* ================= TABLET ================= */
@media (max-width: 1100px){
    .home-menu-grid{
        grid-template-columns: repeat(2, minmax(280px, 1fr));
        max-width: 900px;
    }

    .home-menu-card:nth-child(1),
    .home-menu-card:nth-child(2),
    .home-menu-card:nth-child(3),
    .home-menu-card:nth-child(4),
    .home-menu-card:nth-child(5){
        grid-column: auto;
    }

    .home-menu-card{
        min-height:380px;
    }

    .home-menu-card img{
        height:220px;
    }

    .home-menu-card h3{
        font-size:28px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 700px){
    .home-menu-grid{
        grid-template-columns: 1fr;
        max-width: 520px;
        padding:10px 14px 0;
        gap:18px;
    }

    .home-menu-card{
        min-height:auto;
        border-radius:18px;
    }

    .home-menu-card img{
        height:210px;
    }

    .home-menu-card h3{
        font-size:24px;
        margin:14px 14px 6px;
    }

    .home-menu-card p{
        margin:0 14px 16px;
        font-size:14px;
    }
}
/* =====================================
   BEST SELLERS
===================================== */
.best-sellers{
    padding:90px 70px;
    background:#0b0b0b;
}

.best-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    align-items:stretch;
}

.best-grid > a{
    display:block;
    height:100%;
}

.best-card{
    background:#111;
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(255,180,0,.15);
    transition:.35s;
    height:100%;
    display:flex;
    flex-direction:column;
}

.best-card:hover{
    transform:translateY(-8px);
    border-color:#ffb400;
    box-shadow:0 15px 35px rgba(255,180,0,.18);
}

.best-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.best-card h3{
    margin:18px;
    font-size:24px;
}

.best-card p{
    margin:0 18px;
    color:#bbb;
}

.best-card span{
    display:inline-block;
    margin:20px 18px;
    background:#ffb400;
    color:#000;
    padding:8px 18px;
    border-radius:30px;
    font-weight:700;
}

/* =====================================
   WHY US
===================================== */
.why-us{
    padding:90px 70px;
    background:#080808;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.why-card{
    background:#111;
    border:1px solid rgba(255,180,0,.15);
    border-radius:18px;
    padding:30px;
    text-align:center;
    transition:.35s;
    height:100%;
}

.why-card:hover{
    transform:translateY(-8px);
    border-color:#ffb400;
    box-shadow:0 15px 35px rgba(255,180,0,.18);
}

.why-card h3{
    color:#ffb400;
    font-size:24px;
    margin-bottom:15px;
}

.why-card p{
    color:#bbb;
    line-height:1.7;
}

/* =====================================
   FOOTER
===================================== */
.footer{
    background:#050505;
    padding:80px 70px 40px;
    border-top:1px solid rgba(255,180,0,.15);
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer h2,
.footer h3{
    color:#ffb400;
    margin-bottom:18px;
}

.footer p{
    color:#bbb;
    line-height:1.8;
}

.payments{
    display:flex;
    justify-content:center;
    gap:18px;
    margin:45px 0 20px;
    flex-wrap:wrap;
}

.payments img{
    height:34px;
    background:#fff;
    padding:8px 12px;
    border-radius:10px;
}

.bizum{
    text-align:center;
    margin:20px 0;
    font-size:18px;
}

.copyright{
    text-align:center;
    color:#888;
    margin-top:20px;
    padding-top:20px;
    border-top:1px solid #222;
}

/* =====================================
   FLOATING BUTTONS
===================================== */
.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    z-index:9999;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

.map-float{
    position:fixed;
    right:25px;
    bottom:105px;
    width:60px;
    height:60px;
    background:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 10px 25px rgba(0,0,0,.30);
    z-index:9998;
}

.map-float img{
    width:34px;
    height:34px;
}

/* =====================================
   BUILD YOUR BOX / SUMMARY
===================================== */
.summary{
    max-width:700px;
    margin:60px auto;
    background:#111;
    border:1px solid rgba(255,180,0,.25);
    border-radius:15px;
    padding:30px;
}

.summary h2{
    color:#ffb400;
    margin-bottom:20px;
}

.summary p{
    font-size:18px;
    margin:10px 0;
}

.steps{
    max-width:1500px;
    margin:auto;
    padding:20px;
}

.step{
    background:#111;
    border:1px solid rgba(255,180,0,.25);
    border-radius:18px;
    padding:22px;
    margin-bottom:24px;
}

.step h2{
    font-size:26px;
    margin-bottom:18px;
    color:#ffb400;
}

/* default grid */
.grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

/* =====================================
   BUILD YOUR BOX FULL IMAGE CARD FIX
   IMPORTANT: build-your-box page me class="card build-card" use karo
===================================== */
.build-card{
    position:relative;
    background:#181818;
    border:1px solid rgba(255,180,0,.15);
    border-radius:16px;
    overflow:hidden;
    min-height:260px;
    padding:0;
    text-align:center;
    transition:.3s;
    cursor:pointer;
    display:flex;
    align-items:flex-end;
    justify-content:center;
}

.build-card:hover{
    border-color:#ffb400;
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(255,180,0,.18);
}

.build-card img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    margin:0;
    z-index:1;
}

.build-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.12));
    z-index:2;
}

.build-card h3{
    position:relative;
    z-index:3;
    width:100%;
    margin:0;
    padding:14px 12px;
    background:#ffb400;
    color:#000;
    font-size:20px;
    font-weight:800;
    line-height:1.2;
}

.build-card p{
    display:none;
}

/* agar normal .card bhi kahin use ho */
.card{
    background:#181818;
    border:1px solid #333;
    border-radius:12px;
    padding:12px;
    text-align:center;
    min-height:150px;
    transition:.3s;
}

.card:hover{
    border-color:#ffb400;
    transform:translateY(-3px);
}

.card img{
    width:70px;
    height:70px;
    object-fit:contain;
    margin:0 auto 8px;
}

.card h3{
    font-size:14px;
    margin:6px 0;
}

.card p{
    font-size:12px;
    margin:0;
    color:#ffb400;
}

/* =====================================
   SCROLLBAR
===================================== */
::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#0b0b0b;
}

::-webkit-scrollbar-thumb{
    background:#ffb400;
    border-radius:20px;
}

::selection{
    background:#ffb400;
    color:#000;
}

/* =====================================
   TABLET
===================================== */
@media (max-width:1200px){

    header{
        padding:0 30px;
    }

    section,
    .categories,
    .best-sellers,
    .why-us,
    .footer{
        padding-left:30px;
        padding-right:30px;
    }

    .categories-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .best-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .grid{
        grid-template-columns:repeat(3,1fr);
    }

    .build-card{
        min-height:230px;
    }

    .build-card h3{
        font-size:18px;
    }

    .right img{
        width:520px;
    }

    .left h1{
        font-size:58px;
    }
}

/* =====================================
   MOBILE
===================================== */
@media (max-width:768px){

    /* HEADER */
    header{
        position:fixed;
        flex-direction:column;
        height:auto;
        padding:16px 14px;
        gap:12px;
    }

    .logo h1,
    .logo{
        font-size:34px;
        text-align:center;
    }

    .logo p{
        text-align:center;
        letter-spacing:2px;
        font-size:10px;
    }

    nav{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:14px;
    }

    nav a{
        font-size:15px;
    }

    .icons{
        justify-content:center;
    }

    /* HERO */
    .hero{
        grid-template-columns:1fr;
        text-align:center;
        padding:170px 14px 50px;
        gap:24px;
    }

    .left h1{
        font-size:38px;
    }

    .left p{
        font-size:15px;
        margin:16px auto;
    }

    .hero-info{
        flex-direction:column;
        gap:12px;
        margin:18px 0;
    }

    .info-box{
        min-width:100%;
        justify-content:flex-start;
        padding:14px;
    }

    .buttons{
        flex-direction:column;
        gap:12px;
    }

    .gold,
    .outline{
        width:100%;
        padding:14px 18px;
    }

    .apps{
        justify-content:center;
        flex-direction:column;
        gap:10px;
    }

    .right{
        justify-content:center;
    }

    .right img{
        width:100%;
        max-width:320px;
    }

    .halal{
        width:65px;
        height:65px;
        right:10px;
        top:10px;
        font-size:11px;
    }

    /* GENERAL */
    section,
    .categories,
    .best-sellers,
    .why-us,
    .footer{
        padding:50px 12px;
    }

    .section-title{
        font-size:28px;
        margin-bottom:22px;
    }

    .section-subtitle{
        font-size:13px;
        margin-top:-10px;
        margin-bottom:22px;
    }

    /* HOME PAGE CARDS */
    .categories-grid,
    .best-grid,
    .why-grid{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:12px;
        width:100%;
        align-items:stretch;
    }

    .footer-grid{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:14px;
        text-align:left;
    }

    .categories-grid > *,
    .best-grid > *,
    .why-grid > *{
        width:100%;
        min-width:0;
        max-width:100%;
        margin:0;
    }

    .best-grid > a{
        display:block;
        width:100%;
        height:100%;
    }

    .category-card,
    .best-card,
    .why-card{
        width:100%;
        min-width:0;
        max-width:100%;
        margin:0;
        box-sizing:border-box;
        border-radius:14px;
    }

    .category-card img{
        width:100%;
        height:120px;
        object-fit:cover;
    }

    .category-card h3{
        font-size:16px;
        margin:10px 8px 4px;
        line-height:1.2;
    }

    .category-card p{
        font-size:12px;
        margin:0 6px 12px;
        line-height:1.3;
    }

    .best-card img{
        width:100%;
        height:120px;
        object-fit:cover;
    }

    .best-card h3{
        font-size:16px;
        margin:10px 8px 4px;
        line-height:1.2;
    }

    .best-card p{
        font-size:12px;
        margin:0 8px;
        line-height:1.3;
    }

    .best-card span{
        display:inline-block;
        margin:10px 8px 12px;
        padding:6px 10px;
        font-size:11px;
        border-radius:20px;
    }

    .why-card{
        padding:14px 10px;
    }

    .why-card h3{
        font-size:15px;
        margin-bottom:8px;
        line-height:1.3;
    }

    .why-card p{
        font-size:11px;
        line-height:1.4;
    }

    /* FOOTER */
    .footer h2{
        font-size:20px;
    }

    .footer h3{
        font-size:15px;
    }

    .footer p{
        font-size:12px;
        line-height:1.5;
    }

    .payments{
        gap:8px;
        margin:26px 0 12px;
    }

    .payments img{
        height:26px;
        padding:5px 7px;
    }

    .bizum{
        font-size:13px;
    }

    .copyright{
        font-size:11px;
    }

    /* FLOATING BUTTONS */
    .whatsapp-float{
        width:52px;
        height:52px;
        font-size:26px;
        right:14px;
        bottom:14px;
    }

    .map-float{
        width:48px;
        height:48px;
        right:16px;
        bottom:76px;
    }

    .map-float img{
        width:26px;
        height:26px;
    }

    /* BUILD YOUR BOX */
    .steps{
        padding:12px;
    }

    .step{
        padding:14px;
        border-radius:14px;
    }

    .step h2{
        font-size:20px;
    }

    .grid{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

    .build-card{
        min-height:180px;
        border-radius:14px;
    }

    .build-card h3{
        font-size:14px;
        padding:10px 8px;
    }

    .card{
        min-height:145px;
        padding:8px;
    }

    .card img{
        width:58px;
        height:58px;
    }

    .card h3{
        font-size:13px;
    }

    .card p{
        font-size:11px;
    }

    .summary{
        margin:30px auto;
        padding:20px;
    }

    .summary h2{
        font-size:20px;
    }

    .summary p{
        font-size:14px;
    }
}
.icons{
  display:flex;
  align-items:center;
  gap:18px;
}

.icons{
  display:flex;
  align-items:center;
  gap:18px;
}

.icon-link{
  color:#fff;
  font-size:24px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:10px;
  transition:.2s;
}

.icon-link:hover{
  color:#ffb400;
  background:rgba(255,180,0,.08);
}