.floralink {
    position: fixed;
    z-index: 9999;
    display: flex;
    gap: 10px;
    padding: 8px;
    pointer-events: none;
}

.floralink__wrap {
    display: flex;
    gap: 10px;
    pointer-events: auto;
}

.floralink--bottom-right,
.floralink--bottom-left {
    bottom: 16px;
}

.floralink--top-right,
.floralink--top-left {
    top: 16px;
}

.floralink--bottom-right,
.floralink--top-right {
    right: 16px;
}

.floralink--bottom-left,
.floralink--top-left {
    left: 16px;
}

.floralink--bottom-right .floralink__wrap,
.floralink--bottom-left .floralink__wrap {
    flex-direction: column-reverse;
    align-items: center;
}

.floralink--top-right .floralink__wrap,
.floralink--top-left .floralink__wrap {
    flex-direction: column;
    align-items: center;
}

.floralink__item,
.floralink__main {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

.floralink__item {
    opacity: 0;
    transform: scale(0.6);
    pointer-events: none;
}

.floralink.is-open .floralink__item,
.floralink:hover .floralink__item,
.floralink:focus-within .floralink__item {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.floralink__main {
    animation: floralink-heartbeat 3.6s ease-in-out infinite;
}

.floralink__item i,
.floralink__main i {
    font-size: 24px;
    line-height: 1;
}

.floralink__svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.floralink__svg svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.floralink__main:hover,
.floralink__item:hover {
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.floralink__label {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

@keyframes floralink-heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
}

@media (max-width: 576px) {
    .floralink__item,
    .floralink__main {
        width: 48px;
        height: 48px;
    }

    .floralink__item i,
    .floralink__main i {
        font-size: 18px;
    }
}

/* ========================================================================== */
/* Product Share Buttons */
/* ========================================================================== */

.floralink-product-share {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.floralink-product-share__title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #333;
}

.floralink-product-share__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.floralink-product-share__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.floralink-product-share__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: #fff;
    text-decoration: none;
}

.floralink-product-share__btn:active {
    transform: translateY(0);
}

.floralink-product-share__btn i {
    font-size: 18px;
}

.floralink-product-share__svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.floralink-product-share__svg svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.floralink-product-share__label {
    font-size: 14px;
}

/* Bot\u00f3n nativo de compartir */
.floralink-product-share__btn--native {
    background-color: #6c757d !important;
}

.floralink-product-share__btn--native.is-visible {
    display: inline-flex !important;
}
/* Botones solo para móvil (Instagram y compartir nativo) */
.floralink-product-share__btn--mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .floralink-product-share__btn--mobile-only {
        display: inline-flex !important;
    }
}
/* Responsive */
@media (max-width: 576px) {
    .floralink-product-share__buttons {
        flex-direction: column;
    }

    .floralink-product-share__btn {
        width: 100%;
        justify-content: center;
    }
}

