/*
 * Shop Page Styles - Samsung Design
 * Stili per e-commerce con product grid e filtri
 */

/* Shop Hero */
.shop-hero {
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
    color: var(--color-white);
    padding: 100px 0 60px;
    text-align: center;
}

.shop-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.shop-hero p {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-white);
    opacity: 0.9;
    line-height: 1.7;
}

/* Shop Container */
.shop-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-3xl);
    padding: var(--space-4xl) 0;
}

/* Filter Sidebar */
.shop-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.shop-filter-section {
    background: var(--color-white);
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.shop-filter-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: var(--space-md);
}

.shop-filter-option {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    cursor: pointer;
}

.shop-filter-option input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
}

.shop-filter-option input[type="checkbox"]:checked {
    background: var(--samsung-blue);
    border-color: var(--samsung-blue);
}

.shop-filter-option label {
    font-size: var(--text-sm);
    color: var(--color-text-primary);
    cursor: pointer;
}

/* Product Grid */
.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

/* Product Card */
.product-card {
    background: var(--color-white);
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: var(--samsung-blue);
}

.product-card-image {
    aspect-ratio: 1;
    background: var(--color-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    position: relative;
}

.product-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--samsung-blue);
    color: var(--color-white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
}

.product-card-content {
    padding: var(--space-xl);
}

.product-card-category {
    font-size: var(--text-xs);
    color: var(--color-text-secondary);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.product-card-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.product-card-description {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.product-card-price {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-black);
}

.product-card-cta {
    flex: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .shop-container {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--space-lg);
    }

    .shop-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-hero h1 {
        font-size: 2rem;
    }

    .shop-sidebar {
        grid-template-columns: 1fr;
    }

    .shop-product-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}
