/* ============================================
   LAS CASAS MARKETPLACE - FRONTEND STYLES
   Versión: 3.1.1
   ============================================ */

/* Variables y reset */
:root {
    --primary: #E2C48E;
    --primary-hover: #F8D189;
    --primary-light: rgba(226, 196, 142, 0.2);
    --secondary: #505050;
    --dark: #0B1014;
    --text: #C2C2C2;
    --text-light: #ffffff;
    --text-muted: #999999;
    --border: #F7F6F2;
    --success: #4CAF50;
    --success-light: rgba(76, 175, 80, 0.2);
    --danger: #dc3545;
    --danger-light: rgba(220, 53, 69, 0.2);
    --warning: #ffc107;
    --warning-light: rgba(255, 193, 7, 0.2);

    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;

    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.2);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.3);

    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.5s;
}

/* Reset y base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.5;
}

/* ============================================
   TIPOGRAFÍA
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    line-height: 1.2;
    font-family: 'DM Serif Display', serif;
}

/* LC_MOBILE_FIRST_V1 (2026-07-29) — LA ESCALA EMPIEZA EN EL MOVIL.
   El suelo de estos clamp estaba escrito para monitor: en un telefono de 390 px,
   5vw son 19 px, asi que SIEMPRE ganaba el minimo y todos los h1 salian a 28 px y
   los h2 a 24. De ahi que en pantalla cupieran dos lineas y el visitante tuviera
   que deslizar para ver de que va la pagina — con casi todo el trafico llegando
   desde el movil (Instagram y Facebook), eso es la primera impresion del sitio.
   Se baja SOLO el suelo y se sube un poco el factor vw: en escritorio manda el
   maximo, que no se ha tocado, asi que alli no cambia nada. */
h1 { font-size: clamp(22px, 5.4vw, 42px); }
h2 { font-size: clamp(19px, 4.4vw, 36px); }
h3 { font-size: clamp(17px, 3.4vw, 28px); }
h4 { font-size: clamp(15px, 2.8vw, 24px); }

p {
    margin-bottom: var(--spacing-md);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast) ease;
}

a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

small {
    font-size: 0.875em;
    color: var(--text-muted);
}

/* ============================================
   BOTONES
   ============================================ */

.lc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-normal) ease;
    min-width: 44px;
    min-height: 44px;
    line-height: 1;
    white-space: nowrap;
}

.lc-btn:hover,
.lc-btn:focus {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--dark);
}

.lc-btn:active {
    transform: translateY(0);
}

.lc-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.lc-btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.lc-btn-secondary:hover,
.lc-btn-secondary:focus {
    background: var(--primary);
    color: var(--dark);
}

.lc-btn-small {
    padding: 8px 16px;
    font-size: 14px;
    min-height: 36px;
}

.lc-btn-large {
    padding: 16px 32px;
    font-size: 18px;
    min-height: 56px;
}

.lc-btn-block {
    display: flex;
    width: 100%;
}

/* ============================================
   FORMULARIOS
   ============================================ */

.lc-form-group {
    margin-bottom: var(--spacing-lg);
}

.lc-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
}

.lc-input,
.lc-textarea,
.lc-select {
    width: 100%;
    padding: 14px;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-md);
    color: var(--text);
    font-size: 16px;
    transition: all var(--transition-fast) ease;
    -webkit-appearance: none;
    appearance: none;
}

.lc-input:hover,
.lc-textarea:hover,
.lc-select:hover {
    border-color: var(--primary);
}

.lc-input:focus,
.lc-textarea:focus,
.lc-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(226, 196, 142, 0.2);
}

.lc-input::placeholder,
.lc-textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.lc-textarea {
    min-height: 120px;
    resize: vertical;
}

.lc-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23E2C48E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

/* ============================================
   ГАЛЕРЕЯ СТРАНИЦЫ СВОЙСТВА (NUEVA ESTRUCTURA)
   ============================================ */

.lc-property-gallery {
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-md);
}

.lc-property-gallery-main {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #1a1f24;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--primary);
}

.lc-property-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lc-property-gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.lc-property-gallery-btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-50%) scale(1.1);
    border-color: var(--primary);
}

