@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Regular.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Goldman-Regular';
    src: url('../fonts/Goldman/Goldman-Regular.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Goldman-Bold';
    src: url('../fonts/Goldman/Goldman-Bold.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
}


* {
    margin: 0;
    padding: 0;

}

body {
    font-family: 'Montserrat', Sans-Serif;
    background: #0f0f0f;
}

h1,h2{
    font-family: 'Goldman-Bold';
}

/*==========Header============*/

header {
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10000;
    background: linear-gradient(90deg,
            rgb(0, 0, 0) 0 49%,
            rgb(255, 196, 0) 81px 50%);
}

header > div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1300px;
    margin: 0;
     background: linear-gradient(42deg,
            rgb(0, 0, 0) 0 80px,
            rgb(255, 196, 0) 81px 100%);
}

/* --- Contenedor Principal --- */

.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    background: #ffc107;
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.menu-toggle {
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}


.nav-menu li a,
.nav-menu li label {
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 50px;
    color: black;
    text-decoration: none;
    cursor: pointer;
    font-weight: 400;
      text-transform: uppercase;

}

.nav-menu li a::after,
.nav-menu li label::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 9px;
    height: 2px;
    background: #000;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
    opacity: 0.75;
}

.nav-menu li a:hover::after,
.nav-menu li label:hover::after {
    transform: scaleX(1);
}

.nav-menu li.dropdown {
    position: relative;
}

.nav-menu li a {
    position: relative;
}

.fa-bars, .fa-times{
    color: black;
}


.nav-menu .submenu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin: 0;
    padding: 0;
    background-color: #ffc107;
    min-width: 100%;
    white-space: nowrap;
    z-index: 1000;
}

.nav-menu .submenu li {
    width: 100%;
    display: block;
}

.nav-menu .submenu li a {
    height: auto;
    padding: 10px;
    text-align: center;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.dropdown input[type="checkbox"] {
    display: none;
}

.dropdown:hover .submenu,
.dropdown input:checked~.submenu {
    display: block;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}


.header-admin li,
.header-admin a {
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 100%;
    color: black;
    text-decoration: none;
    cursor: pointer;
    background-color: #ffc107;
}

@media screen and (max-width: 1200px) {

    header,
    nav {
        z-index: 1000;
    }

    .nav-menu img{
        border-radius: 7px;
        background-color: #ffc107;
        padding: 3px;
        margin: 0 10px;
    }

    .dropdown:hover .submenu {
        display: none;
        z-index: 2000;
    }

    .nav-menu li.dropdown {
        display: block;
        z-index: 2000;
    }

    .nav-menu .submenu {
        width: 100%;
    }

    .dropdown input:checked~.submenu {
        display: block;
    }

    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 0px;
        width: 100%;
        
    }

    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li,
    .nav-menu a,
    .nav-menu label {
        border-bottom: 1px solid rgb(255, 196, 0);
        color: white !important;
        background-color: #000000b8;
        height: 50px;
        width: 100%;
        font-size: larger;
    }

    .dropdown input,
    .dropdown a {
        width: 100%;
        display: block;
    }

    .submenu:hover {
        display: block;
    }

    .nav-menu .submenu {
        position: static;
        box-shadow: none;
    }

    .nav-menu .submenu li {
        width: 100%;
    }

    .nav-menu .submenu li a {
        text-align: left;
        padding-left: 40px;
    }
}
@media screen and (max-width: 350px) {
    .header-admin *{
        padding: 0px 0px 0px 20px !important;
    }
}


/*========== FOOTER ==========*/

footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    background:
        black;
    border-top: 1px solid rgba(255, 193, 7, 0.14);
    color: #fff;
    overflow: hidden;
    
}

footer > div{
    width: 90%;
    max-width: 1300px;
    display: grid;
    grid-template-columns: 1.15fr 1fr 1.1fr;
    grid-template-areas:
        "contact horarios ubicacion"
        "redes redes redes"
        "legal legal legal";
    gap: 22px;
}

