.gd-img-09b29c5d-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gd-img-09b29c5d-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    max-width: 100%;
}

.gd-img-09b29c5d-img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.gd-img-09b29c5d-wrapper:hover .gd-img-09b29c5d-img {
    transform: scale(1.03);
}

.gd-img-09b29c5d-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    text-align: center;
    transition: opacity 0.3s ease;
}

/* Floating Diamonds Effect */
.gd-diamond-09b29c5d {
    position: absolute;
    background: radial-gradient(circle, #fff3b0 0%, #d4af37 100%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.9);
    transform: rotate(45deg) scale(0);
    pointer-events: none;
    animation: gd-diamond-burst-09b29c5d 1.5s ease-out forwards;
}

@keyframes gd-diamond-burst-09b29c5d {
    0% {
        transform: rotate(45deg) scale(0);
        opacity: 0;
    }
    50% {
        transform: rotate(45deg) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: rotate(225deg) scale(0);
        opacity: 0;
    }
}
