/* trending item css */

.occasion-tabs {
    display: flex;
    overflow-x: auto;
    /* padding-bottom: 10px; */
    /* justify-content: space-around; */
}

.occasion-tabs button {
    border: none;

    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}
.announcement-bar{
    background-color: #FF6000!important;
}
.occasion-tabs .active {
    border-bottom: 3px solid #fe4d00!important;
    background-color: transparent;
}

.occasion-tabs-img .occ-img {
    width: 100%;
    max-width: 25px;
}
/* #tab-170{
    justify-content: center!important;
} */


button {
    background: none;
}

.trending_item {
    margin-left: 0px !important;
    margin-right: 0px !important;
    justify-content: center;
}

.gift-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    /* text-align: center; */
}

.gift-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gift-card .card-body {
    padding: 15px;
}

.gift-card .card-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0px;
    height: 22px;
    overflow: hidden;
}

.gift-card .card-price {
    font-size: 16px;
    color: #d4a017;
    font-weight: bold;
    margin-bottom: 10px !important;
}

.gift-card .card-old-price {
    font-size: 14px;
    color: #888;
    text-decoration: line-through;
    margin-left: 5px;
}

.custom-btn {
    border: 1px solid red !important;
    background: #f7f8f1 !important;
    width: 30%;
}

.custom-btn:hover {
    background-color: #ebebcc;
    /* Slightly darker on hover */
}

.custom-btn::after {
    content: ">";
    /* Arrow symbol */
    font-size: 1.2rem;
    /* Slightly larger arrow */
    font-weight: bold;
}

.rating-container {
    background: white;
    position: absolute;
    top: 65%;
    left: 2%;
    width: 61px;
    height: 23px;
    align-content: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    font-size: 12px;
}

/* summer to school items */

.schoolPromoArea {
    padding: 40px 20px;
    background-color: #fff;
}

.schoolPromoArea h1 {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.promoItemBox {
    text-align: center;
    border: none;
    background-color: transparent;
}

.promoImageFrame {
    width: auto;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.promoImageFrame:hover {
    transform: scale(1.03);
    /* Zoom effect on hover */
}

.promoCaptionText {
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.image_width {
    width: 220px !important;
    cursor: pointer;
}

@media (max-width: 768px) {
    .promoImageFrame {
        height: 150px;
    }

    .promoCaptionText {
        font-size: 1rem;
    }
}

/* start home and decor css */
.main-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.item-box {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.item-box:hover {
    border: 1px solid gray;
}

.item-image {
    transition: transform 0.3s ease;
    object-fit: cover;
    height: 200px;
    /* Adjust as needed */
    width: 100%;
}

.item-box:hover .item-image {
    transform: scale(1.1);
    /* Subtle zoom effect on hover */
}

.item-content {
    padding: 10px;
    text-align: center;
}

.item-label {
    font-size: 1rem;
    margin: 0;
}

/* end home and decor css */

/* start luxary section css  */

.luxary-section-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left
}

.luxury-item {
    overflow: hidden;
    border-radius: 15px;
    background-color: #e0e0e0;
    width: 100%;
    height: 200px;
    position: relative;
}

.luxury-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.luxury-item:hover img {
    transform: scale(1.1);
}

.item-title {
    text-align: center;
    margin-top: 10px;
    font-size: 1.1rem;
}

@media (max-width: 576px) {
    .luxary-section-title {
        font-size: 1.5rem;
    }

    .luxury-item {
        height: 150px;
    }

    .item-title {
        font-size: 0.9rem;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .luxury-item {
        height: 180px;
    }
}

/* end luxary section css */

/* start brand section css */

.brand-section {
    padding: 20px 0;
}

.brand-card {
    background-color: #f5f5f5;
    border-radius: 10px;
    text-align: center;
    padding: 15px;
    margin: 10px;
    overflow: hidden;
    /* Ensures the zoomed image doesn't overflow */
    transition: all 0.3s ease;
}

.brand-card img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.brand-card:hover img {
    transform: scale(1.1);
    /* Zoom effect on hover */
}

@media (max-width: 576px) {
    .brand-card {
        margin: 5px;
        padding: 10px;
    }
}

/* end brand section css */