/* ============================================================
   Café Escobar – Elementor Widgets Styles
   Landing "Edición Fundadores 2026 – Europa"
   ============================================================ */

/* ── BREATH FONT (self-hosted) ──────────────────────────────
   Drop your Breath font files into:
   assets/fonts/breath-regular.woff2  (and .woff)
   assets/fonts/breath-italic.woff2   (and .woff)
   ─────────────────────────────────────────────────────────── */
@font-face {
    font-family: 'Breath';
    src: url('../fonts/breath-regular.woff2') format('woff2'),
         url('../fonts/breath-regular.woff')  format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Breath';
    src: url('../fonts/breath-italic.woff2') format('woff2'),
         url('../fonts/breath-italic.woff')  format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

:root {
    --cee-navy: #23355b;
    --cee-white: #ffffff;
    --cee-grey: #dfdfdf;
    --cee-black: #000000;
    --cee-font-display: 'Breath', 'Playfair Display', Georgia, serif;
    --cee-font-body: 'Avenir', 'Avenir Next', 'Nunito', 'Century Gothic', Trebuchet MS, sans-serif;
}

/* ── BUTTON PULSE ANIMATION ── */
@keyframes ceePulse {
    0%   { box-shadow: 0 0 0 0 rgba(35,53,91,.55); }
    70%  { box-shadow: 0 0 0 18px rgba(35,53,91,0); }
    100% { box-shadow: 0 0 0 0 rgba(35,53,91,0); }
}
.cee-btn-pulse {
    animation: ceePulse 2s infinite;
    transition: transform .25s, opacity .25s;
}
.cee-btn-pulse:hover {
    transform: scale(1.06);
    opacity: .92;
}

/* ── SCROLL ANIMATIONS ── */
@keyframes ceeFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes ceeFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes ceeSlideLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes ceeSlideRight {
    from { opacity: 0; transform: translateX(60px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes ceeScaleIn {
    from { opacity: 0; transform: scale(.85); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes ceeBlurIn {
    from { opacity: 0; filter: blur(8px); transform: translateY(20px); }
    to   { opacity: 1; filter: blur(0);   transform: translateY(0); }
}

/* Base: hidden until observed */
[data-cee-anim] {
    opacity: 0;
}
/* Triggered states */
[data-cee-anim="fade-up"].cee-visible    { animation: ceeFadeUp .8s cubic-bezier(.22,1,.36,1) forwards; }
[data-cee-anim="fade-in"].cee-visible    { animation: ceeFadeIn .8s ease forwards; }
[data-cee-anim="slide-left"].cee-visible { animation: ceeSlideLeft .8s cubic-bezier(.22,1,.36,1) forwards; }
[data-cee-anim="slide-right"].cee-visible{ animation: ceeSlideRight .8s cubic-bezier(.22,1,.36,1) forwards; }
[data-cee-anim="scale-in"].cee-visible   { animation: ceeScaleIn .7s cubic-bezier(.22,1,.36,1) forwards; }
[data-cee-anim="blur-in"].cee-visible    { animation: ceeBlurIn .9s cubic-bezier(.22,1,.36,1) forwards; }

/* Stagger children: each child gets incremental delay */
[data-cee-stagger].cee-visible > * { opacity: 0; animation: ceeFadeUp .6s cubic-bezier(.22,1,.36,1) forwards; }
[data-cee-stagger].cee-visible > *:nth-child(1)  { animation-delay: .05s; }
[data-cee-stagger].cee-visible > *:nth-child(2)  { animation-delay: .12s; }
[data-cee-stagger].cee-visible > *:nth-child(3)  { animation-delay: .19s; }
[data-cee-stagger].cee-visible > *:nth-child(4)  { animation-delay: .26s; }
[data-cee-stagger].cee-visible > *:nth-child(5)  { animation-delay: .33s; }
[data-cee-stagger].cee-visible > *:nth-child(6)  { animation-delay: .40s; }
[data-cee-stagger].cee-visible > *:nth-child(7)  { animation-delay: .47s; }
[data-cee-stagger].cee-visible > *:nth-child(8)  { animation-delay: .54s; }
[data-cee-stagger].cee-visible > *:nth-child(9)  { animation-delay: .61s; }
[data-cee-stagger].cee-visible > *:nth-child(10) { animation-delay: .68s; }
[data-cee-stagger].cee-visible > *:nth-child(n+11){ animation-delay: .75s; }

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    [data-cee-anim], [data-cee-stagger] > * { animation: none !important; opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* ── HERO ── */
.cee-hero {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    color: var(--cee-white);
}

.cee-hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--cee-black);
    pointer-events: none;
    z-index: 1;
}

.cee-hero__nav {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 50px;
    box-sizing: border-box;
}

.cee-hero__logo {
    height: 70px !important;
    max-height: 70px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain;
    display: block;
}

.cee-hero__nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language toggle */
.cee-hero__lang-toggle {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255,255,255,.3);
    border-radius: 20px;
    padding: 6px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--cee-font-body);
    font-size: 13px;
    letter-spacing: .5px;
    color: var(--cee-white);
    transition: background .3s, border-color .3s;
}
.cee-hero__lang-toggle:hover {
    background: rgba(255,255,255,.22);
    border-color: rgba(255,255,255,.6);
}
.cee-hero__lang-toggle:focus,
.cee-hero__lang-toggle:active,
.cee-hero__lang-toggle:focus-visible {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.5);
    outline: none;
    box-shadow: none;
    color: var(--cee-white);
}
.cee-hero__lang-sep {
    opacity: .3;
    font-size: 11px;
}
.cee-hero__lang-opt {
    font-weight: 700;
    transition: opacity .3s, color .3s;
}
.cee-hero__lang-opt--inactive {
    opacity: .45;
    font-weight: 400;
}

.cee-hero__nav-btn {
    display: inline-block;
    font-family: var(--cee-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--cee-white);
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    letter-spacing: .3px;
    transition: transform .2s, opacity .2s;
}

.cee-hero__nav-btn:hover {
    color: var(--cee-white);
    transform: scale(1.04);
    opacity: .9;
}

.cee-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 40px 20px 80px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cee-hero__title {
    font-family: var(--cee-font-display);
    font-size: 70px;
    line-height: 1.15;
    margin: 0 0 24px;
}

.cee-hero__title-l1 {
    color: var(--cee-grey);
}
.cee-hero__title-l2 {
    color: var(--cee-white);
}

.cee-hero__subtitle {
    font-family: var(--cee-font-body);
    font-size: 40px;
    color: var(--cee-grey);
    max-width: 1000px;
    margin: 0 0 40px;
}

/* Countdown */
.cee-hero__countdown {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
}

.cee-hero__cd-item {
    background: var(--cee-white);
    border-radius: 20px;
    width: 155px;
    height: 155px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cee-hero__cd-num {
    font-family: var(--cee-font-display);
    font-size: 60px;
    color: var(--cee-navy);
    line-height: 1;
}

.cee-hero__cd-label {
    font-family: var(--cee-font-body);
    font-size: 24px;
    color: var(--cee-navy);
}

/* Currency note */
.cee-hero__currency {
    font-family: var(--cee-font-body);
    font-size: 18px;
    color: rgba(255,255,255,.75);
    margin: 0 0 30px;
    letter-spacing: .5px;
    background: rgba(255,255,255,.1);
    padding: 8px 24px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
}

/* CTA */
.cee-hero__cta {
    display: inline-block;
    font-family: var(--cee-font-display);
    font-size: 32px;
    color: var(--cee-white);
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
}

.cee-hero__cta:hover {
    color: var(--cee-white);
}

/* ── VIDEO ── */
.cee-video {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.cee-video__wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.cee-video__thumb {
    width: 100%;
    height: auto;
    display: block;
}

.cee-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-decoration: none;
}

.cee-video__play-icon {
    width: 120px;
    height: auto;
}

.cee-video__play-default {
    font-size: 80px;
    color: var(--cee-white);
    text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

/* ── HISTORY ── */
.cee-history {
    padding: 80px 60px;
}

.cee-history__title {
    font-family: var(--cee-font-display);
    font-size: 70px;
    text-align: center;
    margin: 0 0 60px;
}

.cee-history__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
    gap: 50px;
    align-items: start;
    max-width: 1600px;
    margin: 0 auto;
}

.cee-history__image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.cee-history__text-col {
    font-family: var(--cee-font-body);
    font-size: 28px;
    line-height: 1.55;
}

.cee-history__text-col p {
    margin: 0 0 20px;
}

/* ── PROCESS (Circular Map) ── */
.cee-process {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 80px 40px 100px;
}

.cee-process__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    pointer-events: none;
    z-index: 1;
}

.cee-process__inner {
    position: relative;
    z-index: 2;
}

.cee-process__title {
    font-family: var(--cee-font-display);
    font-size: 70px;
    text-align: center;
    margin: 0 0 60px;
}

.cee-process__circle-wrap {
    position: relative;
    margin: 0 auto;
}

.cee-process__lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cee-process__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    color: var(--cee-white);
    font-family: var(--cee-font-display);
}
.cee-process__center span {
    display: block;
    font-size: 22px;
}
.cee-process__center small {
    font-family: var(--cee-font-body);
    font-size: 14px;
    opacity: .7;
}

.cee-process__node {
    position: absolute;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
    z-index: 3;
    box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.cee-process__node:hover {
    transform: scale(1.18);
    box-shadow: 0 0 24px rgba(255,255,255,.45), 0 4px 16px rgba(0,0,0,.18);
    z-index: 10;
}
.cee-process__node-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.cee-process__node-svg {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cee-process__node-svg svg {
    width: 32px;
    height: 32px;
    color: var(--cee-navy);
}
.cee-process__node-num {
    font-family: var(--cee-font-display);
    font-size: 28px;
    color: var(--cee-white);
    line-height: 1;
}
.cee-process__node-label {
    position: absolute;
    bottom: -28px;
    white-space: nowrap;
    font-family: var(--cee-font-body);
    font-size: 13px;
    color: var(--cee-white);
    text-align: center;
    pointer-events: none;
}

/* Process modal on hover */
.cee-process__modal {
    display: none;
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    min-width: 280px;
}
.cee-process__node:hover .cee-process__modal {
    display: block;
}
.cee-process__modal-inner {
    background: var(--cee-white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    text-align: center;
    color: var(--cee-black);
    font-family: var(--cee-font-body);
    font-size: 15px;
}
.cee-process__modal-inner strong {
    display: block;
    font-family: var(--cee-font-display);
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--cee-navy);
}
.cee-process__modal-img {
    width: 100%;
    max-width: 240px;
    border-radius: 10px;
    margin-bottom: 10px;
}
.cee-process__modal-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 10px;
}
.cee-process__modal-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* ── PRODUCT LINES ── */
.cee-lines {
    padding: 80px 40px;
}

.cee-lines__title {
    font-family: var(--cee-font-display);
    font-size: 70px;
    text-align: center;
    margin: 0 0 20px;
}

.cee-lines__location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--cee-font-body);
    font-size: 18px;
    color: var(--cee-navy);
    margin-bottom: 4px;
}
.cee-lines__location svg {
    color: var(--cee-navy);
    flex-shrink: 0;
}
.cee-lines__location-note {
    text-align: center;
    font-family: var(--cee-font-body);
    font-size: 15px;
    color: #666;
    margin: 0 0 40px;
}

