@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    /* --------------------------------
      BRAND COLORS (Exact Mantu Style)
  ----------------------------------*/
    --primary: #4C5FD5;
    /* Blue highlight */
    --primary-light: #e9edff;
    --primary-soft: #f5f7ff;

    --success: #27c469;
    --danger: #ff4d4f;
    --warning: #faad14;

    /* Neutral Theme Colors */
    --black: #1a1a1a;
    --dark: #2d2d2d;
    --text: #444;
    --text-light: #777;

    --border: #e6e6e6;
    --border-light: #f0f0f0;

    --bg: #f2f4f7;
    /* Page background grey */
    --white: #ffffff;

    /* --------------------------------
      FONT FAMILY
  ----------------------------------*/
    --font-main: "Nunito", sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* --------------------------------
      FONT SIZE SYSTEM (Matching UI)
  ----------------------------------*/
    --fs-xxl: 2.4rem;
    /* banner */
    --fs-xl: 1.8rem;
    /* section headings */
    --fs-lg: 1.4rem;
    /* card titles */
    --fs-md: 1.1rem;
    /* normal title text */
    --fs-base: 0.95rem;
    /* body text */
    --fs-sm: 0.85rem;
    /* small labels */
    --fs-xs: 0.75rem;
    /* micro text */

    /* --------------------------------
      RADIUS (Look at cards in screenshot)
  ----------------------------------*/
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;

    /* --------------------------------
      SHADOWS (Soft, clean, airy)
  ----------------------------------*/
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 18px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);

    /* --------------------------------
      SPACING SYSTEM
  ----------------------------------*/
    --space-xxl: 4rem;
    --space-xl: 3rem;
    --space-lg: 2rem;
    --space-md: 1.2rem;
    --space-sm: 0.7rem;
    --space-xs: 0.4rem;
}


body {
    margin: 0px;
    padding: 0px;
    background-color: var(--bg) !important;
    font-family: var(--font-heading) !important;
}

.hero-banner {
    width: 100%;
    max-width: 1300px;
    margin: 100px auto 30px auto !important;
    padding: 0;
    /* overflow: hidden; */
    border-radius: var(--radius-md);
    position: relative;

}

.hero-banner .slick-slide {
    margin: 0px;
}

.hero-banner .hero-slider {
    width: 100%;
}

.hero-banner img {
    /* border-radius: 10px; */
    border-radius: var(--radius-sm);
    height: 400px !important;
    width: 100%;
    object-fit: Cover;
    /* margin-top: 10px; */
}


/* hero categoty css  */
.hero-category {

    padding: 10px 0px 10px 0px;
    /* background-color: var(--white); */
    max-width: 1300px;
    margin: 20px auto;

    /* border: 1px solid var(--border); */

}

.hero-category h3 {
    font-size: var(--fs-lg);
    font-weight: 600;
    margin-bottom: 25px;
}

.category-sec {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;

    gap: 20px;
}

.category-sec h4 {
    font-size: var(--fs-sm);
    background-color: var(--white);
    border: 1px solid var(--border);
    color: #060606;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    width: 100% !important;
    display: block !important;
    font-weight: 500;
}

.category-sec a {
    text-decoration: none;
    color: #000;
}

section {
    max-width: 1300px;
    margin: 20px auto;
}

.newarrival {
    margin-top: 40px;
}

.newarrival h2 {
    font-size: var(--fs-lg);
    font-weight: 600;
    margin-bottom: 15px;
}

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

@media(max-width:1024px) {
    .category-sec {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        overflow: scroll;
        align-items: center !important;
        justify-content: start !important;
        margin: 0px 0px;
        gap: 10px;
    }
    .category-sec::-webkit-scrollbar{
        display: none;
    }

    .category-sec div {
        white-space: nowrap;
        /* Prevent text wrap */
        width: max-content;
    }

    .category-sec h4 {

        width: fit-content !important;

        max-width: 300px !important;

    }

    .procard {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        overflow: scroll;
        justify-content: start !important;
        margin: 0px 0px;
    }
     .procard::-webkit-scrollbar{
        display: none;
    }

    .product-card {
        width: 260px;
    }
    .newarrival{
        padding: 0px 10px;
    }
    .hero-banner{
        margin: 100px auto 30px auto;
        padding: 0px 10px !important;
    }
}


@media(max-width:768px) {
    .hero-category {
        margin: 0px auto;
        padding: 5px 10px;
    }

    .hero-banner {
        margin: 20px auto;
        padding: 0px 10px;
    }
    .hero-category h3{
        margin-bottom: 10px;
    }
section {
    padding: 0px 0px ;
}
.procard{
    margin: 0px 0px;
}
.hero-banner {
    width: 100%;
    max-width: 1300px;
    margin: 95px auto 30px auto !important;
}

.hero-banner img {
    /* border-radius: 10px; */
    border-radius: var(--radius-sm);
    height: 200px !important;
    width: 100%;
    object-fit: Cover;
    /* margin-top: 10px; */
}


}