.cc-carousel-wrapper-885bf77a {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f9f9f9;
}

.cc-carousel-track-885bf77a {
    display: flex;
    transition: transform 0.4s ease-in-out;
    width: 100%;
}

.cc-slide-885bf77a {
    flex: 0 0 100%;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.cc-slide-grid-885bf77a {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 100%;
    min-height: 400px;
}

.cc-slide-grid-half-885bf77a {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    height: 100%;
    min-height: 400px;
}

.cc-item-885bf77a {
    position: relative;
    overflow: hidden;
    display: flex;
    cursor: pointer;
    border-radius: 8px;
    background: #eee;
}

.cc-item-single-885bf77a {
    height: 100%;
    min-height: 400px;
    width: 100%;
}

.cc-item-885bf77a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.cc-item-885bf77a:hover img {
    transform: scale(1.05);
}

.cc-caption-885bf77a {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}

/* Navigation Buttons */
.cc-nav-885bf77a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cc-nav-885bf77a:hover {
    background: rgba(0,0,0,0.8);
}
.cc-prev-885bf77a { left: 10px; }
.cc-next-885bf77a { right: 10px; }

/* Lightbox Styles */
.cc-lightbox-885bf77a {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}
.cc-lightbox-885bf77a.active {
    opacity: 1;
    visibility: visible;
}
.cc-lightbox-885bf77a img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    border-radius: 4px;
}
.cc-lightbox-close-885bf77a {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}