.fdg-container {
    width: 90%;
    max-width: 1100px;
    margin: 50px auto;
}

.fdg-floor {
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0;
}

.fdg-floor img {
    width: 100%;
    display: block;
    transition: .4s;
}

.fdg-floor:hover img {
    transform: scale(1.05);
}

.fdg-floor-title {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    background: rgba(0, 0, 0, .6);
    color: white;
    opacity: 0;
    transition: .3s;
}

.fdg-floor:hover .fdg-floor-title {
    opacity: 1;
}

.fdg-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
/*     background: #fff; */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.fdg-content {
    width: 95%;
    max-width: 1000px;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(15px);
    color: white;
    position: relative;
}

.fdg-close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}

.fdg-gallery {
    position: relative;
    margin-top: 20px;
}

.fdg-image-wrapper {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.fdg-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transition: opacity .5s ease, transform 8s ease;
}

.fdg-slide.kenburns {
    transform: scale(1.1);
}

#fdg-pause {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 8px 14px;
    border: none;
    background: rgba(0, 0, 0, .6);
    color: white;
    border-radius: 6px;
    display: none;
    cursor: pointer;
}

.fdg-image-wrapper:hover #fdg-pause {
    display: block;
}

.fdg-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    cursor: pointer;
    z-index: 10;
}

.fdg-prev {
    left: 15px;
}

.fdg-next {
    right: 15px;
}

#fdg-image-description {
    text-align: center;
    margin-top: 10px;
}

#fdg-thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
}

#fdg-thumbnails img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    margin: 5px;
    cursor: pointer;
    opacity: .6;
    border-radius: 6px;
}

#fdg-thumbnails img.active {
    opacity: 1;
    border: 2px solid #2563eb;
}