/* ═══════════════════════════════════════════════════
   Casa de la Makana — Colección Patrimonial
   CSS específico para coleccion.html
   Depende de: assets/css/global.css
   Paleta: Clara · Cálida · Artesanal · Premium
═══════════════════════════════════════════════════ */

/* ── Tokens locales ──────────────────────────────── */
:root {
    /* Acento cálido */
    --col-gold:             #A87532;
    --col-gold-light:       #C49A4E;
    --col-gold-dim:         rgba(168, 117, 50, 0.12);

    /* Fondos claros cálidos */
    --col-bg:               #F7F3EA;
    --col-bg-alt:           #FAF7F0;
    --col-bg-white:         #FFFFFF;
    --col-bg-section:       #F2EBE0;
    --col-bg-card:          #FFFFFF;

    /* Fondos oscuros (solo hero fallback y footer) */
    --col-dark-footer:      #1C1A17;
    --col-dark-hero:        #111;

    /* Texto */
    --col-text:             #1F1A17;
    --col-text-muted:       #5C5148;
    --col-text-faint:       #8C7B6E;

    /* Bordes */
    --col-border:           #E5D8C5;
    --col-border-soft:      rgba(139, 107, 74, 0.14);

    /* Badges */
    --col-badge-avail-bg:   #D4EDDA;
    --col-badge-avail-text: #1E6B3C;
    --col-badge-res-bg:     #FDE8C4;
    --col-badge-res-text:   #7A4A0A;
    --col-badge-sold-bg:    #EBEBEB;
    --col-badge-sold-text:  #666;

    --section-gap: 9rem;
}

/* ── OVERRIDE LIMITADO: solo afecta al contenido de coleccion.html ──
   NO tocar body, h*, p globalmente: rompería el nav y el hero del global.css
   Aplicar fondo y texto SOLO dentro de #main-content y .col-footer-extra   */

/* Fondo base del main (cubre todo el contenido visible bajo el nav) */
#main-content {
    background-color: var(--col-bg);
    color: var(--col-text);
}

/* Scrollbar cálida */
::-webkit-scrollbar-track { background: var(--col-bg-alt); }
::-webkit-scrollbar-thumb { background: var(--col-border); }
::-webkit-scrollbar-thumb:hover { background: var(--col-gold); }

/* Selección cálida */
::selection {
    background-color: rgba(168, 117, 50, 0.18);
    color: var(--col-text);
}

/* ── HERO PRINCIPAL ──────────────────────────────── */
/* El hero conserva overlay oscuro: la imagen necesita contraste */
.col-hero {
    position: relative;
    width: 100%;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--col-dark-hero);
}

.col-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: none;
    transform-origin: center;
}

.col-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20, 14, 8, 0.82) 0%,
        rgba(20, 14, 8, 0.28) 50%,
        rgba(20, 14, 8, 0.04) 100%
    );
}

.col-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 3rem 5rem;
    max-width: 2350px;
    margin: 0 auto;
}

.col-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--col-gold-light);
    margin-bottom: 1.25rem;
}

.col-hero__eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--col-gold-light);
    opacity: 0.75;
}

.col-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 6.5rem);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -0.01em;
    color: #fff;
    margin-bottom: 1.5rem;
    max-width: 720px;
}

.col-hero__subtitle {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.col-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ── BOTONES GLOBALES ────────────────────────────── */
/* Contexto claro: oscuro elegante */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 2.25rem;
    background: var(--col-text);
    color: #F7F3EA;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(31, 26, 23, 0.2);
}

.btn-primary:hover {
    background: #3D2E22;
    transform: translateY(-2px);
    color: #F7F3EA;
    box-shadow: 0 6px 26px rgba(31, 26, 23, 0.28);
}

/* Sobre imagen oscura del hero: variante dorada */
.col-hero__actions .btn-primary {
    background: var(--col-gold);
    color: #fff;
    box-shadow: 0 4px 20px rgba(168, 117, 50, 0.28);
}

.col-hero__actions .btn-primary:hover {
    background: var(--col-gold-light);
    color: #fff;
    box-shadow: 0 6px 28px rgba(168, 117, 50, 0.38);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 2.25rem;
    background: transparent;
    color: var(--col-text);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid var(--col-border);
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.25s ease, color 0.25s ease,
                background 0.25s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn-outline:hover {
    border-color: var(--col-gold);
    color: var(--col-gold);
    background: var(--col-gold-dim);
    transform: translateY(-2px);
}

/* Sobre imagen oscura del hero */
.col-hero__actions .btn-outline {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.45);
}