footer > div > section,
#avisos-legales {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    background:rgba(0, 0, 0, 0.61);
    border: 1px solid rgba(255, 193, 7, 0.1);
    
}

footer>div>section:nth-of-type(1) {
    grid-area: contact;
    padding: 26px 24px;
}

footer>div>section:nth-of-type(2) {
    grid-area: horarios;
    padding: 26px 24px;
}

#section-ubicacion {
    grid-area: ubicacion;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
#section-ubicacion > div:nth-child(2){
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#avisos-legales {
    grid-area: legal;
    padding: 18px 24px;
}

footer h4,
footer caption {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-align: left;
}

footer h4::after,
footer caption::after {
    content: "";
    display: block;
    width: 38px;
    height: 2px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffc107, transparent);
}

footer a {
    color: #ffc107;
    text-decoration: none;
    transition: color 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
}

footer a:hover {
    color: #ffe082;
}

/* CONTACTO */
footer>div>section:nth-of-type(1) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 170px;
}

footer>div>section:nth-of-type(1) a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 1.02rem;
    font-weight: 700;
}

footer>div>section:nth-of-type(1) {
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}

/* HORARIOS */

footer table {
    width: 100%;
    border-collapse: collapse;
    border: none;
    overflow: hidden;
    background: rgba(255, 193, 7, 0.03);
}

footer table caption {
    caption-side: top;
    padding: 10px;
}

footer th,
footer td {
    border: 1px solid rgba(255, 193, 7, 0.1);
    padding: 14px 12px;
    text-align: center;
    font-size: 0.96rem;
}

footer th {
    background: rgba(255, 193, 7, 0.08);
    color: #ffffff;
    font-weight: 700;
}

footer td {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
}

#section-ubicacion a {
    border-radius: 7px;
}

#section-ubicacion div {
    line-height: 1.8;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.84);
    display: flex;
    align-items: center;
    gap: 15px;
}

/* REDES */

.redes {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #ffc107;
    transition: transform 0.22s ease;
}

.redes:hover {
    transform: translateY(-4px);
}

/* LEGALES */
#avisos-legales {
    text-align: center;
    background:rgba(255, 255, 255, 0.012);
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#avisos-legales * {
    text-align: center;
}

#avisos-legales div {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 10px;
}

#avisos-legales a {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
}

#avisos-legales a:hover {
    color: #ffc107;
}

#avisos-legales p {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    footer>div {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "contact horarios"
            "ubicacion ubicacion"
            "redes redes"
            "legal legal";
    }
}

@media (max-width: 700px) {
    footer>div {
        grid-template-columns: 1fr;
        grid-template-areas:
            "contact"
            "horarios"
            "ubicacion"
            "redes"
            "legal";
        padding: 28px 16px 18px;
        gap: 16px;
    }

    footer>div>section,
    #avisos-legales {
        border-radius: 20px;
    }

    footer>div>section:nth-of-type(1),
    footer>div>section:nth-of-type(2),
    #section-ubicacion,
    #section-redes,
    #avisos-legales {
        padding: 20px 16px;
    }

    #section-redes {
        flex-direction: column;
    }

    #section-redes a {
        min-width: 0;
        width: 100%;
    }

    .redes {
        width: 42px;
        height: 42px;
    }

    #avisos-legales {
        font-size:12px;
        text-align: left;
        line-height: 1.8;
    }
    
}

/*==============Cabecera-Main-Presentacion====================*/

#fondo-informacion {
    position: relative;
    min-height: 77vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

#fondo-informacion h1{
    margin: 20px 0px 50px;
    font-size: 90px;
    text-transform: uppercase;
}

#fondo-informacion span {
    color: #ffc107;
    border: solid 1px #ffc107;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 7px;
    font-size: 12px;
    letter-spacing: 3px;
}