.cee-lines__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.cee-lines__card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--cee-white);
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    transition: transform .3s, box-shadow .3s;
}
.cee-lines__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,.15);
}
.cee-lines__card-accent {
    height: 6px;
}
.cee-lines__card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.cee-lines__card-body {
    padding: 24px;
}
.cee-lines__card-name {
    font-family: var(--cee-font-display);
    font-size: 28px;
    margin: 0 0 8px;
}
.cee-lines__card-desc {
    font-family: var(--cee-font-body);
    font-size: 16px;
    color: #444;
    margin: 0 0 12px;
}
.cee-lines__card-price {
    font-family: var(--cee-font-display);
    font-size: 24px;
    display: block;
    margin-bottom: 16px;
    color: var(--cee-navy);
}
.cee-lines__card-btn {
    display: inline-block;
    color: var(--cee-white);
    font-family: var(--cee-font-display);
    font-size: 18px;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
}
.cee-lines__card-btn:hover {
    color: var(--cee-white);
}

/* ── TESTIMONIALS ── */
.cee-testimonials {
    padding: 80px 40px;
    background-size: cover;
    background-position: center;
}

.cee-testimonials__title {
    font-family: var(--cee-font-display);
    font-size: 70px;
    text-align: center;
    margin: 0 0 60px;
}

