/**
 * Will Raglan - Showcase (Category) Page Styles
 */

/* Hero Video Section */
.showcase-hero-a7x {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-video-a7x {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-hero-overlay-a7x {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.showcase-hero-content-a7x {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
}

.showcase-hero-title-a7x {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.showcase-hero-subtitle-a7x {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.showcase-video-btn-a7x {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: rgba(255,255,255,0.2);
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.showcase-video-btn-a7x:hover {
    background-color: rgba(255,255,255,0.3);
}

/* Filter Bar */
.filter-bar-a7x {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.filter-bar-inner-a7x {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-left-a7x {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.filter-btn-a7x {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--color-background);
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color var(--transition-fast);
}

.filter-btn-a7x:hover {
    background-color: var(--color-border);
}

.sort-select-a7x {
    padding: 0.5rem 2rem 0.5rem 1rem;
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
    font-size: 0.875rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
}

.filter-results-a7x {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Filter Drawer */
.filter-drawer-a7x {
    position: fixed;
    top: 0;
    left: 0;
    width: 380px;
    max-width: 90vw;
    height: 100%;
    background-color: var(--color-white);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
    overflow-y: auto;
}

.filter-drawer-a7x.active {
    transform: translateX(0);
}

.filter-drawer-header-a7x {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.filter-drawer-title-a7x {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-drawer-close-a7x {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text);
}

.filter-drawer-clear-a7x {
    font-size: 0.875rem;
    color: var(--color-secondary);
    background: none;
    border: none;
    cursor: pointer;
}

.filter-drawer-clear-a7x:hover {
    text-decoration: underline;
}

.filter-section-a7x {
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.filter-section-title-a7x {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* Style Filter Cards */
.filter-style-grid-a7x {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.filter-style-card-a7x {
    text-align: center;
    cursor: pointer;
}

.filter-style-card-a7x input {
    display: none;
}

.filter-style-img-a7x {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid transparent;
    margin-bottom: 0.5rem;
    transition: border-color var(--transition-fast);
}

.filter-style-card-a7x input:checked + .filter-style-img-a7x {
    border-color: var(--color-secondary);
}

.filter-style-img-a7x img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.filter-style-name-a7x {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Size Filter */
.filter-size-grid-a7x {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-size-btn-a7x {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-size-btn-a7x:hover,
.filter-size-btn-a7x.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* Price Range */
.filter-price-slider-a7x {
    padding: 1rem 0;
}

.filter-price-inputs-a7x {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.filter-price-inputs-a7x input {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid var(--color-border);
    text-align: center;
}

.filter-drawer-footer-a7x {
    padding: 1.5rem;
    position: sticky;
    bottom: 0;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
}

.filter-apply-btn-a7x {
    width: 100%;
    padding: 1rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.filter-apply-btn-a7x:hover {
    background-color: var(--color-secondary);
}

/* Product List - Staggered Layout */
.showcase-products-a7x {
    padding: 3rem 0;
}

.product-list-a7x {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.product-row-a7x {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.product-row-a7x:nth-child(even) {
    grid-template-columns: 1fr 2fr;
}

.product-row-a7x:nth-child(even) .product-row-image-a7x {
    order: 2;
}

.product-row-a7x:nth-child(even) .product-row-info-a7x {
    order: 1;
    text-align: right;
}

.product-row-a7x:nth-child(even) .product-row-info-a7x .btn-a7x {
    margin-left: auto;
}

.product-row-image-a7x {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: var(--color-background);
}

.product-row-image-a7x img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-row-overlay-a7x {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.product-row-a7x:hover .product-row-overlay-a7x {
    opacity: 1;
}

.product-quick-btn-a7x {
    padding: 0.875rem 2rem;
    background-color: var(--color-white);
    color: var(--color-primary);
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.product-quick-btn-a7x:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.product-row-info-a7x {
    padding: 2rem;
}

.product-row-name-a7x {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.product-row-price-a7x {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.product-row-desc-a7x {
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Pagination */
.pagination-a7x {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 3rem 0;
}

.pagination-btn-a7x {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.pagination-btn-a7x:hover,
.pagination-btn-a7x.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.pagination-btn-a7x:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-row-a7x,
    .product-row-a7x:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-row-a7x:nth-child(even) .product-row-image-a7x,
    .product-row-a7x:nth-child(even) .product-row-info-a7x {
        order: unset;
    }
    
    .product-row-a7x:nth-child(even) .product-row-info-a7x {
        text-align: left;
    }
    
    .product-row-a7x:nth-child(even) .product-row-info-a7x .btn-a7x {
        margin-left: 0;
    }
    
    .showcase-hero-title-a7x {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .filter-bar-inner-a7x {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .filter-style-grid-a7x {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-hero-title-a7x {
        font-size: 2rem;
    }
}