#fondo-informacion div {
    text-align: left;
    width: 1300px;
    max-width: 90%;
    
}

#fondo-informacion div div{
    display: flex;
    gap: 15px;
}

#fondo-informacion a{
    text-decoration: none;
    border-radius: 10px;
    padding: 10px;
    transition: 0.3s transform linear;
}

#fondo-informacion a:hover{
    transform: scale(1.05);
}

#fondo-informacion .btn-comprar{
    background: #ffc107;
    color: #111;
    cursor: pointer;
}
#fondo-informacion .btn-sabermas{
    background: #111;
    color: #ffc107;
    border: 1px solid rgba(245, 196, 0, 0.22);
}





@media screen and (max-width:868px) {
    #fondo-informacion {
        padding: 0px;
        display: flex;
        justify-content: center;
        align-items:stretch;
    }
    
    #fondo-informacion h1{
        font-size: 70px;
        margin-bottom: 20px;
    }
    #fondo-informacion span{
        font-size: 10px;
    }
    #fondo-informacion > div{
        text-align: center;
        justify-content: center;
        width: 100%;
        margin-top: 100px;
    }
    
    #fondo-informacion div div{
        justify-content: center;
        margin: 0 auto;
    }
    
}

@media screen and (max-width:600px) {
    #fondo-informacion h1{
        font-size: 48px;
    }
    #fondo-informacion span{
        font-size: 8px;
    }
}

/*===================Main-Presentacion========================*/
#cuerpo-presentacion {
    background: #0f0f0f;
    padding: 0px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* CONTENEDOR MARCAS */
#cuerpo-presentacion > div:first-child {
    width: 100%;
    background: white;
    border-top: 1px solid rgba(255, 193, 7, 0.35);
    border-bottom: 1px solid rgba(255, 193, 7, 0.35);
    margin: 0 auto;
}

/* SECCIONES (OFERTAS / RECOMENDACIONES) */
.slider-section {
    margin: 90px auto;
    padding: 40px 25px;
    border-radius: 22px;
    background: rgba(10, 10, 10, 0.92);
    border: 1px solid rgba(255, 193, 7, 0.35);
}


/* TITULOS */
#cuerpo-presentacion h2,
.section-title {
    color: #ffc107;
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 40px;
}

.marcas-slider {
    overflow: hidden;
    width: 100%;
    background: transparent;
    padding: 10px 0;
}

.marcas-track {
    display: flex;
    width: max-content;
    animation: scroll-marcas 25s linear infinite;
    align-items: center;
}

.caja-marca {
    flex: 0 0 auto;
    margin: 0 20px;
}

.caja-marca img {
    height: 15vh;
    width: auto;
    object-fit: contain;
    display: block;
}


/* animación infinita */
@keyframes scroll-marcas {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* PAGINACIÓN SWIPER (solo color) */
.swiper-pagination-bullet {
    background: #777;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #ffc107;
}

/* FLECHAS */
.swiper-button-next,
.swiper-button-prev {
    color: #ffc107;
}

/* RESPONSIVE */
@media (max-width: 1024px){
        h2{
            font-size: 35px !important;
    }
}
@media (max-width: 768px) {

        h2{
            font-size: 20px !important;
        }
}
@media (max-width: 400px){
    
    .slider-section{
        width: auto;
        padding: 10px;
    }
    
    
}

/*================================Carruseles==========================*/

.slider-section {
    margin-bottom: 70px;
}

.section-title {
    color: #f5c400;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.swiper-recomendaciones {
    max-width: 1300px;
}

.recommendation-card {
    padding: 10px;
    display: flex;
    text-decoration: none;
    background: #000;
    border: none;
    border-radius: 22px;
    overflow: hidden;
    color: #fff;
    min-height: 190px;
    transition: transform 0.25s ease, border-color 0.25s ease;
    gap: 25px;
}


.recommendation-card .img-container {
    position: relative;
    width: 300px;
    min-width: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
    border: none;
}

.recommendation-card .info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 25px 25px;
    background: black;
    border-left: solid 5px #ffc107;
}