.cee-testimonials__slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cee-testimonials__arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--cee-navy);
    background: transparent;
    color: var(--cee-navy);
    font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cee-testimonials__arrow:hover {
    background: rgba(35,53,91,.08);
}

.cee-testimonials__track {
    flex: 1;
    min-width: 0;
}

.cee-testimonials__card {
    text-align: center;
    padding: 40px 20px;
}

.cee-testimonials__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
}

.cee-testimonials__name {
    font-family: var(--cee-font-display);
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

.cee-testimonials__stars {
    font-size: 28px;
    margin-bottom: 12px;
}

.cee-testimonials__text {
    font-family: var(--cee-font-body);
    font-size: 22px;
    margin: 0 0 12px;
}

.cee-testimonials__source {
    font-family: var(--cee-font-body);
    font-size: 14px;
    color: #888;
}

/* ── GOOGLE MAPS ── */
.cee-maps {
    padding: 80px 40px;
}

.cee-maps__title {
    font-family: var(--cee-font-display);
    font-size: 70px;
    text-align: center;
    margin: 0 0 30px;
}

.cee-maps__selector {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.cee-maps__sede-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--cee-font-body);
    font-size: 16px;
    padding: 10px 22px;
    border: 2px solid var(--cee-navy);
    border-radius: 30px;
    background: transparent;
    color: var(--cee-navy);
    cursor: pointer;
    transition: background .3s, color .3s;
}
.cee-maps__sede-btn--active,
.cee-maps__sede-btn:hover {
    background: var(--cee-navy);
    color: var(--cee-white);
}
.cee-maps__sede-btn--active svg,
.cee-maps__sede-btn:hover svg {
    stroke: var(--cee-white);
}

.cee-maps__canvas,
.cee-maps__embed {
    border-radius: 16px;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto 30px;
}
.cee-maps__embed iframe {
    display: block;
}

.cee-maps__cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}
.cee-maps__card {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 24px 28px;
    font-family: var(--cee-font-body);
    font-size: 16px;
    min-width: 260px;
    text-align: center;
}
.cee-maps__card strong {
    display: block;
    font-family: var(--cee-font-display);
    font-size: 20px;
    color: var(--cee-navy);
    margin-bottom: 6px;
}
.cee-maps__card p {
    margin: 8px 0 0;
    font-size: 14px;
    color: #666;
}

/* ── INSTAGRAM ── */
.cee-instagram {
    padding: 80px 40px;
}

.cee-instagram__title {
    font-family: var(--cee-font-display);
    font-size: 56px;
    text-align: center;
    margin: 0 0 30px;
}

.cee-instagram__inner {
    max-width: 1600px;
    margin: 0 auto;
}

.cee-instagram__feed {
    margin-top: 20px;
}

.cee-instagram__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.cee-instagram__icon-link {
    color: var(--cee-black);
}

.cee-instagram__ig-icon {
    width: 48px;
    height: 48px;
}

.cee-instagram__meta {
    text-align: center;
    font-family: var(--cee-font-body);
    font-size: 18px;
}

.cee-instagram__meta strong {
    display: block;
    font-size: 20px;
    margin-bottom: 4px;
}

.cee-instagram__stats {
    color: #888;
}

.cee-instagram__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.cee-instagram__item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .cee-hero__title {
        font-size: 44px;
    }
    .cee-hero__subtitle {
        font-size: 24px;
    }
    .cee-hero__countdown {
        gap: 12px;
    }
    .cee-hero__cd-item {
        width: 110px;
        height: 110px;
    }
    .cee-hero__cd-num {
        font-size: 40px;
    }
    .cee-hero__cd-label {
        font-size: 16px;
    }
    .cee-hero__nav-btn {
        font-size: 13px;
        padding: 8px 20px;
    }
    .cee-hero__lang-toggle {
        font-size: 12px;
        padding: 5px 12px;
    }
    .cee-hero__cta {
        font-size: 24px;
        padding: 16px 40px;
    }
    .cee-history__grid {
        grid-template-columns: 1fr;
    }
    .cee-history__title,
    .cee-process__title,
    .cee-testimonials__title,
    .cee-lines__title,
    .cee-maps__title {
        font-size: 44px;
    }
    .cee-history__text-col {
        font-size: 20px;
    }
    .cee-process__circle-wrap {
        width: 420px !important;
        height: 420px !important;
    }
}

