:root {
    --gold: #C9943A;
    --gold-light: #E5B567;
    --dark: #121212;
    --darker: #0A0A0A;
    --text-muted: #888;
    --white: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.page-header {
    padding: 120px 5% 60px;
    text-align: center;
    background: linear-gradient(to bottom, var(--darker), var(--dark));
}

.section-tag {
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 2rem;
}

.section-sub {
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Shop Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.product-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(201, 148, 58, 0.3);
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #2a2a2a;
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--gold-light);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.product-desc {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(201, 148, 58, 0.15);
    color: var(--gold-light);
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.buy-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.buy-btn:hover {
    background: #b08132;
}

.loading-state,
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
}