/* =========================
   BASE
========================= */

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}


/* =========================
   HEADER GLOBAL (barra superior)
========================= */

.luvalu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.luvalu-header__left {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Marca */

.luvalu-brand-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.luvalu-brand {
    color: #ea4b07;
    font-weight: 700;
    font-size: 24px;
    text-decoration: none;
    text-shadow: 0 3px 10px rgba(0,0,0,0.30);
}

.luvalu-tagline {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

/* Separador */

.brand-separator {
    color: #aaa;
}

/* Nombre fotógrafo en header */

.luvalu-photographer {
    color: #000;
    font-weight: 600;
    font-size: 30px;
    text-decoration: none;
}

/* Lado derecho */

.luvalu-header__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Botón subir catálogo */

.btn-upload {
    background: #464700;
    color: #ffffff !important;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.btn-upload:hover {
    opacity: 0.85;
}

/* Usuario */

.luvalu-user-menu {
    position: relative;
    cursor: pointer;
}

.user-avatar img {
    border-radius: 50%;
    position: relative;
    z-index: 1000;
}

.user-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 30px;
    background: #fff;
    border: 1px solid #eee;
    min-width: 150px;
    width: 180px;
    padding: 8px 0;
    z-index: 2000;
    border-radius: 16px; /* mismo valor que panel-pedido */
    overflow: hidden;    /* importante para que los links no sobresalgan */
}

.user-dropdown a {
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    color: #000;
}

.luvalu-user-menu:hover .user-dropdown {
    display: block;
}


/* =========================
   PERFIL FOTÓGRAFO
========================= */

.luvalu-profile {
    max-width: 1100px;
    margin: 5px auto 20px auto;
    padding: 0 20px;
}

/* Header interno del perfil */

.luvalu-profile-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    padding: 40px 10%;
}

/* Foto */

.luvalu-profile-image img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

/* Bloque contacto */

.luvalu-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 0;
}

.luvalu-name {
    margin: 0 0 6px 0;
    font-size: 28px;
}

/* Social */

.luvalu-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 0;
}

.luvalu-social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #111;
    padding: 10px 18px;
    border: 1px solid #ddd;
    border-radius: 30px;
    transition: 0.2s ease;
    width: fit-content;
}

.luvalu-social-item:hover {
    background: #f5f5f5;
}

.luvalu-social-item img {
    width: 18px;
    height: 18px;
}

/* Catálogos */

.luvalu-profile h2,
.luvalu-profile .catalogo-item {
    padding-left: 10%;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    /* Header global */

    .luvalu-header {
        padding: 15px 20px;
    }

    .luvalu-brand {
        font-size: 20px;
    }

    .luvalu-photographer {
        font-size: 22px;
    }



    /* Perfil */

    .luvalu-profile-header {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 40px 20px;
    }

    .luvalu-profile-image img {
        width: 180px;
        height: 180px;
    }

    .luvalu-contact {
        width: 100%;
        max-width: 320px;
        align-items: flex-start;
    }

}
/* =========================
   FOOTER LUVALU
========================= */

.luvalu-footer {
    background: #ea4b07;
    margin-top: 50px ;
    height: 22px;
    width: 100%;
    box-shadow: 0 -3px 8px rgba(0,0,0,0.30);
}
.luvalu-edit-form {
    max-width: 500px;
    margin-top: 20px;
}

.luvalu-field {
    margin-bottom: 15px;
}

.luvalu-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.luvalu-field input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
}
.luvalu-edit-btn {
    background: #ea4b07; /* naranja */
    color: #fff;
}

.luvalu-edit-btn:hover {
    background: #e96d00;
}
.luvalu-delete-btn:hover {
    background: #9e0000;
}
.luvalu-delete-btn {
    background: #fe0000; /* rojo */
    color: #fff;
}
.luvalu-profile-image {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.luvalu-profile-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
}
.luvalu-field {
    display: flex;
    align-items: center;
    gap: 10px;
}

.luvalu-field img {
    width: 24px;
    height: 24px;
}