.col-hero__actions .btn-outline:hover {
    border-color: var(--col-gold-light);
    color: var(--col-gold-light);
    background: rgba(168, 117, 50, 0.12);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.95rem 2.25rem;
    background: var(--col-gold-dim);
    color: var(--col-gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid var(--col-gold);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease,
                transform 0.2s ease, box-shadow 0.25s ease;
    white-space: nowrap;
}

.btn-whatsapp:hover {
    background: var(--col-gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(168, 117, 50, 0.25);
}

/* ── FRANJA DE DISPONIBILIDAD ────────────────────── */
.col-notice {
    background: #F0E8D8;
    border-top: 1px solid var(--col-border);
    border-bottom: 1px solid var(--col-border);
    padding: 2.5rem 3rem;
}

.col-notice__inner {
    max-width: 2350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.col-notice__text {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.col-notice__label {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--col-gold);
    font-weight: 600;
}

.col-notice__msg {
    font-size: 1rem;
    font-weight: 400;
    color: var(--col-text);
    max-width: 620px;
    line-height: 1.65;
}

/* ── SECCIÓN COLECCIÓN ───────────────────────────── */
.col-section {
    padding: var(--section-gap) 0;
    background: var(--col-bg);
}

.col-section--dark {
    background: var(--col-bg-section);
}

.section-header {
    padding: 0 3rem;
    max-width: 2350px;
    margin: 0 auto 4rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.section-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--col-gold);
    font-weight: 600;
    margin-bottom: 0.85rem;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--col-text);
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.section-desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--col-text-muted);
    max-width: 480px;
    line-height: 1.75;
    text-align: right;
}

/* ── FILTROS ─────────────────────────────────────── */
.col-filters {
    padding: 0 3rem;
    max-width: 2350px;
    margin: 0 auto 2.5rem;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    align-items: center;
}

.col-filter-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--col-text-faint);
    margin-right: 0.5rem;
}

.col-filter-btn {
    padding: 0.45rem 1.15rem;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--col-text-muted);
    background: transparent;
    border: 1px solid var(--col-border);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-primary);
}

.col-filter-btn:hover,
.col-filter-btn.active {
    color: var(--col-gold);
    border-color: var(--col-gold);
    background: var(--col-gold-dim);
}

/* ── GRID DE PRODUCTOS ───────────────────────────── */
.col-grid {
    padding: 0 3rem;
    max-width: 2350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

/* ── TARJETA DE PRODUCTO ─────────────────────────── */
.col-card {
    background: var(--col-bg-card);
    border: 1px solid var(--col-border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: zoom-in;
}

.col-card:hover {
    border-color: var(--col-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(168, 117, 50, 0.12);
}

.col-card__media {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #E8DDD0;
}

.col-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.col-card:hover .col-card__img {
    transform: scale(1.04);
}

.col-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.85rem;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.col-card__badge--available {
    background: var(--col-badge-avail-bg);
    color: var(--col-badge-avail-text);
}

.col-card__badge--reserved {
    background: var(--col-badge-res-bg);
    color: var(--col-badge-res-text);
}

.col-card__badge--sold {
    background: var(--col-badge-sold-bg);
    color: var(--col-badge-sold-text);
}

.col-card__cat {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(31, 26, 23, 0.65);
    padding: 0.25rem 0.7rem;
    backdrop-filter: blur(4px);
}

.col-card__body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
    background: var(--col-bg-card);
}

.col-card__code {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--col-text-faint);
    margin-bottom: 0.55rem;
    font-weight: 400;
}

.col-card__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--col-text);
    line-height: 1.3;
    margin-bottom: 0.85rem;
    letter-spacing: 0.01em;
}

.col-card__price {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--col-gold);
    letter-spacing: 0.05em;
    margin-bottom: 1.75rem;
}

.col-card__price span {
    font-size: 0.72rem;
    color: var(--col-text-faint);
    margin-left: 0.4rem;
    font-weight: 300;
}

.col-card__actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: auto;
}

.col-card__btn-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1rem;
    background: var(--col-text);
    color: #F7F3EA;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
    width: 100%;
}

.col-card__btn-main:hover {
    background: #3D2E22;
    color: #F7F3EA;
    box-shadow: 0 4px 16px rgba(31, 26, 23, 0.22);
}

.col-card__btn-main:disabled,
.col-card__btn-main.disabled {
    background: #E8E0D8;
    color: var(--col-text-faint);
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
}

.col-card__btn-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1rem;
    background: transparent;
    color: var(--col-text-muted);
    font-size: 0.67rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--col-border);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    cursor: pointer;
    font-family: var(--font-primary);
    width: 100%;
}

.col-card__btn-sec:hover {
    color: var(--col-gold);
    border-color: var(--col-gold);
    background: var(--col-gold-dim);
}

