/* ══════════════════════════════════════════
   VUZKO PROFILE CSS — Clean Master Version
   Last updated: 2026-04-25
══════════════════════════════════════════ */

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

:root {
    --bg:           #F5F2EE;
    --surface:      #EDE9E3;
    --white:        #FFFFFF;
    --ink:          #1C1917;
    --muted:        #7C7570;
    --border:       #DDD9D3;
    --green:        #166534;
    --green-soft:   rgba(22,101,52,0.08);
    --amber:        #92400E;
    --amber-soft:   rgba(146,64,14,0.08);
    --amber-border: rgba(146,64,14,0.18);
}

html { background: var(--bg); }
body {
    font-family: 'Outfit', sans-serif;
    color: var(--ink);
    max-width: 680px; margin: 0 auto;
    background: var(--bg);
}

/* ── NAV ── */
nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 22px;
}
.nav-logo-link { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img  { height: 40px; width: auto; object-fit: contain; }
.nav-cta {
    background: var(--accent); color: var(--accent-text, #fff);
    border: none; border-radius: 20px;
    padding: 7px 18px; font-size: 12px; font-weight: 600;
    font-family: 'Outfit', sans-serif; cursor: pointer;
    letter-spacing: 0.01em;
}

/* ── HERO ── */
.hero { height: 380px; position: relative; overflow: hidden; }
.hero-img { width: 100%; height: 100%; object-fit: fill; object-position: center top; }
.hero-img--placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--surface), var(--border));
}
.hero-img--clickable { cursor: zoom-in; }
.hero-gradient {
    position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(to bottom,
        rgba(28,25,23,0.08) 0%,
        rgba(28,25,23,0.18) 50%,
        rgba(28,25,23,0.78) 100%
    );
}
.hero-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 20px 24px 24px; pointer-events: none;
}
.hero-cat {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px; padding: 4px 13px;
    font-size: 11px; color: #fff; font-weight: 600;
    letter-spacing: 0.04em; margin-bottom: 10px;
}
.hero-bottom-row {
    display: flex; align-items: flex-end; gap: 14px;
    margin-top: 10px; pointer-events: all;
}
.hero-logo {
    width: 72px; height: 72px; flex-shrink: 0;
    border-radius: 14px;
    border: 3px solid rgba(255,255,255,0.9);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    background: #fff; cursor: zoom-in;
}
.hero-logo img { width: 100%; height: 100%; object-fit: fill; }
.hero-text { flex: 1; }
.hero-name-pill {
    display: inline-flex; flex-direction: column; gap: 4px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px; padding: 10px 14px;
}
.hero-name {
    font-family: 'Fraunces', serif;
    font-size: 26px; font-weight: 900; color: #fff;
    line-height: 1.05; letter-spacing: -0.02em;
}
.hero-loc-pill {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; color: rgba(255,255,255,0.8);
}

