* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #111;
    --color-white: #fff;
    --color-gray: #f7f7f7;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    background: #fff;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

/* =========================
    HEADER DESKTOP
========================= */

.main-header {
    background: var(--color-gray);
    position: relative;
    z-index: 1000;
}

.top-header {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo {
    width: 150px;
    height: auto;
}

.cart-icon {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    font-size: 20px;
}

.desktop-menu {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding-bottom: 10px;
}

.desktop-menu a {
    color: var(--color-black);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
    transition: .3s ease;
}

.desktop-menu a:hover {
    opacity: .7;
}

.desktop-menu a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--color-black);
}

/* =========================
    MOBILE HEADER
========================= */

.mobile-header {
    display: none;
    height: 140px;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    background: var(--color-gray);
    position: relative;
    z-index: 1001;
}

.mobile-logo {
    width: 140px;
    height: auto;
}

.mobile-icon {
    color: #000;
    font-size: 24px;
}

/* =========================
    MOBILE MENU
========================= */

.mobile-menu {
    position: absolute;
    top: 140px;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    z-index: 1000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    padding: 22px 25px;
    border-bottom: 1px solid #eee;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    transition:
        background .3s ease,
        color .3s ease,
        padding-left .3s ease;
}

.mobile-link.active {
    background: #000;
    color: #fff;
}

.mobile-link:hover {
    background: #000;
    color: #fff;
    padding-left: 35px;
}

/* =========================
    HERO
========================= */

.hero {
    position: relative;
    height: 481px;
    background:
        url('https://vinohilonegro.com/portal/img/inicio2.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    color: white;
}

.hero-text {
    padding-left: 140px;
}

.hero h1 {
    font-size: 40px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
}

.hero h1 span {
    font-weight: 700;
}

/* =========================
    FLOATING CART
========================= */
.floating-whatsapp {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    z-index: 9999;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
}

.floating-whatsapp i {
    font-size: 33px;
    color: #fff;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        width: 65px;
        height: 65px;
        right: 20px;
        bottom: 20px;
    }

    .floating-whatsapp i {
        font-size: 38px;
    }
}

/* =========================
    VINOS
========================= */

.vino-section {
    width: 100%;
    height: 580px;
    background: #ffffff;
    position: relative;
}