body.col-preview-open {
    overflow: hidden;
}

.col-product-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.col-product-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.col-product-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(22, 18, 15, 0.68);
    backdrop-filter: blur(6px);
}

.col-product-modal__panel {
    position: relative;
    width: min(920px, 100%);
    max-height: min(86vh, 760px);
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 1fr);
    background: var(--col-bg-card);
    border: 1px solid rgba(196, 151, 92, 0.42);
    box-shadow: 0 28px 90px rgba(20, 15, 12, 0.36);
    overflow: hidden;
    transform: translateY(14px) scale(0.98);
    transition: transform 0.24s ease;
}

.col-product-modal.is-open .col-product-modal__panel {
    transform: translateY(0) scale(1);
}

.col-product-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(31, 26, 23, 0.72);
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.col-product-modal__close:hover,
.col-product-modal__close:focus-visible {
    background: var(--col-text);
    border-color: var(--col-gold);
    outline: none;
}

.col-product-modal__media {
    min-height: 520px;
    background: #E8DDD0;
    overflow: hidden;
}

.col-product-modal__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.col-product-modal__content {
    padding: clamp(2rem, 4vw, 3.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.col-product-modal__eyebrow {
    width: fit-content;
    margin-bottom: 1.15rem;
    padding: 0.32rem 0.75rem;
    background: var(--col-gold-dim);
    color: var(--col-gold);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.col-product-modal__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.4vw, 3.1rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--col-text);
    margin-bottom: 0.7rem;
}

.col-product-modal__code {
    margin-bottom: 1.35rem;
    color: var(--col-text-faint);
    font-size: 0.68rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.col-product-modal__description {
    margin-bottom: 1.75rem;
    color: var(--col-text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

.col-product-modal__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--col-border);
}

.col-product-modal__meta span {
    color: var(--col-text-faint);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.col-product-modal__meta strong {
    color: var(--col-gold);
    font-size: 1.55rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.col-product-modal__actions {
    display: grid;
    gap: 0.75rem;
}

.col-product-modal__primary,
.col-product-modal__secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1rem;
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}

.col-product-modal__primary {
    background: var(--col-text);
    color: #F7F3EA;
    border: 1px solid var(--col-text);
}

.col-product-modal__primary:hover,
.col-product-modal__primary:focus-visible {
    background: #3D2E22;
    color: #F7F3EA;
    outline: none;
}

.col-product-modal__secondary {
    background: transparent;
    color: var(--col-text-muted);
    border: 1px solid var(--col-border);
}

.col-product-modal__secondary:hover,
.col-product-modal__secondary:focus-visible {
    color: var(--col-gold);
    border-color: var(--col-gold);
    background: var(--col-gold-dim);
    outline: none;
}

.col-grid__microcopy {
    padding: 0 3rem;
    max-width: 2350px;
    margin: 2rem auto 0;
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--col-text-faint);
    letter-spacing: 0.05em;
    border-top: 1px solid var(--col-border);
    padding-top: 1.5rem;
}

.col-carousel-hint {
    display: none;
}

/* ── SECCIÓN PIEZAS RECIENTES ────────────────────── */
.col-recientes {
    padding: var(--section-gap) 0;
    background: var(--col-bg-alt);
    border-top: 1px solid var(--col-border);
}

.col-recientes__intro {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--col-text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin-top: 0.75rem;
}

.col-recientes__grid {
    padding: 0 3rem;
    max-width: 2350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.col-reciente-item {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: #D9CFC4;
}

.col-reciente-item:hover .col-reciente-item__img {
    transform: scale(1.06);
}

.col-reciente-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.col-reciente-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 14, 8, 0.72) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.col-reciente-item:hover .col-reciente-item__overlay {
    opacity: 1;
}

.col-reciente-item__info {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.col-reciente-item:hover .col-reciente-item__info {
    opacity: 1;
    transform: translateY(0);
}

.col-reciente-item__cat {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--col-gold-light);
    margin-bottom: 0.3rem;
    display: block;
}

.col-reciente-item__name {
    font-family: var(--font-display);
    font-size: 1rem;
    color: #fff;
    font-weight: 400;
}

/* ── SECCIÓN PIEZAS A PEDIDO ─────────────────────── */
.col-pedido {
    padding: var(--section-gap) 0;
    background: var(--col-bg-section);
    border-top: 1px solid var(--col-border);
}

.col-pedido__inner {
    max-width: 2350px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.col-pedido__visual {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.col-pedido__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% center;
    filter: grayscale(10%) contrast(1.02);
}

.col-pedido__label {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--col-gold-light);
    background: rgba(20, 14, 8, 0.55);
    padding: 0.3rem 0.8rem;
    backdrop-filter: blur(4px);
}

.col-pedido__text .section-eyebrow { margin-bottom: 1rem; }
.col-pedido__text .section-title { margin-bottom: 1.5rem; }

.col-pedido__body {
    font-size: 1rem;
    font-weight: 300;
    color: var(--col-text-muted);
    line-height: 1.85;
    margin-bottom: 2rem;
}

.col-pedido__features {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.col-pedido__feat {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--col-text-muted);
    line-height: 1.6;
}

.col-pedido__feat-dot {
    width: 4px;
    height: 4px;
    background: var(--col-gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.55em;
}

/* ── SECCIÓN EL ARTE DEL IKAT ────────────────────── */
.col-ikat {
    padding: var(--section-gap) 0;
    background: var(--col-bg);
    border-top: 1px solid var(--col-border);
}

.col-ikat__header {
    padding: 0 3rem;
    max-width: 2350px;
    margin: 0 auto 5rem;
    text-align: center;
}

.col-ikat__header .section-eyebrow { display: block; text-align: center; margin-bottom: 1rem; }
.col-ikat__header .section-title { text-align: center; margin: 0 auto 1rem; }

.col-ikat__subtitle {
    font-size: 0.97rem;
    font-weight: 300;
    color: var(--col-text-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

.col-ikat__blocks {
    padding: 0 3rem;
    max-width: 2350px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.col-ikat__block {
    padding: 3.5rem 2.75rem;
    background: var(--col-bg-white);
    border: 1px solid var(--col-border);
    position: relative;
    overflow: hidden;
}

.col-ikat__block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--col-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.col-ikat__block:hover::before {
    opacity: 1;
}

.col-ikat__num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(168, 117, 50, 0.18);
    line-height: 1;
    margin-bottom: 1.5rem;
    display: block;
}

.col-ikat__block-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--col-text);
    font-weight: 400;
    margin-bottom: 1.1rem;
    letter-spacing: 0.02em;
}

.col-ikat__block-text {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--col-text-muted);
    line-height: 1.8;
}

.col-ikat__cta {
    padding: 0 3rem;
    max-width: 2350px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

/* ── SECCIÓN VISITA EL TALLER ────────────────────── */
/* Conserva imagen de fondo con overlay — texto blanco sobre oscuro */
.col-visita {
    position: relative;
    padding: var(--section-gap) 0;
    overflow: hidden;
}

.col-visita__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.42) saturate(0.85);
}

.col-visita__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(20, 12, 6, 0.72) 0%,
        rgba(20, 12, 6, 0.38) 100%
    );
}