.lc-property-gallery-prev {
    left: 20px;
}

.lc-property-gallery-next {
    right: 20px;
}

.lc-property-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding: 5px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--secondary);
}

.lc-property-gallery-thumbs::-webkit-scrollbar {
    height: 8px;
}

.lc-property-gallery-thumbs::-webkit-scrollbar-track {
    background: var(--secondary);
    border-radius: 4px;
}

.lc-property-gallery-thumbs::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.lc-property-gallery-thumb {
    width: 100px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.lc-property-gallery-thumb:hover {
    opacity: 0.9;
}

.lc-property-gallery-thumb.active {
    opacity: 1;
    border-color: var(--primary);
}

/* ============================================
   СТРАНИЦА СВОЙСТВА
   ============================================ */

.lc-property-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.lc-property-main {
    flex: 2;
    min-width: 300px;
}

.lc-property-sidebar {
    flex: 1;
    min-width: 280px;
}

.lc-property-header {
    margin-bottom: var(--spacing-lg);
}

.lc-property-title {
    margin-bottom: var(--spacing-sm);
}

.lc-property-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    align-items: center;
}

.lc-property-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text);
}

.lc-property-location i {
    color: var(--primary);
}

.lc-property-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lc-rating-stars {
    color: var(--primary);
    letter-spacing: 2px;
}

.lc-rating-value {
    font-weight: bold;
    color: var(--primary);
}

.lc-rating-count {
    color: var(--text-muted);
}

.lc-host-info {
    display: flex;
    gap: var(--spacing-md);
    background: var(--secondary);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--primary);
    margin-bottom: var(--spacing-lg);
}

.lc-host-avatar img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.lc-host-details h4 {
    margin-bottom: var(--spacing-xs);
}

.lc-host-details p {
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: 5px;
}

.lc-property-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    background: var(--secondary);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-lg);
}

.lc-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lc-feature i {
    color: var(--primary);
    font-size: 18px;
}

.lc-property-description {
    margin-bottom: var(--spacing-lg);
}

.lc-description-content {
    line-height: 1.8;
}

/* Бронирование */
.lc-booking-card {
    background: var(--secondary);
    border: 1px solid var(--primary);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    position: sticky;
    top: 20px;
}

.lc-booking-price {
    margin-bottom: var(--spacing-md);
}

.lc-price {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary);
}

.lc-period {
    color: var(--text-muted);
}

.lc-booking-footer {
    margin-top: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
}

/* Карта */
.lc-property-map-section {
    margin-bottom: var(--spacing-lg);
}

.lc-map {
    width: 100%;
    height: 320px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--primary);
}

/* Похожие свойства */
.lc-similar-properties-section {
    margin-top: var(--spacing-xl);
}

.lc-property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.lc-similar-card {
    background: var(--secondary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--primary);
    transition: transform var(--transition-normal) ease;
    text-decoration: none;
    color: inherit;
}

.lc-similar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.lc-similar-card .lc-property-image {
    height: 160px;
    overflow: hidden;
}

.lc-similar-card .lc-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow) ease;
}

.lc-similar-card:hover .lc-property-image img {
    transform: scale(1.05);
}

.lc-similar-card .lc-property-content {
    padding: var(--spacing-md);
}

/* Мобильная панель бронирования */
.lc-mobile-booking-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    border-top: 1px solid var(--primary);
    padding: var(--spacing-sm) var(--spacing-md);
    z-index: 100;
}

@media (max-width: 768px) {
    .lc-mobile-booking-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .lc-mobile-booking-price strong {
        font-size: 20px;
        color: var(--primary);
    }

    /* Важно: sidebar не скрываем, иначе bottom sheet не появится */
    .lc-property-sidebar {
        display: block;
    }

    .lc-property-sidebar.active {
        display: block;
    }

    .lc-property-gallery-main {
        height: auto;
    }

    .lc-property-gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .lc-property-gallery-prev {
        left: 10px;
    }

    .lc-property-gallery-next {
        right: 10px;
    }

    .lc-property-gallery-thumb {
        width: 80px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .lc-property-gallery-thumb {
        width: 70px;
        height: 52px;
    }
}

/* ============================================
   DESTINOS POPULARES — MOBILE FIRST
   ============================================ */

.lc-property-recommendations {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.lc-popular-destinations {
    width: 100%;
}

.lc-popular-destinations .lc-section-title {
    margin-bottom: 14px;
}

.lc-popular-destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.lc-destination-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: var(--secondary);
    border: 1px solid rgba(226, 196, 142, 0.28);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition-normal) ease, box-shadow var(--transition-normal) ease;
}

