.gallery-showcase-wrapper_3cd6a9f2 {
    width: 100%;
    margin: 0 auto;
    font-family: inherit;
}

/* Header */
.gallery-showcase-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.gallery-showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.gallery-showcase-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Filter Bar */
.gallery-filter-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    color: #e65100;
    border-bottom-color: #e65100;
}

/* Grid layout with flex/grid fallbacks */
.gallery-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: g_fadeup_3cd6a9f2 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes g_fadeup_3cd6a9f2 {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .gallery-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .gallery-showcase-wrapper_3cd6a9f2 .gallery-showcase-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Header */
    .gallery-showcase-wrapper_3cd6a9f2 .gallery-showcase-header {
        margin-bottom: 1.5rem;
    }

    .gallery-showcase-wrapper_3cd6a9f2 .gallery-showcase-title {
        font-size: 1.6rem !important;
    }

    .gallery-showcase-wrapper_3cd6a9f2 .gallery-showcase-subtitle {
        font-size: 0.95rem !important;
    }

    /* Filter bar: horizontal scroll pill chips on mobile */
    .gallery-showcase-wrapper_3cd6a9f2 .gallery-filter-bar {
        justify-content: flex-start;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        overflow-x: auto;
        flex-wrap: nowrap !important;
        padding: 0.5rem 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -webkit-mask-image: linear-gradient(to right, #000 85%, transparent 100%);
        mask-image: linear-gradient(to right, #000 85%, transparent 100%);
    }

    .gallery-showcase-wrapper_3cd6a9f2 .gallery-filter-bar::-webkit-scrollbar {
        display: none;
    }

    .gallery-showcase-wrapper_3cd6a9f2 .gallery-filter-btn {
        font-size: 0.8rem;
        padding: 0.45rem 1rem;
        white-space: nowrap;
        flex-shrink: 0;
        border: 1.5px solid #ddd !important;
        border-radius: 50px !important;
        color: #555;
        background: #fff !important;
        transition: all 0.25s ease;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .gallery-showcase-wrapper_3cd6a9f2 .gallery-filter-btn:hover,
    .gallery-showcase-wrapper_3cd6a9f2 .gallery-filter-btn.active {
        background: #e65100 !important;
        color: #fff !important;
        border-color: #e65100 !important;
    }

    /* Gallery items */
    .gallery-showcase-wrapper_3cd6a9f2 .gallery-showcase-item {
        border-radius: 8px;
    }

    /* Disable hover lift & image zoom on touch devices */
    .gallery-showcase-wrapper_3cd6a9f2 .gallery-showcase-item:hover {
        transform: none;
    }

    .gallery-showcase-wrapper_3cd6a9f2 .gallery-showcase-item:hover .gallery-image {
        transform: none;
    }

    /* Overlay – always visible on mobile (no hover on touch) */
    .gallery-showcase-wrapper_3cd6a9f2 .gallery-showcase-overlay {
        opacity: 1 !important;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 45%, transparent 100%) !important;
        padding: 1rem;
        pointer-events: auto;
    }

    .gallery-showcase-wrapper_3cd6a9f2 .gallery-item-info {
        transform: translateY(0) !important;
    }

    .gallery-showcase-wrapper_3cd6a9f2 .gallery-item-title {
        font-size: 1.05rem;
    }

    .gallery-showcase-wrapper_3cd6a9f2 .gallery-item-cat {
        font-size: 0.75rem;
    }

    /* Badge */
    .gallery-showcase-wrapper_3cd6a9f2 .gallery-item-badge {
        top: 10px;
        left: 10px;
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }

    /* Button */
    .gallery-showcase-wrapper_3cd6a9f2 .gallery-showcase-btn-wrap {
        margin-top: 2rem;
    }

    .gallery-showcase-wrapper_3cd6a9f2 .gallery-showcase-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
    }

    /* Lightbox */
    .showcase-lightbox-content {
        max-width: 95% !important;
        max-height: 90%;
        padding: 0 0.5rem;
    }

    .showcase-lightbox-content img {
        max-height: 75vh;
        border-radius: 4px;
    }

    .showcase-lightbox-close {
        top: -35px;
        right: 5px;
        font-size: 1.75rem;
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
    }
}

/* Extra small devices (below 480px) */
@media (max-width: 480px) {
    .gallery-showcase-wrapper_3cd6a9f2 .gallery-showcase-title {
        font-size: 1.35rem !important;
    }

    .gallery-showcase-wrapper_3cd6a9f2 .gallery-showcase-subtitle {
        font-size: 0.85rem !important;
    }

    .gallery-showcase-wrapper_3cd6a9f2 .gallery-showcase-grid {
        gap: 12px !important;
    }

    .gallery-showcase-wrapper_3cd6a9f2 .gallery-showcase-item {
        aspect-ratio: 16 / 10;
    }

    .gallery-showcase-wrapper_3cd6a9f2 .gallery-filter-btn {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }

    .gallery-showcase-wrapper_3cd6a9f2 .gallery-showcase-btn {
        font-size: 0.85rem;
        padding: 0.7rem 1.25rem;
    }

    .showcase-lightbox-content {
        max-width: 98% !important;
    }
}

/* Gallery Item */
.gallery-showcase-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: #f5f5f5;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-showcase-item:hover {
    transform: translateY(-8px);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: block;
}

.gallery-showcase-item:hover .gallery-image {
    transform: scale(1.1);
}

/* Overlay Styling */
.gallery-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.4s ease;
}

.gallery-showcase-item:hover .gallery-showcase-overlay {
    opacity: 1;
}

.gallery-item-info {
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    color: #fff;
    width: 100%;
}

.gallery-showcase-item:hover .gallery-item-info {
    transform: translateY(0);
}

.gallery-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: #ffffff;
}

.gallery-item-cat {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Badge style */
.gallery-item-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e65100;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Button */
.gallery-showcase-btn-wrap {
    text-align: center;
    margin-top: 3rem;
}

.gallery-showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #e65100;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 81, 0, 0.2);
}

.gallery-showcase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 81, 0, 0.35);
}

.gallery-showcase-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.gallery-showcase-btn:hover i {
    transform: translateX(5px);
}

/* Custom Lightbox */
.showcase-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-lightbox-overlay.active {
    opacity: 1;
}

.showcase-lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 85%;
}

.showcase-lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    display: block;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.showcase-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}