/* ===== STORE PAGE ===== */
.store-hero {
    padding: 3rem 0 2rem;
    background: #110d0a;
    border-bottom: 1px solid rgba(212, 197, 181, 0.05);
}

.page-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #f0e6dc;
    margin-bottom: 0.25rem;
}

.store-desc {
    color: #8a7a6a;
    font-size: 1.1rem;
    max-width: 600px;
}

/* ===== TOOLBAR ===== */
.store-grid-section {
    padding: 2rem 0 4rem;
    background: #0d0a08;
}

.store-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 197, 181, 0.06);
}

.store-filter {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #8a7a6a;
    background: rgba(212, 197, 181, 0.05);
    border: 1px solid transparent;
    transition: all 0.25s ease;
    cursor: pointer;
}

.filter-btn:hover {
    color: #d4c5b5;
    background: rgba(212, 197, 181, 0.08);
}

.filter-btn.active {
    color: #f0e6dc;
    background: rgba(201, 122, 94, 0.15);
    border-color: rgba(201, 122, 94, 0.3);
}

.store-sort select {
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    background: rgba(212, 197, 181, 0.05);
    color: #d4c5b5;
    border: 1px solid rgba(212, 197, 181, 0.1);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    outline: none;
    transition: border-color 0.25s ease;
}

.store-sort select:focus {
    border-color: rgba(201, 122, 94, 0.3);
}

.store-sort select option {
    background: #1a1410;
    color: #d4c5b5;
}

/* ===== PRODUCTS GRID ===== */
.store-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #1a1410;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 197, 181, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 122, 94, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    background: #110d0a;
    aspect-ratio: 1/1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: #c97a5e;
    color: #0d0a08;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-badge.sold-out {
    background: #4a3a32;
    color: #8a7a6a;
}

.product-info {
    padding: 1.25rem;
}

.product-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f0e6dc;
    margin-bottom: 0.25rem;
}

.product-category {
    font-size: 0.75rem;
    color: #8a7a6a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #c97a5e;
    margin-bottom: 0.75rem;
}

.product-actions .btn {
    width: 100%;
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
}

.product-actions .btn-secondary {
    background: transparent;
    color: #d4c5b5;
    border-color: #d4c5b5;
}

.product-actions .btn-secondary:hover {
    background: #d4c5b5;
    color: #0d0a08;
}

/* ===== NO PRODUCTS ===== */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 0;
    color: #8a7a6a;
}

.no-products i {
    font-size: 3rem;
    color: #4a3a32;
    margin-bottom: 1rem;
    display: block;
}

.no-products p {
    font-size: 1.1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .store-products {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.4rem;
    }

    .store-desc {
        font-size: 1rem;
    }

    .store-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .store-filter {
        justify-content: center;
    }

    .store-sort select {
        width: 100%;
    }

    .store-products {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1rem;
    }

    .product-info {
        padding: 0.75rem;
    }

    .product-info h3 {
        font-size: 0.85rem;
    }

    .product-price {
        font-size: 1rem;
    }

    .product-actions .btn {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .store-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .filter-btn {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }

    .product-info h3 {
        font-size: 0.75rem;
    }

    .product-price {
        font-size: 0.9rem;
    }
}