/* =========================================================
   SHOP BANNER
========================================================= */
.shop-banner {
    background: #F8F5EF;
    padding: 70px 0;
}
.shop-banner h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1E5D45;
}
.shop-banner p {
    margin-top: 15px;
    color: #666;
}
.shop-banner a {
    color: #1E5D45;
    text-decoration: none;
}
.shop-section {
    background: #fff;
}
.shop-topbar {
    background: #fff;
    padding: 18px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}
.shop-topbar h4 {
    margin: 0;
    font-size: 22px;
    color: #1E5D45;
    font-weight: 700;
}
.shop-topbar .form-select {
    width: 220px;
}
.shop-toolbar {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    margin-bottom: 30px;
}
.shop-toolbar .form-control,
.shop-toolbar .form-select {
    border-radius: 30px;
    padding: 12px 20px;
}

/* =========================================================
   SHOP BANNER / TOPBAR — MOBILE RESPONSIVE
========================================================= */
@media (max-width: 991px) {

    .shop-banner {
        padding: 45px 0;
    }

    .shop-banner h1 {
        font-size: 34px;
    }

}

@media (max-width: 767px) {

    .shop-banner {
        padding: 35px 0;
    }

    .shop-banner h1 {
        font-size: 26px;
    }

    .shop-banner p {
        font-size: 14px;
        margin-top: 10px;
    }

    .shop-topbar {
        padding: 14px 16px;
        border-radius: 12px;
    }

    .shop-topbar h4 {
        font-size: 16px;
        line-height: 1.4;
    }

    .shop-toolbar {
        padding: 14px;
    }

}

/* =========================================================
   PRODUCT CARD
========================================================= */
.product-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.product-image {
    position: relative;
    overflow: hidden;
    padding: 20px;
    background: #fafafa;
    text-align: center;
}
.product-image img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    transition: .35s;
}
.product-card:hover .product-image img {
    transform: scale(1.08);
}
.product-image .product-logo-watermark {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    object-fit: contain !important;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 3px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    z-index: 5;
    display: block;
}
.offer-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #dc3545;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 30px;
    z-index: 5;
    box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.product-content {
    padding: 20px;
    text-align: left;
}
.product-category {
    color: #888;
    font-size: 12px;
    margin-bottom: 4px;
}
.product-title {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 6px;
}
.product-title a {
    color: #1F5D45;
    text-decoration: none;
}
.product-price {
    margin-bottom: 14px;
}
.old-price {
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
    font-size: 14px;
}
.current-price {
    color: #1E5D45;
    font-size: 20px;
    font-weight: 700;
}

/* =========================================================
   PRODUCT CARD — MOBILE RESPONSIVE
========================================================= */
@media (max-width: 767px) {

    .product-image {
        padding: 12px;
    }

    .product-image img {
        height: 140px;
    }

    .product-content {
        padding: 14px;
    }

    .product-title {
        font-size: 14px;
    }

    .current-price {
        font-size: 16px;
    }

    .old-price {
        font-size: 12px;
        margin-left: 6px;
    }

}