.acc-19725e08-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.acc-19725e08-swiper {
    width: 100%;
    height: 500px; /* Overridden by settings */
}

.acc-19725e08-swiper .swiper-slide {
    width: 60%; /* Overridden by settings */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.acc-slide-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    border-radius: 10px;
}

.acc-slide-link-wrapper {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.acc-slide-clickable {
    cursor: pointer;
}

.acc-slide-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    z-index: 1;
    transition: background 0.3s ease;
}

.acc-lightbox-icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    pointer-events: none;
}

.acc-slide-inner:hover .acc-lightbox-icon-wrapper {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.acc-lightbox-icon {
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acc-lightbox-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.acc-slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 80%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
    pointer-events: auto; /* Let inner buttons be clickable */
}

.swiper-slide-active .acc-slide-content {
    opacity: 1;
    transform: translateY(0);
}

.acc-title {
    margin: 0 0 10px 0;
    font-size: 32px;
    color: #fff;
}

.acc-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #eee;
}

.acc-desc {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ddd;
}

.acc-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.acc-btn:hover {
    background: #f0f0f0;
}

.acc-gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20%;
    z-index: 5;
    pointer-events: none;
}

.acc-gradient.acc-left {
    left: 0;
}

.acc-gradient.acc-right {
    right: 0;
}

/* Nav arrows style */
.acc-19725e08-swiper .swiper-button-prev,
.acc-19725e08-swiper .swiper-button-next {
    z-index: 10;
    pointer-events: auto;
    background-color: rgba(255,255,255,0.8);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.acc-19725e08-swiper .swiper-button-prev:after,
.acc-19725e08-swiper .swiper-button-next:after {
    font-size: 20px;
}

.acc-19725e08-swiper .swiper-button-prev:hover,
.acc-19725e08-swiper .swiper-button-next:hover {
    background-color: #fff;
    transform: scale(1.1);
}

/* CUSTOM LIGHTBOX STYLES */
#acc-lightbox-19725e08 {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.9);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#acc-lightbox-19725e08.acc-lb-active {
    opacity: 1;
    visibility: visible;
}

.acc-lb-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.acc-lb-img-container {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acc-lb-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.acc-lb-img.acc-lb-zoomed {
    transform: scale(1.5);
    cursor: zoom-out;
}

.acc-lb-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 15px;
    padding: 0 10px;
}

.acc-lb-caption {
    color: #fff;
    font-size: 16px;
    margin: 0;
    max-width: 70%;
}

.acc-lb-counter {
    color: #ccc;
    font-size: 14px;
}

.acc-lb-btn {
    position: absolute;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s;
    font-size: 20px;
}

.acc-lb-btn:hover {
    background: rgba(255,255,255,0.2);
}

.acc-lb-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.acc-lb-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.acc-lb-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.acc-lb-close {
    top: 20px;
    right: 20px;
}