.svg-background {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.wine-svg {
    width: 95%;
    height: auto;
}

.shape {
    fill: none;
    stroke: #444;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: drawLine 5s ease forwards;
}

.shape::after {
    filter: blur(10px);
}

@keyframes drawLine {
    0% {
        stroke-dashoffset: 1;
        stroke: #8d8d8d;
    }

    40% {
        stroke: #555;
    }

    100% {
        stroke-dashoffset: 0;
        stroke: #000;
    }
}

.bottles-wrapper {
    position: absolute;
    left: 48%;
    transform: translate(-50%, -50%);
    width: 58%;
    max-width: 95%;
    z-index: 5;

    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: nowrap;
}

.wine-item {
    position: relative;
    cursor: pointer;

    opacity: 0;
    transform: translateY(-500px);

    transition:
        transform .4s ease,
        opacity .4s ease;
}

.wine-item img {
    height: 15rem !important;
    object-fit: contain;
    transition: all .35s ease;
}

.wine-item span {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transition: .3s;
    width: 60px;
    text-align: center;
}

.bottles-wrapper:hover .wine-item {
    transform: scale(.9);
}

.bottles-wrapper .wine-item:hover {
    transform: scale(1.15) translateY(-15px);
    z-index: 20;
}

.bottles-wrapper .wine-item:hover img {
    transform: scale(1.08);
}

.bottles-wrapper .wine-item:hover span {
    opacity: 1;
    bottom: -40px;
}

.wine-item.show {
    animation: dropBottle .8s cubic-bezier(.18, .89, .32, 1.28) forwards;
}

@keyframes dropBottle {
    0% {
        opacity: 0;
        transform: translateY(-500px);
    }

    70% {
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 767px) {

    .vino-section {
        display: none !important;
    }

}

/* =========================
    RESPONSIVE
========================= */

@media (max-width: 991px) {

    .top-header,
    .desktop-menu {
        display: none;
    }

    .mobile-header {
        display: flex;
    }

    .hero {
        min-height: 180px;
        height: auto;
    }

    .hero-text {
        padding-left: 60px;
        padding-right: 20px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .floating-cart {
        width: 78px;
        height: 78px;
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 768px) {

    .vino-section {
        height: auto;
        padding: 100px 0;
    }

    .bottles-wrapper {
        position: relative;
        top: 0 !important;
        left: 50%;
        transform: translateX(-50%);
        flex-wrap: wrap;
        gap: 20px;
    }

    .wine-item {
        top: 0 !important;
    }

    .wine-item img {
        height: 180px;
    }

    .hero h1 {
        font-size: 18px;
    }
}

/* =========================
   SECCIÓN INSIGNIAS
========================= */

.experience-image {
    max-width: 50%;
    height: auto;
}

.experience-title {
    font-size: 30px;
    line-height: 1.3;
}

/* TABLET */
@media (max-width: 991px) {

    .experience-image {
        max-width: 90%;
    }

}

/* MOBILE */
@media (max-width: 576px) {

    .experience-title {
        font-size: 23px;
        line-height: 1.4;
    }

    .experience-image {
        max-width: 100%;
    }

}

/* =========================
   SECCIÓN VIÑEDO
========================= */

.viñedo-image-wrapper img {
    width: 100%;
    max-width: 900px;
    height: auto;
    aspect-ratio: 900 / 1100;
    object-fit: cover;
}

/* TABLET */
@media (max-width: 991px) {

    .viñedo-image-wrapper img {
        height: 700px;
    }

}

/* MOBILE */
@media (max-width: 576px) {

    .viñedo-image-wrapper img {
        width: 100%;
        max-width: 90%;
        height: 450px;
    }


}

/* =========================
   MÁS VENDIDOS
========================= */

.best-sellers-section {
    background: #ffffff;
}

.best-sellers-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #000;
}



.quantity-box {
    gap: 10px;
    margin-bottom: 20px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
}

.qty-btn:hover {
    background: #ffffff;
    color: #000000;
}

.qty-input {
    width: 60px;
    height: 42px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 1.2rem;
}


.store-btn {
    display: inline-block;
    border: 3px solid #000;
    text-decoration: none;
    color: #000;
    transition: .3s;
    font-size: 14px;
    padding: 10px 70px;
}

.store-btn:hover {
    background: #000;
    color: #fff;
}


/* MOBILE */
@media (max-width: 576px) {

    .best-sellers-title {
        font-size: 1.5rem;
    }

    .product-name {
        font-size: 1.8rem;
    }

    .product-price {
        font-size: 1.6rem;
    }

    .store-btn {
        width: 100%;
        font-size: 1.5rem;
    }

    .product-info {
        width: 100%;
    }

}


/* =========================
   footer
========================= */
.footer-section {
    background: #000;
    color: #fff;
    padding: 100px 100px 30px 100px;
}

.footer-logo {
    max-width: 180px;
    width: 100%;
}

.footer-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-info p {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #fff;
}

.footer-info a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.footer-contact-title {
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
}

.footer-social a {
    color: #fff;
    font-size: 1.4rem;
    transition: .3s;
}

.footer-social a:hover {
    opacity: .7;
}

.footer-payments img {
    max-width: 280px;
}

/* TABLET */
@media (max-width: 991px) {

    .footer-section {
        text-align: center;
        padding: 70px 0;
    }

    .footer-info {
        margin-bottom: 50px;
    }

}

/* MOBILE */
@media (max-width: 576px) {

    .footer-info h3 {
        font-size: 1.5rem;
    }

    .footer-contact-title {
        font-size: 1.5rem;
    }

    .footer-info p,
    .footer-info a {
        font-size: 1rem;
    }

    .footer-social a {
        font-size: 2rem;
    }

    .footer-payments img {
        max-width: 220px;
    }

}

.footer-payments {
    display: flex;
    justify-content: center;
}

.footer-payments img {
    display: block;
}

/* =========================
   copyright
========================= */
.copyright-section {
    background: #ffffff;
    padding: 20px 0;
}

.copyright-text {
    color: #000000;
    font-size: 14px;
    margin: 0;
}

/* HEADER DESKTOP */
.main-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #fff;
    width: 100%;
}

/* HEADER MOBILE */
.mobile-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #fff;
    width: 100%;
}

/* MENU MOBILE */
.mobile-menu {
    position: sticky;
    top: 80px;
    /* altura aproximada del header mobile */
    z-index: 9998;
    background: #fff;
}

.changing-word {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    height: 1em;
    overflow: hidden;
    vertical-align: baseline;
    line-height: 1;
    transform: translateY(-2px);
}

.changing-word span {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0 !important;
    animation: changeWords 4s infinite;
}

@keyframes changeWords {

    0%,
    45% {
        transform: translateY(0%);
    }

    50%,
    95% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0%);
    }

}


/* =========================
   ANIMACIÓN SCROLL
========================= */

.scroll-reveal {
    opacity: 0;
    transform: translateY(80px);
    transition:
        opacity 1s ease,
        transform 1s ease;
    will-change: opacity, transform;
}

.scroll-reveal.show {
    opacity: 1;
    transform: translateY(0);
}



/* =========================
    video
========================= */
@media (max-width: 767px) {

    .video-section {
        display: none !important;
    }

}

.section-compromisos {
    padding: 0px 170px;
}

@media (max-width: 991px) {
    .section-compromisos {
        padding: 55px 50px;
    }
}


.title-section {
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.title-section strong {
    font-weight: 700;
}

.carousel-box {
    position: relative;
    padding: 0 70px;
}

.carousel-control-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    font-size: 30px;
    color: #000;
}

.carousel-inner {
    min-height: 200px;
    display: flex;
    align-items: center;
}

.carousel-item {
    width: 100%;
}

.carousel-control-prev-custom {
    left: 0;
}

.carousel-control-next-custom {
    right: 0;
}

.texto-carousel {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
    max-width: 900px;
    margin: auto;
    display: flex;
    align-items: center;
    height: 200px;
}

.subtitle {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-top: 10px;
}

.subtitle strong {
    font-weight: 700;
}

.texto-columna {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
    transform: translateZ(0);
}

