/* Premium shop experience */

.shop-hero {
    background: var(--gradient-primary);
}

.shop-sort-select {
    width: auto;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--gray-300) !important;
    border-radius: var(--radius-md);
    color: var(--primary-color) !important;
    font-weight: 600;
}

.shop-sort-select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(127, 62, 155, 0.15) !important;
}

.shop-shell {
    background-color: var(--soft-cream);
}

.shop-filter-card {
    border-radius: var(--radius-lg);
}

.shop-filter-header {
    background: var(--soft-lavender);
    border: none;
}

.shop-filter-icon {
    color: var(--primary-color);
}

.shop-category-active {
    border-left: 3px solid var(--primary-color) !important;
}

.shop-category-link {
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.shop-category-link:hover {
    background-color: var(--soft-lavender);
    border-left-color: var(--primary-color);
}

.shop-range {
    height: 0.5rem;
    accent-color: var(--primary-color);
}

.shop-input {
    border-color: var(--gray-300);
}

.product-card {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid var(--gray-200) !important;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg) !important;
    border-color: rgba(127, 62, 155, 0.25) !important;
}

.product-featured-badge {
    background: var(--gradient-purple);
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
    background-color: var(--soft-cream);
}

.product-image {
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-tag {
    color: var(--secondary-color);
    font-weight: 600;
}

.product-divider {
    border-color: var(--gray-200) !important;
}

.product-price {
    color: var(--primary-color);
}

.btn-shop-add {
    background: var(--gradient-primary);
    color: var(--light-color);
    border: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

.btn-shop-add:hover {
    color: var(--light-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.shop-pagination .page-link {
    color: var(--primary-color);
    border-color: var(--gray-300);
}

.shop-pagination .page-item.active .page-link,
.shop-page-link.is-active {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--light-color);
}

.shop-empty-icon {
    font-size: 4rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.shop-empty-title {
    color: var(--primary-color);
}

.shop-product-price {
    color: var(--primary-color);
}

.shop-qty-input {
    width: 100px;
}

.btn-shop-add-lg {
    background: var(--gradient-primary);
    color: var(--light-color);
    border: none;
}

.btn-shop-add-lg:hover {
    color: var(--light-color);
    box-shadow: var(--shadow-md);
}

.shop-product-features {
    border-left: 4px solid var(--primary-color);
}

.shop-product-feature-title {
    color: var(--primary-color);
}

.shop-related-image {
    height: 200px;
    object-fit: cover;
}