.flooring-gallery-container-35806b53 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: sans-serif;
}
.fg-filters-35806b53 {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.fg-filter-btn-35806b53 {
    padding: 8px 20px;
    border: 1px solid #013D3F;
    background: #013D3F;
    color: #fff;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}
.fg-filter-btn-35806b53.active, .fg-filter-btn-35806b53:hover {
    background: #10888C;
    color: #fff;
    border-color: #10888C;
}
.fg-grid-35806b53 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.fg-item-35806b53 {
    border: 1px solid #E8F4F4;
    border-radius: 12px;
    overflow: hidden;
    transition: opacity 0.3s ease;
    background: #FAFAF8;
}
.fg-item-35806b53.hidden {
    display: none;
}
.fg-image-wrapper-35806b53 {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #E8F4F4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.fg-image-wrapper-35806b53 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.fg-image-wrapper-35806b53:hover img {
    transform: scale(1.05);
}
.fg-no-image-35806b53 {
    color: #999;
}
.fg-lightbox-35806b53 {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(1,61,63,0.95);
}
.fg-lightbox-35806b53.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.fg-lightbox-content-35806b53 {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    animation: zoom 0.6s;
}
@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}
.fg-lightbox-close-35806b53 {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #E8F4F4;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}
.fg-lightbox-close-35806b53:hover,
.fg-lightbox-close-35806b53:focus {
    color: #10888C;
    text-decoration: none;
    cursor: pointer;
}
@media (max-width: 768px) {
    .fg-grid-35806b53 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}