.recommendation-card .texto-recomendacion {
    color: #e6e6e6;
    font-size: 0.95rem;
    line-height: 1.65;
    display: block;
    width: 90%;
}



.recommendation-card .badge-oferta {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    padding: 5px 8px;
    border-radius: 8px;
}

.recommendation-card .oferta-fechas {
    position: absolute;
    right: 12px;
    bottom: 12px;
    margin: 0;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.78);
    border: 1px solid rgba(255, 193, 7, 0.45);
    color: #ffc107;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
}

.recommendation-card .oferta-fechas::before {
    content: "⏰ ";
}

@media (max-width: 950px) {
    .recommendation-card {
        flex-direction: column;
    }



    .recommendation-card .info {
        padding: 16px 18px;
        gap: 8px;
    }

    .recommendation-card h3 {
        font-size: 1rem;
    }

    .recommendation-card .texto-recomendacion {
        font-size: 0.84rem;
        line-height: 1.5;
    }
}


.ofertas-section .swiper-button-next,
.ofertas-section .swiper-button-prev,
.recomendaciones-section .swiper-button-next,
.recomendaciones-section .swiper-button-prev {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: transparent;
    color: #f5c400;
    transition: transform 0.2s ease;
}

.ofertas-section .swiper-button-next:hover,
.ofertas-section .swiper-button-prev:hover,
.recomendaciones-section .swiper-button-next:hover,
.recomendaciones-section .swiper-button-prev:hover {
    transform: scale(1.12);
}

.ofertas-section .swiper-button-next::after,
.ofertas-section .swiper-button-prev::after,
.recomendaciones-section .swiper-button-next::after,
.recomendaciones-section .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 900;
}

.swiper-pagination-bullet {
    background: rgba(245, 196, 0, 0.45);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #f5c400;
}

.home-sliders{
    width: 1300px;
    max-width: 90%;
}

.swiper-productos .product-card{
        height: 100%;
    }

.swiper-productos{
        height: 450px;
    }

@media (max-width: 1048px) {

    .section-title {
        font-size: 1.7rem;
    }

    .img-container,
    .card-image {
        height: 210px;
    }
}

@media (max-width: 768px) {
    .slider-section{
        margin: 20px auto;
    }
    .home-sliders{
        padding: 0px;
    }

    .swiper-productos,
    .swiper-recomendaciones {
        padding: 20px 36px 36px;
    }

    .section-title {
        font-size: 1.45rem;
        margin-bottom: 24px;
    }

    .img-container,
    .card-image {
        height: 200px;
    }

    .product-card h3,
    .card-content h4 {
        font-size: 1.05rem;
    }

    .precio {
        font-size: 1.2rem;
    }

    .descripcion,
    .quote {
        font-size: 0.92rem;
    }
}

@media (max-width: 400px) {
    .home-sliders{
        max-width:98%;
    }
    .slider-section{
        border: none;
        background: transparent;
    }

    .swiper-productos,
    .swiper-recomendaciones {
        padding: 15px 30px 30px;
    }

    .img-container,
    .card-image {
        height: 180px;
    }

    .ofertas-section .swiper-button-next,
    .ofertas-section .swiper-button-prev,
    .recomendaciones-section .swiper-button-next,
    .recomendaciones-section .swiper-button-prev {
        width: 36px;
        height: 36px;
    }
    
}

/*Tarjetas de producto*/
.product-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #0a0a0a;
    border: 1px solid rgba(245, 196, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    color: #ffffff;
    transition: transform 0.28s ease, border-color 0.28s ease;
    padding-bottom: 5px;
    min-width: 220px;
    width: 300px;
    max-width: 320px;
    justify-self: center;
    align-self: center;
}

#catalogo .product-card {
    border-color: rgba(245, 196, 0, 0.267);
    ;
}