.highlight {
    color: #fff;
    padding: 2px 6px;
    line-height: 1.7;

    background:
        linear-gradient(#6d0000 0 0) left / 0% 100% no-repeat;

    animation: highlightFill 1.2s ease forwards;
}

@keyframes highlightFill {
    to {
        background-size: 100% 100%;
    }
}

.img-lateral {
    width: 100%;
    object-fit: cover;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .img-lateral {
        min-height: 500px;
        margin-top: 50px;
    }

    .title-section {
        font-size: 38px;
    }

    .subtitle {
        font-size: 36px;
    }

    .texto-carousel {
        font-size: 18px;
    }

    .texto-columna {
        font-size: 17px;
    }

}

@media(max-width:576px) {

    .section-compromisos {
        padding: 50px 0;
    }

    .carousel-box {
        padding: 0 45px;
    }

    .carousel-control-custom {
        font-size: 30px;
    }

    .title-section {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .subtitle {
        font-size: 28px;
        margin-top: 60px;
    }

    .texto-carousel {
        font-size: 16px;
        line-height: 1.7;
    }

    .texto-columna {
        font-size: 16px;
        line-height: 1.7;
    }

    .carousel-inner {
        min-height: 260px;
    }

    .texto-carousel {
        height: 260px;
        font-size: 16px;
    }
}

#carouselCompromisos {
    cursor: grab;
    user-select: none;
}

#carouselCompromisos:active {
    cursor: grabbing;
}

.bg-section-black {
    background: #1a1919;
}


/* MARQUEE */

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    margin-top: 10px;
    padding-top: 20px;
}

.marquee-content {
    display: inline-flex;
    gap: 20px;
    animation: marquee 22s linear infinite;
}

.marquee-content span {
    font-size: 24px;
    font-weight: 300;
    color: #d9d9d9;
}

.marquee-content em {
    font-style: italic;
    opacity: .8;
}

