
.wccc-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* Category tabs */
.wccc-category-tabs {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
    display: flex;
    gap: 40px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
}

.wccc-category-tab a {
    text-decoration: none;
    color: #000;
    position: relative;
}

.wccc-category-tab.is-active a {
    font-weight: 600;
}

.wccc-tab-underline {
    display: block;
    height: 1px;
    background: #000;
    margin-top: 4px;
}

/* Collection header (designer + collection name bar) */
.wccc-collection {
    margin-bottom: 60px;
}

.wccc-collection-header {
    display: flex;
    width: 100%;
    margin: 0 0 30px;
}

.wccc-header-cell {
    flex: 1;
    border: 1px solid #000;
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #fff;
}

/* Remove double border between cells */
.wccc-header-cell + .wccc-header-cell {
    border-left: 0;
}

.wccc-header-designer {
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: none;
}

.wccc-header-designer-name {
    white-space: nowrap;
}

.wccc-header-collection {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.wccc-header-collection-name {
    white-space: nowrap;
}

/* Optional hero image per collection */
.wccc-collection-hero {
    text-align: center;
    margin-bottom: 40px;
}

.wccc-collection-hero img {
    max-width: 100%;
    height: auto;
}

/* Products grid */
.wccc-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
}

@media (max-width: 1024px) {
    .wccc-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .wccc-products-grid {
        grid-template-columns: 1fr;
    }
}

/* Product cards */
.wccc-product-card {
    text-align: left;
}

.wccc-product-image {
    display: block;
    background: #f5f5f5;
    padding: 40px 20px;
}

.wccc-product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.wccc-product-placeholder {
    display: block;
    padding-top: 70%;
    background: #eee;
}

.wccc-product-meta {
    margin-top: 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.wccc-product-title {
    margin: 0 0 6px;
    font-size: 12px;
}

.wccc-product-title a {
    color: #000;
    text-decoration: none;
}

.wccc-product-designer {
    margin: 0 0 6px;
}

.wccc-product-price {
    margin: 0;
}

.wccc-no-collections {
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
    margin-top: 20px;
}