@media (max-width: 768px) {
    .cee-hero__nav {
        padding: 16px 20px;
    }
    .cee-hero__logo {
        height: 40px;
    }
    .cee-hero__title {
        font-size: 32px;
    }
    .cee-hero__subtitle {
        font-size: 18px;
    }
    .cee-hero__countdown {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .cee-hero__cd-item {
        width: 80px;
        height: 80px;
    }
    .cee-hero__cd-num {
        font-size: 28px;
    }
    .cee-hero__cd-label {
        font-size: 12px;
    }
    .cee-hero__cta {
        font-size: 18px;
        padding: 14px 32px;
    }
    .cee-hero__nav-btn {
        font-size: 12px;
        padding: 8px 18px;
    }
    .cee-hero__lang-toggle {
        font-size: 11px;
        padding: 5px 10px;
    }
    .cee-hero__currency {
        font-size: 14px;
        padding: 6px 16px;
    }
    .cee-history {
        padding: 40px 20px;
    }
    .cee-history__title,
    .cee-process__title,
    .cee-testimonials__title,
    .cee-lines__title,
    .cee-maps__title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .cee-process {
        padding: 40px 20px 60px;
    }
    /* Mobile: convert circle to vertical timeline */
    .cee-process__circle-wrap {
        width: 100% !important;
        height: auto !important;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-left: 40px;
        position: relative;
    }
    .cee-process__circle-wrap::before {
        content: '';
        position: absolute;
        left: 22px;
        top: 0;
        bottom: 0;
        width: 3px;
        background: rgba(255,255,255,.25);
        border-radius: 2px;
    }
    .cee-process__lines {
        display: none;
    }
    .cee-process__center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 30px;
        padding: 14px 20px;
        background: rgba(255,255,255,.1);
        border-radius: 12px;
        backdrop-filter: blur(4px);
    }
    .cee-process__node {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: auto !important;
        height: auto !important;
        border-radius: 0 !important;
        background: transparent !important;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 14px;
        padding: 14px 0;
        margin-bottom: 0;
        cursor: default;
    }
    .cee-process__node:hover {
        transform: none;
        box-shadow: none;
    }
    .cee-process__node-num,
    .cee-process__node-icon,
    .cee-process__node-svg {
        width: 44px;
        height: 44px;
        min-width: 44px;
        background: var(--cee-navy);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        position: relative;
        left: -40px;
        margin-right: -26px;
    }
    .cee-process__node-num {
        color: var(--cee-white);
    }
    .cee-process__node-icon {
        padding: 8px;
    }
    .cee-process__node-svg svg {
        width: 28px;
        height: 28px;
        color: var(--cee-white);
    }
    .cee-process__node-label {
        position: relative;
        bottom: auto;
        white-space: normal;
        font-size: 16px;
        text-align: left;
        pointer-events: auto;
    }
    .cee-process__modal {
        display: none;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        min-width: 0;
        width: 100%;
        flex: 0 0 100%;
        order: 3;
        margin-top: 8px;
    }
    .cee-process__node.cee-process__node--open .cee-process__modal {
        display: block;
    }
    .cee-process__modal-inner {
        text-align: left;
    }
    .cee-testimonials {
        padding: 40px 20px;
    }
    .cee-testimonials__slider {
        gap: 12px;
    }
    .cee-testimonials__arrow {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    .cee-lines {
        padding: 40px 20px;
    }
    .cee-lines__grid {
        grid-template-columns: 1fr;
    }
    .cee-maps {
        padding: 40px 20px;
    }
    .cee-instagram {
        padding: 40px 20px;
    }
    .cee-instagram__title {
        font-size: 28px;
    }
    .cee-instagram__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .cee-instagram__item img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .cee-hero__nav-right {
        gap: 10px;
    }
    .cee-hero__countdown {
        gap: 6px;
    }
    .cee-hero__cd-item {
        width: 62px;
        height: 62px;
        border-radius: 14px;
    }
    .cee-hero__cd-num {
        font-size: 22px;
    }
    .cee-hero__cd-label {
        font-size: 10px;
    }
    .cee-instagram__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   PRESALE / ZONA DE COMPRA
   ============================================================ */
.cee-presale {
    padding: 80px 40px;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}
.cee-presale *:focus,
.cee-presale *:active,
.cee-presale *:focus-visible {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.cee-presale__badge {
    display: inline-block;
    color: var(--cee-white);
    font-family: var(--cee-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    padding: 6px 18px;
    border-radius: 30px;
    margin: 30px 0 20px;
    text-transform: uppercase;
}

.cee-presale__title {
    font-family: var(--cee-font-display);
    font-size: 42px;
    margin: 0 0 20px;
    line-height: 1.15;
}

.cee-presale__intro {
    font-family: var(--cee-font-body);
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin: 0 auto 20px;
    max-width: 800px;
    text-align: left;
}
.cee-presale__intro ul {
    padding-left: 20px;
    margin: 12px 0;
}
.cee-presale__intro li {
    margin-bottom: 6px;
}

.cee-presale__delivery {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--cee-font-body);
    font-size: 14px;
    margin-bottom: 40px;
    color: #555;
}

/* ── Collection cards ── */
.cee-presale__collections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 800px;
    margin: 0 auto;
}

.cee-presale__col-card {
    background: var(--cee-white);
    border: 2px solid;
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    transition: transform .3s, box-shadow .3s;
}
.cee-presale__col-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.cee-presale__col-header {
    margin-bottom: 16px;
}
.cee-presale__col-name {
    font-family: var(--cee-font-display);
    font-size: 22px;
    color: var(--cee-navy);
    margin: 0 0 4px;
}
.cee-presale__col-sub {
    font-family: var(--cee-font-body);
    font-size: 13px;
    color: #888;
}

.cee-presale__col-pricing {
    margin-bottom: 20px;
}
.cee-presale__col-price {
    font-family: var(--cee-font-display);
    font-size: 42px;
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}
.cee-presale__col-savings {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    font-family: var(--cee-font-body);
    font-size: 13px;
    padding: 4px 14px;
    border-radius: 20px;
}

.cee-presale__col-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cee-presale__btn-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cee-white);
    font-family: var(--cee-font-display);
    font-size: 17px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform .2s;
}
.cee-presale__btn-buy:hover {
    color: var(--cee-white);
    transform: scale(1.04);
}
.cee-presale__btn-reserve {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--cee-font-display);
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid;
    text-decoration: none;
    background: transparent;
    transition: background .3s, color .3s;
}
.cee-presale__btn-reserve:hover {
    background: var(--cee-navy);
    color: var(--cee-white) !important;
}

