.mayler-360-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* ADAPTACI&Oacute;N PARA SPINZAM: Relaci&oacute;n de aspecto 1:1 (Cuadrado 640x640) */
    overflow: hidden;
    background-color: #fcfcfc;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.mayler-360-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.mayler-360-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mayler-360-placeholder:hover .mayler-360-img {
    transform: scale(1.03);
}

.mayler-360-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s ease;
}

.mayler-360-placeholder:hover .mayler-360-overlay {
    background: rgba(0, 0, 0, 0.03);
}

.mayler-360-trigger {
    background: #111111;
    color: #ffffff;
    border: none;
    padding: 12px 22px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
}

.mayler-360-placeholder:hover .mayler-360-trigger {
    transform: scale(1.05);
    background: #222222;
}

.mayler-360-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mayler-360-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.mayler-360-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background-color: transparent;
}