.luvalu-field input {
    flex: 1;
}
.luvalu-profile-header {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.luvalu-header-accent {
    height: 6px;
    width: 100%;
    background: #ea4b07;
}
.luvalu-header-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.luvalu-share-btn {
    background: #ea4b07;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
}

.luvalu-share-btn:hover {
    opacity: 0.85;
}
.luvalu-share {
    display: inline-block;
    margin-left: 10px;
}

.luvalu-share a {
    text-decoration: none;
    font-size: 20px;
    color: var(--color-principal, #ea4b07);
    transition: 0.2s;
}

.luvalu-share a:hover {
    opacity: 0.7;
}
.luvalu-share-icon {
    display: inline-flex;
    align-items: center;
    color: var(--color-principal, #ea4b07);
    text-decoration: none;
    transition: 0.2s ease;
}

.luvalu-share-icon:hover {
    opacity: 0.7;
}
.luvalu-top-line {
    display: block;
    height: 18px;
    width: 100%;
    background-color: #000;
}
.luvalu-catalogo {
    max-width: 1200px;
    width: 100%;
    margin: 40px auto;
    padding: 40px 20px;

}

.catalogo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.catalogo-titulo {
    font-size: 26px;
margin-top: 2rem; /* ajustá según el espacio actual; por ejemplo, si antes eran 5rem */
  margin-bottom: 1rem;

}

.catalogo-grid{
max-width:1100px;
margin:20px auto;
padding:0 10px;

display:grid;
grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
gap:15px;
}

.catalogo-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.form-editar-catalogo {
    width: 95%;
    max-width: 1100px;
    margin: 40px auto;
}
.catalogo-item img {
    width: 100%;
    height: auto ;
    display: block;
}
.seccion-titulo {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    display: block;
}
/* =========================
   GRID NUEVO DISEÑO
========================= */

.catalogo-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.catalogo-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    font-size: 12px;
    border-top: 1px solid #eee;
    z-index: 3;
}

.catalogo-nombre {
    font-weight: 500;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 70%;
}
.btn-editar {
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    cursor: pointer;
    background: #464700;
    color: #fff;
}
.btn-editar:hover {
    opacity: 0.85;
}
.btn-eliminar {
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    cursor: pointer;
    background: #ff0000;
    color: #fff;
}
.btn-eliminar:hover {
    opacity: 0.75;
}
.btn-seleccionar.seleccionado {
    background-color: #464700; /* verde  */
    color: #fff;
}
.btn-seleccionar:hover {
    opacity: 0.85;
}
.btn-seleccionar {
    background: var(--color-principal, #ea4b07);
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    cursor: pointer;
    z-index: 4;
 }


.btn-enviar {
    background: var(--color-principal, #ea4b07);
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 30px;
    cursor: pointer;
}


.oculto {
    display: none;
}

.oculto {
    display: none;
}

/* PANEL PEDIDO DEFINITIVO */

.panel-pedido {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    max-height: 90vh;          /* nunca más alto que la pantalla */
    overflow-y: auto;

    background: #ffffff;
    border: 1px solid #eee;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.06);
    padding: 25px 20px 30px;
    box-sizing: border-box;

    transform: translateY(100%);
    transition: transform 0.35s ease;
    z-index: 9999;
}

.panel-pedido.activo {
    transform: translateY(0);
}
.catalogo-cover img,
.catalogo-item img {
    
    height: auto;
    display: block;
}
/* =========================
   PANEL PEDIDO LUVALU
========================= */

.panel-pedido {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 65%;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #eee;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.06);
    padding: 25px 20px 30px;
    transform: translateY(100%);
    transition: transform 0.35s ease;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.panel-pedido.activo {
    transform: translateY(0);
}

/* Título */
.panel-pedido h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Foto actual */
#nom-foto-sel {
    font-weight: 600;
    color: #111;
}

/* Filas */
.fila-cantidad {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 13px;
}

/* Controles cantidad */
.controles-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-qty {
    width: 25px;
    height: 25px;
    border: 1px solid #ea4b07;
    background: #fff;
    border-radius: 50%;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-qty:hover {
    background: #ea4b07;
    color: #fff;
    border-color: #ea4b07;
}

/* Valores */
.val-qty {
    min-width: 18px;
    text-align: center;
    font-weight: 500;
}

/* Switch digital */
.switch-digital {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.switch-digital input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-check {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #aaa;
    transition: .3s;
    border-radius: 20px;
}

.slider-check:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

.switch-digital input:checked + .slider-check {
    background-color: #ea4b07;
}

.switch-digital input:checked + .slider-check:before {
    transform: translateX(20px);
}

/* Nota */
.nota-pedido {
    text-align: center;
    font-size: 11px;
    color: #777;
    line-height: 1.4;
    margin: 15px 0;
}

/* Resumen */
.resumen-total {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
}

.resumen-total b {
    font-weight: 600;
}

/* Botón WhatsApp */
.wa-final {
    background: #464700;
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
    
    width: 100%;
    margin-top: 10px;
    padding: 6px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;

}

.wa-final:hover {
    opacity: 0.85;
}

/* Botón cerrar */
/* Botón cerrar */
.panel-pedido > button:last-of-type {
    width: 100%;
    background: none;
    border: none;
    margin-top: 10px;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aaa;
    cursor: pointer;
}

/* Desktop */
@media(min-width:768px){
    .panel-pedido {
        width: 200px;
        left: auto;
        right: 30px;
        bottom: 30px;
        border-radius: 16px;
        transform: translateY(120%);
    }

    .panel-pedido.activo {
        transform: translateY(0);
    }
}
.panel-thumb-wrap {
    text-align: center;
    margin-bottom: 12px;
}

#panel-thumb {
    max-width: 100%;
    max-height: 120px;
    border-radius: 8px;
    object-fit: cover;
}
.menu-nuevo-catalogo {
    color: #ffffff !important;
    background:#464700;
}
.menu-nuevo-catalogo:hover {
    color: #ffffff !important;
        background:#464700;
}

.catalogo-header h1{
    margin-bottom: 5px;
    margin-top: 0;
}

.catalogo-subtitulo{
    color: #777;
    margin-bottom: 30px;
}

.campo{
    margin-bottom: 20px;
}

.campo label{
    display:block;
    font-weight:600;
    margin-bottom:8px;
}

.campo input[type="text"],
.campo textarea,
.campo select{
    width:100%;
    padding:10px;
    border:1px solid #ddd;
    border-radius:8px;
}

.grid-tamanos label{
    display:block;
    margin-bottom:6px;
}

.acciones-form{
    margin-top:30px;
    display:flex;
    gap:15px;
}

.fila-tipo-portfolio {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    margin-bottom: 20px;
}

.campo-tipo {
    flex: 0 0 180px;
}

.campo-tipo select {
    width: 100%;
}

.campo-portfolio {
    display: flex;
    align-items: center;
    padding-bottom: 6px;
}

.check-portfolio {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.img-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.img-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

.watermark {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: rgba(255,255,255,0.6);
    font-size: 18px;
    font-weight: bold;
    pointer-events: none;
    text-shadow: 0 0 5px rgba(0,0,0,0.8);
}
.img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
}

.catalogo-item {
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.catalogo-item .marca-agua {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%); /* centrado perfecto */
    color: rgba(255,255,255,0.5); /* blanca semitransparente */
    font-weight: bold;
    font-size: 1.2em; /* ajusta según prefieras */
    /*max-width: 33%;   /* no más de 1/3 del ancho de la imagen */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none; /* no bloquea clicks */
}
.btn-edicion {
    background-color: #ea4b07;
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;       /* fuerza tamaño de fuente */
    line-height: 1.2;      /* fuerza altura de línea */
    transition: 0.2s ease;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    margin-right: 10px;
    margin-top: 5px;
    border: none;           /* quita borde del navegador */
    box-shadow: none;       /* quita sombra/relevo */
    outline: none;     
}


.btn-guardar {
    background-color: #464700;
        color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;       /* fuerza tamaño de fuente */
    line-height: 1.2;      /* fuerza altura de línea */
    transition: 0.2s ease;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    margin-right: 10px;
    margin-top: 5px;
    border: none;           /* quita borde del navegador */
    box-shadow: none;       /* quita sombra/relevo */
    outline: none;     
}

.btn-guardar:hover {
    opacity: 0.85;
}

.btn-cancelar {
    background-color: #ff0000;
        color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;       /* fuerza tamaño de fuente */
    line-height: 1.2;      /* fuerza altura de línea */
    transition: 0.2s ease;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    margin-right: 10px;
    margin-top: 5px;
    border: none;           /* quita borde del navegador */
    box-shadow: none;       /* quita sombra/relevo */
    outline: none;     
}

.btn-cancelar:hover {
    opacity: 0.85;
}
.catalogo-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-editar-mini {
    font-size: 13px;
    padding: 3px 8px;
    background: #2e7d32;
    color: #fff;
    border-radius: 16px;
    text-decoration: none;
}
.catalogo-item {
    display: flex;
    flex-direction: column; /* imagen arriba, info abajo */
    align-items: center;
    margin-bottom: 15px;
}

.catalogo-info {
    width: 100%;
    text-align: center; /* centra el nombre y el botón */
    margin-top: 5px;   /* espacio entre imagen y controles */
}
.catalogo-item {
    display: flex;
    justify-content: space-between; /* título a la izquierda, botones a la derecha */
    align-items: center;
    width: 100%;
    text-align: left !important; /* fuerza a la izquierda */
    margin-bottom: 8px;
}

.catalogo-item a {
    flex: 1;           /* ocupa todo el espacio posible a la izquierda */
    text-align: left;  /* asegura alineación izquierda */
    color: #333;
    text-decoration: none;
}

.acciones-catalogo {
    display: flex;
    gap: 5px;
    margin-left: 10px; /* separa un poco del título */
}

.btn-editar-mini,
.btn-eliminar-mini {
    display: flex;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    padding: 5px 9px;         /* copia dimensiones */
    border: 1px solid #ddd;     /* copia borde */
    border-radius: 30px;        /* copia redondeo */
    transition: 0.2s ease;
    width: fit-content;
    margin: 0;                  /* mantiene margen cero */
    cursor: pointer;
}

/* Colores individuales */
.btn-editar-mini {
    background: #464700;
    color: #fff !important; /* fuerza letras blancas */
}

.btn-eliminar-mini {
    background: #ff0000;
    color: #fff !important; /* fuerza letras blancas */
}

/* Hover */
.btn-editar-mini:hover,
.btn-eliminar-mini:hover {
    opacity: 0.85;
}

/* Solo para single fotógrafo */
.single-fotografo-catalogo-item {
    display: flex;
    flex-direction: row;      /* título a la izquierda, botones a la derecha */
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    margin-bottom: 8px;
}

.single-fotografo-catalogo-item a {
    flex: 1;           
    text-align: left;  
    color: #333;
    text-decoration: none;
}

.single-fotografo-catalogo-item .acciones-catalogo {
    display: flex;
    gap: 5px;
    margin-left: 10px; /* separa un poco del título */
    
}
.catalogo-admin {
    display: flex;
    justify-content: flex-end; /* empuja los elementos hacia la derecha */
    gap: 5px; /* separación entre botones */
    margin-top: 10px;
    margin-right: 10px;
    align-items: center; /* centra verticalmente si hay diferentes alturas */
}
.luvalu-landing-body .luvalu-box{
    background: #d8cdc4;
    border-radius: 30px;
    border: 3px solid #111;
    box-shadow: 0 35px 70px rgba(0,0,0,0.7);
    text-align: center !important;

    width: 90%;
    max-width: 450px;      /* límite en desktop */
    aspect-ratio: 1 / 1;   /* fuerza un cuadrado */
    
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.luvalu-landing-body .luvalu-btn{
    display: block;
    width: 75%;
    margin: auto;
    border-radius: 30px;
    border: 1.5px solid #111;
    background: #ea4b07; /* ← clave */
    color: #111;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.luvalu-landing-body .luvalu-btn:hover{
    background: rgba(0,0,0,0.08);
}

.luvalu-logo{
    max-width: 60%;
    height: auto;
    margin-bottom: 20px;
}
@media (max-width: 600px){

    .luvalu-landing-body .luvalu-box{
        border-radius: 20px;
        padding: 30px 20px;
        max-width: 95%;
    }

    .luvalu-logo{
        max-width: 160px;
        height: auto;
    }

    .luvalu-buttons{
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .luvalu-btn{
        padding: 12px;
        font-size: 14px;
    }
}
body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

.header-naranja {
    background-color: #ea4b07;
    padding: 20px 0;
    text-align: center;
}

.logo-header {
    max-width: 160px;
    height: auto;
}

.container-luvalu {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* BENEFICIOS */

.benefits-section {
    background: #f4f4f4;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
}

.benefits-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #000;
    text-transform: uppercase;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-item i {
    color: #ea4b07;
    font-size: 18px;
    margin-top: 5px;
    width: 25px;
    text-align: center;
}

.benefit-text strong {
    display: inline;
    color: #222;
    font-size: 16px;
}

.benefit-text p {
    margin: 2px 0 0;
    font-size: 14px;
    color: #666;
}

/* PLANES */

.planes-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.plan-card {
    background: #f4f4f4;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 30px;
    width: 300px;
    text-align: center;
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.plan-card.featured {
    border: 2px solid #ea4b07;
    transform: scale(1.05);
}

.featured-tag {
    background: #ea4b07;
    color: #fff;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
}

.plan-name {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-price {
    font-size: 32px;
    font-weight: 800;
    color: #ea4b07;
    margin-bottom: 10px;
}

.plan-price small {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.plan-desc {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
    min-height: 60px;
}

.btn-buy {
    margin-top: auto;
    display: block;
    background: #ea4b07;
    color: #fff !important;
    padding: 15px;
    border-radius: 30px;
    text-decoration: none !important;
    font-weight: bold;
    transition: 0.3s;
}

.btn-buy:hover {
    opacity: 0.85;
}

/* WooCommerce precio limpio */


.plan-price bdi {
    display: inline-flex !important;
    font-size: 32px !important;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .plan-card {
        width: 100%;
        transform: none !important;
    }
}
/* =========================
   LOGIN LUVALU
========================= */

.luvalu-login-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-image: url('https://luvalu.anibaltonelotto.com/wp-content/uploads/2026/01/fondo.jpg');
    background-repeat: repeat;
}

.luvalu-login-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.luvalu-login-logo {
    max-width: 160px;
    margin-bottom: 25px;
}

.luvalu-login-card h2 {
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 700;
}

/* Campos HivePress */
.hp-form__field {
    margin-bottom: 15px;
    text-align: left;
}

.hp-form__field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.85rem;
}

.hp-form__field input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f9f9f9;
    transition: 0.3s;
}

.hp-form__field input:focus {
    border-color: #ea4b07;
    outline: none;
    background: #fff;
}

/* Botón */
.hp-form__footer button {
    width: 100%;
    padding: 14px;
    background: #ea4b07;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.hp-form__footer button:hover {
    background: #d44406;
}

.luvalu-logout-btn {
    display: inline-block;
    margin-top: 20px;
    color: #ea4b07;
    font-weight: 600;
    text-decoration: none;
}
.upload-error {
    background: #fff3f3;
    border: 1px solid #ffcaca;
    color: #b00000;
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}
html, body {
  overflow-x: hidden; /* previene scroll horizontal */
  }

.luvalu-catalogo, 
.catalogo-info{
  max-width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap; /* si usan flex */
  padding-top: 1rem; 
}
.luvalu-aviso {
    background: #fff3cd;
    padding: 12px;
    margin-top: 10px;
    border-radius: 6px;
}

.luvalu-ok {
    background: #d4edda;
    padding: 12px;
    margin-bottom: 15px;
}

.luvalu-error {
    background: #f8d7da;
    padding: 12px;
    margin-bottom: 15px;
}

body.logged-in .luvalu-top-line {
    height: 18px;
    background: #000;
}

.luvalu-header {
    position: relative;

}

.luvalu-top-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 18px;
    background: #000;
    z-index: 99999;
}

.luvalu-header {
    margin-top: 18px;
}

.luvalu-top-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 18px;
    background: #000;
    z-index: 99999;
}
.nota-creditos {
margin: 2px 0 0 0;   /* arriba 6px, abajo 0 */
    font-size: 14px;

}
.blinking-icon {
    animation: blink 1.5s infinite;
    color: #ff9800; /* Cambia el color si querés */
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.luvalu-landing-body{
    margin:0;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:url('/wp-content/uploads/2026/01/fondo.jpg') center/cover no-repeat;
    font-family: system-ui, -apple-system, sans-serif;
}

/* CAJA */

.luvalu-landing-body .luvalu-box{
    background:#d8cdc4;
    border-radius:30px;
    border:3px solid #111;
    box-shadow:0 40px 80px rgba(0,0,0,0.65);

    text-align:center;

    width:90%;
    max-width:450px;
    aspect-ratio:1/1;

    padding:35px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    backdrop-filter:blur(6px);
}

/* LOGO */

.luvalu-logo{
    max-width:65%;
    height:auto;
    margin-bottom:30px;
}

/* BOTONES */

.luvalu-buttons{
    display:flex;
    flex-direction:column;
    gap:14px;
    width:75%;
}

.luvalu-landing-body .luvalu-btn{
    display:block;
    width:75%;
    margin:2px auto;
    padding:14px 0;

    border-radius:30px;
    border:2px solid #111;

    background:#ea4b07;
    color:#111;

    font-weight:700;
    letter-spacing:1px;
    text-decoration:none;
    text-align:center;

    box-shadow:
        0 4px 0 #111,
        0 10px 18px rgba(0,0,0,0.25);

    transition:all .2s ease;
}

.luvalu-landing-body .luvalu-btn:hover{
    background:#ff5a14;
    transform:translateY(-2px);

    box-shadow:
        0 6px 0 #111,
        0 14px 22px rgba(0,0,0,0.3);
}

.luvalu-landing-body .luvalu-btn:active{
    transform:translateY(3px);

    box-shadow:
        0 2px 0 #111,
        0 6px 12px rgba(0,0,0,0.25);
}

/* MOBILE */

@media(max-width:500px){

    .luvalu-landing-body .luvalu-box{
        padding:28px;
    }

    .luvalu-btn{
        font-size:14px;
        padding:12px;
    }

}
.luvalu-subtitle{
    margin-top: -5px;
    margin-bottom: 18px;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #333;
}
.luvalu-form-buttons{
    display:flex;
    gap:10px;
    margin-top:20px;
}

.luvalu-cancel-btn{
    background:#fe0000;
    color:#fff;
    text-decoration:none;
    padding:10px 16px;
    border-radius:30px;
}

.luvalu-cancel-btn:hover{
    background:#cfcfcf;
}

.catalogo-body{
    padding:30px;
}

.catalogo-header{
    padding-left:30px;
    padding-right:30px;
}
.preview-fotos{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:10px;
}

.preview-item{
    position:relative;
}

.preview-item img{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:6px;
    border:1px solid #ddd;
}

.preview-eliminar{
    position:absolute;
    top:-6px;
    right:-6px;
    background:#ff4d4d;
    color:#fff;
    border:none;
    border-radius:50%;
    width:18px;
    height:18px;
    font-size:12px;
    cursor:pointer;
}
.luvalu-edit-wrapper{
    width:100%;
    max-width:600px;
    margin:auto;
}

.luvalu-edit-form{
    display:flex;
    flex-direction:column;
    gap:10px;
}
.luvalu-catalogos-wrapper{
    width:80%;
    max-width:900px;
    margin:40px auto;
}
.luvalu-catalogo-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:20px;
}

.catalogo-card{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
transition:transform .2s;
}

.catalogo-card:hover{
transform:translateY(-4px);
}

.catalogo-thumb img{
width:100%;
height:200px;
object-fit:cover;
display:block;
}

.catalogo-titulo{
padding:10px;
text-align:center;
font-size:16px;
}

.acciones-catalogo{
display:flex;
justify-content:center;
gap:6px;
padding-bottom:10px;
}

.zoom-overlay {
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity:0;
    visibility:hidden;
    transition: opacity 0.3s ease;
}

.zoom-overlay.activo {
    opacity:1;
    visibility:visible;
    display: flex;
}

.zoom-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zoom-content img {
max-width: 80vw;   /* nunca más ancho que el 95% de la ventana */
    max-height: 80vh;  /* nunca más alto que el 95% de la ventana */
width: auto;
    height: auto;
    object-fit: contain; /* mantiene proporción */
    border-radius: 6px;
}

#zoom-marca {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255,255,255,0.7);
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 0 8px #000;
    pointer-events: none;
}

#zoom-seleccionar {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
}

.zoom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    user-select: none;
    padding: 10px;
}

.zoom-arrow:hover {
    color: #fff;
}

.zoom-arrow-left { left: 10px; }
.zoom-arrow-right { right: 10px; }