.lc-destination-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.lc-destination-card__image,
.lc-destination-card__placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #1a1f24;
    overflow: hidden;
}

.lc-destination-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lc-destination-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
}

.lc-destination-card__content {
    padding: 10px 10px 12px;
}

.lc-destination-card__content h4 {
    margin: 0;
    font-size: 15px;
    line-height: 1.25;
    color: var(--primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5em;
}

.lc-destination-card__city {
    display: none;
}

.lc-destination-card__price {
    margin: 6px 0 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.lc-destination-card__price small {
    display: none;
}

@media (min-width: 768px) {
    .lc-popular-destinations-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .lc-destination-card__image,
    .lc-destination-card__placeholder {
        aspect-ratio: 4 / 3;
    }

    .lc-destination-card__content {
        padding: 12px 12px 14px;
    }

    .lc-destination-card__content h4 {
        font-size: 18px;
    }

    .lc-destination-card__city {
        display: block;
        margin: 6px 0 0;
        font-size: 13px;
        color: var(--text-muted);
    }

    .lc-destination-card__price {
        margin-top: 8px;
        font-size: 15px;
    }

    .lc-destination-card__price small {
        display: inline;
    }
}

@media (min-width: 1024px) {
    .lc-popular-destinations-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ============================================
   HOST VERIFICATION PAGE
   Mobile First
   ============================================ */

.lc-verification-page {
    max-width: 1180px;
    margin: 12px auto 24px;
    padding: 16px 14px 22px;
    color: #C2C2C2;
    background: #0B1014;
    border: 1px solid rgba(226, 196, 142, 0.55);
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.lc-verification-page .lc-verification-header {
    margin-bottom: 22px;
}

/* ---------- TITULO PRINCIPAL ---------- */

.lc-verification-page .lc-verification-header h1 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px 0;
    color: #E2C48E;
    font-size: clamp(18px, 6.4vw, 30px);
    line-height: 1.08;
}

.lc-verification-title {
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.01em;
}

.lc-verification-title-icon-wrap {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;

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

    background:
        radial-gradient(circle at 25% 20%, rgba(255,255,255,0.92), rgba(255,255,255,0) 24%),
        linear-gradient(
            145deg,
            #fff7dc 0%,
            #f6dfab 14%,
            #e2c48e 30%,
            #caa96b 50%,
            #b99054 63%,
            #e8ca93 78%,
            #fff1c8 100%
        );

    border: 1px solid rgba(255, 240, 200, 0.55);

    box-shadow:
        0 8px 18px rgba(226, 196, 142, 0.22),
        0 2px 6px rgba(0,0,0,0.20),
        inset 0 2px 4px rgba(255,255,255,0.68),
        inset 0 -4px 10px rgba(106, 72, 24, 0.28);
}

.lc-verification-title-icon-wrap::after {
    content: "";
    position: absolute;
    top: -18%;
    left: -52%;
    width: 58%;
    height: 140%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.12) 25%,
        rgba(255,255,255,0.86) 50%,
        rgba(255,255,255,0.12) 75%,
        transparent 100%
    );
    transform: translateX(0) skewX(-22deg);
    opacity: 0.92;
    transition: transform 1.05s ease, opacity 0.35s ease;
    pointer-events: none;
    mix-blend-mode: screen;
}

.lc-verification-title:hover .lc-verification-title-icon-wrap::after {
    transform: translateX(225%) skewX(-22deg);
    opacity: 1;
}

.lc-verification-title-icon {
    width: 20px;
    height: 20px;
    display: block;
    position: relative;
    z-index: 2;
    filter:
        brightness(0)
        invert(1)
        drop-shadow(0 1px 0 rgba(255,255,255,0.35))
        drop-shadow(0 2px 6px rgba(0,0,0,0.18));
    opacity: 0.98;
}

.lc-verification-title-text {
    display: inline-block;
}

.lc-verification-page .lc-verification-header p {
    margin: 0;
    color: #CFCFCF;
    font-size: 14px;
    line-height: 1.55;
}

/* fallback: старые <i> скрыть */
.lc-verification-page .lc-verification-header h1 i,
.lc-verification-page .lc-section-header h2 i {
    display: none;
}

/* ---------- MENSAJES ---------- */

.lc-verification-page .lc-message {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(226, 196, 142, 0.35);
    background: #505050;
    color: #F5F5F5;
}

.lc-verification-page .lc-message.lc-error {
    border-color: rgba(220, 53, 69, 0.45);
}

.lc-verification-page .lc-message.lc-success {
    border-color: rgba(76, 175, 80, 0.45);
}

/* ---------- CARDS ---------- */

.lc-verification-page .lc-verification-status-card,
.lc-verification-page .lc-verification-form-card {
    background: #505050;
    border: 1px solid rgba(226, 196, 142, 0.55);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
}

.lc-verification-page .lc-verification-status-card {
    margin-bottom: 18px;
}

/* ---------- SECTION HEADERS ---------- */

.lc-verification-page .lc-section-header {
    margin-bottom: 16px;
}

.lc-verification-page .lc-section-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #E2C48E;
    font-size: clamp(17px, 5.8vw, 28px);
    line-height: 1.1;
}

