
/* =========================
   GLOBAL RESET
========================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#111;
    overflow-x:hidden;
    line-height:1.5;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

h1,h2,h3,h4,p{
    margin:0;
}

/* =========================
   SECTION SPACING SYSTEM (FIXED GAP ISSUE)
========================= */

:root{
    --section-gap-desktop:70px;
    --section-gap-mobile:28px;
}

section{
    padding:var(--section-gap-desktop) 0;
    margin:0;
    overflow:hidden;
}

/* =========================
   CONTAINER
========================= */

.container{
    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding:0 40px;
}

@media(max-width:768px){
    .container{
        padding:0 16px;
    }
}

/* =========================
   HERO SECTION (FIXED STRIP + MOBILE CLEAN)
========================= */

.brand-hero{
    position:relative;
    width:100%;
    height:90vh;
    min-height:600px;
    overflow:hidden;
    background:#000;


    /* 🔥 REMOVE ANY GAP BELOW HERO */
    margin:0;
    padding:0;
    border:0;
    display:block;
}


.hero-slider{
    position:relative;
    width:100%;
    height:100%;
}

.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity 1s ease-in-out;
}

.hero-slide.active{
    opacity:1;
    z-index:2;
}

.hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;

    display:block;

    /* 🔥 THIS REMOVES STRIP / WHITE LINE */
    transform:scale(1.02);
}

/* overlay */
.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.2)
    );
    z-index:1;
}

/* content */
.hero-content{
    position:absolute;
    top:75%;
    left:4%;
    transform:translateY(-50%);
    max-width:650px;
    color:#fff;
    z-index:2;
}

.hero-content h1{
    font-size:clamp(2.2rem,5vw,4.5rem);
    line-height:1.1;
    font-weight:800;
    letter-spacing:-1px;
    margin-bottom:16px;
}

.hero-content p{
    font-size:1rem;
    line-height:1.6;
    color:rgba(255,255,255,0.9);
    margin-bottom:22px;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:150px;
    height:48px;
    padding:0 20px;
    border-radius:50px;
    background:#fff;
    color:#111;
    font-weight:700;
}
.brand-hero::after{
    display:none !important;
}

/* =========================
   CATEGORY SECTION
========================= */

.section-header{
    text-align:center;
    margin-bottom:28px;
}

.section-header span{
    font-size:12px;
    letter-spacing:2px;
    color:#777;
}

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

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

.category-card{
    position:relative;
    height:400px;
    border-radius:16px;
    overflow:hidden;
}

.category-card img{
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.category-card:hover img{
    transform:scale(1.05);
}

.category-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:18px;
    color:#fff;
}

/* =========================
   PRODUCTS
========================= */

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

.product-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    border:1px solid #f0f0f0;
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,0.08);
}

.product-image{
    height:340px;
    object-fit:cover;
}

.product-content{
    padding:14px;
}

.product-brand{
    font-size:11px;
    color:#888;
}

.product-content h3{
    font-size:15px;
    margin:8px 0;
}

.product-price{
    font-size:16px;
    font-weight:700;
}
/* =========================================
   BRAND STORY SECTION
========================================= */

.brand-story{
    max-width:1400px;
    margin:0 auto;
    padding:80px 40px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

/* =========================================
   IMAGE SIDE
========================================= */

.story-image{
    width:100%;
    height:450px;

    border-radius:24px;
    overflow:hidden;

    position:relative;

    background:#f3f4f6;

    box-shadow:
        0 25px 70px rgba(0,0,0,0.12);
}

.story-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;

    transition:0.5s ease;

    display:block;
}

.story-image:hover img{
    transform:scale(1.05);
}

/* =========================================
   CONTENT SIDE
========================================= */

.story-content{
    width:100%;
}

.story-content span{
    display:inline-block;

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

    letter-spacing:3px;
    text-transform:uppercase;

    color:#f59e0b;

    margin-bottom:15px;
}

.story-content h2{
    font-size:48px;
    line-height:1.15;
    font-weight:800;

    color:#111827;

    margin-bottom:20px;
}

.story-content p{
    font-size:16px;
    line-height:1.9;

    color:#6b7280;

    margin-bottom:30px;
}

/* =========================================
   FEATURES
========================================= */

.story-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.story-feature{
    background:#fff;

    padding:16px 18px;

    border-radius:14px;

    border:1px solid rgba(0,0,0,0.06);

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

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

    color:#111827;

    transition:0.25s ease;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.04);
}

.story-feature::before{
    content:"✓";

    color:#10b981;

    font-weight:900;

    flex-shrink:0;
}

.story-feature:hover{
    transform:translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.08);
}

/* =========================================
   TABLET
========================================= */

