/* Shop Layout */
.site-content {
    background-color: #f8fafc;
    min-height: 100vh;
    padding-bottom: 80px;
}

.shop-header {
    background: radial-gradient(circle at 50% -20%, rgba(197, 249, 73, 0.15), transparent 70%), #fff;
    padding: 140px 0 60px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.shop-wrapper {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 30px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Sidebar Filters */
.shop-sidebar {
    width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #64748b;
    cursor: pointer;
    transition: 0.2s;
}

.filter-item:hover {
    color: #0f172a;
}

.filter-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.filter-checkbox.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.filter-checkbox i {
    font-size: 10px;
    color: #0f172a;
    display: none;
}

.filter-checkbox.active i {
    display: block;
}

/* Products Grid */
.shop-grid {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
}

.results-count {
    color: #64748b;
    font-weight: 600;
}

.sort-dropdown {
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #0f172a;
    font-weight: 600;
    cursor: pointer;
    outline: none;
}

/* Product Card - Compact for Shop */
.product-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid #f1f5f9;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.product-badges {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
}

.badge {
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.hot {
    background: #ef4444;
    color: #fff;
}

.badge.new {
    background: #3b82f6;
    color: #fff;
}

.product-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.product-desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.product-price {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}

.btn-add {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f1f5f9;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
}

.btn-add:hover {
    background: var(--primary-color);
    color: #0f172a;
}

@media (max-width: 991px) {
    .shop-wrapper {
        flex-direction: column;
    }

    .shop-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 30px;
    }
}