/*==================================
HOME PAGE
==================================*/

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/*==================================
SECTION TITLE
==================================*/

.section-title{
    text-align:center;
    font-size:48px;
    font-weight:700;
    margin-bottom:60px;
    color:#111;
}

/*==================================
SHOP BY CATEGORY
==================================*/

.fc-category{
    padding:90px 0;
    background:#fff;
}

.fc-category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.fc-category-card{
    display:block;
    text-decoration:none;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.fc-category-card:hover{
    transform:translateY(-8px);
}

.fc-category-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.fc-category-card h3{
    padding:22px;
    text-align:center;
    font-size:30px;
    color:#111;
    margin:0;
}

/*==================================
FEATURED PRODUCTS
==================================*/

.fc-featured{
    padding:90px 0;
    background:#fafafa;
}

.fc-featured ul.products{
    list-style:none;
    margin:0;
    padding:0;
    display:grid !important;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:30px;
}

.fc-featured ul.products li.product{
    width:100% !important;
    float:none !important;
    margin:0 !important;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    text-align:center;
    transition:.3s;
    padding-bottom:20px;
}

.fc-featured ul.products li.product:hover{
    transform:translateY(-8px);
}

.fc-featured ul.products li.product img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
}

.fc-featured .woocommerce-loop-product__title{
    font-size:20px !important;
    color:#111;
    padding:15px;
    min-height:60px;
}

.fc-featured .price{
    display:block;
    color:#d4af37 !important;
    font-size:22px !important;
    font-weight:700;
    margin-bottom:15px;
}

.fc-featured .button{
    display:inline-block !important;
    padding:14px 30px !important;
    border-radius:40px;
    background:#d4af37 !important;
    color:#111 !important;
    text-decoration:none;
    font-weight:700;
}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:991px){

    .fc-category-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .fc-featured ul.products{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title{
        font-size:36px;
    }

}

@media(max-width:600px){

    .fc-category-grid{
        grid-template-columns:1fr;
    }

    .fc-featured ul.products{
        grid-template-columns:1fr;
    }

}
/* ==========================
SHOP BY OCCASION
========================== */

.fc-occasion{
    padding:90px 0;
    background:#fafafa;
}

.fc-occasion-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.fc-occasion-card{
    display:block;
    text-decoration:none;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.fc-occasion-card:hover{
    transform:translateY(-8px);
}

.fc-occasion-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.fc-occasion-card h3{
    text-align:center;
    padding:20px;
    color:#111;
    font-size:24px;
}
/*==============================
BEST SELLERS
==============================*/

.fc-featured{
    padding:90px 0;
    background:#fff;
}

.fc-featured .section-title{
    text-align:center;
    font-size:48px;
    margin-bottom:50px;
    color:#222;
    font-weight:700;
}

.fc-featured ul.products{
    display:grid !important;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin:0;
    padding:0;
    list-style:none;
}

.fc-featured ul.products li.product{
    width:100% !important;
    margin:0 !important;
    float:none !important;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
    text-align:center;
    padding-bottom:25px;
}

.fc-featured ul.products li.product:hover{
    transform:translateY(-10px);
}

.fc-featured img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.fc-featured h2,
.fc-featured h3,
.fc-featured .woocommerce-loop-product__title{
    font-size:22px !important;
    padding:15px;
    color:#222;
    font-weight:700;
}

.fc-featured .price{
    color:#D4AF37 !important;
    font-size:26px !important;
    font-weight:700;
    margin-bottom:15px;
}

.fc-featured .button{
    background:#D4AF37 !important;
    color:#111 !important;
    border-radius:40px;
    padding:14px 28px !important;
    font-weight:700;
    text-decoration:none;
    display:inline-block;
}

.fc-featured .button:hover{
    background:#b58b17 !important;
    color:#fff !important;
}
/*=========================
WHY CHOOSE US
=========================*/

.fc-why{
    padding:90px 0;
    background:#fff7f8;
}

.fc-why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.fc-why-box{
    background:#fff;
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.fc-why-box:hover{
    transform:translateY(-10px);
}

.fc-why-box .icon{
    font-size:50px;
    margin-bottom:20px;
}

.fc-why-box h3{
    font-size:24px;
    margin-bottom:15px;
    color:#222;
}

.fc-why-box p{
    color:#666;
    line-height:1.7;
}
/*==============================
PERSONALIZED GIFTS
==============================*/

.fc-personalized{
    padding:100px 0;
    background:#fff;
}

.fc-personalized-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.fc-personalized-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.fc-personalized-content span{
    color:#D4AF37;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.fc-personalized-content h2{
    font-size:52px;
    margin:20px 0;
    color:#222;
}

.fc-personalized-content p{
    color:#666;
    font-size:19px;
    line-height:1.9;
    margin-bottom:35px;
}

.fc-personalized-content .fc-btn{
    background:#D4AF37;
    color:#111;
    padding:18px 40px;
    border-radius:40px;
    text-decoration:none;
    font-weight:700;
    display:inline-block;
}