.shop-container{
    margin: 0px 50px;
    padding: 0 15px;
}

/* -------------------------------
   CUSTOM PRODUCT CARD FOR SHOP PAGE
----------------------------------*/

.shop-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    padding: 15px;
    transition: all .3s ease;
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.shop-card-img-wrap {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 16px;
    background: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shop-card-img {
    width: 100%;
    object-fit: contain;
    transition: transform .3s ease;
}

.shop-card:hover .shop-card-img {
    transform: scale(1.05);
}

.shop-card-body {
    padding-top: 15px;
}
.shop-card-detail{
    max-width: 165px;
}
.wish-list-icon{
    margin-top: 5px;
    font-size: 24px;
    max-height: 24px;
    max-width: 24px;
}
.shop-card-category {
    font-size: 12px;
    color: #969696;
    font-weight: 500;
    margin-bottom: 2px;
}

.shop-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 42px;
}

.shop-card-title a {
    color: inherit;
    text-decoration: none;
}

.shop-card-tag {
    display: inline-block;
    background: #f1f1f1;
    color: #666;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.shop-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-card-price {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.shop-card-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #18181B, #27272A);
    color: #fff;
    padding: 4px 18px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.shop-card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.6s ease;
}

.shop-card-btn:hover {
    background: linear-gradient(45deg, #27272A, #3F3F46);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.shop-card-btn:hover::before {
    left: 100%;
}

/* -------------------------------
   RESPONSIVE
----------------------------------*/

@media (max-width: 767px) {
    .shop-container{
        margin: 0px 20px;
    }
    .product-section{
        padding: 20px 0;
    }
    .shop-card {
        padding: 0px;
        border-radius: 12px;
    }
    .shop-card-body {
        padding: 15px 12px 12px;
    }

    .shop-card-img-wrap {
        max-height: 130px;
    }

    .shop-card-title {
        font-size: 14px;
    }
    .shop-card-category {
        font-size: 10px;
        margin-bottom: 0px;
    }

    .shop-card-price {
        font-size: 16px;
    }
    .section {
        padding: 30px 0;
    }

    /* Force exactly 2 cards per row */
    .col-6 {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .shop-card-btn{
        padding: 4px 12px;
        font-size: 12px;
    }
}


/* MULTISELECT CHECKBOXES */
.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.filter-checkbox input {
    width: 18px;
    height: 18px;
}

/* MOBILE DRAWER APPLY BUTTON (STICKY) */
@media (max-width: 767px) {
    .drawer-apply-wrapper {
        position: sticky;
        bottom: 0;
        background: #fff;
        padding: 12px 0;
        border-top: 1px solid #ddd;
    }

    .drawer-apply-btn {
        width: 100%;
        display: block;
        background: #111;
        color: #fff;
        padding: 12px 0;
        text-align: center;
        font-weight: 600;
        border-radius: 4px;
    }
}

/* HIDE CLOSE BUTTON ON DESKTOP */
@media (min-width: 768px) {
    .drawer-close-btn {
        display: none;
    }
}
