.floating-buttons {
    position: fixed;
    bottom: 125px;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    padding: 10px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(200 95 0 / 52%), rgba(139, 68, 0, 0.8));
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.floating-buttons.left {
    left: 20px;
    display: none;
}

.floating-buttons.right {
    right: 20px;
    display: flex;
}

.floating-button img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.floating-button img:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
}

.large-floating-button {
    position: fixed;
    bottom: 330px;
    left: 20px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Floating trigger (burger button) */
.floating-trigger {
    position: fixed;
    bottom: 70px;
    left: 20px;
    z-index: 1100;
    background: rgba(200, 95, 0, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.floating-trigger:hover {
    background: rgba(139, 68, 0, 0.9);
}

/* Floating image */
.floating-image {
    position: fixed;
    bottom: 130px;
    left: 20px;
    z-index: 1200;
    display: block;
}

.floating-image img {
    width: 150px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

/* Floating close button */
.floating-close {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 14px;
    color: white;
    cursor: pointer;
    background-color: rgba(255, 0, 0, 0.7);
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

/* Responsiveness */
@media (max-width: 768px) {
    .floating-trigger {
        color: white !important;
    }
}
