/* Boutique Page Styles */

:root {
    --black: #000000;
    --white: #FFFFFF;
    --grey-light: #F5F5F5;
    --grey-medium: #CCCCCC;
    --grey-dark: #666666;
    --grey-darker: #333333;
}

.boutique-section {
    padding: 120px 0 80px;
    background-color: var(--white);
    min-height: 100vh;
}

.boutique-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

    .boutique-header {
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

.boutique-title {
    font-family: 'Gothic A1', sans-serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--black);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.boutique-subtitle {
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--grey-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Category Navigation */
.category-navigation {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    padding: 20px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-navigation::-webkit-scrollbar {
    display: none;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 100px;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item.active .category-icon {
    border-color: var(--black);
}

.category-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--grey-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.category-item:hover .category-icon {
    border-color: var(--black);
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    transition: transform 0.3s ease;
}

.category-item:hover .category-icon img {
    transform: scale(1.05);
}

.category-label {
    font-family: 'Gothic A1', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: var(--black);
    letter-spacing: 0.5px;
    text-align: center;
    text-transform: capitalize;
    line-height: 1.3;
    max-width: 100px;
}

.boutique-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
    width: 100%;
}

.sort-controls-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.sort-controls-header label {
    font-family: 'Gothic A1', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.sort-controls-header select {
    padding: 8px 12px;
    border: 1px solid var(--black);
    background-color: var(--white);
    color: var(--black);
    font-family: 'Gothic A1', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.sort-controls-header select:focus {
    outline: none;
    border-color: var(--black);
}

.sort-controls-mobile {
    display: none;
}

.sort-controls-mobile label {
    font-family: 'Gothic A1', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-right: 10px;
}

.sort-controls-mobile select {
    padding: 8px 12px;
    border: 1px solid var(--black);
    background-color: var(--white);
    color: var(--black);
    font-family: 'Gothic A1', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.sort-controls-mobile select:focus {
    outline: none;
    border-color: var(--black);
}

.filters-toggle {
    display: block;
}

.filter-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: var(--white);
    border: 1px solid var(--black);
    color: var(--black);
    font-family: 'Gothic A1', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.filter-button:hover {
    background-color: var(--black);
    color: var(--white);
}

.filter-button svg {
    width: 20px;
    height: 20px;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.sort-controls label {
    font-family: 'Gothic A1', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sort-controls select {
    padding: 10px 15px;
    border: 1px solid var(--grey-medium);
    background-color: var(--white);
    color: var(--black);
    font-family: 'Gothic A1', sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.sort-controls select:focus {
    outline: none;
    border-color: var(--black);
}

.boutique-content {
    display: block;
    position: relative;
}

/* Filters Sidebar */
.filters-sidebar {
    background-color: var(--white);
    padding: 30px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -100%;
    width: 400px;
    max-width: 90%;
    overflow-y: auto;
    z-index: 1001;
    transition: left 0.3s ease;
    border-right: 1px solid var(--grey-medium);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.filters-sidebar.active {
    left: 0;
}

.filters-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filters-overlay.active {
    display: block;
    opacity: 1;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--black);
}

.filters-header h2 {
    font-family: 'Gothic A1', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 1px;
}

.close-filters {
    display: block;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--black);
    padding: 5px;
}

.close-filters svg {
    width: 20px;
    height: 20px;
}

.filter-group {
    margin-bottom: 40px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group h3 {
    font-family: 'Gothic A1', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.filter-list li {
    margin-bottom: 12px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: 'Gothic A1', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--grey-darker);
    letter-spacing: 0.5px;
}

.filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--black);
}

.price-range {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.price-range input[type="range"] {
    width: 100%;
    height: 1px;
    background: var(--black);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
}

.price-range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: var(--black);
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 1px var(--black);
}

.price-range input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--black);
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 1px var(--black);
}

.price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Gothic A1', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: var(--black);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.size-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-button {
    padding: 10px 18px;
    background-color: var(--white);
    border: 1px solid var(--grey-medium);
    color: var(--black);
    font-family: 'Gothic A1', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 45px;
}

.size-button:hover,
.size-button.active {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.color-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-button {
    width: 40px;
    height: 40px;
    border: 2px solid var(--grey-medium);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.color-button:hover,
.color-button.active {
    border-color: var(--black);
    transform: scale(1.1);
}

.apply-filters,
.reset-filters {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    font-family: 'Gothic A1', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--black);
}

.apply-filters {
    background-color: var(--black);
    color: var(--white);
}

.apply-filters:hover {
    background-color: var(--white);
    color: var(--black);
}

.reset-filters {
    background-color: var(--white);
    color: var(--black);
    margin-top: 10px;
}

.reset-filters:hover {
    background-color: var(--black);
    color: var(--white);
}

/* Products Section */
.products-section {
    width: 100%;
    transition: margin-left 0.3s ease;
}

.products-section .sort-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.products-section .sort-controls label {
    font-family: 'Gothic A1', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.products-section .sort-controls select {
    padding: 8px 12px;
    border: 1px solid var(--black);
    background-color: var(--white);
    color: var(--black);
    font-family: 'Gothic A1', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.products-section .sort-controls select:focus {
    outline: none;
    border-color: var(--black);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 25px;
    margin-bottom: 60px;
}

/* Product Card Styles - using existing styles from styles.css */
.products-grid .product-card {
    background-color: transparent;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.products-grid .product-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.products-grid .product-image {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    background-color: var(--grey-light);
    margin-bottom: 15px;
    overflow: hidden;
}

.products-grid .product-image img {
    filter: none;
    transition: filter 0.3s ease;
}

.products-grid .product-card:hover .product-image img {
    filter: none;
    transform: none;
}

.products-grid .product-info {
    padding: 0;
    text-align: left;
}

.products-grid .product-info h3 {
    font-family: 'Gothic A1', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--black);
    letter-spacing: 0.5px;
    line-height: 1.5;
    margin-bottom: 12px;
    text-transform: none;
}

.products-grid .product-description {
    display: block;
    font-family: 'Gothic A1', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--black);
    letter-spacing: 0.5px;
    line-height: 1.5;
    margin-bottom: 12px;
    text-transform: none;
}

.products-grid .product-description a {
    color: var(--black);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.products-grid .product-description a:hover {
    opacity: 0.7;
}

.products-grid .product-price {
    display: block;
    font-family: 'Gothic A1', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.products-grid .product-colors {
    display: flex;
    gap: 8px;
    margin-top: 0;
    align-items: center;
}

.products-grid .color-swatch {
    width: 20px;
    height: 20px;
    border: 1px solid var(--grey-medium);
    display: inline-block;
    cursor: pointer;
    transition: transform 0.2s ease;
    border-radius: 0;
    flex-shrink: 0;
}

.products-grid .color-swatch:hover {
    transform: scale(1.1);
}

.products-grid .badge.trend {
    background-color: var(--white);
    color: var(--black);
    border: none;
    font-size: 9px;
    letter-spacing: 2px;
    padding: 8px 12px;
}

.products-grid .product-heart {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-grid .product-heart svg {
    width: 18px;
    height: 18px;
    color: var(--black);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 60px;
}

.pagination-button {
    padding: 12px 25px;
    background-color: var(--white);
    border: 1px solid var(--grey-medium);
    color: var(--black);
    font-family: 'Gothic A1', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-button:hover:not(:disabled) {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.pagination-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 10px;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--grey-medium);
    color: var(--black);
    font-family: 'Gothic A1', sans-serif;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.page-number:hover,
.page-number.active {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.pagination-button {
    text-decoration: none;
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .boutique-container {
        padding: 0 40px;
    }

    .filters-sidebar {
        width: 350px;
    }

    .category-navigation {
        gap: 25px;
        margin-bottom: 40px;
    }

    .category-icon {
        width: 90px;
        height: 90px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px 20px;
    }

    .products-grid .product-image {
        aspect-ratio: 1 / 1;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .boutique-section {
        padding: 100px 0 40px;
    }

    .boutique-container {
        padding: 0 15px;
    }

    .boutique-title {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .boutique-subtitle {
        font-size: 12px;
    }

    .category-navigation {
        gap: 20px;
        margin-bottom: 30px;
        padding: 15px 0;
    }

    .category-icon {
        width: 80px;
        height: 80px;
    }

    .category-label {
        font-size: 10px;
        max-width: 80px;
    }

    .boutique-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        gap: 10px;
        width: 100%;
    }

    .filters-toggle {
        display: block;
        flex: 0 0 auto;
    }

    .sort-controls-mobile {
        display: flex;
        align-items: center;
        flex: 1 1 auto;
        justify-content: flex-end;
        gap: 10px;
    }

    .sort-controls-mobile label {
        white-space: nowrap;
    }

    .sort-controls-mobile select {
        min-width: 140px;
    }

    .products-section .sort-controls {
        display: none;
    }

    .filters-sidebar {
        width: 80%;
        max-width: 350px;
    }

    .products-section .sort-controls {
        display: none;
    }

    .sort-controls-header {
        display: none;
    }

    .sort-controls-mobile {
        display: flex;
        align-items: center;
        flex: 1 1 auto;
        justify-content: flex-end;
        gap: 10px;
    }

    .sort-controls-mobile label {
        white-space: nowrap;
    }

    .sort-controls-mobile select {
        min-width: 140px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 10px;
    }

    .products-grid .product-image {
        aspect-ratio: 1 / 1;
        width: 100%;
        height: auto;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .boutique-container {
        padding: 0 10px;
    }

    .boutique-title {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .boutique-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .category-navigation {
        gap: 15px;
        margin-bottom: 20px;
        padding: 10px 0;
    }

    .category-icon {
        width: 70px;
        height: 70px;
    }

    .category-label {
        font-size: 9px;
        max-width: 70px;
    }

    .boutique-controls {
        gap: 8px;
        margin-bottom: 15px;
    }

    .filter-button {
        padding: 10px 15px;
        font-size: 10px;
    }

    .sort-controls-mobile {
        gap: 8px;
    }

    .sort-controls-mobile label {
        font-size: 10px;
    }

    .sort-controls-mobile select {
        min-width: 120px;
        padding: 8px 10px;
        font-size: 10px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 8px;
    }

    .products-grid .product-image {
        aspect-ratio: 1 / 1;
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }

    .products-grid .product-info {
        padding: 0;
    }

    .products-grid .product-info h3 {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .products-grid .product-price {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .products-grid .color-swatch {
        width: 16px;
        height: 16px;
    }
}

