:root {
    --Primary: #0F1114;
    --Secondary: #23262B;
    --Black: #0F1114;
    --White: #ffffff;
    --body-text: #3B4048;
    --Text-primary: #0F1114;
    --Text-secondary: #23262B;
    --Text-muted: #3B4048;
    --Line: #3B4048;
    --On-Suface-1: #3B4048;
    --On-Suface-2: #0F1114;
    --Out-line: #3B4048;
    --Bg-light: #ffffff;
    --Bg-dark: #0F1114;
    --Bg-dark-2: #23262B;
    --Placehover: #3B4048;
    --font-main: "Plus Jakarta Sans", sans-serif;
    --font-main2: "Sora", sans-serif;

}

body {
    color: var(--Text-secondary);
}




h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    color: var(--Text-primary);
    font-family: var(--font-main2);
    font-weight: 600;
}

.text-caption-1{
    font-size: 15px;
    line-height: 22px;
}

.font-main {
    font-family: var(--font-main);
}

.main-menu .navigation>li:hover>a {
    color: var(--Primary);
}

.navigation .submenu li:hover>a {
    color: var(--Primary);
}


.main-menu .current-menu>a,
.main-menu .current-menu-item>a {
    color: var(--Primary) !important;
}

.navigation li>a {
    color: var(--White);
}

.navigation li.has-child::after {
    color: var(--White);
}

.main-menu.style-2 .navigation>li>a::before {
    background-color: var(--White);
}

.main-menu.style-2 .current-menu>a {
    color: var(--White) !important;
}

.main-menu .navigation > li:hover::after {
    color: var(--White) !important;
}

.main-menu .navigation>li:hover>a {
    color: var(--White) !important;
}

/* footer-style-2 monochrome overrides */
.footer-style-2 .box-content {
    background-color: #ffffff;
}

.footer-style-2 .list a:hover {
    background-color: #ffffff;
    color: #0F1114;
}

.footer-style-2 .tf-social a:hover {
    background-color: #ffffff;
    color: #0F1114;
}

.footer-style-2 .form-newsletter.style-2 .button-submit:hover {
    color: #ffffff;
}

/* footer-style-2 single column centered */
.footer-center-column {
    text-align: center;
}

.footer-style-2 .info {
    margin: 0 auto;
}

.footer-style-2 .info .meta {
    justify-content: center;
}

.footer-style-2 .info .link:hover {
    color: #ffffff !important;
}

.footer-style-2 .info .link,
.footer-style-2 .info .link *,
.footer-style-2 .info .link:hover,
.footer-style-2 .info .link:hover * {
    color: #ffffff !important;
}

.footer-style-2 .footer-social-center {
    justify-content: center;
    margin-top: 28px;
}

.footer-style-2 .box-content {
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    margin: 48px auto 0;
}

.footer-style-2 .box-content .content {
    max-width: 608px;
    margin: 0 auto;
}

.footer-style-2 .footer-contact-center {
    margin: 48px auto 0;
    max-width: 520px;
    width: 100%;
}

.footer-style-2 .footer-quick-link {
    text-align: center;
}

.footer-style-2 .list {
    justify-content: center;
}

.footer-style-2 .form-newsletter.style-2 .wrap {
    justify-content: center;
}
/* banner acerca de mi */
.banner-acerca .thumb img {
    min-height: 480px;
}
.banner-acerca .content-inner {
    background: rgba(0, 0, 0, 0.15);
}



/* modal acerca de mi - overlay */
.acerca-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 17, 20, 0);
    pointer-events: none;
    opacity: 0;
    transition: background 0.5s ease, opacity 0.5s ease;
}
.acerca-modal-overlay.open {
    background: rgba(15, 17, 20, 0.92);
    pointer-events: auto;
    opacity: 1;
}

/* modal wrap */
.acerca-modal-wrap {
    position: relative;
    width: 90%;
    max-width: 960px;
    max-height: 85vh;
    border-radius: 16px;
    overflow: hidden;
    background: #23262B;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
    transform: translateY(40px) scale(0.96);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.acerca-modal-overlay.open .acerca-modal-wrap {
    transform: translateY(0) scale(1);
}

/* bento layout */
.acerca-modal-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    max-height: 85vh;
}