/* ── ADDRESS STRIP ── */
.address-strip {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 20px;
    background: var(--ink);
    color: rgba(255,255,255,0.75);
    font-size: 12px; text-decoration: none;
    flex-wrap: wrap; transition: background 0.15s;
}
.address-strip:hover { background: #2c2c2c; }
.address-strip svg { fill: rgba(255,255,255,0.5); flex-shrink: 0; }
.address-strip-divider { opacity: 0.4; }

/* ── ACTION CARDS ── */
.actions-bar {
    display: flex; flex-direction: row;
    gap: 8px; padding: 12px 16px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
.action-card {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 6px; padding: 12px 6px;
    border-radius: 14px; text-decoration: none;
    text-align: center;
    transition: transform 0.15s, opacity 0.15s;
    overflow: hidden;
}
.action-card:active { transform: scale(0.97); opacity: 0.9; }
.action-card--call       { background: linear-gradient(135deg, #E8341A, #C0280F); }
.action-card--wa         { background: linear-gradient(135deg, #25D366, #1DA851); }
.action-card--sms        { background: linear-gradient(135deg, #0084FF, #0066CC); }
.action-card--directions { background: linear-gradient(135deg, #6366F1, #4F46E5); }
.action-card-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    border-radius: 10px;
    background: rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
}
.action-card-label {
    display: block;
    font-size: 12px; font-weight: 700; color: #fff; line-height: 1.2;
}
.action-card-sub {
    display: block;
    font-size: 9px; color: rgba(255,255,255,0.75); margin-top: 1px;
}
.action-card-arrow { display: none; }

/* ── TAGLINE ── */
.tagline-block {
    padding: 20px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.tagline-es {
    font-family: 'Fraunces', serif;
    font-size: 18px; font-weight: 900;
    color: var(--ink); line-height: 1.4;
    letter-spacing: -0.02em;
}
.tagline-en {
    font-family: 'Fraunces', serif;
    font-size: 15px; font-weight: 400; font-style: italic;
    color: var(--muted); line-height: 1.5; margin-top: 6px;
}
.tagline-es br { display: block; content: ''; margin-top: 6px; }
.tagline-en br { display: block; content: ''; margin-top: 4px; }
.tagline-highlights { margin-top: 14px; }
.tagline-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.tagline-chips--en { margin-top: 6px; }
.tagline-chip {
    display: inline-flex; align-items: center;
    background: var(--white);
    border: 1.5px solid var(--accent-border, rgba(44,44,44,0.15));
    border-radius: 30px; padding: 7px 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px; font-weight: 700; color: var(--ink);
}
.tagline-chip--en {
    font-size: 11px; font-weight: 400; font-style: italic;
    color: var(--muted); border-color: var(--border);
    background: var(--bg);
}

/* ── SECTIONS ── */
.section { padding: 24px 24px 0; }
.eyebrow {
    font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.section-title {
    font-family: 'Fraunces', serif;
    font-size: 24px; font-weight: 900; color: var(--ink);
    letter-spacing: -0.02em; line-height: 1.15;
}
.section-body {
    font-size: 14px; color: var(--muted); line-height: 1.7;
    margin-top: 10px;
}
.divider { height: 1px; background: var(--border); margin: 24px 24px 0; }

/* ── ABOUT US ── */
.about-full {
    background: var(--white);
    padding: 24px !important; margin: 0 !important;
}

/* ── OFERTA ── */
.oferta-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 4px solid var(--accent, #2C2C2C);
    border-radius: 18px; overflow: hidden;
    margin-top: 14px; position: relative;
    padding: 24px 20px;
}
.oferta-card--urgent { border-top-color: #EF4444 !important; }
.oferta-card--soon   { border-top-color: #F59E0B !important; }
.oferta-card[data-type="free_item"]  { border-top-color: #7C3AED; }
.oferta-card[data-type="percent"]    { border-top-color: #EA580C; }
.oferta-card[data-type="fixed"]      { border-top-color: #2563EB; }
.oferta-card[data-type="bundle"]     { border-top-color: #059669; }
.oferta-card[data-type="event"]      { border-top-color: #DB2777; }
.oferta-bg-emoji {
    position: absolute; right: -10px; top: -10px;
    font-size: 80px; opacity: 0.06;
    transform: rotate(15deg); pointer-events: none; line-height: 1;
}
.oferta-content { position: relative; z-index: 1; }
.oferta-top-row {
    display: flex; align-items: center;
    justify-content: space-between; margin-bottom: 12px;
}
.oferta-badge {
    display: inline-block;
    background: var(--accent-soft, rgba(44,44,44,0.07));
    border: 1px solid var(--accent-border, rgba(44,44,44,0.15));
    border-radius: 20px; padding: 4px 12px;
    font-size: 11px; font-weight: 700;
    color: var(--accent, #2C2C2C);
    letter-spacing: 0.06em; text-transform: uppercase;
}
.oferta-card[data-type="free_item"] .oferta-badge { background: rgba(124,58,237,0.08); border-color: rgba(124,58,237,0.2); color: #7C3AED; }
.oferta-card[data-type="percent"]   .oferta-badge { background: rgba(234,88,12,0.08);  border-color: rgba(234,88,12,0.2);  color: #EA580C; }
.oferta-card[data-type="fixed"]     .oferta-badge { background: rgba(37,99,235,0.08);  border-color: rgba(37,99,235,0.2);  color: #2563EB; }
.oferta-card[data-type="bundle"]    .oferta-badge { background: rgba(5,150,105,0.08);  border-color: rgba(5,150,105,0.2);  color: #059669; }
.oferta-card[data-type="event"]     .oferta-badge { background: rgba(219,39,119,0.08); border-color: rgba(219,39,119,0.2); color: #DB2777; }
.oferta-urgency {
    font-size: 12px; font-weight: 700; color: #EF4444;
    animation: pulse-urgency 1.5s ease-in-out infinite;
}
@keyframes pulse-urgency { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
.oferta-emoji-main { font-size: 36px; margin-bottom: 10px; display: block; line-height: 1; }
.oferta-title {
    font-family: 'Fraunces', serif;
    font-size: 22px; font-weight: 900; color: var(--ink);
    line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 8px;
}
.oferta-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 10px; }
.oferta-valid { font-size: 11px; color: var(--muted); margin-top: 8px; }

/* ══════════════════════════════════════════
   PULSO VUZKO
══════════════════════════════════════════ */
.pulso-section {
    background: var(--ink);
    padding: 32px 24px 0;
    position: relative; overflow: hidden;
}
.pulso-section::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04), transparent 70%);
    pointer-events: none;
}
.pulso-eyebrow {
    font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 8px;
}
.pulso-title {
    font-family: 'Fraunces', serif; font-size: 22px; font-weight: 900;
    color: #fff; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 20px;
}
.pulso-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px; overflow: hidden; margin-bottom: 24px;
}
.pulso-score-row {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pulso-heart-wrap {
    display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0;
}
.pulso-heart {
    width: 32px; height: 32px; fill: #EF4444;
    filter: drop-shadow(0 0 8px rgba(239,68,68,0.5));
    animation: heartbeat 2s ease-in-out infinite;
}
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    15%       { transform: scale(1.15); }
    30%       { transform: scale(1); }
    45%       { transform: scale(1.08); }
    60%       { transform: scale(1); }
}
.pulso-score-num {
    font-family: 'Fraunces', serif;
    font-size: 48px; font-weight: 900; color: #fff;
    line-height: 1; letter-spacing: -0.04em;
}
.pulso-score-num span { font-size: 20px; color: rgba(255,255,255,0.5); vertical-align: super; font-weight: 700; }
.pulso-score-meta { flex: 1; }
.pulso-label-es { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 700; color: #fff; line-height: 1.2; }
.pulso-label-en { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }
.pulso-vecinos {
    display: inline-flex; align-items: center; gap: 5px;
    margin-top: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px; padding: 4px 10px;
    font-size: 11px; color: rgba(255,255,255,0.6);
}
.pulso-rows { padding: 4px 0; }
.pulso-row {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pulso-row:last-child { border-bottom: none; }
.pulso-row-icon {
    width: 32px; height: 32px; flex-shrink: 0;
    border-radius: 10px; background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
}
.pulso-row-body { flex: 1; }
.pulso-row-label { font-size: 12px; font-weight: 600; color: #fff; margin-bottom: 5px; }
.pulso-row-label span { color: rgba(255,255,255,0.4); font-weight: 400; }
.pulso-row-bar { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.pulso-row-fill {
    height: 100%;
    background: linear-gradient(90deg, #EF4444, #F87171);
    border-radius: 2px; transition: width 1s ease;
}
.pulso-row-pct { font-size: 14px; font-weight: 700; color: #EF4444; width: 40px; text-align: right; flex-shrink: 0; }
.pulso-cta {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #EF4444, #F97316);
    text-decoration: none; transition: opacity 0.15s;
}
.pulso-cta:active { opacity: 0.85; }
.pulso-cta svg { color: #fff; flex-shrink: 0; }
.pulso-cta-es { display: block; font-size: 14px; font-weight: 700; color: #fff; }
.pulso-cta-en { display: block; font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 1px; }
.pulso-card--empty {
    text-align: center; padding: 0;
    display: flex; flex-direction: column; align-items: center;
}
.pulso-card--empty .pulso-empty-heart { padding-top: 28px; }
.pulso-empty-heart svg { width: 48px; height: 48px; fill: rgba(239,68,68,0.3); margin-bottom: 12px; }
.pulso-empty-title { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.pulso-empty-sub { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 20px; padding: 0 20px; }
.pulso-cta--empty { border-radius: 0 0 18px 18px; justify-content: center; width: 100%; margin-top: 20px; display: flex; }

/* ══════════════════════════════════════════
   CAPABILITIES
══════════════════════════════════════════ */
.caps-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 16px; overflow: hidden; margin-top: 14px;
}
.caps-header {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 16px 12px; border-bottom: 1px solid var(--border);
}
.caps-header-icon {
    width: 34px; height: 34px; flex-shrink: 0; border-radius: 10px;
    background: var(--accent-soft, rgba(44,44,44,0.07));
    border: 1px solid var(--accent-border, rgba(44,44,44,0.15));
    display: flex; align-items: center; justify-content: center;
    color: var(--accent, #2C2C2C);
}
.caps-header-es { font-size: 13px; font-weight: 700; color: var(--ink); }
.caps-header-en { font-size: 10px; color: var(--muted); margin-top: 1px; }
.cap-row {
    display: flex; align-items: center; gap: 12px;
    padding: 8px 16px; border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}
.cap-row:last-child { border-bottom: none; }
.cap-row:hover { background: var(--bg); }
.cap-row-icon { font-size: 16px; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cap-row-label { flex: 1; }
.cap-label-es { font-size: 13px; font-weight: 600; color: var(--ink); }
.cap-label-en { font-size: 11px; color: var(--muted); }
.cap-row-check { color: var(--accent, #2C2C2C); flex-shrink: 0; opacity: 0.8; }
.caps-expand {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 10px 16px; background: transparent; border: none;
    border-top: 1px solid var(--border);
    font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 600;
    color: var(--accent, #2C2C2C); cursor: pointer; transition: background 0.15s;
}
.caps-expand:hover { background: var(--accent-soft, rgba(44,44,44,0.07)); }
.caps-expand svg { transition: transform 0.2s; flex-shrink: 0; }

/* ── SOCIAL ── */
.social-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.social-row {
    display: flex; align-items: center; gap: 14px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; padding: 13px 16px;
    text-decoration: none; color: var(--ink); transition: border-color 0.15s;
}
.social-row:hover { border-color: var(--accent, #2C2C2C); }
.social-icon-wrap {
    width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px;
    background: var(--accent-soft, rgba(44,44,44,0.07));
    border: 1px solid var(--accent-border, rgba(44,44,44,0.15));
    display: flex; align-items: center; justify-content: center;
}
.social-icon-svg { width: 20px; height: 20px; fill: var(--accent, #2C2C2C); flex-shrink: 0; }
.social-platform { font-size: 13px; font-weight: 600; color: var(--ink); }
.social-handle { font-size: 11px; color: var(--muted); margin-top: 2px; }
.social-arrow { margin-left: auto; font-size: 14px; color: var(--muted); }

/* ── GALLERY ── */
.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 6px; margin-top: 14px;
}
.gallery-grid--flyers { grid-template-columns: repeat(2, 1fr); gap: 10px; }
.gallery-item {
    display: block; aspect-ratio: 1;
    border-radius: 10px; overflow: hidden;
    background: var(--surface); cursor: pointer;
}
.gallery-item--flyer { aspect-ratio: 3/4; }
.gallery-item img { width: 100%; height: 100%; object-fit: fill; transition: transform 0.2s; }
.gallery-item:hover img { transform: scale(1.04); }
.lightbox {
    display: none; position: fixed; inset: 0; z-index: 999;
    align-items: center; justify-content: center; padding: 24px;
}
.lightbox.active { display: flex; }
.lightbox-backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.92); cursor: pointer; z-index: 0;
}
.lightbox-img {
    position: relative; z-index: 2;
    max-width: 100%; max-height: 85vh;
    object-fit: contain; border-radius: 8px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.6);
    cursor: default; user-select: none;
}
.lightbox-close {
    position: absolute; top: 16px; right: 16px; z-index: 3;
    background: rgba(255,255,255,0.15); border: none; border-radius: 50%;
    width: 40px; height: 40px; color: #fff; font-size: 16px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(8px); transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-nav {
    position: absolute; z-index: 3; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.15); border: none; border-radius: 50%;
    width: 48px; height: 48px; color: #fff; font-size: 28px; line-height: 1;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(8px); transition: background 0.2s; user-select: none;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    z-index: 3; background: rgba(0,0,0,0.5); color: rgba(255,255,255,0.8);
    font-size: 12px; font-weight: 600; padding: 4px 12px;
    border-radius: 20px; backdrop-filter: blur(8px); letter-spacing: 0.06em;
}
.lightbox-single {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: rgba(0,0,0,0.92); align-items: center;
    justify-content: center; padding: 24px; cursor: pointer;
}
.lightbox-single.active { display: flex; }
.lightbox-single .lightbox-img {
    max-width: min(500px, 90vw); max-height: 80vh;
    width: auto; height: auto; object-fit: contain; border-radius: 12px;
}

/* ── INFO FOOTER ── */
.info-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 14px; overflow: hidden; margin-top: 14px;
}
.info-card--multi, .info-card--contact { margin-top: 10px; }
.info-card-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--muted); padding: 10px 16px 0;
}
.info-row-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 16px; border-bottom: 1px solid var(--border);
}
.info-row-item:last-child { border-bottom: none; }
.info-row-icon { font-size: 18px; width: 24px; text-align: center; flex-shrink: 0; margin-top: 1px; }
.info-row-label {
    font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 3px;
}
.info-row-value { font-size: 14px; font-weight: 500; color: var(--ink); }
.info-row-link { text-decoration: none; color: var(--accent, #2C2C2C); }
.info-row-link:hover { text-decoration: underline; }
.info-row-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.info-map-link {
    display: inline-block; margin-top: 6px;
    font-size: 12px; font-weight: 600;
    color: var(--accent, #2C2C2C); text-decoration: none;
}

/* ── SHARE BLOCK ── */
.share-block {
    padding: 28px 24px;
    text-align: center;
    background: var(--white);
    border-top: 1px solid var(--border);
}
.share-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--accent, #2C2C2C); color: #fff;
    border: none; border-radius: 50px; padding: 14px 28px;
    font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600;
    cursor: pointer; letter-spacing: 0.01em;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: transform 0.15s, opacity 0.15s;
    width: 100%; justify-content: center; max-width: 360px;
}
.share-btn svg { width: 18px; height: 18px; stroke: #fff; flex-shrink: 0; }
.share-btn:active { transform: scale(0.97); opacity: 0.9; }
.share-btn-text { display: flex; flex-direction: column; align-items: flex-start; gap: 1px; }
.share-btn-es { font-size: 14px; font-weight: 700; line-height: 1.2; }
.share-btn-en { font-size: 10px; opacity: 0.7; font-weight: 400; line-height: 1.2; }
.share-hint { font-size: 13px; color: var(--muted); margin-top: 8px; }
.share-hint-en { display: block; font-size: 11px; color: var(--muted); opacity: 0.75; margin-top: 2px; }

/* ── APP CTA ── */
.app-cta {
    margin-top: 0;
    background: var(--accent, #2C2C2C);
    padding: 48px 28px; text-align: center;
    position: relative; overflow: hidden;
}
.app-cta::before {
    content: ''; position: absolute; top: -100px; left: -80px;
    width: 280px; height: 280px; border-radius: 50%;
    background: rgba(255,255,255,0.04); pointer-events: none;
}
.app-cta::after {
    content: ''; position: absolute; bottom: -80px; right: -60px;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(0,0,0,0.1); pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }
.cta-eyebrow {
    font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
    color: rgba(255,255,255,0.45); text-transform: uppercase; margin-bottom: 12px;
}
.cta-headline {
    font-family: 'Fraunces', serif; font-size: 30px; font-weight: 900;
    color: #fff; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 6px;
}
.cta-headline-en {
    font-family: 'Fraunces', serif; font-size: 18px; font-weight: 700;
    font-style: italic; color: rgba(255,255,255,0.5);
    line-height: 1.3; margin-bottom: 16px; letter-spacing: -0.01em;
}
.cta-body { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 4px; }
.cta-body-en { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.5; margin-bottom: 28px; }
.store-btns {
    display: flex; flex-direction: row;
    gap: 10px; justify-content: center; align-items: center;
}
.sbtn {
    background: var(--white); color: var(--ink);
    border: none; border-radius: 12px;
    padding: 10px 14px; flex: 1; max-width: 180px;
    display: flex; align-items: center; gap: 8px;
    cursor: pointer; font-family: 'Outfit', sans-serif;
    text-decoration: none; box-shadow: none; transition: transform 0.15s;
}
.sbtn:active { transform: scale(0.97); }
.sbtn-icon { font-size: 20px; }
.sbtn-sm { font-size: 9px; color: var(--muted); display: block; text-align: left; }
.sbtn-lg { font-size: 13px; font-weight: 700; display: block; text-align: left; }
.store-badge { height: 34px; width: auto; }

/* ── FOOTER ── */
footer {
    background: var(--ink); padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.ft-logo-link { display: flex; align-items: center; text-decoration: none; }
.ft-logo-img { height: 32px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.8; }
.ft-copy { font-size: 11px; color: rgba(255,255,255,0.3); }

/* ── DESKTOP RESPONSIVE ── */
@media (min-width: 680px) {
    body { border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
    .hero { height: 420px; }
}

/* ── MOBILE HERO NAME FIX ── */
@media (max-width: 420px) {
    .hero-name { font-size: 20px; }
    .hero-name-pill { padding: 7px 11px; }
}

/* ── STORE BADGES FILL FIX ── */
.sbtn {
    justify-content: center !important;
    max-width: 200px !important;
}
.store-badge {
    height: 38px !important;
    width: 160px !important;
}

/* ── MOBILE HERO HEIGHT FIX ── */
@media (max-width: 480px) {
    .hero { height: 260px !important; }
    .hero-name { font-size: 22px !important; }
}

/* ── STORE BADGES COMPACT ── */
.sbtn {
    max-width: 160px !important;
    padding: 8px 12px !important;
}
.store-badge {
    height: 32px !important;
    width: 130px !important;
}

/* ── OFFICIAL STORE BADGES ── */
.store-btns {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
}
.store-link {
    display: inline-flex;
    align-items: center; justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.15s;
    background: #000;
}
.store-link:hover { transform: scale(1.03); }
.store-badge-img {
    height: 44px !important;
    width: auto !important;
    display: block !important;
}
.store-badge-img--gplay {
    height: 52px !important;
    transform: scale(1.08) !important;
    transform-origin: center !important;
}

/* ── GOOGLE PLAY BADGE FIX ── */
.store-link--gplay {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
}
.store-badge-img--gplay {
    height: 64px !important;
    transform: scale(1.0) !important;
    margin: -8px !important;
}

/* ── STORE LINK NO BORDER ── */
.store-link, .store-link--gplay { border: none !important; }

/* ── HERO IMG FILL, LOGO STAYS COVER ── */
.hero-img { object-fit: fill !important; }
.hero-logo img { object-fit: cover !important; }

/* ══════════════════════════════════════════
   DISCOVERY TEMPLATE — Gallery
══════════════════════════════════════════ */
.gallery-grid--discovery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px; margin-top: 14px;
}
.gallery-grid--discovery .gallery-item:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
}
.gallery-grid--discovery .gallery-item {
    aspect-ratio: 1;
}

/* ── DISCOVERY GALLERY FIX ── */
.gallery-grid--discovery {
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
}
.gallery-grid--discovery .gallery-item:first-child {
    grid-column: 1 / -1 !important;
    aspect-ratio: 4/3 !important;
}
.gallery-grid--discovery .gallery-item {
    aspect-ratio: 4/3 !important;
}

/* ── DISCOVERY GALLERY COMPACT ── */
.gallery-grid--discovery {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 4px !important;
}
.gallery-grid--discovery .gallery-item:first-child {
    grid-column: 1 / 1 !important;
    aspect-ratio: 1 !important;
}
.gallery-grid--discovery .gallery-item {
    aspect-ratio: 1 !important;
    border-radius: 6px !important;
}

/* ── OFERTA BIG VALUE ── */
.oferta-big-value {
    display: flex; align-items: baseline; gap: 6px;
    margin-bottom: 10px;
}
.oferta-big-num {
    font-family: 'Fraunces', serif;
    font-size: 64px; font-weight: 900;
    color: var(--ink); line-height: 1;
    letter-spacing: -0.04em;
}
.oferta-big-label {
    font-family: 'Fraunces', serif;
    font-size: 24px; font-weight: 900;
    color: var(--muted); letter-spacing: 0.05em;
}

/* ── OFERTA WITH IMAGE ── */
.oferta-inner-wrap {
    display: flex; gap: 14px; align-items: flex-start;
}
.oferta-content { flex: 1; }
.oferta-image-wrap {
    width: 160px; flex-shrink: 0;
    border-radius: 10px; overflow: hidden;
    cursor: zoom-in; position: relative;
    border: 1px solid var(--border);
    background: var(--ink);
}
.oferta-image-wrap img {
    width: 100%; height: 100%;
    object-fit: contain; display: block;
    min-height: 160px;
}
.oferta-image-hint {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,0.5);
    color: #fff; font-size: 10px; font-weight: 600;
    text-align: center; padding: 4px;
}
.oferta-share-btn {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 10px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 20px; padding: 6px 12px;
    font-size: 11px; font-weight: 600;
    color: var(--muted); cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.15s;
}
.oferta-share-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}



/* ── OFERTA MOBILE STACK ── */
@media (max-width: 480px) {
    .oferta-inner-wrap {
        flex-direction: column !important;
    }
    .oferta-image-wrap {
        width: 100% !important;
        min-height: 200px !important;
        border-radius: 8px !important;
    }
    .oferta-image-wrap img {
        min-height: 200px !important;
        max-height: 280px !important;
        object-fit: contain !important;
    }
    .oferta-big-num { font-size: 48px !important; }
}

/* ══════════════════════════════════════════
   CUSTOM BLOCKS
══════════════════════════════════════════ */
.custom-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 14px;
    padding: 16px;
}
.custom-block-title {
    font-family: 'Fraunces', serif;
    font-size: 16px; font-weight: 700;
    color: var(--ink); margin-bottom: 12px;
}
.custom-block-title-en {
    font-size: 13px; font-weight: 400;
    font-style: italic; color: var(--muted);
}

/* ── IMAGE BLOCK ── */
.custom-block--image { padding: 16px; }
.custom-block-image-wrap {
    position: relative; border-radius: 10px;
    overflow: hidden; cursor: zoom-in;
    background: var(--bg);
}
.custom-block-img {
    width: 100%; display: block;
    object-fit: contain;
    max-height: 400px;
}
.custom-block-image-hint {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,0.45);
    color: #fff; font-size: 11px;
    text-align: center; padding: 6px;
}
.custom-block-link-btn {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 12px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    border-radius: 20px; padding: 8px 16px;
    font-size: 13px; font-weight: 600;
    color: var(--accent); text-decoration: none;
    transition: background 0.15s;
}
.custom-block-link-btn:hover { background: var(--accent); color: #fff; }

/* ── LINK BLOCK ── */
.custom-block--link {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none; padding: 14px 16px;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.custom-block--link:hover {
    border-color: var(--accent);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.custom-link-img-wrap {
    width: 72px; height: 72px; flex-shrink: 0;
    border-radius: 10px; overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--border);
}
.custom-link-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
}
.custom-link-icon {
    width: 72px; height: 72px; flex-shrink: 0;
    border-radius: 10px; background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    display: flex; align-items: center;
    justify-content: center; font-size: 28px;
}
.custom-link-body { flex: 1; }
.custom-link-title {
    font-size: 14px; font-weight: 700;
    color: var(--ink); line-height: 1.3;
}
.custom-link-title-en {
    font-size: 11px; color: var(--muted);
    font-style: italic; margin-top: 2px;
}
.custom-link-desc {
    font-size: 12px; color: var(--muted);
    line-height: 1.5; margin-top: 4px;
}
.custom-link-cta {
    font-size: 12px; font-weight: 600;
    color: var(--accent); margin-top: 6px;
}

/* ── TEXT BLOCK ── */
.custom-block--text { padding: 16px; }
.custom-block-text {
    font-size: 14px; color: var(--muted);
    line-height: 1.7; margin-top: 8px;
}

/* ── CUSTOM BLOCK LINK BUTTON STRONGER ── */
.custom-block-link-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 12px !important;
    background: var(--accent) !important;
    border: none !important;
    border-radius: 20px !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #fff !important;
    text-decoration: none !important;
    transition: opacity 0.15s !important;
}
.custom-block-link-btn:hover { opacity: 0.85 !important; }

/* ── HERO LIGHTBOX FULL SIZE ── */
.lightbox-single--full .lightbox-img {
    max-width: 95vw !important;
    max-height: 90vh !important;
    width: auto !important;
    height: auto !important;
}