.col-visita__content {
    position: relative;
    z-index: 2;
    padding: 0 3rem;
    max-width: 2350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.col-visita__text { }
.col-visita__text .section-eyebrow { margin-bottom: 1rem; color: var(--col-gold-light); }
.col-visita__text .section-title { margin-bottom: 1.5rem; color: #fff; }

.col-visita__body {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.col-visita__info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.col-visita__info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.25rem;
}

.col-visita__info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.col-visita__info-label {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--col-gold-light);
    font-weight: 600;
}

.col-visita__info-value {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.col-visita__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Botones en visita sobre imagen oscura */
.col-visita__actions .btn-primary {
    background: var(--col-gold);
    color: #fff;
    box-shadow: 0 4px 18px rgba(168, 117, 50, 0.28);
}

.col-visita__actions .btn-primary:hover {
    background: var(--col-gold-light);
    color: #fff;
}

.col-visita__actions .btn-outline {
    color: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.4);
    background: transparent;
}

.col-visita__actions .btn-outline:hover {
    border-color: var(--col-gold-light);
    color: var(--col-gold-light);
    background: transparent;
}

/* ── SECCIÓN RESERVAS Y PEDIDOS ──────────────────── */
.col-reservas {
    padding: var(--section-gap) 0;
    background: var(--col-bg-alt);
    border-top: 1px solid var(--col-border);
}

.col-reservas__inner {
    max-width: 2350px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.col-reservas__info { }
.col-reservas__info .section-eyebrow { margin-bottom: 1rem; }
.col-reservas__info .section-title { margin-bottom: 1.5rem; }

.col-reservas__body {
    font-size: 0.97rem;
    font-weight: 300;
    color: var(--col-text-muted);
    line-height: 1.85;
    margin-bottom: 2rem;
}

.col-reservas__wsp {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.35rem 1.5rem;
    background: rgba(168, 117, 50, 0.08);
    border: 1px solid rgba(168, 117, 50, 0.28);
    margin-bottom: 2rem;
}

.col-reservas__wsp-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--col-gold);
}