@keyframes marquee {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

/* RESPONSIVE */

@media(max-width:991px) {

    .marquee-content span {
        font-size: 34px;
    }

}

@media(max-width:576px) {

    .marquee-content span {
        font-size: 22px;
    }

}

/* SOLO ESTA SECCIÓN */

.historia-highlight .title-section,
.historia-highlight .subtitle,
.historia-highlight .texto-columna {
    color: #fff;
}

/* TÍTULO */

.historia-highlight .title-section {
    line-height: 1.4;
}

/* SUBTÍTULO */

.historia-highlight .subtitle {
    line-height: 1.5;
}

/* TEXTO */

.historia-highlight .texto-columna {
    line-height: 1.2;
}

/* =========================
   RESPONSIVE GENERAL
========================= */

.img-lateral {
    width: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px) {

    .section-compromisos {
        overflow: hidden;
    }

    .img-lateral {
        height: 500px;
    }

    .title-section {
        font-size: 38px;
        line-height: 1.4;
    }

    .subtitle {
        font-size: 30px;
        line-height: 1.5;
    }

    .texto-columna {
        font-size: 18px;
        line-height: 1.9;
    }

    .texto-carousel {
        font-size: 20px;
        line-height: 1.8;
        min-height: 220px;
    }

    .carousel-box {
        padding: 0 50px;
    }

    .carousel-control-custom {
        font-size: 28px;
    }

    .marquee-content {
        gap: 70px;
    }

    .marquee-content span {
        font-size: 34px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:576px) {

    .section-compromisos .col-lg-8 {
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .img-lateral {
        height: 350px;
    }

    .title-section {
        font-size: 28px;
        line-height: 1.4;
    }

    .subtitle {
        font-size: 22px;
        line-height: 1.5;
    }

    .texto-columna {
        font-size: 16px;
        line-height: 1.8;
    }

    .texto-carousel {
        font-size: 16px;
        line-height: 1.7;
        min-height: 180px;
    }

    .carousel-box {
        padding: 0 40px;
    }

    .carousel-control-custom {
        font-size: 22px;
    }

    .marquee-container {
        margin-top: 40px;
    }

    .marquee-content {
        gap: 50px;
    }

    .marquee-content span {
        font-size: 22px;
    }

}

.img-persona {
    width: 400px;
    height: 180px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.texto-columna2 {
    font-size: 18px;
    font-weight: 400;
    transform: translateZ(0);
}

.equipo-section .img-persona {
    width: 400px;
    height: 180px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.equipo-section .col-lg-4 {
    margin-bottom: 40px;
}

@media (max-width: 991px) {

    .equipo-section .img-persona {
        width: 100%;
        height: 330px;
    }


    .equipo-section .title-section {
        font-size: 20px !important;
    }

    .equipo-section .texto-columna {
        font-size: 15px;
        line-height: 1.8;
    }

}

@media (max-width: 576px) {

    .equipo-section .img-persona {
        width: 100%;
        height: 330px;
    }

    .equipo-section {
        margin-top: 20px !important;
    }

    .equipo-section .title-section {
        font-size: 18px !important;
        margin-top: 18px !important;
    }

    .equipo-section .texto-columna {
        font-size: 14px;
        line-height: 1.7;
    }

}


.timeline-section {
    position: relative;
    padding: 100px 0;
    background-image: url('https://vinohilonegro.com/portal/img/fondo-linea.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;

    /* CENTRADO VERTICAL */
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.timeline-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.timeline-title {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.timeline-title strong {
    font-weight: 700;
}

.timeline-item {
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    position: relative;
    z-index: 2;

    /* CENTRADO DEL CONTENIDO */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.middle-item {
    margin-top: 60px;
}

.timeline-item h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1;
}

.timeline-item p {
    font-size: .95rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 320px;
    margin: 0 auto;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 28px !important;
    font-weight: bold;
}

@media(max-width:991px) {

    .timeline-section {
        padding: 70px 0;
        min-height: auto;
    }

    .timeline-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .middle-item {
        margin-top: 0;
    }

    .timeline-item {
        padding: 15px;
    }

    .timeline-item h2 {
        font-size: 2.3rem;
    }

    .timeline-item p {
        font-size: .9rem;
        line-height: 1.5;
    }

}

/* =========================
SECCION EMAT
========================= */

.emat-section {
    background: #f3f3f3;
    padding: 100px 0;
    overflow: hidden;
}

/* TITULO */
.emat-top-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 80px;
}

.emat-top-title span {
    font-weight: 800;
}

/* =========================
GALERIA
========================= */

.emat-gallery {
    position: relative;
    display: grid;
    grid-template-columns: 220px 220px;
    gap: 40px;
    align-items: start;
}

/* IMAGENES */
.emat-gallery img {
    width: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

/* CHEF */
.chef-img {
    width: 220px;
}

.chef-img img {
    height: 330px;
}

/* PLATILLO */
.dish-img {
    width: 220px;
    margin-top: 80px;
}

.dish-img img {
    height: 390px;
}

/* VINO */
.wine-img {
    width: 220px;
    margin-top: -140px;
}

.wine-img img {
    height: 320px;
}

/* =========================
CONTENIDO
========================= */

.emat-content {
    padding-left: 50px;
    max-width: 650px;
}

.emat-logo {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1;
    color: #2c1b2d;
    margin-bottom: 10px;
}

.emat-subtitle {
    letter-spacing: 10px;
    font-size: 1rem;
    margin-bottom: 40px;
    color: #6c5b5b;
}

.emat-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #222;
    margin-bottom: 35px;
}


/* =========================
RESERVAS
========================= */

.reserve-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.reserve-btn {
    border: 1px solid #000;
    padding: 14px 28px;
    text-decoration: none;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
    font-weight: 500;
}

.reserve-btn:hover {
    background: #000;
    color: #fff;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width: 991px) {

    .emat-section {
        padding: 70px 0;
    }


    .emat-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .emat-logo {
        font-size: 4rem;
        text-align: center;
    }

    .emat-subtitle {
        text-align: center;
        letter-spacing: 6px;
    }

    .emat-top-title {
        font-size: 2rem;
    }

}


/* =========================
SECCION DEGUSTACION
========================= */

.degustacion-section {
    background: #f3f3f3;
    padding: 100px 0;
    overflow: hidden;
}

/* ROW */

.degustacion-row {
    align-items: center;
}

/* =========================
IMAGEN
========================= */

.degustacion-image {
    width: 100%;
    /* max-width: 420px; */
    margin: 0 auto;
}

.degustacion-image img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    display: block;
}

/* =========================
CONTENIDO
========================= */

.degustacion-content {
    max-width: 650px;
}

/* TITULO */

.degustacion-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: 1.1;
    font-weight: 300;
    margin-bottom: 25px;
    color: #000;
    text-transform: uppercase;
}

.degustacion-title strong {
    display: block;
    font-weight: 800;
}

/* TEXTO */

.degustacion-content p {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.8;
    color: #222;
    margin-bottom: 28px;
}


/* =========================
HORARIO
========================= */

.schedule-box {
    margin-top: 10px;
    margin-bottom: 30px;
}

.schedule-box h5 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.schedule-box p {
    margin: 0;
}

/* =========================
BOTON MENU
========================= */

.menu-btn {
    border: 1px solid #000;
    padding: 14px 28px;
    display: inline-block;
    color: #000;
    text-decoration: none;
    transition: .3s;
    margin-bottom: 40px;
    font-weight: 500;
}

.menu-btn:hover {
    background: #000;
    color: #fff;
}

/* =========================
RESERVAS
========================= */

.reserve-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.reserve-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.reserve-btn {
    border: 1px solid #000;
    padding: 14px 26px;
    text-decoration: none;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
    font-weight: 500;
}

.reserve-btn:hover {
    background: #000;
    color: #fff;
}

/* =========================
TABLET
========================= */

@media(max-width: 991px) {

    .degustacion-section {
        padding: 70px 0;
    }

    .degustacion-image {
        max-width: 100%;
        margin-bottom: 45px;
    }

    .degustacion-image img {
        height: auto;
        max-height: 650px;
    }

    .degustacion-content {
        max-width: 100%;
    }

    .degustacion-title {
        text-align: center;
    }

}

/* =========================
MOBILE
========================= */

@media(max-width: 767px) {

    .degustacion-section {
        padding: 60px 0;
    }

    .degustacion-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 28px;
    }

    .degustacion-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .schedule-box h5 {
        font-size: 1.2rem;
    }

    .reserve-title {
        font-size: 1.7rem;
    }

    .reserve-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .reserve-btn {
        width: 100%;
        justify-content: center;
    }

    .menu-btn {
        width: 100%;
        text-align: center;
    }

}

/* =========================
WRAPPER
========================= */

.emat-title-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* TITULO */

.emat-top-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 2px;
    color: #000;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

.emat-top-title span {
    font-weight: 800;
}

/* =========================
HILO
========================= */

.title-thread {
    position: absolute;
    top: 15%;
    right: 1%;
    width: 11%;
    z-index: 1;
    pointer-events: none;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width: 991px) {

    .title-thread {
        width: 115px;
        right: 10px;
        top: 0px;
    }

}

@media(max-width: 768px) {

    .emat-top-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .title-thread {
        width: 70px;
        right: 16px;
        top: 45px;
    }

}

.media-section {
    background: #000000;
    color: white;
    overflow: hidden;
}


.media-section h2 {
    font-size: 38px;
    font-weight: 300;
    letter-spacing: 1px;
}

.media-section h2 span {
    font-weight: 700;
}


.media-section p {
    max-width: 700px;
    margin: auto;
    color: #ddd;
    font-size: 15px;
}


.media-section p a {
    color: #fff;
    text-decoration: underline;
}


.media-card {

    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    height: 100%;
}


.media-logo {

    max-width: 220px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);

}


.media-card h5 {

    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;

    min-height: 70px;

    margin-bottom: 5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}



.btn-media {

    border: 1px solid white;
    color: white;

    padding: 10px 25px;

    text-decoration: none;

    transition: .3s;
}


.btn-media:hover {

    background: white;
    color: black;
}


.otros {

    font-size: 30px;
    margin-top: 80px;
}


.otros span {

    font-weight: bold;
}

.medios {

    background: #000000;
    overflow: hidden;
}


.titulo-medios {

    text-align: center;

    color: white;

    font-size: 34px;

    margin-bottom: 50px;
}


.mediosSwiper {

    padding: 0 60px;
}


.mediosSwiper .swiper-slide {

    height: 120px;

    display: flex;

    justify-content: center;

    align-items: center;
}



.mediosSwiper img {

    width: 100%;

    max-width: 220px;

    max-height: 80px;

    object-fit: contain;

    filter: brightness(0) invert(1);

    transition: .3s;
}


.mediosSwiper img:hover {

    transform: scale(1.05);
}



.swiper-button-next,
.swiper-button-prev {

    color: white;

    width: 40px;

    height: 40px;
}


.swiper-button-next::after,
.swiper-button-prev::after {

    font-size: 30px;

    font-weight: 300;
}



@media(max-width:768px) {

    .mediosSwiper {

        padding: 0 30px;
    }


    .mediosSwiper img {

        max-width: 120px;
    }

}


.news-section {
    padding: 70px 0;
}

/* contenedor más angosto y centrado */
.custom-news-container {
    max-width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 42px;
    font-weight: 300;
    text-transform: uppercase;
}

.section-title span {
    font-weight: 800;
}

.news-card {
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 250px;
    /* más pequeñas */
    object-fit: cover;
}

.overlay-title {
    position: absolute;
    left: 20px;
    bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.overlay-title h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.overlay-title h2 {
    font-size: 30px;
    font-weight: 300;
    margin: 4px 0;
}

.news-content {
    padding: 20px;
}

.news-content h4 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 14px;
}

.news-date {
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}

.news-text {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.read-more {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

@media(max-width:991px) {

    .custom-news-container {
        max-width: 95%;
    }

    .section-title {
        font-size: 32px;
    }

    .news-image img {
        height: 220px;
    }
}


.blog-detail-section {
    padding: 10px 0 80px;
    overflow-x: hidden;
}

/* ancho igual a la imagen */
.blog-detail-section .container {
    max-width: 1260px;
}

/* HERO */
.blog-hero {

    position: relative;
    overflow: hidden;
    height: 500px;
}

.blog-hero img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 3px 12px rgba(0, 0, 0, .45);
    padding: 20px;
}

.hero-overlay span {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero-overlay h1 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1;
    margin: 0;
}

.hero-overlay h2 {
    font-size: 55px;
    font-weight: 700;
    margin-top: 20px;
}

/* CONTENIDO */
.blog-content {
    max-width: 1220px;
    margin: 60px auto 0;
    text-align: center;
}

.blog-title {
    font-size: 34px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.2;
}

.blog-date {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 40px;
    color: #111;
}

.blog-text {
    font-size: 18px;
    line-height: 1.7;
    color: #222;
    margin-bottom: 45px;
    text-align: left;
}

.blog-block {
    text-align: left;
}

.blog-block h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

.blog-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #222;
}

/* RESPONSIVE */
@media(max-width:991px) {

    .blog-hero {
        height: 100%;
    }

    .blog-hero img {
        height: 420px;
    }

    .hero-overlay span {
        font-size: 28px;
    }

    .hero-overlay h1 {
        font-size: 58px;
    }

    .hero-overlay h2 {
        font-size: 38px;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-text,
    .blog-block p {
        font-size: 16px;
    }
}

@media(max-width:576px) {
    .blog-hero {
        height: 100%;
    }

    .blog-hero img {
        height: 320px;
    }

    .hero-overlay span {
        font-size: 20px;
    }

    .hero-overlay h1 {
        font-size: 42px;
    }

    .hero-overlay h2 {
        font-size: 28px;
    }

    .blog-content {
        margin-top: 40px;
    }

    .blog-title {
        font-size: 22px;
    }
}


.blog-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #222;
    text-align: justify;
    /* JUSTIFICADO */
    margin-bottom: 20px;
}



body {
    background: #f4f4f4;
    font-family: 'Montserrat', sans-serif;
}

.hero-vinos-section {
    padding-top: 10px;
}

/* CONTENEDOR */
.hero-vinos {
    position: relative;
    /* max-width:1280px; */
    margin: 0 auto;
    overflow: hidden;
}

/* IMAGEN */
.hero-vinos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 4px 12px rgba(0, 0, 0, .5);
    padding: 20px;
}

.hero-overlay h2 {
    font-size: 78px;
    font-weight: 300;
    line-height: 1;
    margin: 0;
}

.hero-overlay h3 {
    font-size: 52px;
    font-weight: 600;
    margin-top: 10px;
    line-height: 1.1;
}

/* BARRA NEGRA */
.shipping-bar {
    background: #000;
    color: #fff;
    text-align: center;
    font-size: 28px;
    font-weight: 300;
    padding: 16px 20px;
    letter-spacing: .5px;
    text-transform: uppercase;
    /* max-width:1280px; */
    margin: 0 auto;
}

/* TITULO */
.section-title-vinos {
    text-align: center;
    padding: 90px 20px 40px;
}

.section-title-vinos h2 {
    font-size: 72px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0;
}

.section-title-vinos span {
    font-weight: 800;
}

/* RESPONSIVE */
@media(max-width:991px) {

    .hero-vinos img {
        height: 260px;
    }

    .hero-overlay h2 {
        font-size: 52px;
    }

    .hero-overlay h3 {
        font-size: 34px;
    }

    .shipping-bar {
        font-size: 20px;
    }

    .section-title-vinos h2 {
        font-size: 48px;
    }
}

@media(max-width:576px) {

    .hero-vinos img {
        height: 220px;
    }

    .hero-overlay h2 {
        font-size: 34px;
    }

    .hero-overlay h3 {
        font-size: 22px;
    }

    .shipping-bar {
        font-size: 15px;
        padding: 12px;
    }

    .section-title-vinos {
        padding-top: 60px;
    }

    .section-title-vinos h2 {
        font-size: 34px;
    }
}

@media(max-width:400px) {
    .section-title-vinos {
        padding: 40px 10px 30px;
    }

    .section-title-vinos h2 {
        font-size: 24px;
    }

    .product-card {
        padding: 0 5px;
    }

    .product-name {
        font-size: 18px;
    }

    .product-price {
        font-size: 18px;
    }

    .quantity-box {
        gap: 5px;
    }

    .qty-input {
        width: 40px;
        height: 36px;
        font-size: 14px;
    }

    .qty-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}


.product-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    min-height: 320px;
}

/* IMAGEN */
.product-image{
    width:180px;
    min-width:180px;
    text-align:center;
        text-align: -webkit-right;
}

.product-image img{
    width:auto;
    height:380px;
    object-fit:contain;
}

/* INFO */
.product-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

/* CATEGORIA */
.product-category {
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 12px;
    display: block;
}

/* TITULO */
.product-name {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 14px;
}

/* DESCRIPCION */
.product-description {
    height: 55px;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

/* PRECIO */
.product-price {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* CANTIDAD */
.quantity-box {
    gap: 10px;
    margin-bottom: 22px;
}

.qty-btn {
    width: 34px;
    height: 34px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.qty-input {
    width: 55px;
    height: 42px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 18px;
}

/* BOTONES */
.product-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-btn {
    width: 220px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #000;
    color: #fff;
    text-decoration: none;

    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

@media(max-width:991px) {

    .product-image {
        width: 190px;

    }

    .product-image img {
        width: 65%;
    }

}


@media(max-width:576px) {

    .hero-vinos img {
        width: 100%;
    }

}





/* SIDEBAR */
.cart-sidebar {
    width: 500px !important;
    border: none;
    z-index: 99999 !important;
}

/* HEADER */
.cart-header {
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.cart-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

/* PRODUCTOS */
.cart-products {
    padding: 20px 25px;
}

.cart-item-image{
    width: 90px;
    height: 120px;
    min-width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-item-image img{
    width: 100%;
    height: 100%;
    object-fit: contain; /* muestra la botella completa */
    object-position: center;
}
.cart-item {
    display: flex;
    gap: 18px;
}


.cart-item-info {
    width: 100%;
}

.cart-item-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 600;
}

/* CANTIDAD */
.cart-qty-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-qty-box button {
    width: 34px;
    height: 34px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 20px;
    font-weight: 700;
}

.cart-qty-box input {
    width: 50px;
    height: 34px;
    border: 1px solid #ddd;
    text-align: center;
}

/* FOOTER */
.cart-footer {
    border-top: 1px solid #eee;
}

/* CUPON */
.coupon-btn {
    width: 100%;
    border: none;
    background: #fff;
    padding: 20px 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 15px;
}

/* SUBTOTAL */
.cart-subtotal {
    padding: 20px 25px;
}

.cart-subtotal h4 {
    font-size: 18px;
    font-weight: 800;
}

.cart-subtotal span {
    font-size: 18px;
    font-weight: 800;
}

.cart-subtotal p {
    margin-top: 8px;
    color: #777;
    font-size: 14px;
}

/* BOTONES */
.cart-actions {
    padding: 0 25px 25px;
}

.checkout-btn {
    width: 100%;
    height: 55px;

    background: #000;
    color: #fff;
    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-size: 18px;
    font-weight: 700;

    margin-bottom: 18px;
}

.continue-shopping {
    display: block;
    text-align: center;

    color: #444;
    text-decoration: none;
    font-size: 15px;
}

.offcanvas-backdrop {
    z-index: 99998 !important;
}

.cintillo-envios {
    width: 100%;
    background: #000000;
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cintillo-envios a {
    color: #fff;
    text-decoration: none;
    transition: opacity .3s ease;
}

.cintillo-envios a:hover {
    opacity: .8;
}

.cintillo-envios span {
    margin: 0 10px;
}

@media (max-width: 768px) {
    .cintillo-envios {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .cintillo-envios span {
        display: none;
    }
}

.contact-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.contact-title {
    font-size: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-subtitle {
    color: #666;
    max-width: 700px;
    margin: auto;
}

.contact-input {
    border-radius: 0;
    padding: 15px 20px;
    border: 1px solid #ddd;
    box-shadow: none !important;
}

.contact-input:focus {
    border-color: #6d0000;
}

textarea.contact-input {
    resize: none;
}

.contact-btn {
    background: #6d0000;
    color: #fff;
    border: none;
    padding: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: .3s;
}

.contact-btn:hover {
    background: #4f0000;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width:991.98px) {

    .map-wrapper {
        min-height: 350px;
        margin-top: 10px;
    }

    .contact-title {
        font-size: 2.2rem;
    }

}


#welcomeModal {
    z-index: 999999 !important;
}

#welcomeModal+.modal-backdrop,
.modal-backdrop.show {
    z-index: 999998 !important;
    opacity: .85;
}

.popup-input {
    height: 55px;
    border-radius: 0;
}

.popup-btn {
    height: 55px;
    border: none;
    border-radius: 0;
    background: #000;
    color: #fff;
    font-weight: 600;
}

.popup-btn:hover {
    background: #fcfcfc;
    border: 1px solid #000;
}




/* =========================
   PAGO 100% SEGURO
========================= */

.payment-section{
    width:100%;
    background:#f5f5f5;
    padding:25px 20px;
}

.payment-wrapper{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.payment-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    margin-bottom:30px;
}

.payment-title i{
    font-size:48px;
    color:#000;
}

.payment-title span{
    font-size:clamp(1.8rem,2vw,3rem);
    font-weight:700;
    color:#000;
    text-transform:uppercase;
}

.payment-methods{
    width:100%;
    max-width:450px;
    height:auto;
    display:block;
}

/* Responsive */

@media (max-width:768px){

    .payment-section{
        padding:35px 15px;
    }

    .payment-title{
        gap:10px;
        margin-bottom:20px;
    }

    .payment-title i{
        font-size:34px;
    }

    .payment-title span{
        font-size:1.4rem;
    }

    .payment-methods{
        max-width:100%;
    }

}


.cart-coupon{
    padding:20px;
    border-top:1px solid #e5e5e5;
}

.coupon-btn{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:none;
    border:none;
    padding:0;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
}

.coupon-btn i{
    transition:.3s;
}

.coupon-btn.active i{
    transform:rotate(180deg);
}

.coupon-content{
    display:none;
    margin-top:15px;
}

.coupon-input{
    border-radius:0;
    height:48px;
}

.apply-coupon-btn{
    width:100%;
    margin-top:10px;
    height:48px;
    border:none;
    background:#000;
    color:#fff;
    font-weight:600;
    text-transform:uppercase;
    transition:.3s;
}

.apply-coupon-btn:hover{
    background:#6d0000;
}



.faq-section{
    padding:80px 0;
    background:#fafafa;
}

.faq-title{
    font-size:3rem;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.faq-subtitle{
    max-width:700px;
    margin:auto;
    color:#000000;
}

.faq-category-title{
    color:#000000;
    font-size:1.8rem;
    font-weight:700;
    margin-bottom:20px;
    text-transform:uppercase;
}

.accordion-item{
    border:1px solid #e5e5e5;
    margin-bottom:10px;
    border-radius:0 !important;
}

.accordion-button{
    font-weight:600;
    padding:18px 20px;
    box-shadow:none !important;
}

.accordion-button:not(.collapsed){
    background:#000000;
    color:#fff;
}

.accordion-body{
    padding:20px;
    line-height:1.8;
    color:#000000;
}

@media(max-width:768px){

    .faq-title{
        font-size:2rem;
    }

    .faq-category-title{
        font-size:1.4rem;
    }

}

.contact-card{
    background:#fff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.croquis-container{
    margin-top:30px;
    background:#fff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.croquis-title{
    font-size:2rem;
    font-weight:600;
    margin-bottom:10px;
}

.croquis-text{
    color:#777;
    max-width:700px;
    margin:0 auto;
}

.croquis-img{
    width:100%;
    height:auto;
    display:block;
    border-radius:8px;
}

@media(max-width:768px){

    .contact-card,
    .croquis-container{
        padding:20px;
    }

    .croquis-title{
        font-size:1.5rem;
    }

}


.checkout-section{
    padding-top:90px;
    padding-bottom:90px;
}

/* CARD */
.checkout-card{
    background:#fff;
    border-radius:24px;
    padding:32px;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
}

/* TITULOS */
.checkout-title{
    font-size:34px;
    font-weight:900;
    margin-bottom:28px;
    letter-spacing:1px;
}

/* LABELS */
.form-label-custom{
    font-size:14px;
    font-weight:700;
    margin-bottom:10px;
    display:block;
}

/* INPUTS */
.checkout-input{
    height:52px;
    border-radius:0;
    border:1px solid #e5e5e5;
    font-size:14px;
    padding:10px 16px;
    box-shadow:none !important;
}

/* TABLA */
.order-head,
.order-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.order-head{
    font-size:15px;
    font-weight:800;
    margin-bottom:22px;
}

.order-item{
    margin-bottom:18px;
    font-size:14px;
}

/* METODOS */
.payment-methods{
    margin-bottom:22px;
}

.payment-option{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:15px;
    font-weight:600;
}

/* BRICK */
#paymentBrick_container{
    margin-top:10px;
}

/* PLACEHOLDERS */
.checkout-input::placeholder{
    font-size:14px;
}

/* MOBILE */
@media(max-width:991px){

    .checkout-section{
        padding-top:50px;
        padding-bottom:50px;
    }

    .checkout-title{
        font-size:26px;
    }

    .checkout-card{
        padding:24px;
    }

}

 .order-summary {
        max-width: 100%;
        width: 100%;
        font-family: Arial, sans-serif;
        display: flex;
        flex-direction: column;
        gap: 10px;
        border-top: 1px solid;
    }

    .order-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 0;
        border-bottom: 1px solid #eee;
    }

    .order-total:last-child {
        border-bottom: none;
    }

    .order-total h4 {
        margin: 0;
        font-size: 14px;
        font-weight: 500;
        color: #555;
    }

    .order-total span {
        font-size: 14px;
        font-weight: 600;
        color: #111;
    }

    .order-total.total h4,
    .order-total.total span {
        font-size: 16px;
        font-weight: 700;
        color: #000;
    }

    .order-total.total {
        padding-top: 10px;
        border-top: 2px solid #111;
        border-bottom: none;
    }

    @media (max-width: 480px) {
        .order-summary {
            max-width: 100%;
        }
    }

    .cupon-valid {
    border: 2px solid #28a745 !important;
}

.cupon-invalid {
    border: 2px solid #dc3545 !important;
}

.cupon-msg {
    font-size: 12px;
    margin-top: 3px;
    display: block;
}

.cupon-msg.error {
    color: #dc3545;
}

.cupon-msg.success {
    color: #28a745;
}

#btnEnviarCupon:disabled{
    opacity: .7;
    cursor: not-allowed;
}

/* =========================
   TIENDA RESPONSIVE
========================= */

/* MOBILE */
@media (max-width: 576px) {

    .best-sellers-title {
        font-size: 1.5rem;
    }

    .product-name {
        font-size: 1.8rem;
    }

    .product-price {
        font-size: 1.6rem;
    }

    .store-btn {
        width: 100%;
        font-size: 1.5rem;
    }

    .product-info {
        width: 100%;
    }

}

@media(max-width:991px) {

    .product-image {
        width: 190px;

    }

}



.product-page{
    background:#f7f7f7;
}

.top-thread-wrapper{
    width:75vw;
    margin-left:auto;
    overflow:hidden;
}

.top-thread-wrapper img{
    width:100%;
    display:block;
}

.product-row{
    --bs-gutter-x:1rem;
}

.bottle-image{
    width:100%;
    max-height:500px;
    object-fit:contain;
}

.wine-type{
    display:block;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#666;
}

.wine-name{
    font-size:36px;
    font-weight:700;
    margin:8px 0;
}

.wine-varietals{
    font-size:14px;
    text-transform:uppercase;
    color:#888;
}

.wine-description{
    font-size:15px;
    line-height:1.6;
    color:#444;
}

.wine-price{
    font-size:32px;
    font-weight:700;
    margin:20px 0;
}

.purchase-box{
    display:flex;
    gap:12px;
    align-items:center;
    flex-wrap:wrap;
}

.quantity-input{
    width:70px;
    height:42px;
    font-size:14px;
}

.add-cart-btn{
    height:42px;
    padding:0 24px;
    font-size:13px;
    letter-spacing:1px;
}

.feature-item{
    margin-bottom:18px;
}

.feature-item h4{
    font-size:12px;
    font-weight:700;
    margin-bottom:3px;
    letter-spacing:1px;
    color:#333;
}

.feature-item p{
    font-size:14px;
    margin:0;
    color:#555;
}

.awards-container{
    margin-top:24px;
}

.awards-container img{
    max-width:100%;
    height:auto;
}

.wine-notes-section{
    padding-top:40px;
    padding-bottom:50px;
}

.section-title{
    font-size:18px;
    font-weight:700;
    color:#000;
    margin-bottom:16px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.notes-content p,
.pairing-content p{
    font-size:14px;
    line-height:1.5;
    color:#444;
    margin-bottom:10px;
}

.download-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:12px;
    text-decoration:none;
    color:#000;
    font-weight:600;
    font-size:13px;
    transition:.3s;
}

.download-link:hover{
    color:#000;
    opacity:.7;
}

.download-link i{
    font-size:16px;
}

@media (max-width:991px){
    .wine-name{
        font-size:24px;
    }

    .wine-price{
        font-size:22px;
    }

    .bottle-image{
        max-height:300px;
    }

    .purchase-box{
        justify-content:center;
    }

    .section-title{
        font-size:16px;
    }

    .wine-notes-section{
        padding-top:24px;
        padding-bottom:30px;
    }

    .notes-content p,
    .pairing-content p{
        font-size:13px;
    }
}

.mercadopago-banner{
    background:#FFE600;
    border-radius:12px;
    padding:18px 20px;
    text-align:center;
    margin-bottom:20px;
    border:1px solid #F2D600;
}

.mercadopago-banner small{
    display:block;
    color:#333;
    font-size:14px;
    font-weight:600;
    margin-bottom:10px;
}

.mercadopago-banner img{
    height:42px;
    max-width:100%;
}