/* imagen */
.acerca-modal-img {
    position: relative;
    overflow: hidden;
    background: #0F1114;
}
.acerca-modal-img img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 85vh;
    object-fit: cover;
    object-position: center top;
}

/* texto con scroll */
.acerca-modal-text {
    padding: 40px 36px;
    overflow-y: auto;
    max-height: 85vh;
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.75;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.acerca-modal-text::-webkit-scrollbar {
    width: 5px;
}
.acerca-modal-text::-webkit-scrollbar-track {
    background: transparent;
}
.acerca-modal-text::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}
.acerca-modal-text p {
    margin: 0 0 24px 0;
    color: rgba(255, 255, 255, 0.88);
}
.acerca-modal-text p:last-child {
    margin-bottom: 0;
}

/* boton cerrar */




/* ===== banner acerca de mi ===== */
.banner-acerca {
    position: relative;
}
.banner-acerca .thumb img {
    min-height: 480px;
}
.banner-acerca-btn-wrap {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
}
.banner-acerca-btn-wrap .tf-btn {
    background: #ffffff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #000000;
    padding: 16px 40px;
    font-family: "Oswald", sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.4s ease;
}
.banner-acerca-btn-wrap .tf-btn:hover {
    background: #ffffff;
    color: #000000;
}
.banner-acerca-btn-wrap .tf-btn::after {
    background: #ffffff;
}

/* ===== modal overlay ===== */
.acerca-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 17, 20, 0);
    pointer-events: none;
    opacity: 0;
    transition: background 0.4s ease, opacity 0.4s ease;
}
.acerca-modal-overlay.open {
    background: rgba(15, 17, 20, 0.92);
    pointer-events: auto;
    opacity: 1;
}


/* ===== modal container ===== */
.acerca-modal-container {
    position: relative;
    margin-bottom: 60px;
}/* ===== modal wrap ===== */
.acerca-modal-wrap {
    position: relative;
    width: 90%;
    max-width: 960px;
    max-height: 85vh;
    border-radius: 16px;
    overflow: hidden;
    background: #23262B;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}

/* ===== bento layout ===== */
.acerca-modal-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* ===== imagen ===== */
.acerca-modal-img {
    position: relative;
    overflow: hidden;
    background: #0F1114;
}
.acerca-modal-img img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 85vh;
    object-fit: cover;
    object-position: center top;
}

/* ===== texto ===== */
.acerca-modal-text {
    padding: 40px 36px;
    overflow-y: auto;
    max-height: 85vh;
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.75;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.acerca-modal-text::-webkit-scrollbar { width: 5px; }
.acerca-modal-text::-webkit-scrollbar-track { background: transparent; }
.acerca-modal-text::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.2); border-radius: 10px; }
.acerca-modal-text p { margin: 0 0 24px 0; color: rgba(255, 255, 255, 0.88); }
.acerca-modal-text p:last-child { margin-bottom: 0; }

/* ===== boton cerrar - centrado abajo ===== */
.acerca-modal-close {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #0F1114;
    font-size: 22px;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.acerca-modal-close:hover {
    background: #ffffff;
    color: #0F1114;
}

/* ===== mobile ===== */
@media (max-width: 799px) {
    
    .banner-acerca-btn-wrap .tf-btn {
        padding: 14px 32px;
        font-size: 14px;
    }
    .banner-acerca .thumb img {
        min-height: 360px;
        object-position: center 30%;
    }

    /* modal mobile - foto arriba, texto abajo */
    .acerca-modal-overlay {
        align-items: flex-end;
    }
    .acerca-modal-wrap {
        width: 100%;
        max-width: 100%;
        max-height: 92vh;
        border-radius: 16px 16px 0 0;
    }
    .acerca-modal-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    .acerca-modal-img img {
        min-height: 280px;
        max-height: 57vh;
        object-position: center top;
    }
    .acerca-modal-text {
        padding: 28px 24px 80px;
        font-size: 16px;
        line-height: 1.7;
    }
    .acerca-modal-close {
        bottom: 16px;
    }
}

/* ===== very small screens ===== */
@media (max-width: 420px) {
    .acerca-modal-text {
        padding: 24px 20px 80px;
        font-size: 16px;
    }
    .acerca-modal-img img {
        min-height: 240px;
        max-height: 53vh;
    }
}


/* =====================================================================
   Listo para llevar - ecommerce shop (Carla Lozano)
   ===================================================================== */

/* ---------- seccion ---------- */
.cl-shop {
    position: relative;
    background: #0F1114;
    padding: 100px 0 110px;
}

.cl-shop-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: 56px;
}