.lc-verification-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.01em;
}

.lc-verification-section-icon-wrap {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;

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

    background:
        radial-gradient(circle at 25% 20%, rgba(255,255,255,0.90), rgba(255,255,255,0) 26%),
        linear-gradient(
            145deg,
            #fff7dc 0%,
            #f6dfab 14%,
            #e2c48e 30%,
            #caa96b 50%,
            #b99054 63%,
            #e8ca93 78%,
            #fff1c8 100%
        );

    border: 1px solid rgba(255, 240, 200, 0.52);

    box-shadow:
        0 7px 16px rgba(226, 196, 142, 0.20),
        0 2px 6px rgba(0,0,0,0.18),
        inset 0 2px 4px rgba(255,255,255,0.64),
        inset 0 -4px 9px rgba(106, 72, 24, 0.24);
}

.lc-verification-section-icon-wrap::after {
    content: "";
    position: absolute;
    top: -18%;
    left: -52%;
    width: 58%;
    height: 140%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.12) 25%,
        rgba(255,255,255,0.82) 50%,
        rgba(255,255,255,0.12) 75%,
        transparent 100%
    );
    transform: translateX(0) skewX(-22deg);
    opacity: 0.92;
    transition: transform 1.05s ease, opacity 0.35s ease;
    pointer-events: none;
    mix-blend-mode: screen;
}

.lc-verification-section-title:hover .lc-verification-section-icon-wrap::after {
    transform: translateX(225%) skewX(-22deg);
    opacity: 1;
}

.lc-verification-section-icon {
    width: 18px;
    height: 18px;
    display: block;
    position: relative;
    z-index: 2;
    filter:
        brightness(0)
        invert(1)
        drop-shadow(0 1px 0 rgba(255,255,255,0.35))
        drop-shadow(0 2px 6px rgba(0,0,0,0.18));
    opacity: 0.98;
}

.lc-verification-section-title-text {
    display: inline-block;
}

/* ---------- STATUS LINES ---------- */

.lc-verification-page .lc-verification-status-line {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.lc-verification-page .lc-verification-status-line:last-child {
    margin-bottom: 0;
}

.lc-verification-page .lc-status-label,
.lc-verification-page .lc-status-value {
    display: inline;
}

.lc-verification-page .lc-status-label {
    color: #CFCFCF;
}

.lc-verification-page .lc-status-value {
    color: #F3F3F3;
}

.lc-verification-page .lc-status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 5px 13px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: 1px solid rgba(226, 196, 142, 0.45);
    background: rgba(255,255,255,0.04);
    color: #E2C48E;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.03) inset,
        0 6px 16px rgba(0,0,0,0.16);
    transition:
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}

