/* ==============================
   PAGE HEADER
============================== */
.page-header {
    padding: 150px 24px 80px;
    background-color: var(--surface-color);
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* ==============================
   COLLECTION SPECIFIC
============================== */
.full-collection {
    background-color: var(--bg-color);
}

.filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}

.filter-btn {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 30px;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-slow);
    border: 1px solid rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.product-img-wrapper {
    height: 250px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-slow);
}

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

.product-name {
    font-size: 1.2rem;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.product-price {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
}
