.shop-modern-wrap {
    padding: 70px 0;
}

.shop-sidebar-card,
.shop-products-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
}

.shop-sidebar-card {
    padding: 24px;
    position: sticky;
    top: 100px;
}

.shop-sidebar-card h3 {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.category-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-nav li {
    margin-bottom: 8px;
}

.category-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    border-radius: 10px;
    color: #334155;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.category-nav a:hover,
.category-nav a.active {
    background: #fff4de;
    border-color: #f3d9a6;
    color: #9d6920;
}

.category-nav a i {
    font-size: 12px;
    opacity: 0.7;
}

.shop-products-card {
    padding: 28px;
}

.shop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e2e8f0;
}

.shop-header h2 {
    font-size: 26px;
    color: #0f172a;
    margin: 0 0 4px;
}

.shop-header p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.product-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
}

.product-grid-card {
    position: relative;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    transition: all 0.2s ease;
}

.product-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
    border-color: #b37b2b;
}

.product-grid-card .product-img-wrap {
    position: relative;
    background: #fff;
    display: block;
    padding: 14px;
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-grid-card .product-img-wrap img {
    width: 100%;
    max-height: 210px;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.product-grid-card:hover .product-img-wrap img {
    transform: scale(1.03);
}

.product-grid-card .product-zoom-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0f172a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 2;
}

.product-grid-card:hover .product-zoom-btn {
    opacity: 1;
}

.product-grid-card .product-zoom-btn:hover {
    background: #b37b2b;
}

.product-grid-card .product-card-body {
    padding: 16px 18px 18px;
    border-top: 1px solid #e2e8f0;
    background: #fff;
}

.product-grid-card .product-card-body h6 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}

.product-grid-card .view-link {
    font-size: 13px;
    font-weight: 600;
    color: #b37b2b;
}

.shop-empty-state {
    text-align: center;
    padding: 50px 20px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 14px;
}

.shop-empty-state i {
    font-size: 42px;
    color: #b37b2b;
    margin-bottom: 14px;
}

.shop-empty-state h4 {
    color: #0f172a;
    margin-bottom: 8px;
}

.shop-empty-state p {
    color: #64748b;
    margin-bottom: 18px;
}

.btn-shop-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 10px;
    background: #b37b2b;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-shop-primary:hover {
    background: #9d6920;
    color: #fff;
}

@media (max-width: 991px) {
    .shop-modern-wrap {
        padding: 55px 0;
    }

    .shop-sidebar-card {
        position: static;
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .page-hero h1 {
        font-size: 28px;
    }

    .shop-products-card {
        padding: 20px 16px;
    }

    .shop-sidebar-card {
        padding: 20px 16px;
    }
}