.col-reservas__wsp-text {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--col-text-muted);
    line-height: 1.55;
}

.col-reservas__wsp-text strong {
    color: var(--col-gold);
    font-weight: 600;
}

/* ── FORMULARIO ──────────────────────────────────── */
.col-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.col-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.col-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.col-form__label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--col-text-muted);
    font-weight: 500;
}

.col-form__input,
.col-form__select,
.col-form__textarea {
    background: var(--col-bg-white);
    border: 1px solid var(--col-border);
    color: var(--col-text);
    font-family: var(--font-primary);
    font-size: 0.92rem;
    font-weight: 300;
    padding: 0.95rem 1.1rem;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    line-height: 1.5;
}

.col-form__input:focus,
.col-form__select:focus,
.col-form__textarea:focus {
    border-color: var(--col-gold);
    box-shadow: 0 0 0 3px rgba(168, 117, 50, 0.1);
}

.col-form__input::placeholder,
.col-form__textarea::placeholder {
    color: var(--col-text-faint);
}

.col-form__select option {
    background: var(--col-bg-white);
    color: var(--col-text);
}

.col-form__textarea {
    resize: vertical;
    min-height: 130px;
}

.col-form__submit {
    align-self: flex-start;
    padding: 1rem 2.75rem;
    background: var(--col-text);
    color: #F7F3EA;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: background 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 3px 16px rgba(31, 26, 23, 0.18);
}

.col-form__submit:hover {
    background: #3D2E22;
    box-shadow: 0 5px 22px rgba(31, 26, 23, 0.28);
}

.col-form__disclaimer {
    font-size: 0.74rem;
    font-weight: 300;
    color: var(--col-text-faint);
    line-height: 1.65;
}

/* ── FOOTER ENRIQUECIDO ──────────────────────────── */
/* Footer se conserva oscuro: cierre visual de la página */
.col-footer-extra {
    background: var(--col-dark-footer);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4rem 3rem 2rem;
}

.col-footer-grid {
    max-width: 2350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
}

.col-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.col-footer-brand-name {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--col-gold-light);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.col-footer-brand-desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: 280px;
}

.col-footer-brand-loc {
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

.col-footer-col-title {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--col-gold-light);
    font-weight: 400;
    margin-bottom: 1.25rem;
    display: block;
}

.col-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.col-footer-links a {
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease;
}

.col-footer-links a:hover {
    color: var(--col-gold-light);
}

.col-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.col-footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.col-footer-contact-label {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 400;
}

.col-footer-contact-value {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}

.col-footer-contact-value a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}

.col-footer-contact-value a:hover {
    color: var(--col-gold-light);
}

.col-footer-bottom {
    max-width: 2350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.col-footer-copy {
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.05em;
}

.col-footer-social {
    display: flex;
    gap: 2rem;
}

.col-footer-social a {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.2s ease;
}

.col-footer-social a:hover {
    color: var(--col-gold-light);
}

/* ── ANIMACIONES REVEAL ──────────────────────────── */
.col-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.col-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.col-reveal-delay-1 { transition-delay: 0.1s; }
.col-reveal-delay-2 { transition-delay: 0.2s; }
.col-reveal-delay-3 { transition-delay: 0.3s; }
.col-reveal-delay-4 { transition-delay: 0.4s; }
.col-reveal-delay-5 { transition-delay: 0.5s; }

/* ── SEPARADOR ORNAMENTAL ────────────────────────── */
.col-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--col-border), transparent);
    margin: 0;
}

