html {
    color-scheme: light;
}

/* in shop we have categories , styles for them */

/* if its desktop then we dont have to give it full height */
@media screen and (min-width: 769px) {
    .widget-item__filter {
        max-width: 355px;
    }
    .shop-filter-widget {
        width: max-content !important;
        padding: 35px !important;
    }

    .filter-widget-col {
        width: 100%;
    }

    .widget-item__list li label {
        padding: 4px 25px 4px 0px;
    }
}

/* if its mobile screen */
@media screen and (max-width:768px){
    .widget-item__filter {
        max-width: 100%;
    }
}

.zoomContainer{
    z-index: 999;
}
.zoomLens{
    background-color: white;
}


.wishlist-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    display: none; /* Hidden by default */
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

@media screen and (max-width : 768px) {
    .header-mid-logo .site-logo {
        height: 68px !important;
        width: auto;
        max-width: 150px;
    }
}

@media screen and (min-width: 992px) {
    .header-mid-logo .site-logo {
        height: 96px;
        width: auto;
        max-width: 220px;
    }
}

.site-ad-banner {
    background: #14532d;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.site-ad-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 16px;
}

.site-ad-banner__content {
    flex: 1;
}

.site-ad-banner__content p {
    margin: 0;
    color: #ffffff;
}

.site-ad-banner__content a {
    color: #d9f99d;
    text-decoration: underline;
}

.site-ad-banner__close {
    background: transparent;
    border: 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.admin-banner-card {
    overflow: hidden;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.admin-banner-card__image img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
}

.admin-banner-card__content {
    padding: 18px;
}

.admin-banner-card__content h4 {
    margin: 0 0 6px;
}

.admin-banner-card__content p {
    margin: 0;
}

.category-tab-list {
    row-gap: 12px;
}

.category-tab-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 112px;
    border: 1px solid #d1d5db;
    border-radius: 16px;
    padding: 12px 10px !important;
    background: #ffffff;
    transition: all 0.25s ease;
}

.category-tab-card.active,
.category-tab-card:hover {
    border-color: #14532d;
    background: #f0fdf4;
}

.category-tab-image {
    width: 74px;
    height: 74px;
    border-radius: 999px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dcfce7;
}

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

.category-tab-placeholder {
    font-size: 24px;
    font-weight: 700;
    color: #14532d;
}

.category-tab-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    text-align: center;
    line-height: 1.3;
}

.whatsapp-float {
    position: fixed;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.22);
    z-index: 1100;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}