@media(max-width:992px){

    .brand-story{
        gap:40px;
        padding:70px 25px;
    }

    .story-image{
        height:420px;
    }

    .story-content h2{
        font-size:38px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .brand-story{
        display:flex;
        flex-direction:column;

        padding:40px 16px;

        gap:24px;
    }

    .story-image{
        width:100%;
        height:260px;
        border-radius:18px;
    }

    .story-content{
        width:100%;
        text-align:left;
    }

    .story-content span{
        font-size:11px;
        letter-spacing:2px;
        margin-bottom:10px;
    }

    .story-content h2{
        font-size:28px;
        line-height:1.25;
        margin-bottom:12px;
    }

    .story-content p{
        font-size:14px;
        line-height:1.7;
        margin-bottom:18px;
    }

    .story-features{
        grid-template-columns:repeat(2,1fr);
        gap:5px;
    }

    .story-feature{
        padding:13px 14px;
        font-size:13px;
        border-radius:12px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px){

    .brand-story{
        padding:30px 12px;
    }

    .story-image{
        height:220px;
        border-radius:16px;
    }

    .story-content h2{
        font-size:24px;
    }

    .story-content p{
        font-size:13px;
    }

    .story-feature{
        font-size:12px;
        padding:12px;
    }
}

/* =========================================
   WHY CHOOSE US SECTION
========================================= */


.why-us-section{
    max-width:1400px;
    margin:0 auto;
    padding:70px 30px;
}

/* =========================================
   HEADER
========================================= */

.why-us-section .section-header{
    text-align:center;
    margin-bottom:45px;
}

.why-us-section .section-header span{
    display:inline-block;
    font-size:12px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#f59e0b;
    margin-bottom:10px;
}

.why-us-section .section-header h2{
    font-size:36px;
    font-weight:800;
    color:#111827;
    line-height:1.2;
}

/* =========================================
   GRID
========================================= */

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

/* =========================================
   CARD
========================================= */

.why-card{
    background:#fff;
    border:1px solid rgba(0,0,0,0.06);

    border-radius:18px;

    padding:24px 18px;

    text-align:center;

    transition:.3s ease;

    box-shadow:0 6px 20px rgba(0,0,0,0.04);

    min-height:220px;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

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

    box-shadow:
    0 15px 35px rgba(0,0,0,0.08);
}

/* =========================================
   ICON
========================================= */

.why-icon{
    width:58px;
    height:58px;

    margin:0 auto 14px;

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

    border-radius:14px;

    font-size:28px;

    background:#fff7ed;
}

/* =========================================
   TITLE
========================================= */

.why-card h3{
    font-size:18px;
    font-weight:700;

    color:#111827;

    margin-bottom:8px;
}

/* =========================================
   DESCRIPTION
========================================= */

.why-card p{
    font-size:14px;
    line-height:1.6;
    color:#6b7280;
    margin:0;
}

/* =========================
   RESPONSIVE
========================= */
.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
}


@media(max-width:1100px){
      .product-grid{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }
     .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .why-us-section{
        padding:70px 25px;
    }

    .why-us-section .section-header h2{
        font-size:34px;
    }

    .category-grid{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }


}

/* =========================
   MOBILE OPTIMIZED SYSTEM (IMPORTANT)
========================= */


@media(max-width:768px){

    section{
        padding:28px 0;
    }

    .container{
        padding:0 14px;
    }

    .brand-hero{
    height:clamp(520px, 85vh, 900px);
    }


    .product-grid{
        grid-template-columns:repeat(2,1fr) !important;
        gap:12px;
    }

    .product-card{
        border-radius:14px;
        overflow:hidden;
        background:#fff;
        display:flex;
        flex-direction:column;
    }

    .product-image{
        width:100%;
        height:180px !important;
        object-fit:cover;
    }

    .product-content{
        padding:10px;
    }

    .product-brand{
        font-size:10px;
        letter-spacing:1px;
    }

    .product-content h3{
        font-size:13px;
        margin:6px 0;
        line-height:1.3;
    }

    .product-price{
        font-size:14px;
    }
      .why-us-section{
        padding:5px 15px;
    }

    .why-us-section .section-header{
        margin-bottom:28px;
    }

    .why-us-section .section-header span{
        font-size:11px;
        letter-spacing:2px;
    }

    .why-us-section .section-header h2{
        font-size:24px;
        line-height:1.3;
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

    .why-card{
        padding:10px 10px;
        border-radius:12px;
        min-height:140px;
    }

    .why-icon{
        width:44px;
        height:44px;
        font-size:22px;
        border-radius:10px;
        margin-bottom:8px;
    }

    .why-card h3{
        font-size:13px;
        line-height:1.3;
        margin-bottom:6px;
    }

    .why-card p{
        font-size:11px;
        line-height:1.4;
    }


    .category-card{
        height:250px;
    }

     .hero-content{
        left:14px;
        right:14px;

        top:auto;

        /* better spacing from bottom */
        bottom:clamp(20px, 1vh, 140px);

        transform:none;

        z-index:2;
    }

    .hero-content h1{
        font-size:26px;
        line-height:1.2;
    }

    .hero-content p{
        font-size:13px;
        line-height:1.5;
    }

    .hero-btn{
        height:42px;
        font-size:13px;
    }

     .category-grid{
        grid-template-columns:repeat(2,1fr) !important;
        gap:12px;
    }

    .category-card{
        height:180px;   /* important for mobile */
        border-radius:14px;
    }

    .category-card img{
        height:100%;
        width:100%;
        object-fit:cover;
    }

    .category-overlay h3{
        font-size:14px;
    }

    .category-overlay span{
        font-size:11px;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

      .product-grid{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

    .product-image{
        height:160px !important;
    }

    .product-content h3{
        font-size:12px;
    }
 .why-grid{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

    .why-card{
        padding:14px 10px;
    }

    .why-icon{
        width:42px;
        height:42px;
        font-size:20px;
    }

    .why-card h3{
        font-size:13px;
    }

    .why-card p{
        font-size:11px;
    }
      .category-grid{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

    .category-card{
        height:160px;
    }

    section{
        padding:22px 0;
    }
}