/* ============================================
   BOUTIQUE PAGE - Collection Styles
   ============================================ */

/* Page Header */
.page-header {
    padding: 10rem 4rem 4rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--black) 0%, var(--black-light) 100%);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: var(--grey);
    transition: color var(--transition-normal);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.page-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 0.9rem;
    color: var(--grey);
    letter-spacing: 0.05em;
    line-height: 1.8;
}

/* Collection Section */
.collection-section {
    padding: 4rem;
}

.collection-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Collection Filters */
.collection-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey);
    background: transparent;
    border: 1px solid rgba(201, 169, 98, 0.2);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(201, 169, 98, 0.05);
}

/* Collection Grid - 3 products per row */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Product Card - Enhanced for collection */
.collection-grid .product-card {
    display: flex;
    flex-direction: column;
}

.collection-grid .product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.collection-grid .product-image {
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
}

.collection-grid .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.collection-grid .product-info {
    padding: 1.25rem 0;
    text-align: center;
    flex: 1;
}

.collection-grid .product-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.collection-grid .product-description {
    font-size: 0.75rem;
    color: var(--grey);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.collection-grid .product-price {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--gold);
}

/* Product Actions Bottom */
.product-actions-bottom {
    display: flex;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.product-actions-bottom .btn {
    flex: 1;
    padding: 0.75rem;
    font-size: 0.65rem;
    text-align: center;
}

/* Sur-Mesure CTA Section */
.surmesure-cta {
    padding: 6rem 4rem;
    background: linear-gradient(to bottom, var(--black-light) 0%, var(--black) 100%);
    text-align: center;
    border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-description {
    font-size: 0.95rem;
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.cta-feature svg {
    color: var(--gold);
}

.cta-feature span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey);
}

/* Responsive */
@media (max-width: 1200px) {
    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .collection-filters {
        gap: 0.75rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 1024px) {
    .page-header {
        padding: 8rem 2rem 3rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .collection-section {
        padding: 3rem 2rem;
    }

    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .surmesure-cta {
        padding: 4rem 2rem;
    }

    .cta-features {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 7rem 1.5rem 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .collection-section {
        padding: 2rem 1.5rem;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .collection-grid .product-name {
        font-size: 0.95rem;
    }

    .collection-grid .product-description {
        font-size: 0.7rem;
    }

    .surmesure-cta {
        padding: 3rem 1.5rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta-feature {
        flex-direction: row;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .collection-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .product-actions-bottom {
        flex-direction: column;
    }

    .product-actions-bottom .btn {
        width: 100%;
    }
}