/* ── NAV WHATSAPP (solo coleccion.html) ─────────── */
.nav-link--wsp {
    color: var(--col-gold) !important;
    border: 1px solid rgba(168, 117, 50, 0.4);
    border-radius: 999px;
    padding: 0.4rem 1.1rem !important;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-link--wsp:hover {
    background: var(--col-gold-dim);
    color: var(--col-gold) !important;
    border-color: var(--col-gold);
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1280px) {
    .col-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    :root { --section-gap: 6rem; }

    .col-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .col-pedido__inner,
    .col-visita__content,
    .col-reservas__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .col-recientes__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .col-ikat__blocks {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .col-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .section-desc { text-align: left; }
}

@media (max-width: 768px) {
    :root { --section-gap: 4.5rem; }

    .col-product-modal {
        padding: 0.85rem;
        align-items: center;
        place-items: center;
    }

    .col-product-modal__panel {
        width: 100%;
        max-height: min(88vh, 720px);
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        overflow-y: auto;
        background: #fffaf3;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .col-product-modal__close {
        top: 0.85rem;
        right: 0.85rem;
        z-index: 20;
        width: 3rem;
        height: 3rem;
        min-width: 48px;
        min-height: 48px;
        background: rgba(31, 26, 23, 0.88);
        border-color: rgba(255, 250, 242, 0.72);
        color: #fffaf3;
        font-size: 1.05rem;
        touch-action: manipulation;
    }

    .col-product-modal__media {
        min-height: auto;
        height: min(56vh, 430px);
        aspect-ratio: auto;
        background: #eadfce;
    }

    .col-product-modal__img {
        object-fit: cover;
        object-position: center top;
    }

    .col-product-modal__content {
        position: relative;
        z-index: 3;
        padding: 1.45rem 1.35rem 1.35rem;
        background: #fffaf3;
        color: var(--col-text);
        border-top: 1px solid rgba(196, 151, 92, 0.32);
    }

    .col-product-modal__eyebrow {
        margin-bottom: 0.8rem;
        background: rgba(174, 116, 47, 0.13);
        color: #8f5d25;
    }

    .col-product-modal__title {
        margin-bottom: 0.55rem;
        color: var(--col-text);
        font-size: clamp(1.55rem, 9vw, 2.15rem);
        line-height: 1.08;
    }

    .col-product-modal__code {
        margin-bottom: 0.95rem;
        color: #7d7168;
        font-size: 0.7rem;
    }

    .col-product-modal__description {
        margin-bottom: 1.25rem;
        color: #4e453f;
        font-size: 1rem;
        line-height: 1.55;
    }

    .col-product-modal__meta {
        margin-bottom: 1.25rem;
        padding-top: 1rem;
        border-top-color: rgba(196, 151, 92, 0.28);
    }

    .col-product-modal__meta span {
        color: #7d7168;
    }

    .col-product-modal__meta strong {
        color: #a66b2a;
        font-size: clamp(1.65rem, 9vw, 2.4rem);
        line-height: 1;
        text-align: right;
        overflow-wrap: anywhere;
    }

    .col-product-modal__primary,
    .col-product-modal__secondary {
        min-height: 54px;
        padding: 0.95rem 0.9rem;
        font-size: 0.74rem;
        line-height: 1.2;
        text-align: center;
        touch-action: manipulation;
    }

    .col-hero__content,
    .col-notice,
    .col-filters,
    .col-grid,
    .col-grid__microcopy,
    .col-carousel-hint,
    .section-header,
    .col-ikat__header,
    .col-ikat__blocks,
    .col-ikat__cta,
    .col-pedido__inner,
    .col-visita__content,
    .col-reservas__inner {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .col-hero__content { padding-bottom: 3.5rem; }

    .col-hero__content {
        text-align: center;
        align-items: center;
    }

    .col-hero__eyebrow {
        justify-content: center;
    }

    .col-hero__eyebrow::before {
        display: none;
    }

    .col-hero__title,
    .col-hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .col-hero__actions {
        justify-content: center;
    }

    .col-hero__img {
        object-position: 76% center;
        filter: brightness(0.86) saturate(0.95);
    }

    .col-hero__overlay {
        background:
            linear-gradient(
                to top,
                rgba(20, 14, 8, 0.9) 0%,
                rgba(20, 14, 8, 0.56) 45%,
                rgba(20, 14, 8, 0.16) 100%
            ),
            linear-gradient(
                to right,
                rgba(20, 14, 8, 0.48) 0%,
                rgba(20, 14, 8, 0.18) 58%,
                rgba(20, 14, 8, 0.08) 100%
            );
    }

    .col-hero__subtitle {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.82);
    }

    .section-header {
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 1rem;
        margin-bottom: 2.75rem;
    }

    .section-header > div {
        width: 100%;
    }

    .section-title,
    .section-desc,
    .col-recientes__intro,
    .col-pedido__body,
    .col-ikat__subtitle,
    .col-visita__body,
    .col-reservas__body {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .col-hero__subtitle,
    .section-desc,
    .col-recientes__intro,
    .col-pedido__body,
    .col-ikat__subtitle,
    .col-visita__body,
    .col-reservas__body,
    .col-notice__msg {
        text-align: justify;
        text-align-last: left;
        text-justify: inter-word;
        hyphens: none;
        overflow-wrap: normal;
        word-break: normal;
    }

    .section-desc,
    .col-recientes__intro,
    .col-pedido__body,
    .col-visita__body,
    .col-reservas__body {
        max-width: 34rem;
    }

    .col-pedido__text,
    .col-visita__text,
    .col-reservas__info {
        text-align: center;
    }

    .col-pedido__text .section-eyebrow,
    .col-visita__text .section-eyebrow,
    .col-reservas__info .section-eyebrow {
        text-align: center;
    }

    .col-pedido__features {
        max-width: 34rem;
        margin-left: auto;
        margin-right: auto;
    }

    .col-pedido__text .btn-whatsapp,
    .col-visita__actions {
        margin-left: auto;
        margin-right: auto;
    }

    .col-pedido__text .btn-whatsapp {
        justify-content: center;
    }

    .col-carousel-hint {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        max-width: 2350px;
        margin: -1.25rem auto 1rem;
        margin-left: 1.25rem;
        font-size: 0.68rem;
        font-weight: 500;
        letter-spacing: 0.14em;
        line-height: 1.4;
        text-transform: uppercase;
        color: var(--col-text-faint);
    }

    .col-carousel-hint::after {
        content: '→';
        color: var(--col-gold);
        font-size: 0.95rem;
        line-height: 1;
    }

    #coleccion-disponible .col-carousel-hint {
        display: none;
    }

    .col-grid {
        max-width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
        overflow: visible;
        scroll-snap-type: none;
        scroll-padding-left: 0;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .col-grid::-webkit-scrollbar,
    .col-recientes__grid::-webkit-scrollbar {
        display: none;
    }

    .col-grid > .col-card {
        min-width: 0;
        scroll-snap-align: none;
    }

    .col-grid > .col-card:hover {
        transform: none;
    }

    .col-card__media {
        aspect-ratio: 3/4;
    }

    .col-card__body {
        padding: 0.85rem 0.72rem 0.9rem;
    }

    .col-card__badge {
        top: 0.55rem;
        right: 0.55rem;
        padding: 0.24rem 0.48rem;
        font-size: 0.48rem;
        letter-spacing: 0.12em;
    }

    .col-card__cat {
        bottom: 0.55rem;
        left: 0.55rem;
        padding: 0.22rem 0.5rem;
        font-size: 0.48rem;
        letter-spacing: 0.13em;
    }

    .col-card__code {
        margin-bottom: 0.35rem;
        font-size: 0.52rem;
        letter-spacing: 0.18em;
    }

    .col-card__name {
        min-height: 2.5em;
        margin-bottom: 0.45rem;
        font-size: 0.82rem;
        line-height: 1.25;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .col-card__price {
        margin-bottom: 0;
        font-size: 0.88rem;
        line-height: 1.2;
    }

    .col-card__price span {
        display: block;
        margin-left: 0;
        margin-top: 0.18rem;
        font-size: 0.52rem;
        line-height: 1.25;
    }

    .col-card__actions {
        display: none;
    }

    .col-ikat__blocks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.9rem;
    }

    .col-ikat__block {
        padding: 1.65rem 1rem;
    }

    .col-ikat__block:nth-child(3) {
        grid-column: 1 / -1;
    }

    .col-ikat__num {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .col-ikat__block-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .col-ikat__block-text {
        font-size: 0.86rem;
        line-height: 1.65;
    }

    .col-recientes__grid {
        max-width: none;
        margin: 0;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 1.25rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .col-reciente-item {
        flex: 0 0 min(78vw, 340px);
        min-width: min(78vw, 340px);
        scroll-snap-align: start;
    }

    .col-notice__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.25rem;
        gap: 1.5rem;
    }

    .col-notice__label {
        text-align: center;
        align-self: center;
    }

    .col-notice__text,
    .col-notice__msg {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .col-notice__msg {
        max-width: 34rem;
        text-align: center;
        text-align-last: center;
        text-wrap: balance;
    }

    .col-notice .btn-whatsapp {
        align-self: center;
        justify-content: center;
    }

    .col-reservas {
        padding: 4rem 0;
        overflow-x: hidden;
    }

    .col-reservas__inner {
        gap: 1.75rem;
        width: 100%;
        max-width: 100%;
    }

    .col-reservas__info .section-title {
        margin-bottom: 1rem;
    }

    .col-reservas__body {
        margin-bottom: 1.25rem;
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .col-reservas__wsp {
        align-items: flex-start;
        gap: 0.7rem;
        padding: 1rem;
        margin-bottom: 1.25rem;
    }

    .col-reservas__wsp-text {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .col-reservas .btn-whatsapp {
        width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal;
        line-height: 1.35;
    }

    .col-form {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.9rem;
    }

    .col-form__row {
        display: contents;
    }

    .col-form__field,
    .col-form__submit,
    .col-form__disclaimer {
        min-width: 0;
    }

    .col-form > .col-form__field,
    .col-form__textarea,
    .col-form__submit,
    .col-form__disclaimer {
        grid-column: 1 / -1;
    }

    .col-form__input,
    .col-form__select,
    .col-form__textarea {
        min-width: 0;
        padding: 0.85rem 0.9rem;
        font-size: 0.9rem;
    }

    .col-form__textarea {
        min-height: 92px;
    }

    .col-form__submit {
        width: 100%;
        min-height: 52px;
        padding: 0.95rem 1rem;
        white-space: normal;
        line-height: 1.35;
    }

    .col-footer-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding-bottom: 1.25rem;
        margin-bottom: 1.25rem;
        border-bottom-color: rgba(255, 255, 255, 0.08);
    }

    .col-footer-extra {
        padding-top: 2.25rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        padding-bottom: 1.5rem;
    }

    .col-footer-grid > div {
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.035);
    }

    .col-footer-brand {
        align-items: center;
        gap: 0.65rem;
        text-align: center;
    }

    .col-footer-brand-name {
        font-size: 0.98rem;
    }

    .col-footer-brand-desc {
        max-width: 100%;
        font-size: 0.78rem;
        line-height: 1.55;
        text-align: justify;
        text-align-last: left;
        hyphens: none;
    }

    .col-footer-brand-loc {
        font-size: 0.66rem;
        line-height: 1.45;
        text-align: center;
    }

    .col-footer-col-title {
        margin-bottom: 0.8rem;
        text-align: center;
        letter-spacing: 0.22em;
    }

    .col-footer-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
    }

    .col-footer-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 0.65rem 0.55rem;
        border: 1px solid rgba(255, 255, 255, 0.07);
        background: rgba(255, 255, 255, 0.025);
        font-size: 0.75rem;
        line-height: 1.25;
        text-align: center;
    }

    .col-footer-contact {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
    }

    .col-footer-contact-item {
        min-width: 0;
        padding: 0.75rem 0.65rem;
        border: 1px solid rgba(255, 255, 255, 0.07);
        background: rgba(255, 255, 255, 0.025);
        text-align: center;
    }

    .col-footer-contact-label {
        font-size: 0.54rem;
        letter-spacing: 0.16em;
    }

    .col-footer-contact-value {
        font-size: 0.74rem;
        line-height: 1.35;
        overflow-wrap: anywhere;
    }

    .col-footer-bottom {
        flex-direction: column;
        justify-content: center;
        gap: 0.9rem;
        text-align: center;
    }

    .col-footer-copy {
        max-width: 32rem;
        font-size: 0.66rem;
        line-height: 1.5;
    }

    .col-footer-social {
        width: 100%;
        justify-content: center;
        gap: 0.6rem;
        flex-wrap: wrap;
    }

    .col-footer-social a {
        min-height: 40px;
        padding: 0.65rem 0.8rem;
        border: 1px solid rgba(255, 255, 255, 0.07);
        font-size: 0.62rem;
    }

    .btn-primary,
    .btn-outline,
    .btn-whatsapp {
        font-size: 0.75rem;
        padding: 0.9rem 1.75rem;
        min-height: 48px;
    }

    .col-card__btn-main,
    .col-card__btn-sec {
        min-height: 48px;
        font-size: 0.68rem;
    }
}

@media (max-width: 480px) {
    .col-grid {
        gap: 0.65rem;
    }

    .col-recientes__grid {
        gap: 0.9rem;
    }

    .col-grid > .col-card {
        min-width: 0;
    }

    .col-reciente-item {
        flex-basis: 80vw;
        min-width: 80vw;
    }

    .col-reservas {
        padding: 3.25rem 0;
    }

    .col-reservas__inner {
        gap: 1.35rem;
    }

    .col-reservas__wsp {
        padding: 0.9rem;
    }

    .col-footer-extra {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .col-footer-grid > div {
        padding: 0.9rem;
    }

    .col-footer-contact {
        grid-template-columns: 1fr;
    }

    .col-form {
        gap: 0.75rem;
    }

    .col-form__label {
        font-size: 0.62rem;
        letter-spacing: 0.14em;
    }

    .col-form__disclaimer {
        font-size: 0.68rem;
        line-height: 1.5;
    }

    .col-hero__title {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

    .col-hero__actions {
        flex-direction: column;
    }

    .col-hero__actions .btn-primary,
    .col-hero__actions .btn-outline {
        width: 100%;
        justify-content: center;
        min-height: 52px;
    }

    .col-visita__actions {
        flex-direction: column;
    }

    .col-visita__actions .btn-primary,
    .col-visita__actions .btn-outline {
        width: 100%;
        justify-content: center;
        min-height: 52px;
    }

    .col-ikat__block {
        padding: 1.5rem 0.9rem;
    }
}