/* ── Product cards grid ── */
.cee-presale__products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 50px;
}

.cee-presale__card {
    background: var(--cee-white);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: transform .3s, box-shadow .3s;
}
.cee-presale__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.cee-presale__card-img-wrap {
    background: #f7f5f2;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}
.cee-presale__card-img {
    max-width: 100%;
    max-height: 130px;
    object-fit: contain;
}
.cee-presale__card-stars {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.cee-presale__card-name {
    font-family: var(--cee-font-display);
    font-size: 15px;
    color: var(--cee-navy);
    margin: 0 0 2px;
}
.cee-presale__card-type {
    display: block;
    font-family: var(--cee-font-body);
    font-size: 11px;
    color: #888;
    margin-bottom: 8px;
}
.cee-presale__card-price strong {
    font-family: var(--cee-font-display);
    font-size: 20px;
}

/* ── Tab bar ── */
.cee-presale__tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0 auto 10px;
    max-width: 900px;
    border-bottom: 2px solid #e0dcd7;
}
.cee-presale__tab {
    flex: 1;
    max-width: 240px;
    padding: 16px 12px 14px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: border-color .3s, background .3s;
    font-family: var(--cee-font-display);
    margin-bottom: -2px;
}
.cee-presale__tab:hover,
.cee-presale__tab:focus,
.cee-presale__tab:active {
    background: rgba(0,0,0,.03);
    color: inherit;
    outline: none;
    box-shadow: none;
}
.cee-presale__tab--active,
.cee-presale__tab--active:hover,
.cee-presale__tab--active:focus,
.cee-presale__tab--active:active {
    border-bottom-color: var(--tab-accent, var(--cee-navy));
    background: transparent;
    color: inherit;
    outline: none;
    box-shadow: none;
}
.cee-presale__tab-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #888;
    transition: color .3s;
    line-height: 1.3;
}
.cee-presale__tab--active .cee-presale__tab-label {
    color: var(--tab-accent, var(--cee-navy));
}
.cee-presale__tab-hint {
    display: block;
    font-family: var(--cee-font-body);
    font-size: 12px;
    color: #aaa;
    margin-top: 4px;
}
.cee-presale__tab--active .cee-presale__tab-hint {
    color: #666;
}

/* ── Tab panels ── */
.cee-presale__tab-panel {
    display: none;
    text-align: center;
    padding: 30px 0;
    max-width: 800px;
    margin: 0 auto;
}
.cee-presale__tab-panel--active {
    display: block;
}
.cee-presale__tab-sub {
    font-family: var(--cee-font-body);
    font-size: 15px;
    color: #888;
    margin: 0 0 20px;
}
.cee-presale__tab-gift {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fff8e1, #fff3cd);
    border: 1px solid #f0d87e;
    color: #8b6914;
    font-family: var(--cee-font-body);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}
