/* Ilse Available Art Gallery - Frontend Styles */

.ilse-art-gallery-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Navigation Tabs */
.ilse-art-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.ilse-art-tab-btn {
    background-color: #4A4A4A;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ilse-art-tab-btn:hover {
    background-color: #5A5A5A;
    transform: translateY(-2px);
}

.ilse-art-tab-btn.active {
    background-color: #3A3A3A;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Gallery Container */
.ilse-art-gallery-container {
    background-color: #C9C8B5;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.ilse-art-gallery-grid {
    position: relative;
    width: 100%;
    column-count: 3;
    column-gap: 30px;
    column-fill: balance;
}

@media (max-width: 1200px) {
    .ilse-art-gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .ilse-art-gallery-grid {
        column-count: 1;
    }
}

/* Artwork Item */
.ilse-art-item {
    position: relative;
    width: 100%;
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 30px;
    background-color: transparent;
    display: inline-block;
}

.ilse-art-frame {
    background-color: #2A1F0F;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 100%;
}

.ilse-art-item:hover .ilse-art-frame {
    transform: scale(1.05);
}

.ilse-art-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px 2px 0 0;
    transition: transform 0.3s ease;
    object-fit: contain;
    cursor: pointer;
}

/* SOLD Banner */
.ilse-art-sold-banner {
    position: absolute;
    top: -3px;
    left: -53px;
    background-color: #DC143C;
    color: white;
    padding: 8px 50px;
    font-weight: bold;
    font-size: 18px;
    transform: rotate(-45deg);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

/* Artwork Info */
.ilse-art-info {
    margin-top: 0;
    text-align: center;
    background-color: #4A4A4A;
    padding: 15px 10px;
    border-top: 1px solid #6A6A6A;
    border-bottom: 1px solid #6A6A6A;
    width: 100%;
    box-sizing: border-box;
}

.ilse-art-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ilse-art-dimensions {
    color: white;
    font-size: 14px;
}

/* Lightbox */
.ilse-art-lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.ilse-art-lightbox-overlay.active {
    display: flex;
}

.ilse-art-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background-color: #2A2A2A;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.ilse-art-lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
    z-index: 10000;
}

.ilse-art-lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.ilse-art-lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    height: auto;
    border-radius: 4px;
    margin-bottom: 20px;
}

.ilse-art-lightbox-title {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.ilse-art-lightbox-dimensions {
    color: #CCCCCC;
    font-size: 18px;
}
