/* Before & After Interactive Slider Styles */
.bag-gallery-wrapper-369544ad {
    width: 100%;
    box-sizing: border-box;
}

.bag-grid-369544ad {
    display: grid;
    gap: 24px;
    margin-bottom: 30px;
    box-sizing: border-box;
}

/* Responsive Grid setup */
.bag-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.bag-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bag-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bag-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

@media (max-width: 1024px) {
    .bag-grid-369544ad {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 640px) {
    .bag-grid-369544ad {
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }
}

/* Glassmorphism Card Design */
.bag-card-369544ad {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bag-card-369544ad:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.12);
}

/* Slider Container */
.bag-slider-container-369544ad {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    cursor: ew-resize;
}

.bag-slider-container-369544ad img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Overlay/Before Wrapper */
.bag-img-before-369544ad {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
    z-index: 2;
}

.bag-img-before-inner-369544ad {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.bag-slider-container-369544ad .bag-img-before-inner-369544ad img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
}

/* Badges/Labels */
.bag-label-369544ad {
    position: absolute;
    bottom: 12px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    z-index: 3;
    pointer-events: none;
}

.bag-label-before-369544ad { left: 12px; }
.bag-label-after-369544ad { right: 12px; }

/* Handle/Divider */
.bag-handle-369544ad {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #ffffff;
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bag-handle-line-369544ad {
    flex-grow: 1;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
}

.bag-handle-button-369544ad {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    pointer-events: none;
}

.bag-handle-button-369544ad svg {
    width: 18px;
    height: 18px;
}

/* Card Content Details */
.bag-card-content-369544ad {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bag-card-title-369544ad {
    margin: 0 0 8px 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
}

.bag-card-desc-369544ad {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Load More Pagination Button */
.bag-pagination-container-369544ad {
    text-align: center;
    margin-top: 24px;
}

.bag-load-more-btn-369544ad {
    background: #111111;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
    outline: none;
}

.bag-load-more-btn-369544ad:hover {
    background: #333333;
}

.bag-load-more-btn-369544ad:active {
    transform: scale(0.98);
}

.bag-load-more-btn-369544ad[disabled] {
    background: #cccccc;
    cursor: not-allowed;
    pointer-events: none;
}