.cee-presale__tab-gift svg {
    flex-shrink: 0;
}
.cee-presale__tab-price {
    font-family: var(--cee-font-display);
    font-size: 46px;
    line-height: 1;
    margin-bottom: 8px;
}
.cee-presale__tab-savings {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    font-family: var(--cee-font-body);
    font-size: 13px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.cee-presale__tab-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Purchase flow modal ── */
.cee-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.cee-modal--open {
    display: flex;
}
.cee-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(4px);
}
.cee-modal__box {
    position: relative;
    background: #fff;
    border-radius: 20px;
    width: 94%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px 32px 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    animation: ceeModalIn .3s ease;
}
@keyframes ceeModalIn {
    from { opacity:0; transform: translateY(30px) scale(.96); }
    to   { opacity:1; transform: translateY(0) scale(1); }
}
.cee-modal__close {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}
.cee-modal__close:hover,
.cee-modal__close:focus,
.cee-modal__close:active { color: #333; outline: none; box-shadow: none; }

/* Kill Elementor pink on all modal buttons */
.cee-modal button:focus,
.cee-modal button:active,
.cee-modal button:focus-visible,
.cee-modal a:focus,
.cee-modal a:active,
.cee-modal a:focus-visible {
    outline: none;
    box-shadow: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

/* Progress dots */
.cee-modal__progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 28px;
}
.cee-modal__dot {
    text-align: center;
    flex-shrink: 0;
}
.cee-modal__dot span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e0dcd7;
    color: #999;
    font-family: var(--cee-font-display);
    font-size: 14px;
    font-weight: 700;
    margin: 0 auto 4px;
    transition: background .3s, color .3s;
}
.cee-modal__dot small {
    display: block;
    font-family: var(--cee-font-body);
    font-size: 11px;
    color: #aaa;
    transition: color .3s;
}
.cee-modal__dot--active span {
    background: var(--modal-accent, #23355b);
    color: #fff;
}
.cee-modal__dot--active small {
    color: var(--modal-accent, #23355b);
}
.cee-modal__line {
    flex: 1;
    height: 2px;
    background: #e0dcd7;
    margin: 0 6px;
    margin-bottom: 18px;
}

/* Steps */
.cee-modal__step {
    display: none;
}
.cee-modal__step--active {
    display: block;
}
.cee-modal__heading {
    font-family: var(--cee-font-display);
    font-size: 22px;
    color: var(--modal-accent, #23355b);
    margin: 0 0 20px;
    text-align: center;
}

/* Step 1 – product */
.cee-modal__product {
    text-align: center;
    padding: 20px;
    background: #f9f7f4;
    border-radius: 14px;
    margin-bottom: 24px;
}
.cee-modal__product-name {
    font-family: var(--cee-font-display);
    font-size: 20px;
    color: #222;
    margin: 0 0 4px;
}
.cee-modal__product-sub {
    font-family: var(--cee-font-body);
    font-size: 13px;
    color: #888;
    margin: 0 0 16px;
}
.cee-modal__qty {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 2px solid #ddd;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 16px;
}
.cee-modal__qty-btn {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #555;
    transition: background .2s;
}
.cee-modal__qty-btn:hover {
    background: #f0ede8;
    color: #333;
}
.cee-modal__qty-val {
    width: 40px;
    text-align: center;
    font-family: var(--cee-font-display);
    font-size: 18px;
    color: #222;
}
.cee-modal__product-total {
    font-family: var(--cee-font-display);
    font-size: 28px;
    color: var(--modal-accent, #23355b);
    margin: 0;
}

/* Step 2 – cart table */
.cee-modal__cart {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-family: var(--cee-font-body);
    font-size: 14px;
}
.cee-modal__cart th {
    text-align: left;
    padding: 10px 8px;
    border-bottom: 2px solid #e0dcd7;
    color: #888;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.cee-modal__cart td {
    padding: 14px 8px;
    border-bottom: 1px solid #f0ede8;
}
.cee-modal__cart tfoot td {
    border-bottom: none;
    border-top: 2px solid #e0dcd7;
    padding-top: 14px;
}
.cee-modal__cart-name {
    font-weight: 600;
    color: #222;
}
.cee-modal__cart-grand strong {
    font-family: var(--cee-font-display);
    font-size: 18px;
    color: var(--modal-accent, #23355b);
}
/* Cart inline qty controls */
.cee-modal__cart-qty-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}
.cee-modal__cart-qty-btn {
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}
.cee-modal__cart-qty-btn:hover { background: #f0ede8; }
.cee-modal__cart-qty-num {
    min-width: 26px;
    text-align: center;
    font-family: var(--cee-font-display);
    font-size: 14px;
    color: #222;
}

.cee-modal__cart-rm {
    background: none;
    border: none;
    font-size: 20px;
    color: #ccc;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
}
.cee-modal__cart-rm:hover { color: #e53935; }

/* Recommendations */
.cee-modal__recs {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px dashed #e0dcd7;
}
.cee-modal__recs-title {
    font-family: var(--cee-font-body);
    font-size: 13px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 0 12px;
}
.cee-modal__recs-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cee-modal__rec-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #f9f7f4;
    border-radius: 10px;
    transition: background .2s;
}
.cee-modal__rec-card:hover {
    background: #f0ede8;
}
.cee-modal__rec-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cee-modal__rec-name {
    font-family: var(--cee-font-display);
    font-size: 14px;
    color: #333;
}
.cee-modal__rec-price {
    font-family: var(--cee-font-body);
    font-size: 12px;
    color: #888;
}
.cee-modal__rec-add {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--modal-accent, #23355b);
    background: none;
    color: var(--modal-accent, #23355b);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
    line-height: 1;
}
.cee-modal__rec-add:hover {
    background: var(--modal-accent, #23355b);
    color: #fff;
}

/* Step 3 – form */
.cee-modal__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.cee-modal__form-row {
    display: flex;
    gap: 12px;
}
.cee-modal__form-row input {
    flex: 1;
}
.cee-modal__form input {
    font-family: var(--cee-font-body);
    font-size: 14px;
    padding: 12px 16px;
    border: 2px solid #e0dcd7;
    border-radius: 10px;
    background: #fff;
    transition: border-color .2s;
    width: 100%;
    box-sizing: border-box;
}
.cee-modal__form input:focus {
    outline: none;
    border-color: var(--modal-accent, #23355b);
}
.cee-modal__order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-top: 2px solid #e0dcd7;
    margin-bottom: 20px;
    font-family: var(--cee-font-body);
    font-size: 15px;
    color: #555;
}
.cee-modal__order-amount {
    font-family: var(--cee-font-display);
    font-size: 22px;
    color: var(--modal-accent, #23355b);
}

/* Step 4 – payment */
.cee-modal__payment {
    text-align: center;
    padding: 40px 0;
}
.cee-modal__spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e0dcd7;
    border-top-color: var(--modal-accent, #23355b);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: ceeModalSpin .8s linear infinite;
}
@keyframes ceeModalSpin { to { transform: rotate(360deg); } }
.cee-modal__payment p {
    font-family: var(--cee-font-body);
    font-size: 15px;
    color: #888;
}

/* Navigation */
.cee-modal__nav {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.cee-modal__btn-next {
    flex: 1;
    padding: 14px 24px;
    background: var(--modal-accent, #23355b);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--cee-font-display);
    font-size: 16px;
    cursor: pointer;
    transition: transform .2s;
}
.cee-modal__btn-next:hover { transform: scale(1.03); }
.cee-modal__btn-back {
    padding: 14px 24px;
    background: none;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-family: var(--cee-font-display);
    font-size: 15px;
    color: #888;
    cursor: pointer;
    transition: border-color .2s;
}
.cee-modal__btn-back:hover { border-color: #aaa; color: #555; }

/* Modal responsive */
@media (max-width: 560px) {
    .cee-modal__box {
        padding: 28px 20px 24px;
        border-radius: 16px;
    }
    .cee-modal__dot span {
        width: 28px; height: 28px; font-size: 12px;
    }
    .cee-modal__dot small { font-size: 10px; }
    .cee-modal__form-row { flex-direction: column; gap: 12px; }
    .cee-modal__nav { flex-direction: column-reverse; }
    .cee-modal__btn-back, .cee-modal__btn-next { width: 100%; }
}

/* ============================================================
   LOGISTICS / CÓMO FUNCIONA
   ============================================================ */
.cee-logistics {
    padding: 80px 40px;
}

.cee-logistics__title {
    font-family: var(--cee-font-display);
    font-size: 56px;
    text-align: center;
    margin: 0 0 10px;
}

.cee-logistics__subtitle {
    font-family: var(--cee-font-body);
    font-size: 20px;
    color: #666;
    text-align: center;
    margin: 0 0 50px;
}

.cee-logistics__timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 60px;
}

.cee-logistics__line {
    position: absolute;
    left: 27px;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 2px;
    opacity: .2;
}

.cee-logistics__step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
    position: relative;
}

.cee-logistics__step-marker {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: absolute;
    left: -60px;
    color: var(--cee-white);
    font-family: var(--cee-font-display);
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.cee-logistics__step-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.cee-logistics__step-svg {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cee-logistics__step-svg svg {
    width: 26px;
    height: 26px;
    color: var(--cee-white);
    stroke: currentColor;
}

.cee-logistics__step-content h4 {
    font-family: var(--cee-font-display);
    font-size: 22px;
    margin: 0 0 4px;
}
.cee-logistics__step-content p {
    font-family: var(--cee-font-body);
    font-size: 16px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.cee-logistics__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    font-family: var(--cee-font-body);
    font-size: 17px;
    color: #555;
    padding: 16px 28px;
    background: #f9f9f9;
    border-radius: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   CLOSING / CIERRE FINAL
   ============================================================ */
.cee-closing {
    position: relative;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cee-white);
    overflow: hidden;
}

.cee-closing__overlay {
    position: absolute;
    inset: 0;
    background: var(--cee-black);
    pointer-events: none;
    z-index: 1;
}

.cee-closing__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 40px;
    max-width: 1000px;
}

/* Countdown (closing) */
.cee-closing__countdown {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}
.cee-closing__cd-item {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
    border-radius: 18px;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cee-closing__cd-num {
    font-family: var(--cee-font-display);
    font-size: 48px;
    color: var(--cee-white);
    line-height: 1;
}
.cee-closing__cd-label {
    font-family: var(--cee-font-body);
    font-size: 16px;
    color: rgba(255,255,255,.7);
}

.cee-closing__title {
    font-family: var(--cee-font-display);
    font-size: 52px;
    line-height: 1.2;
    margin: 0 0 20px;
}

.cee-closing__subtitle {
    font-family: var(--cee-font-body);
    font-size: 22px;
    color: rgba(255,255,255,.8);
    margin: 0 0 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cee-closing__cta {
    display: inline-block;
    font-family: var(--cee-font-display);
    font-size: 28px;
    color: var(--cee-white);
    padding: 22px 70px;
    border-radius: 50px;
    text-decoration: none;
}
.cee-closing__cta:hover {
    color: var(--cee-white);
}

/* ── RESPONSIVE: New widgets ── */
/* ── RESPONSIVE ≤1024px ── */
@media (max-width: 1024px) {
    .cee-presale__title,
    .cee-logistics__title {
        font-size: 36px;
    }
    .cee-presale__col-price,
    .cee-presale__tab-price {
        font-size: 38px;
    }
    .cee-closing__title {
        font-size: 38px;
    }
    .cee-presale__tabs {
        max-width: 100%;
    }
    .cee-presale__tab {
        padding: 14px 10px 12px;
    }
    .cee-presale__tab-label {
        font-size: 14px;
    }
}

/* ── RESPONSIVE ≤768px ── */
@media (max-width: 768px) {

    /* === PRESALE === */
    .cee-presale {
        padding: 40px 16px;
    }
    .cee-presale__title {
        font-size: 26px;
    }
    .cee-presale__badge {
        font-size: 11px;
        padding: 5px 14px;
    }
    .cee-presale__intro {
        font-size: 14px;
    }
    .cee-presale__delivery {
        font-size: 13px;
        margin-bottom: 24px;
    }
    /* Tabs: 2 per row for up to 4 tabs, 1 per row on very narrow */
    .cee-presale__tabs {
        flex-wrap: wrap;
        gap: 0;
        border-bottom-width: 2px;
    }
    .cee-presale__tab {
        flex: 1 1 48%;
        max-width: 50%;
        padding: 10px 6px 8px;
        border-bottom: 3px solid transparent;
    }
    .cee-presale__tab-label {
        font-size: 12px;
        line-height: 1.2;
    }
    .cee-presale__tab-hint {
        font-size: 10px;
        margin-top: 2px;
    }
    .cee-presale__tab-panel {
        padding: 20px 0;
    }
    .cee-presale__tab-sub {
        font-size: 13px;
        margin-bottom: 12px;
    }
    .cee-presale__tab-price {
        font-size: 36px;
        margin-bottom: 6px;
    }
    .cee-presale__tab-gift {
        font-size: 12px;
        padding: 6px 14px;
    }
    .cee-presale__tab-actions {
        flex-direction: column;
        gap: 10px;
    }
    .cee-presale__btn-buy,
    .cee-presale__btn-reserve {
        width: 100%;
        justify-content: center;
        font-size: 15px;
        padding: 13px 20px;
    }
    .cee-presale__products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .cee-presale__card {
        padding: 12px;
    }
    .cee-presale__card-name {
        font-size: 13px;
    }
    .cee-presale__card-type {
        font-size: 10px;
    }
    .cee-presale__card-price strong {
        font-size: 16px;
    }
    .cee-presale__collections {
        grid-template-columns: 1fr;
    }
    .cee-presale__col-price {
        font-size: 34px;
    }

    /* === LOGISTICS === */
    .cee-logistics {
        padding: 40px 16px;
    }
    .cee-logistics__title {
        font-size: 28px;
    }
    .cee-logistics__subtitle {
        font-size: 15px;
    }
    .cee-logistics__timeline {
        padding-left: 52px;
    }
    .cee-logistics__step-marker {
        width: 40px;
        height: 40px;
        font-size: 16px;
        left: -52px;
    }
    .cee-logistics__step-content h4 {
        font-size: 16px;
    }
    .cee-logistics__step-content p {
        font-size: 13px;
    }
    .cee-logistics__trust {
        font-size: 13px;
    }

    /* === CLOSING === */
    .cee-closing__inner {
        padding: 40px 16px;
    }
    .cee-closing__title {
        font-size: 24px;
        line-height: 1.3;
    }
    .cee-closing__subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }
    .cee-closing__countdown {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-bottom: 28px;
    }
    .cee-closing__cd-item {
        width: 70px;
        height: 70px;
        border-radius: 14px;
    }
    .cee-closing__cd-num {
        font-size: 28px;
    }
    .cee-closing__cd-label {
        font-size: 11px;
    }
    .cee-closing__cta {
        font-size: 18px;
        padding: 14px 32px;
    }

    /* === HISTORY === */
    .cee-history {
        padding: 40px 16px;
    }
    .cee-history__title {
        font-size: 28px;
    }
    .cee-history__text-col {
        font-size: 16px;
    }

    /* === PROCESS === */
    .cee-process {
        padding: 40px 16px 60px;
    }
    .cee-process__title {
        font-size: 28px;
    }
    .cee-process__subtitle {
        font-size: 14px;
    }

    /* === TESTIMONIALS === */
    .cee-testimonials {
        padding: 40px 16px;
    }
    .cee-testimonials__title {
        font-size: 28px;
    }
    .cee-testimonials__text {
        font-size: 16px;
    }

    /* === PRODUCT LINES === */
    .cee-lines {
        padding: 40px 16px;
    }
    .cee-lines__title {
        font-size: 28px;
    }
    .cee-lines__grid {
        grid-template-columns: 1fr;
    }

    /* === MAPS === */
    .cee-maps {
        padding: 40px 16px;
    }
    .cee-maps__title {
        font-size: 28px;
    }

    /* === INSTAGRAM === */
    .cee-instagram {
        padding: 40px 16px;
    }
    .cee-instagram__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .cee-instagram__item img {
        height: 160px;
    }
}

/* ── RESPONSIVE ≤480px ── */
@media (max-width: 480px) {

    /* Presale tabs: 1 per row on very small */
    .cee-presale__tab {
        flex: 1 1 100%;
        max-width: 100%;
        border-bottom: none;
        border-left: 3px solid transparent;
        padding: 10px 14px;
        text-align: left;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .cee-presale__tab--active {
        border-left-color: var(--tab-accent, var(--cee-navy));
        border-bottom-color: transparent;
    }
    .cee-presale__tabs {
        border-bottom: none;
        border-left: 2px solid #e0dcd7;
        flex-direction: column;
        margin-bottom: 0;
    }
    .cee-presale__tab-label {
        font-size: 13px;
    }
    .cee-presale__tab-hint {
        font-size: 11px;
    }
    .cee-presale__tab-price {
        font-size: 30px;
    }
    .cee-presale__products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .cee-presale__card-img-wrap {
        min-height: 100px;
    }

    /* Closing countdown */
    .cee-closing__cd-item {
        width: 58px;
        height: 58px;
        border-radius: 12px;
    }
    .cee-closing__cd-num {
        font-size: 22px;
    }
    .cee-closing__cd-label {
        font-size: 9px;
    }
    .cee-closing__title {
        font-size: 20px;
    }
    .cee-closing__cta {
        font-size: 16px;
        padding: 13px 24px;
    }

    /* Instagram */
    .cee-instagram__grid {
        grid-template-columns: 1fr;
    }
}