.lc-verification-page .lc-status-badge.is-pending,
.lc-verification-page .lc-status-badge.is-review {
    background: rgba(255, 193, 7, 0.12);
    border-color: rgba(255, 193, 7, 0.42);
    color: #f4d27a;
    box-shadow:
        0 0 0 1px rgba(255, 193, 7, 0.08) inset,
        0 0 16px rgba(255, 193, 7, 0.12),
        0 8px 18px rgba(0,0,0,0.16);
}

.lc-verification-page .lc-status-badge.is-approved {
    background: rgba(76, 175, 80, 0.12);
    border-color: rgba(76, 175, 80, 0.42);
    color: #9fe0a2;
    box-shadow:
        0 0 0 1px rgba(76, 175, 80, 0.08) inset,
        0 0 18px rgba(76, 175, 80, 0.14),
        0 8px 18px rgba(0,0,0,0.16);
}

.lc-verification-page .lc-status-badge.is-rejected {
    background: rgba(220, 53, 69, 0.12);
    border-color: rgba(220, 53, 69, 0.42);
    color: #ffb0b8;
    box-shadow:
        0 0 0 1px rgba(220, 53, 69, 0.08) inset,
        0 0 18px rgba(220, 53, 69, 0.12),
        0 8px 18px rgba(0,0,0,0.16);
}

/* ---------- FORM / BUTTONS ---------- */

.lc-verification-page .lc-form-group {
    margin-bottom: 18px;
}

.lc-verification-page .lc-btn {
    min-height: 52px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
}

.lc-verification-page .lc-btn-block {
    width: 100%;
}

.lc-verification-page .lc-btn-secondary {
    background: transparent;
    border: 2px solid #E2C48E;
    color: #E2C48E;
}

.lc-verification-page .lc-btn-secondary:hover,
.lc-verification-page .lc-btn-secondary:focus {
    background: #E2C48E;
    color: #0B1014;
}

/* ---------- LIGHT INNER BOXES ---------- */

.lc-verification-page .lc-verification-form-card > div[style*="background:#fafafa"],
.lc-verification-page .lc-verification-form-card > div[style*="background:#f4fbf6"],
.lc-verification-page .lc-verification-form-card > div[style*="background:#fff7f7"] {
    background: #F7F6F2 !important;
    border-radius: 14px !important;
}

.lc-verification-page .lc-verification-form-card > div[style*="background:#fafafa"] p,
.lc-verification-page .lc-verification-form-card > div[style*="background:#f4fbf6"] p,
.lc-verification-page .lc-verification-form-card > div[style*="background:#fff7f7"] p,
.lc-verification-page .lc-verification-form-card > div[style*="background:#fafafa"] strong,
.lc-verification-page .lc-verification-form-card > div[style*="background:#f4fbf6"] strong,
.lc-verification-page .lc-verification-form-card > div[style*="background:#fff7f7"] strong {
    color: #0B1014 !important;
}

/* FIX: verification text must be black */
.lc-verification-page .lc-verification-form-card p,
.lc-verification-page .lc-verification-form-card strong {
    color: #0B1014 !important;
}

/* ---------- TABLET / DESKTOP ---------- */

