/* ============ VARIABLES ============ */
:root {
    --floreria-fucsia: #BF0657;
    --floreria-rosa: #E8A2B7;
    --floreria-verde: #61CE70;
    --floreria-blanco: #ffffff;
}

/* ============ CONTENEDOR PRINCIPAL ============ */
.floreria-opciones-extra {
    margin: 16px 0;
    padding: 14px 16px;
    background: #f9f9f9;
    border: 1.5px solid #E8A2B7;
    border-radius: 14px;
    clear: both;
    display: block;
    overflow: visible;
    z-index: 1;
    position: relative;
}

/* ============ TÍTULOS ============ */
.floreria-titulo-principal {
    font-size: 18px;
    font-weight: bold;
    color: #BF0657;
    margin: 0 0 10px;
    text-align: center;
}

.floreria-titulo-secundario {
    font-size: 16px;
    font-weight: bold;
    color: #BF0657;
    margin: 10px 0 8px;
}

/* ============ SELECTOR DE FOTO ============ */
.floreria-selector-foto {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.floreria-opcion-foto {
    padding: 10px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 120px;
}

/* ============ PERSONALIZACIÓN ============ */
.floreria-personalizacion {
    display: none;
    margin: 10px auto 0;
    padding: 12px;
    background: #fce4ec;
    border-radius: 12px;
    max-width: 520px;
    text-align: center;
}

.floreria-boton-foto {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 8px 16px !important;
    margin: 6px 0;
    z-index: 10;
    position: relative;
    font-size: 14px;
    line-height: 1.2;
}

#floreria-foto-preview img {
    max-width: 112px;
    border-radius: 10px;
    margin-top: 8px;
}

/* ============ TEXTO PERSONALIZADO ============ */
.floreria-texto-personalizado {
    margin: 12px auto 0;
    padding: 12px 14px;
    border: 1.5px solid #E8A2B7;
    border-radius: 12px;
    background: #fff;
    text-align: center;
    max-width: 560px;
}

.floreria-texto-personalizado .floreria-texto-ayuda {
    margin: -2px auto 9px;
    max-width: 430px;
    color: #606062;
    font-size: 13px;
    line-height: 1.35;
}

#floreria-texto-personalizado {
    width: 100%;
    max-width: 460px;
    min-height: 82px;
    padding: 9px 12px;
    border: 1.5px solid #E8A2B7;
    border-radius: 10px;
    background: #fff;
    color: #333;
    font-size: 14px;
    line-height: 1.35;
    resize: vertical;
    box-sizing: border-box;
}

#floreria-texto-personalizado:focus {
    outline: none;
    border-color: #BF0657;
    box-shadow: 0 0 0 3px rgba(191, 6, 87, 0.12);
}

.floreria-texto-contador {
    display: block;
    margin-top: 5px;
    color: #606062;
    font-size: 11px;
}

/* ============ NOTA ============ */
.opcion-nota {
    margin: 15px 0;
    clear: both;
}

textarea#floreria-nota {
    width: 100%;
    min-height: 80px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    z-index: 1;
    position: relative;
}

/* ============ VENTANAS EMERGENTES ============ */
.floreria-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
}

.floreria-modal-contenido {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    text-align: center;
    position: relative;
    z-index: 100000;
}

/* ============ CARRUSEL DE REGALOS ============ */
.floreria-carrusel-contenedor {
    position: relative;
    margin: 15px 0;
    padding: 0 30px;
}

.floreria-regalos-carrito {
    display: flex;
    gap: 10px;
    overflow-x: hidden;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.floreria-flecha {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #BF0657;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 20px;
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floreria-flecha-izquierda {
    left: 0;
}

.floreria-flecha-derecha {
    right: 0;
}

.floreria-regalo-item {
    min-width: 150px;
    flex: 0 0 150px;
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #ffffff;
}

/* ============ BOTONES DE VENTANA ============ */
.floreria-boton-accion {
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 10px;
    font-weight: bold;
    margin: 5px;
    display: inline-block;
}

/* ============ CONTADOR DEL CARRITO DEL HEADER ============ */
.floreria-cart-badge-anchor {
    position: relative !important;
    overflow: visible !important;
}

.floreria-cart-badge {
    position: absolute !important;
    top: -9px !important;
    right: -10px !important;
    min-width: 18px !important;
    height: 18px !important;
    padding: 0 5px !important;
    border-radius: 999px !important;
    background: #BF0657 !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 18px !important;
    text-align: center !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18) !important;
    z-index: 20 !important;
    pointer-events: none !important;
}

.header-cart-button.floreria-cart-badge-anchor,
.header-cart-wrap .floreria-cart-badge-anchor {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.header-cart-button .floreria-cart-badge {
    transform: translate(35%, -20%) !important;
}

.floreria-mobile-cart-button {
    display: none;
}

@media (max-width: 1024px) {
    .site-header .mobile-site-branding,
    #masthead .mobile-site-branding {
        width: auto !important;
        max-width: calc(100% - 120px) !important;
        min-width: 0 !important;
    }

    .site-header .mobile-site-branding .brand,
    #masthead .mobile-site-branding .brand {
        align-items: center !important;
        gap: 0 !important;
        min-width: 0 !important;
    }

    .site-header .mobile-site-branding .site-title,
    #masthead .mobile-site-branding .site-title {
        display: none !important;
    }

    .site-header .mobile-site-branding img.custom-logo,
    #masthead .mobile-site-branding img.custom-logo {
        width: clamp(145px, 43vw, 190px) !important;
        max-width: 190px !important;
        height: auto !important;
        max-height: 54px !important;
        object-fit: contain !important;
    }

    .site-header #mobile-toggle,
    #masthead #mobile-toggle {
        margin-left: 10px !important;
    }

    .floreria-mobile-cart-button {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important;
        height: 40px !important;
        margin-left: auto !important;
        color: #222222 !important;
        text-decoration: none !important;
        line-height: 1 !important;
        overflow: visible !important;
    }

    .floreria-mobile-cart-button .floreria-cart-badge {
        top: 0 !important;
        right: 0 !important;
        transform: translate(20%, -15%) !important;
    }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .floreria-selector-foto {
        flex-direction: row;
    }
    
    .floreria-opcion-foto {
        min-width: 100px;
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .floreria-modal-contenido {
        padding: 20px;
    }
    
    .floreria-regalo-item {
        min-width: 120px;
        flex: 0 0 120px;
    }
}