.product-card:hover {
    transform: translateY(-6px);
    z-index: 10;
}

.img-container {
    position: relative;
    width: 100%;
    height: 230px;
    background: #000;
    overflow: hidden;
    border-bottom: 2px solid #ffc107;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.06);
    opacity: 0.95;
}

.product-card h3 {
    color: #f5c400;
    font-size: 1.15rem;
    font-weight: 800;
    margin: 18px 18px 6px;
    font-family: 'Goldman-Regular';
}

.product-card span {
    color: white;
    margin: 0 18px 8px;
    font-size: 0.85rem;
}

#tamanos, #sabores{
    margin: 0px 8px;
}

.marca {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(245, 196, 0, 0.08);
    border: 1px solid rgba(245, 196, 0, 0.22);
    color: #ffc107;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.precio {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    font-family: 'Goldman-Bold';
}

@media (max-width: 500px) {
    .precio{
        flex-direction: column;
    }
    
}


.precio-normal {
    color: #ffffff !important;
    font-size: 1.35rem !important;
    font-weight: 900;
    font-family: 'Goldman-Bold';
}

.precio-original {
    text-decoration: line-through;
    color: #777;
    font-size: 1.2rem !important;
    font-weight: 500;
    font-family: 'Goldman-Bold';
}

.precio-oferta {
    color: #f5c400 !important;
    font-size: 1.5em !important;
    font-weight: 900;
    font-family: 'Goldman-Bold';
}

.oferta-fechas {
    position: absolute;
    right: 12px;
    bottom: 12px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 10, 10, 0.82);
    border: 1px solid rgba(245, 196, 0, 0.45);
    color: #f5c400;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
    z-index: 15;
    backdrop-filter: blur(4px);
}

.oferta-fechas::before {
    content: "⏰";
    font-size: 0.95rem;
    flex-shrink: 0;
}

.badge-oferta {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 20;
    background: #c1121f;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}


.descripcion {
    color: #d6d6d6;
    font-size: 0.83rem;
    line-height: 1.55;
    margin: 0px 18px 10px;
    position: relative;
    padding: 12px 14px 12px 18px;

    overflow-y: auto;
    overflow-x: hidden;

    word-break: break-word;

    background: rgba(255, 255, 255, 0.02);

    border-radius: 14px;

    scrollbar-width: thin;
    scrollbar-color: #ffc107 rgba(255, 255, 255, 0.05);
}

#catalogo .descripcion {
    max-height: 50px;
}

.descripcion::-webkit-scrollbar {
    width: 5%;
}

.descripcion::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
}

.descripcion::-webkit-scrollbar-thumb {
    background: #ffc107;
    border-radius: 10px;
}

.descripcion::-webkit-scrollbar-thumb:hover {
    background: #ffd54f;
}

.quote {
    position: relative;
    padding-left: 14px;
}

.quote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: calc(100% - 8px);
    background: #f5c400;
    border-radius: 10px;
}

.admin-card {
    position: relative;
    padding-bottom: 0;
    height: 500px;
}

.menu-container {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 5;
    display: flex;
    justify-content: flex-end;
}

.admin-actions {
    display: flex;
    gap: 8px;
}

.admin-actions a {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 8px;
    color: #111;
}

.btn-editar {
    background: #f5c400;
}

.btn-borrar {
    background: #d9534f;
    color: #fff !important;
}

.btn-recomendar {
    background: #5cb85c;
    color: #fff !important;
    text-align: center;
    text-decoration: none;
    padding: 5px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* ── Stock en tarjetas de producto ── */
.product-card .stock {
    margin: 0 18px 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #a8a8a8;
}

.product-card .fh-variantes {
    width: 100%;
}

.product-card .stock:empty {
    display: none;
}

/* ── Imágenes extra en producto_editar (admin) ── */
.imagenes-extra-wrap {
    margin-bottom: 18px;
}

.imagenes-extra-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.imagen-extra-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