@media (min-width: 768px) {
    .lc-verification-page {
        margin: 24px auto 40px;
        padding: 28px 24px 32px;
        border-radius: 24px;
    }

    .lc-verification-page .lc-verification-header {
        margin-bottom: 28px;
    }

    .lc-verification-page .lc-verification-header h1 {
        gap: 14px;
        margin-bottom: 18px;
        font-size: clamp(21px, 4.8vw, 48px);
        line-height: 1.02;
    }

    .lc-verification-title {
        gap: 14px;
    }

    .lc-verification-title-icon-wrap {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        border-radius: 16px;
    }

    .lc-verification-title-icon {
        width: 22px;
        height: 22px;
    }

    .lc-verification-page .lc-verification-header p {
        font-size: 16px;
        line-height: 1.7;
    }

    .lc-verification-page .lc-verification-status-card,
    .lc-verification-page .lc-verification-form-card {
        padding: 22px;
        border-radius: 20px;
    }

    .lc-verification-page .lc-verification-status-card {
        margin-bottom: 22px;
    }

    .lc-verification-page .lc-section-header {
        margin-bottom: 18px;
    }

    .lc-verification-page .lc-section-header h2 {
        gap: 14px;
        font-size: clamp(19px, 4.2vw, 40px);
        line-height: 1.04;
    }

    .lc-verification-section-title {
        gap: 14px;
    }

    .lc-verification-section-icon-wrap {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 14px;
    }

    .lc-verification-section-icon {
        width: 20px;
        height: 20px;
    }

    .lc-verification-page .lc-verification-status-line {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 8px;
    }

    .lc-verification-page .lc-btn {
        min-height: 56px;
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .lc-verification-page .lc-verification-header h1 {
        font-size: clamp(30px, 4vw, 56px);
    }

    .lc-verification-page .lc-section-header h2 {
        font-size: clamp(26px, 3.4vw, 46px);
    }
}
/* FIX: verification text must be black */

.lc-verification-page .lc-verification-form-card p,
.lc-verification-page .lc-verification-form-card strong {
    color: #0B1014 !important;
}
    
/* ============================================
   DASHBOARD STATS CARDS
   ============================================ */

.lc-dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 24px 0 32px;
}

.lc-dashboard-stat-card {
    background: var(--secondary);
    border: 1px solid var(--primary);
    border-radius: var(--border-radius-lg);
    padding: 20px 16px;
    text-align: center;
    transition: transform var(--transition-normal) ease, box-shadow var(--transition-normal) ease;
}

.lc-dashboard-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.lc-dashboard-stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 8px;
    font-family: 'DM Serif Display', serif;
}

.lc-dashboard-stat-label {
    font-size: 14px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .lc-dashboard-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .lc-dashboard-stat-number {
        font-size: 32px;
    }

    .lc-dashboard-stat-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .lc-dashboard-stats-grid {
        gap: 10px;
    }

    .lc-dashboard-stat-card {
        padding: 14px 10px;
    }

    .lc-dashboard-stat-number {
        font-size: 28px;
    }
}

/* ──────────────────────────────────────────────────────────────
   LC_MOBILE_FIRST_V1 — CAPA DE DENSIDAD PARA TELEFONOS.

   Casi todas las visitas entran desde el movil. Lo que habia estaba maquetado
   para monitor y luego «encogido»: aire de 24-32 px entre bloques, botones de
   pantalla completa y tipografia de cartel. En un telefono eso significa que en
   la primera pantalla no cabe NINGUNA accion, solo el titular.

   Aqui se aprieta lo comun a todas las paginas. Nada de esto toca al escritorio:
   todo vive dentro de max-width 640.
   ────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {

    /* La escala de espacios entera baja un escalon. Como el resto del CSS usa
       estas variables, con cambiarlas aqui se aprieta TODO a la vez en lugar de
       ir bloque por bloque. */
    :root {
        --spacing-sm: 6px;
        --spacing-md: 10px;
        --spacing-lg: 14px;
        --spacing-xl: 20px;
    }

    h1, h2, h3, h4, h5, h6 {
        margin-bottom: 8px;
        line-height: 1.18;
    }

    p {
        line-height: 1.45;
        margin-bottom: 10px;
    }

    /* El texto corriente a 15 px: por debajo cansa, por encima obliga a deslizar.
       16 px en los campos es OBLIGATORIO — con menos, iOS hace zoom solo al tocar
       y descoloca la pagina entera. */
    body {
        font-size: 15px;
    }

    input, select, textarea {
        font-size: 16px;
    }

    /* Botones: alto comodo para el pulgar (44 px es el minimo que recomienda
       Apple) pero SIN ocupar toda la pantalla de ancho. */
    .lc-btn, .lc-button, button, .button {
        min-height: 44px;
        padding: 10px 18px;
        font-size: 15px;
    }

    /* Contenedores: 12 px a cada lado en vez de 20-24. Son 24 px de ancho util
       recuperados, que en una pantalla de 390 es un 6% mas de contenido. */
    .lc-container, .lc-wrap, .lc-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    section {
        padding-top: 18px;
        padding-bottom: 18px;
    }
}