.cl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.cl-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: #25d366;
}

.cl-title {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 14px 0 0;
}

.cl-sub {
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    max-width: 460px;
    margin: 0;
}

/* ---------- grilla de productos ---------- */
.cl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cl-p-card {
    display: block;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition: transform 0.35s ease;
}

.cl-p-card:hover {
    transform: translateY(-6px);
}

.cl-p-card:focus-visible {
    outline: 2px solid #25d366;
    outline-offset: 3px;
    border-radius: 8px;
}

.cl-p-media {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 8px;
    background: #23262B;
}

.cl-p-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform 0.6s ease;
}

.cl-p-card:hover .cl-p-media img {
    transform: scale(1.07);
}

.cl-p-over {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px 16px 16px;
    background: linear-gradient(to top, rgba(15, 17, 20, 0.92) 0%, rgba(15, 17, 20, 0.35) 55%, rgba(15, 17, 20, 0) 100%);
    pointer-events: none;
}

.cl-p-name {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.cl-p-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.cl-p-price {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
}

.cl-p-more {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.3s ease;
}

.cl-p-more::after {
    content: "\2192";
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.cl-p-card:hover .cl-p-more {
    color: #25d366;
}

.cl-p-card:hover .cl-p-more::after {
    transform: translateX(3px);
}

/* ---------- modal overlay ---------- */
.cl-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 17, 20, 0);
    opacity: 0;
    pointer-events: none;
    transition: background 0.35s ease, opacity 0.35s ease;
}

.cl-modal-overlay.open {
    background: rgba(15, 17, 20, 0.94);
    opacity: 1;
    pointer-events: auto;
}

.cl-modal-box {
    position: relative;
    width: min(92vw, 920px);
    max-height: 88vh;
    display: grid;
    grid-template-columns: 360px 1fr;
    background: #23262B;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.65);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cl-modal-overlay.open .cl-modal-box {
    transform: translateY(0) scale(1);
}

.cl-modal-x {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 6;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 17, 20, 0.65);
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.cl-modal-x:hover {
    background: #ffffff;
    color: #0F1114;
}

/* ---------- media (imagen 3:4 con slide) ---------- */
.cl-modal-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: #0F1114;
}

.cl-slide-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 10px;
    background: #0F1114;
}

.cl-slide-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.cl-slide-frame img.active {
    opacity: 1;
}

.cl-arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(15, 17, 20, 0.55);
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.cl-arr:hover {
    background: #25d366;
    border-color: #25d366;
}

.cl-arr::before {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(135deg);
}

.cl-arr-prev {
    left: 26px;
}

.cl-arr-prev::before {
    transform: rotate(-45deg);
}

.cl-arr-next {
    right: 26px;
}

.cl-arr-next::before {
    transform: rotate(135deg);
}

.cl-slide-count {
    position: absolute;
    right: 26px;
    bottom: 22px;
    z-index: 5;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(15, 17, 20, 0.65);
    color: #ffffff;
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

/* ---------- info (detalle, talla, checkout) ---------- */
.cl-modal-info {
    overflow-y: auto;
    padding: 36px 34px 32px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

.cl-modal-info::-webkit-scrollbar {
    width: 5px;
}

.cl-modal-info::-webkit-scrollbar-track {
    background: transparent;
}

.cl-modal-info::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
}

.cl-m-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #25d366;
}

.cl-m-tag::before {
    content: "";
    width: 22px;
    height: 1px;
    background: #25d366;
}

.cl-m-name {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 14px 0 12px;
}

