body{
    background:#EDE7DD;
    margin:0;
    padding:0;
}

.hero-slider{
    position:relative;
    width:100%;
    height:80vh;          /* Half screen height */
    overflow:hidden;
}

.slide{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 0.8s ease-in-out;
}

.slide.active{
    opacity:1;
    z-index:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.slide-overlay{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    max-width:600px;
    z-index:2;
}

.slide-overlay h2{
    font-size:3rem;
    font-weight:700;
    color:#fff;
    line-height:1.2;
    margin-bottom:15px;
    font-family: 'Playfair Display', serif;
}

.slide-overlay p{
    font-size:1.2rem;
    color:#fff;
    line-height:1.7;
    margin-bottom:25px;
    font-family: 'Poppins', sans-serif;
}

.shop-btn{
    display:inline-block;
    padding:14px 34px;
    background:linear-gradient(90deg,#86612A,#86612A);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:0.3s ease;
}

.shop-btn:hover{
    transform:translateY(-3px);
}

/* Tablet */
@media (max-width:992px){

    .hero-slider{
        height:45vh;
    }

    .slide-overlay{
        left:6%;
        max-width:450px;
    }

    .slide-overlay h2{
        font-size:2.2rem;
    }

    .slide-overlay p{
        font-size:1rem;
    }

}

/* Mobile */
@media (max-width:768px){

    .hero-slider{
        height:40vh;
    }

    .slide-overlay{
        left:5%;
        right:5%;
        max-width:90%;
    }

    .slide-overlay h2{
        font-size:1.8rem;
    }

    .slide-overlay p{
        font-size:0.95rem;
    }

    .shop-btn{
        padding:12px 26px;
        font-size:14px;
    }

}

/*==============================
    CATEGORY NAVBAR
===============================*/

.category-navbar-section{
    width:100%;
    padding:35px 0;
    background:#fff;
}

.category-nav-wrapper{

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;

    padding:15px;

    background:#fff;

    border-radius:60px;

    max-width:950px;
    margin:auto;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    overflow:hidden;
}

.category-btn{

    position:relative;

    background:transparent;

    border:none;

    outline:none;

    cursor:pointer;

    padding:14px 28px;

    font-size:16px;

    font-weight:600;

    color:#666;

    transition:.35s;

    border-radius:40px;

    white-space:nowrap;

    z-index:2;
}

.category-btn:hover{

    color:#8b5cf6;
}

.category-btn.active{

    color:#8b5cf6;
}

.category-btn::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-12px;

    transform:translateX(-50%) scaleX(0);

    width:80%;

    height:4px;

    border-radius:20px;

    background:linear-gradient(
    90deg,
    #a855f7,
    #ec4899);

    transition:.35s;
}

.category-btn.active::after{

    transform:translateX(-50%) scaleX(1);
}

/* Moving indicator */

.category-indicator{

    position:absolute;

    bottom:0;

    left:0;

    width:0;

    height:4px;

    border-radius:30px;

    background:linear-gradient(
    90deg,
    #a855f7,
    #ec4899);

    transition:.35s ease;
}

/* Responsive */

@media(max-width:768px){

.category-nav-wrapper{

    gap:10px;

    border-radius:25px;

    padding:12px;
}

.category-btn{

    font-size:14px;

    padding:12px 18px;
}

}

@media(max-width:480px){

.category-nav-wrapper{

    justify-content:flex-start;

    overflow-x:auto;

    flex-wrap:nowrap;

    scrollbar-width:none;
}

.category-nav-wrapper::-webkit-scrollbar{
    display:none;
}

.category-btn{

    flex:0 0 auto;
}

}
.category-products{

    margin-top:40px;

}

.product-category{

    display:none;

    animation:fade .5s ease;

}

.product-category.active{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.product-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.product-card img{

    width:100%;

    height:300px;

    object-fit:cover;

}

.product-info{

    padding:20px;

    text-align:center;

}

.product-info h3{

    font-size:24px;

    margin-bottom:15px;

}

.view-btn{

    display:inline-block;

    padding:12px 28px;

    border-radius:30px;

    text-decoration:none;

    color:#fff;

    font-weight:600;

    background:linear-gradient(90deg,#a855f7,#ec4899);

    transition:.3s;

}

.view-btn:hover{

    transform:translateY(-3px);

}

@keyframes fade{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*======================================
 Featured Products
======================================*/

.featured-product-row{
    width:100%;
    padding:60px 25px;
    background:#EDE7DD;
    overflow:hidden;          /* No scrolling */
    box-sizing:border-box;
}


/* Product Grid */

.product-grid{
    width:100%;
    max-width:1400px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
}


/* Product Item */

.product-item{
    width:100%;
}

/* Link */

.card-link{
    text-decoration:none;
    display:block;
}

/* Card */

.product-card{
    width:100%;
    height:450px;
    background:#ede7dd;
    border-radius:18px;
    padding:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    transition:.35s ease;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    overflow:hidden;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

/* Title */

.product-title{
    text-align:center;
    color:#86612A;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

/* Image */

.single-image{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    flex:1;
}

.single-image img{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:12px;
}

/* Link */

.details-link{
    display:block;
    text-align:center;
    color:#86612A;
    font-size:16px;
    font-weight:600;
    margin-top:15px;
    transition:.3s;
}

.product-card:hover .details-link{
    letter-spacing:.5px;
}

/*======================================
 Large Desktop (1400px+)
======================================*/

@media (min-width:1400px){

    .product-card{
        height:500px;
    }

    .single-image img{
        height:400px;
    }

}

/*======================================
 Laptop
======================================*/

@media (max-width:1200px){

    .product-grid{
        gap:20px;
    }

    .product-card{
        height:400px;
        padding:15px;
    }

    .product-title{
        font-size:20px;
    }

    .single-img{
        height:220px;
    }

}

/*======================================
 Tablet
======================================*/

@media (max-width:991px){

    .featured-product-row{
        padding:20px 10px;
    }

    /* 3 Cards Per Row */
    .product-grid{
        grid-template-columns:repeat(3,1fr);
        gap:10px;
    }

    .product-item{
        width:100%;
        height:80%;
    }

    .product-card{
        width:100%;
        height:200px;      /* Reduced from 400px */
        padding:8px;
        border-radius:10px;
        display:flex;
        flex-direction:column;
        justify-content:space-between;
    }

    .product-title{
        font-size:13px;
        line-height:1.3;
        margin-bottom:8px;
        text-align:center;
        min-height:34px;
    }

    .single-image{
        display:flex;
        justify-content:center;
        align-items:center;
        flex:1;
    }

        .single-image img{
        width:100%;
        height: 100px;
        object-fit:contain;
    }
    .details-link{
        font-size:12px;
        margin-top:6px;
        text-align:center;
    }

}
/*======================================
 Mobile
======================================*/

@media (max-width:767px){
    .featured-product-row{
        padding:20px 10px;
    }

    /* 3 Cards Per Row */
    .product-grid{
        grid-template-columns:repeat(3,1fr);
        gap:10px;
    }

    .product-item{
        width:100%;
    }

    .product-card{
        width:100%;
        height:200px;      /* Reduced from 400px */
        padding:8px;
        border-radius:10px;
        display:flex;
        flex-direction:column;
        justify-content:space-between;
    }

    .product-title{
        font-size:13px;
        line-height:1.3;
        margin-bottom:8px;
        text-align:center;
        min-height:34px;
    }

    .single-image{
        display:flex;
        justify-content:center;
        align-items:center;
        flex:1;
    }

        .single-image img{
        width:100%;
        height: 100px;
        object-fit:contain;
    }
    .details-link{
        font-size:12px;
        margin-top:6px;
        text-align:center;
    }

}
/*======================================
 Small Mobile
======================================*/

@media (max-width:650px){

    .featured-product-row{
        padding:20px 10px;
    }

    /* 3 Cards Per Row */
    .product-grid{
        grid-template-columns:repeat(3,1fr);
        gap:10px;
    }

    .product-item{
        width:100%;
    }

    .product-card{
        width:100%;
        height:200px;      /* Reduced from 400px */
        padding:8px;
        border-radius:10px;
        display:flex;
        flex-direction:column;
        justify-content:space-between;
    }

    .product-title{
        font-size:13px;
        line-height:1.3;
        margin-bottom:8px;
        text-align:center;
        min-height:34px;
    }

    .single-image{
        display:flex;
        justify-content:center;
        align-items:center;
        flex:1;
    }

        .single-image img{
        width:100%;
        height: 100px;
        object-fit:contain;
    }
    .details-link{
        font-size:12px;
        margin-top:6px;
        text-align:center;
    }

}
/*======================================
 Mobile (425px and below)
======================================*/
@media screen and (max-width:425px){

    .featured-product-row{
        padding:12px 8px;
    }

    .product-grid{
        display:grid;
        grid-template-columns:repeat(2, minmax(0,1fr));
        gap:10px;
    }

    .product-item{
        width:100%;
    }

    .product-card{
        width:100%;
        min-height:220px;
        padding:8px;
        border-radius:10px;
        display:flex;
        flex-direction:column;
        justify-content:space-between;
        box-sizing:border-box;
    }

    .single-image{
        width:100%;
        height:110px;
        display:flex;
        justify-content:center;
        align-items:center;
        overflow:hidden;
    }

    .single-image img{
        width:100%;
        height:100%;
        object-fit:contain;
    }

    .product-title{
        font-size:12px;
        line-height:1.4;
        text-align:center;
        margin:8px 0;
        min-height:34px;

        display:-webkit-box;
        -webkit-line-clamp:2;
        -webkit-box-orient:vertical;
        overflow:hidden;
    }

    .details-link{
        display:block;
        width:100%;
        padding:8px 5px;
        font-size:11px;
        text-align:center;
        border-radius:6px;
    }
}
/* why unica section */
/* ==========================================
   WHY UNIQUE PRODUCTS
========================================== */

.unique-section {
    padding: 70px 0;
    overflow: hidden;
}

.left-content {
    padding-right: 25px;
}

.unique-title {
    font-family: "Playfair Display", serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    animation: fadeInUp .8s ease;
}

.unique-text {
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    line-height: 1.9;
    text-align: justify;
    color: #444;
    margin-bottom: 18px;
    animation: fadeInUp 1s ease;
}

.unique-quote {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 600;
    color: #86612A;
}

.right-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.unique-img {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
    animation: floatEffect 4s ease-in-out infinite;
}

/* -----------------------------
   Laptop
------------------------------ */

@media (max-width:1200px){

    .unique-title{
        font-size:2rem;
    }

    .unique-text{
        font-size:1rem;
        line-height:1.8;
    }

    .unique-img{
        max-width:500px;
    }

}

/* -----------------------------
   Tablet
------------------------------ */

@media (max-width:991px){

    .unique-section{
        padding:60px 0;
    }

    .left-content{
        padding-right:0;
    }

    .unique-title{
        font-size:1.8rem;
    }

    .unique-text{
        font-size:.95rem;
        line-height:1.7;
    }

    .unique-quote{
        font-size:1.1rem;
    }

    .unique-img{
        max-width:100%;
        margin-top:10px;
    }

}

/* -----------------------------
   Mobile
------------------------------ */

@media (max-width:767px){

    .unique-section{
        padding:45px 0;
    }

    .left-content{
        text-align:center;
    }

    .unique-title{
        font-size:1.6rem;
        margin-bottom:15px;
    }

    .unique-text{
        font-size:.90rem;
        text-align:justify;
        line-height:1.7;
    }

    .unique-quote{
        font-size:1rem;
        margin-bottom:20px;
    }

    .right-content{
        margin-top:10px;
    }

    .unique-img{
        border-radius:10px;
    }

}

/* -----------------------------
   Small Mobile
------------------------------ */

@media (max-width:480px){

    .unique-section{
        padding:35px 0;
    }

    .unique-title{
        font-size:1.4rem;
    }

    .unique-text{
        font-size:.85rem;
        line-height:1.6;
    }

    .unique-quote{
        font-size:.95rem;
    }

}

/* -----------------------------
   Animations
------------------------------ */

@keyframes fadeInUp{
    from{
        opacity:0;
        transform:translateY(25px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes floatEffect{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

}

/*==============================
   MYNTRA STYLE CATEGORY
==============================*/

.myntra-category-section{
    padding:70px 0;
    background:#faf9f7;
}

.section-heading{
    text-align:center;
    margin-bottom:45px;
}

.section-heading h2{
    font-size:38px;
    font-weight:700;
    color:#222;
    margin-bottom:10px;
}

.section-heading p{
    color:#777;
    font-size:17px;
}

.myntra-category-grid{

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:22px;

}

.category-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
    transition:.35s;
    box-shadow:0 6px 18px rgba(0,0,0,.08);

}

.category-card:hover{

    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);

}

.category-image{

    height:330px;
    overflow:hidden;
    position:relative;

}

.category-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;

}

.category-card:hover img{

    transform:scale(1.08);

}

.category-content{

    padding:18px;
    text-align:center;

}

.category-content h4{

    font-size:20px;
    color:#222;
    margin-bottom:10px;
    font-weight:600;

}

.category-content span{

    display:inline-block;
    color:#86612A;
    font-weight:600;
    font-size:15px;

}

/* Tablet */

@media(max-width:1200px){

.myntra-category-grid{

grid-template-columns:repeat(4,1fr);

}

}

/* Small Laptop */

@media(max-width:992px){

.myntra-category-grid{

grid-template-columns:repeat(3,1fr);

}

.category-image{

height:280px;

}

}

/* Tablet */

@media(max-width:768px){

.myntra-category-grid{

grid-template-columns:repeat(2,1fr);
gap:15px;

}

.category-image{

height:250px;

}

.section-heading h2{

font-size:30px;

}

}

/* Mobile */

@media(max-width:480px){

.myntra-category-grid{

grid-template-columns:repeat(2,1fr);
gap:12px;

}

.category-image{

height:180px;

}

.category-content{

padding:12px;

}

.category-content h4{

font-size:15px;

}

.category-content span{

font-size:13px;

}

}

/*==============================
      PAITHANI SECTION
===============================*/

.paithani-section{

    width:100%;
    padding:70px 40px;
    background:#F8F5F1;

}

.section-title{

    text-align:center;
    margin-bottom:40px;

}

.section-title h2{

    font-size:42px;
    font-family:'Playfair Display',serif;
    color:#5B3A29;
    margin-bottom:8px;

}

.section-title p{

    color:#777;
    font-size:18px;
    letter-spacing:1px;

}

/*------------------------------*/

.paithani-slider{

    display:flex;

    gap:22px;

    overflow-x:auto;

    overflow-y:hidden;

    scroll-behavior:smooth;

    scrollbar-width:none;

}

.paithani-slider::-webkit-scrollbar{

    display:none;

}

/*------------------------------*/

.paithani-card{

    flex:0 0 calc((100% - 88px)/5);

    min-width:230px;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    text-decoration:none;

    transition:.4s;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.paithani-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.15);

}

.card-image{

    width:100%;

    height:340px;

    overflow:hidden;

}

.card-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.paithani-card:hover img{

    transform:scale(1.08);

}

.card-content{

    padding:18px;

}

.card-content h3{

    font-size:20px;

    color:#222;

    margin-bottom:10px;

    font-family:'Poppins',sans-serif;

}

.card-content p{

    color:#A52A2A;

    font-size:19px;

    font-weight:600;

    margin-bottom:10px;

}

.card-content span{

    color:#86612A;

    font-weight:600;

    font-size:15px;

}

/*===============================
      RESPONSIVE
================================*/

@media(max-width:1200px){

.paithani-card{

    min-width:240px;

}

.card-image{

    height:300px;

}

}

@media(max-width:992px){

.paithani-card{

    min-width:220px;

}

.card-image{

    height:270px;

}

.section-title h2{

    font-size:34px;

}

}

@media(max-width:768px){

.paithani-section{

    padding:50px 15px;

}

.paithani-card{

    min-width:200px;

}

.card-image{

    height:230px;

}

.card-content h3{

    font-size:17px;

}

.card-content p{

    font-size:17px;

}

}

@media(max-width:480px){

.paithani-card{

    min-width:170px;

}

.card-image{

    height:190px;

}

.card-content{

    padding:12px;

}

.card-content h3{

    font-size:14px;

}

.card-content p{

    font-size:15px;

}

.card-content span{

    font-size:12px;

}

}
/*==============================
      BIDRI SECTION
===============================*/

.bidri-section{

    width:100%;
    padding:70px 40px;
    background:#F8F5F1;

}

.section-title{

    text-align:center;
    margin-bottom:40px;

}

.section-title h2{

    font-size:42px;
    font-family:'Playfair Display',serif;
    color:#5B3A29;
    margin-bottom:8px;

}

.section-title p{

    color:#777;
    font-size:18px;
    letter-spacing:1px;

}

/*------------------------------*/

.bidri-slider{

    display:flex;

    gap:22px;

    overflow-x:auto;

    overflow-y:hidden;

    scroll-behavior:smooth;

    scrollbar-width:none;

}

.bidri-slider::-webkit-scrollbar{

    display:none;

}

/*------------------------------*/

.bidri-card{

    flex:0 0 calc((100% - 88px)/5);

    min-width:230px;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    text-decoration:none;

    transition:.4s;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.bidri-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.15);

}

.card-image{

    width:100%;

    height:340px;

    overflow:hidden;

}

.card-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.bidri-card:hover img{

    transform:scale(1.08);

}

.card-content{

    padding:18px;

}

.card-content h3{

    font-size:20px;

    color:#222;

    margin-bottom:10px;

    font-family:'Poppins',sans-serif;

}

.card-content p{

    color:#A52A2A;

    font-size:19px;

    font-weight:600;

    margin-bottom:10px;

}

.card-content span{

    color:#86612A;

    font-weight:600;

    font-size:15px;

}

/*===============================
      RESPONSIVE
================================*/

@media(max-width:1200px){

.bidri-card{

    min-width:240px;

}

.card-image{

    height:300px;

}

}

@media(max-width:992px){

.bidri-card{

    min-width:220px;

}

.card-image{

    height:270px;

}

.section-title h2{

    font-size:34px;

}

}

@media(max-width:768px){

.bidri-section{

    padding:50px 15px;

}

.bidri-card{

    min-width:200px;

}

.card-image{

    height:230px;

}

.card-content h3{

    font-size:17px;

}

.card-content p{

    font-size:17px;

}

}

@media(max-width:480px){

.bidri-card{

    min-width:170px;

}

.card-image{

    height:190px;

}

.card-content{

    padding:12px;

}

.card-content h3{

    font-size:14px;

}

.card-content p{

    font-size:15px;

}

.card-content span{

    font-size:12px;

}

}

/*==============================
      KOLHAPURI SECTION
===============================*/

.kolhapuri-section{

    width:100%;
    padding:70px 40px;
    background:#F8F5F1;

}

.section-title{

    text-align:center;
    margin-bottom:40px;

}

.section-title h2{

    font-size:42px;
    font-family:'Playfair Display',serif;
    color:#5B3A29;
    margin-bottom:8px;

}

.section-title p{

    color:#777;
    font-size:18px;
    letter-spacing:1px;

}

/*------------------------------*/

.kolhapuri-slider{

    display:flex;

    gap:22px;

    overflow-x:auto;

    overflow-y:hidden;

    scroll-behavior:smooth;

    scrollbar-width:none;

}

.kolhapuri-slider::-webkit-scrollbar{

    display:none;

}

/*------------------------------*/

.kolhapuri-card{

    flex:0 0 calc((100% - 88px)/5);

    min-width:230px;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    text-decoration:none;

    transition:.4s;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.kolhapuri-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.15);

}

.card-image{

    width:100%;

    height:340px;

    overflow:hidden;

}

.card-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.kolhapuri-card:hover img{

    transform:scale(1.08);

}

.card-content{

    padding:18px;

}

.card-content h3{

    font-size:20px;

    color:#222;

    margin-bottom:10px;

    font-family:'Poppins',sans-serif;

}

.card-content p{

    color:#A52A2A;

    font-size:19px;

    font-weight:600;

    margin-bottom:10px;

}

.card-content span{

    color:#86612A;

    font-weight:600;

    font-size:15px;

}

/*===============================
      RESPONSIVE
================================*/

@media(max-width:1200px){

.kolhapuri-card{

    min-width:240px;

}

.card-image{

    height:300px;

}

}

@media(max-width:992px){

.kolhapuri-card{

    min-width:220px;

}

.card-image{

    height:270px;

}

.section-title h2{

    font-size:34px;

}

}

@media(max-width:768px){

.kolhapuri-section{

    padding:50px 15px;

}

.kolhapuri-card{

    min-width:200px;

}

.card-image{

    height:230px;

}

.card-content h3{

    font-size:17px;

}

.card-content p{

    font-size:17px;

}

}

@media(max-width:480px){

.kolhapuri-card{

    min-width:170px;

}

.card-image{

    height:190px;

}

.card-content{

    padding:12px;

}

.card-content h3{

    font-size:14px;

}

.card-content p{

    font-size:15px;

}

.card-content span{

    font-size:12px;

}

}

/* ===========================
      CATEGORY SECTION
=========================== */

.category-section{
    padding:60px 5%;
    background:#fff;
}

.section-heading{
    text-align:center;
    margin-bottom:40px;
}

.section-heading h2{
    font-size:34px;
    font-weight:700;
    color:#222;
    margin-bottom:8px;
}

.section-heading p{
    color:#666;
    font-size:16px;
}

/* Grid */

.category-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:22px;
}

/* Card */

.category-card{
    text-decoration:none;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.category-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.category-img{
    width:100%;
    aspect-ratio:1/1;
    overflow:hidden;
    background:#f8f8f8;
}

.category-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.category-card:hover img{
    transform:scale(1.08);
}

.category-card h4{
    padding:14px 8px 16px;
    text-align:center;
    font-size:15px;
    font-weight:600;
    color:#333;
    margin:0;
}

/* Large Tablet */

@media(max-width:1200px){

.category-grid{
    grid-template-columns:repeat(5,1fr);
}

}

/* Tablet */

@media(max-width:992px){

.category-grid{
    grid-template-columns:repeat(4,1fr);
}

}

/* Mobile */

@media(max-width:768px){

.category-grid{
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

.section-heading h2{
    font-size:28px;
}

.category-card h4{
    font-size:14px;
}

}

/* Small Mobile */

@media(max-width:480px){

.category-grid{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.category-card h4{
    font-size:13px;
}

}