.cl-m-desc {
    font-family: "Raleway", sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.cl-m-price {
    margin-top: 18px;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #ffffff;
}

.cl-m-sizes {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.cl-m-label {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.cl-m-pills {
    display: flex;
    gap: 8px;
}

.cl-m-pill {
    min-width: 46px;
    height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    background: transparent;
    color: #ffffff;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.cl-m-pill:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.cl-m-pill.sel {
    background: #ffffff;
    border-color: #ffffff;
    color: #0F1114;
}

.cl-m-err {
    min-height: 18px;
    margin: 8px 0 0;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    line-height: 1.4;
    color: #ff6b6b;
}

.cl-m-buy,
.cl-m-send {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 15px 20px;
    border: 0;
    border-radius: 10px;
    background: #25d366;
    color: #0F1114;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.cl-m-buy:hover,
.cl-m-send:hover {
    background: #ffffff;
    color: #0F1114;
}

.cl-m-buy:active,
.cl-m-send:active {
    transform: scale(0.98);
}

.cl-m-note {
    margin: 12px 0 0;
    text-align: center;
    font-family: "Raleway", sans-serif;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.45);
}

/* ---------- checkout ---------- */
.cl-m-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 16px;
    padding: 0;
    border: 0;
    background: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cl-m-back:hover {
    color: #ffffff;
}

.cl-m-checkout-title {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #ffffff;
    margin: 0 0 16px;
}

.cl-m-summary {
    padding: 14px 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.cl-sum-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin: 4px 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.cl-sum-name {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

.cl-sum-total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 700;
}

.cl-sum-total strong {
    color: #25d366;
    font-size: 17px;
}

.cl-field {
    display: block;
    margin-bottom: 14px;
}

.cl-field > span {
    display: block;
    margin-bottom: 6px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.cl-field input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: #0F1114;
    color: #ffffff;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.cl-field input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.cl-field input:focus {
    outline: none;
    border-color: #25d366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.cl-field input.cl-err {
    border-color: #ff6b6b;
}

/* ---------- responsive ---------- */
@media (max-width: 1199.98px) {
    .cl-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 799.98px) {
    .cl-shop {
        padding: 60px 0 70px;
    }

    .cl-shop-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 34px;
    }

    .cl-title {
        font-size: clamp(28px, 9vw, 40px);
    }

    .cl-sub {
        font-size: 14px;
        max-width: 100%;
    }

    .cl-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cl-p-over {
        padding: 12px 12px 12px;
    }

    .cl-p-name {
        font-size: 12px;
    }

    .cl-p-foot {
        margin-top: 6px;
    }

    .cl-p-price {
        font-size: 13px;
    }

    .cl-p-more {
        display: none;
    }

    .cl-modal-overlay {
        align-items: flex-end;
    }

    .cl-modal-box {
        width: 100%;
        max-width: 100%;
        max-height: 92vh;
        border-radius: 18px 18px 0 0;
        grid-template-columns: 1fr;
        grid-template-rows: auto minmax(0, 1fr);
    }

    .cl-modal-media {
        padding: 12px;
    }

    .cl-slide-frame {
        width: min(100%, calc(44vh * 0.75));
        margin: 0 auto;
        border-radius: 8px;
    }

    .cl-arr-prev {
        left: 16px;
    }

    .cl-arr-next {
        right: 16px;
    }

    .cl-slide-count {
        right: 16px;
        bottom: 16px;
    }

    .cl-modal-info {
        padding: 22px 18px 26px;
    }

    .cl-m-name {
        font-size: 19px;
    }

    .cl-m-desc {
        font-size: 14px;
    }

    .cl-m-sizes {
        gap: 10px;
    }
}

@media (max-width: 419.98px) {
    .cl-m-name {
        font-size: 17px;
    }

    .cl-m-pill {
        min-width: 40px;
        height: 38px;
    }

    .cl-sum-row {
        font-size: 13px;
    }
}


/* ---------- fix: texto blanco en inputs checkout (gana a styles.css) ---------- */
.cl-modal-info .cl-field input {
    color: #ffffff;
    caret-color: #ffffff;
    background-color: #0F1114;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.cl-modal-info .cl-field input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.cl-modal-info .cl-field input:focus {
    outline: none;
    border-color: #25d366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
    -webkit-box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.cl-modal-info .cl-field input.cl-err {
    border-color: #ff6b6b;
}

.cl-modal-info .cl-field input:-webkit-autofill,
.cl-modal-info .cl-field input:-webkit-autofill:hover,
.cl-modal-info .cl-field input:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff;
    -webkit-box-shadow: 0 0 0 1000px #0F1114 inset;
    transition: background-color 9999s ease-in-out 0s;
}