/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    font-size: 16.5px;
}

body {
    background-color: #0a0a0a;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    line-height: 1.6;
}

input, button, select, textarea {
    font: inherit;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky; top: 0; z-index: 1000;
    background: #111;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    height: 54px;
    display: flex; align-items: center;
    padding: 0 16px; gap: 0;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; flex-shrink: 0;
}
.logo img {
    display: block;
    height: 42px;
    width: auto;
    max-width: 100%;
}
.nav-links {
    display: flex; align-items: center;
    overflow-x: auto; scrollbar-width: none; margin: 0 8px;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a {
    color: #c9a96e; text-decoration: none;
    font-size: 13px; font-weight: 600;
    letter-spacing: 1.2px; text-transform: uppercase;
    padding: 17px 11px; transition: all 0.3s; white-space: nowrap;
}
.nav-links a:hover { color: #fff; background: rgba(201,169,110,0.08); }
.nav-links a.is-active {
    color: #fff;
    background: rgba(201,169,110,0.14);
}
.mobile-category-filter {
    display: none;
}
.mobile-category-filter select {
    width: 100%;
    height: 40px;
    border: 1px solid rgba(201,169,110,0.26);
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    color: #c9a96e;
    padding: 0 36px 0 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    outline: none;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #c9a96e 50%),
        linear-gradient(135deg, #c9a96e 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 17px,
        calc(100% - 12px) 17px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}
.navbar-right {
    display: flex; align-items: center; gap: 14px;
    flex-shrink: 0; margin-left: auto;
}
.search-bar { position: relative; flex-shrink: 0; }
.search-bar form { display: flex; align-items: center; gap: 6px; }
.search-bar input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 7px 12px;
    color: #aaa; font-size: 13px;
    width: 130px; outline: none;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}
.search-bar input::placeholder { color: #555; }
.search-bar input:focus { border-color: #c9a96e; width: 170px; }
.search-bar button {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(201,169,110,0.14);
    border: 1px solid rgba(201,169,110,0.45);
    border-radius: 4px;
    color: #c9a96e; cursor: pointer;
    padding: 7px 10px; font-size: 11.5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.2px;
    white-space: nowrap;
}
.nav-actions {
    display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.nav-actions a {
    color: #888; text-decoration: none;
    font-size: 12.5px; font-weight: 500;
    letter-spacing: 0.3px; transition: color 0.3s; white-space: nowrap;
}
.nav-actions a:hover { color: #c9a96e; }
.btn-anunciate {
    background: linear-gradient(135deg, #c9a96e, #a8854a) !important;
    color: #000 !important; padding: 6px 14px;
    border-radius: 3px; font-weight: 600 !important;
    font-size: 10px !important; letter-spacing: 1px;
    text-transform: uppercase;
}
.btn-anunciate:hover { opacity: 0.9; }

/* ===== FILTER BAR ===== */
.filter-bar {
    background: #111;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 14px 20px;
}
.filter-toggle { display: none; }
.filter-panel { display: block; }
.filter-row {
    display: flex; flex-wrap: wrap; gap: 10px;
    align-items: center;
}
.filter-group { position: relative; }
.filter-group label {
    display: block; font-size: 8.75px; font-weight: 600;
    color: #c9a96e; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 4px;
}
.filter-select {
    appearance: none;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 7px 30px 7px 10px;
    color: #aaa; font-size: 11.75px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer; outline: none;
    transition: border-color 0.3s;
    min-width: 120px;
}
.filter-select:focus { border-color: #c9a96e; }
.filter-select option { background: #1a1a1a; color: #ccc; }
.filter-group::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute; right: 10px; bottom: 9px;
    color: #666; font-size: 10px;
    pointer-events: none;
}
.filter-range {
    display: flex; align-items: center; gap: 6px;
}
.filter-range input[type="number"] {
    appearance: none;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 7px 8px;
    color: #aaa; font-size: 11.75px; width: 60px;
    font-family: 'Montserrat', sans-serif;
    outline: none; text-align: center;
}
.filter-range input:focus { border-color: #c9a96e; }
.filter-range span { color: #555; font-size: 10px; }
.filter-divider {
    width: 1px; height: 32px;
    background: rgba(255,255,255,0.06);
    margin: 0 4px; align-self: flex-end;
    margin-bottom: 2px;
}
.filter-row-secondary {
    display: flex; flex-wrap: wrap; gap: 10px;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 10px;
}
.filter-actions {
    display: flex; gap: 10px; align-items: flex-end;
    margin-left: auto;
}
.btn-filter {
    padding: 7px 20px; border-radius: 4px;
    font-size: 10.75px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    border: none; display: inline-flex; align-items: center;
    text-decoration: none;
}
.btn-filter-primary {
    background: linear-gradient(135deg, #c9a96e, #a8854a);
    color: #000;
}
.btn-filter-primary:hover { opacity: 0.9; }
.btn-filter-clear {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: #888;
}
.btn-filter-clear:hover { border-color: #c9a96e; color: #c9a96e; }

/* ===== FILTER BAR DESKTOP ===== */
@media (min-width: 1181px) {
    .filter-bar { padding: 14px 20px 12px; }
    .filter-panel { width: 100%; max-width: 1180px; margin: 0 auto; }
    .filter-row {
        display: grid;
        grid-template-columns: minmax(82px,0.72fr) minmax(82px,0.72fr) minmax(106px,0.82fr) minmax(112px,0.72fr) minmax(112px,0.72fr) auto;
        gap: 8px 10px; align-items: end;
    }
    .filter-row-secondary {
        display: grid;
        grid-template-columns: repeat(6, minmax(82px, 1fr));
        gap: 8px 10px; align-items: end;
        padding-top: 8px; margin-top: 8px;
    }
    .filter-group { min-width: 0; }
    .filter-select { width: 100%; min-width: 0; height: 32px; padding: 0 28px 0 10px; }
    .filter-divider { display: none; }
    .filter-range input[type="number"] { width: 56px; min-width: 56px; height: 32px; padding: 0 6px; }
    .filter-actions { margin-left: 0; justify-self: end; }
    .btn-filter { height: 32px; min-width: 78px; padding: 0 10px; }
}

/* ===== BANNER CAROUSEL ===== */
.banner-section {
    position: relative;
    overflow: hidden;
    height: 320px;
}
.banner-track {
    display: flex;
    height: 100%;
    width: max-content;
    will-change: transform;
    animation: bannerScroll var(--banner-loop-duration, 25s) linear infinite;
}
.banner-track:hover { animation-play-state: paused; }
@keyframes bannerScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(calc(-1 * var(--banner-loop-distance, 50%)), 0, 0); }
}
.banner-slide {
    min-width: clamp(360px, 38vw, 520px);
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}
.banner-slide-bg {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.6s ease;
    filter: brightness(0.55);
}
.banner-slide:hover .banner-slide-bg {
    transform: scale(1.05);
    filter: brightness(0.65);
}
.banner-slide::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    pointer-events: none;
}
.banner-slide-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    display: flex; flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px 28px;
    gap: 6px;
    z-index: 2;
}
.banner-slide-title {
    color: #fff; font-size: 22px;
    font-weight: 600; letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.banner-slide-sub {
    color: #ccc; font-size: 12px;
    letter-spacing: 1.5px; text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.btn-banner {
    margin-top: 6px; padding: 8px 28px;
    background: rgba(201,169,110,0.9);
    border: none; color: #000; border-radius: 3px;
    font-size: 11.5px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.btn-banner:hover { background: #c9a96e; }
@media (min-width: 1181px) {
    .banner-section { height: 340px; }
    .banner-slide { min-width: clamp(420px, 28vw, 520px); }
}

/* ===== SPONSORED HOMEPAGE BANNERS ===== */
.sponsored-slot {
    max-width: 1320px;
    margin: 0 auto;
    padding: 10px 24px 4px;
}
.sponsored-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
    align-items: stretch;
    overflow: hidden;
    min-height: 126px;
    border: 1px solid rgba(201,169,110,0.18);
    border-radius: 6px;
    background:
        radial-gradient(circle at top left, rgba(201,169,110,0.08), transparent 28%),
        linear-gradient(180deg, #181818 0%, #111111 100%);
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.sponsored-card-media {
    position: relative;
    min-height: 126px;
    overflow: hidden;
    border-left: 1px solid rgba(201,169,110,0.12);
    background: linear-gradient(135deg, rgba(201,169,110,0.08), rgba(255,255,255,0.02));
}
.sponsored-card-bg {
    width: 100%;
    height: 100%;
    min-height: 126px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease, filter 0.35s ease;
}
.sponsored-card:hover .sponsored-card-bg {
    transform: scale(1.03);
    filter: saturate(1.02);
}
.sponsored-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
    max-width: 100%;
    padding: 16px 22px;
}
.sponsored-card-tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(201,169,110,0.26);
    background: rgba(10,10,10,0.72);
    color: #d7ba7d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.sponsored-card-kicker {
    color: rgba(255,255,255,0.76);
    font-size: 10.75px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}
.sponsored-card-title {
    color: #fff;
    font-size: clamp(18px, 1.7vw, 24px);
    font-weight: 600;
    line-height: 1.06;
}
.sponsored-card-copy {
    color: rgba(255,255,255,0.84);
    font-size: 12px;
    line-height: 1.45;
    max-width: 440px;
}
.sponsored-card-btn {
    margin-top: 4px;
}
.sponsored-card-compact {
    min-height: 118px;
}
.sponsored-card-compact .sponsored-card-media,
.sponsored-card-compact .sponsored-card-bg {
    min-height: 118px;
}

/* ===== BANNER DETAIL ===== */
.banner-detail-page {
    min-height: calc(100vh - 54px);
}
.banner-detail-hero {
    padding: 28px 20px 24px;
    background:
        radial-gradient(circle at top, rgba(201,169,110,0.14), transparent 32%),
        linear-gradient(180deg, #111111 0%, #090909 100%);
}
.banner-detail-shell {
    max-width: 1180px;
    margin: 0 auto;
}
.banner-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: #c9a96e;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.banner-detail-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    overflow: hidden;
    border: 1px solid rgba(201,169,110,0.18);
    border-radius: 12px;
    background:
        radial-gradient(circle at top left, rgba(201,169,110,0.08), transparent 26%),
        linear-gradient(180deg, #181818 0%, #101010 100%);
    box-shadow: 0 28px 60px rgba(0,0,0,0.35);
}
.banner-detail-media {
    min-height: 420px;
    background: #0d0d0d;
}
.banner-detail-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    object-fit: cover;
}
.banner-detail-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 34px 32px;
}
.banner-detail-tag {
    display: inline-flex;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(201,169,110,0.22);
    background: rgba(201,169,110,0.08);
    color: #d7ba7d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.banner-detail-kicker {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.banner-detail-content h1 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 0.95;
    color: #fff;
}
.banner-detail-subtitle {
    color: rgba(255,255,255,0.84);
    font-size: 14px;
    line-height: 1.65;
}
.banner-detail-panel {
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    background: rgba(255,255,255,0.025);
}
.banner-detail-panel h2 {
    margin-bottom: 10px;
    color: #c9a96e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.banner-detail-panel p,
.banner-detail-meta {
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    line-height: 1.7;
}
.banner-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    padding: 22px 20px 12px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}
.section-header h2 {
    font-size: 18px; font-weight: 400;
    color: #fff; letter-spacing: 0.5px;
}
.section-header h2 strong { color: #c9a96e; font-weight: 700; }
.section-header h2 span { color: #9a9a9a; font-size: 14px; font-weight: 300; }
.section-link {
    color: #c9a96e;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}
.section-link:hover { color: #f0d7a2; }
.stories-header {
    max-width: 1540px;
    margin: 0 auto;
    padding: 22px 32px 12px;
}

/* ===== STORIES ===== */
.stories-section {
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 32px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.stories-viewport {
    flex: 1 1 auto;
    min-width: 0;
}
.stories-track {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 6px 0 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior-x: contain;
}
.stories-track::-webkit-scrollbar {
    display: none;
}
.story-item {
    width: 92px; max-width: 92px;
    flex: 0 0 auto;
    display: flex; flex-direction: column;
    align-items: center; gap: 8px; cursor: pointer;
    text-decoration: none;
    scroll-snap-align: start;
}
.story-ring {
    width: clamp(72px, 4vw, 82px);
    height: clamp(72px, 4vw, 82px);
    border-radius: 50%; padding: 3px;
    background: linear-gradient(135deg, #c9a96e, #8b6914, #c9a96e);
}
.story-avatar {
    width: 100%; height: 100%;
    border-radius: 50%; object-fit: cover;
    border: 3px solid #0a0a0a; display: block;
}
.story-name {
    font-size: 13px; color: #888;
    line-height: 1.25;
    max-width: 96px; text-align: center;
    overflow: hidden; text-overflow: ellipsis;
    white-space: nowrap;
}
.stories-nav {
    display: none;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 169, 110, 0.45);
    border-radius: 999px;
    background: rgba(18, 18, 18, 0.92);
    color: #c9a96e;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.stories-nav:hover:not(:disabled) {
    transform: translateY(-1px);
    border-color: rgba(201, 169, 110, 0.75);
}
.stories-nav:disabled {
    opacity: 0.28;
    cursor: default;
}
.stories-nav span {
    font-size: 24px;
    line-height: 1;
}

/* ===== CARD GRID ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    width: 100%;
    padding: 0 2px;
}
.card {
    position: relative; overflow: hidden;
    cursor: pointer; aspect-ratio: 3/4;
    background: #151515;
    display: block;
    text-decoration: none;
}
.card-bg {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.card:hover .card-bg { transform: scale(1.06); }
.card-badge {
    position: absolute; top: 8px; left: 8px;
    background: rgba(0,0,0,0.65);
    color: #c9a96e; font-size: 10px; font-weight: 500;
    padding: 2px 9px; border-radius: 2px;
    letter-spacing: 0.3px;
}
.card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 50px 12px 10px;
    background: linear-gradient(to top,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.5) 50%,
        transparent 100%);
}
.card-info { text-align: left; }
.card-name {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.45);
    padding: 5px 18px;
    font-size: 13px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: #fff;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(3px);
}
.card-location { font-size: 11px; color: #c9a96e; margin-top: 4px; }
.card-price {
    font-size: 16px;
    font-weight: 600;
    color: #c9a96e;
    margin-top: 3px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 36px 20px 18px; margin-top: 30px;
}
.footer-grid {
    display: grid; grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 28px 42px; max-width: 1180px; margin: 0 auto;
    justify-items: center;
}
.footer-col { width: 100%; max-width: 220px; }
.footer-col h4 {
    color: #d4b87a; font-size: 11.75px;
    font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 14px;
}
.footer-col a {
    display: block; color: #b0b0b0;
    text-decoration: none; font-size: 12px;
    padding: 3px 0; transition: color 0.3s;
}
.footer-col a:hover { color: #c9a96e; }
.footer-creator {
    max-width: 1180px;
    margin: 28px auto 0;
    padding: 0 0 6px;
}
.footer-creator-copy {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 16px;
    padding: 16px 22px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(212,184,122,0.14);
    border-radius: 8px;
    text-align: center;
}
.footer-creator-copy p {
    margin: 0;
    color: #cfcfcf;
    font-size: 13px;
}
.footer-heart {
    color: #d33b4d;
    margin: 0 4px;
}
.footer-creator-link {
    color: #d4b87a;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
.footer-creator-link:hover { color: #edd39c; }
.footer-bottom {
    max-width: 1180px; margin: 24px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex; justify-content: center;
    align-items: center;
    text-align: center;
}
.footer-bottom p { color: #999; font-size: 10px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
    color: #aaa; font-size: 15px;
    transition: color 0.3s; text-decoration: none;
}
.footer-social a:hover { color: #c9a96e; }

/* ===== CONTACT WEB ===== */
.contact-web-page {
    padding: 56px 20px 10px;
}
.contact-web-shell {
    max-width: 920px;
    margin: 0 auto;
}
.contact-web-card {
    background: linear-gradient(180deg, rgba(25,25,25,0.96), rgba(14,14,14,0.98));
    border: 1px solid rgba(212,184,122,0.16);
    border-radius: 10px;
    padding: 34px;
    box-shadow: 0 22px 60px rgba(0,0,0,0.28);
}
.contact-web-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: #d4b87a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.contact-web-card h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 38px;
    line-height: 1.1;
}
.contact-web-copy {
    margin: 0 0 26px;
    color: #b8b8b8;
    font-size: 15px;
    line-height: 1.75;
}
.contact-web-form .form-group {
    margin-bottom: 18px;
}
.contact-web-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.contact-web-form label {
    display: block;
    margin-bottom: 8px;
    color: #d4b87a;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}
.contact-web-form input,
.contact-web-form textarea,
.message-compose-form select {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 6px;
    color: #fff;
    padding: 14px 16px;
    font-size: 14px;
    font-family: inherit;
}
.contact-web-form input:focus,
.contact-web-form textarea:focus,
.message-compose-form select:focus {
    outline: none;
    border-color: rgba(212,184,122,0.62);
    box-shadow: 0 0 0 3px rgba(212,184,122,0.12);
}
.contact-web-form textarea {
    resize: vertical;
    min-height: 180px;
}
.contact-web-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

/* ===== WEB LEADS ADMIN ===== */
.web-lead-avatar {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212,184,122,0.12);
    border: 1px solid rgba(212,184,122,0.2);
    color: #d4b87a;
    font-size: 18px;
}
.web-lead-detail {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.web-lead-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.web-lead-meta-card,
.web-lead-message {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 16px 18px;
}
.web-lead-meta-card span,
.web-lead-message h4 {
    display: block;
    margin: 0 0 8px;
    color: #d4b87a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}
.web-lead-meta-card strong,
.web-lead-meta-card strong a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
}
.web-lead-message p {
    margin: 0;
    color: #d2d2d2;
    font-size: 14px;
    line-height: 1.75;
    white-space: pre-wrap;
}
.web-lead-source {
    max-width: 100%;
    margin: 0;
}
.web-lead-source p { margin: 0; }

/* ===== FAQ ===== */
.faq-section {
    max-width: 900px; margin: 40px auto 0;
    padding: 0 20px;
}
.faq-header {
    display: block;
    width: 100%;
    background: transparent;
    border: 0;
    text-align: center; font-size: 22px;
    color: #fff; letter-spacing: 1px;
    padding: 20px; cursor: pointer;
    user-select: none; transition: color 0.3s;
    font-family: 'Montserrat', sans-serif;
}
.faq-header strong { color: #c9a96e; }
.faq-header-static { cursor: default; }
.faq-header .faq-chevron {
    font-size: 14px; margin-left: 8px;
    transition: transform 0.3s; color: #c9a96e;
}
.faq-header:focus-visible {
    outline: 1px solid rgba(201,169,110,0.55);
    outline-offset: 2px;
}
.faq-header.open .faq-chevron { transform: rotate(180deg); }
.faq-header-static .faq-chevron { transform: rotate(180deg); }
.faq-list {
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease;
}
.faq-list.open {
    overflow: visible;
}
.faq-list-static {
    height: auto;
    overflow: visible;
}
.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    margin-bottom: 8px;
}
.faq-item summary {
    padding: 14px 18px;
    font-size: 14px; color: #ccc;
    cursor: pointer; list-style: none;
    transition: color 0.3s; font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #c9a96e; }
.faq-item[open] summary { color: #c9a96e; border-bottom: 1px solid rgba(255,255,255,0.05); }
.faq-answer {
    padding: 14px 18px;
    font-size: 13px; color: #999;
    line-height: 1.7;
}
.faq-footer-text {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 24px;
    max-width: 860px;
    margin: 20px auto 0;
    text-align: center;
}
.faq-footer-text p { font-size: 13px; color: #999; line-height: 1.7; }
.faq-disclaimer { margin-top: 14px !important; font-size: 10px !important; color: #666 !important; }

/* ===== QUICK ACCESS ===== */
.quick-access {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 30px 20px;
    margin-top: 30px;
}
.quick-access h3 {
    text-align: center;
    font-size: 14px; font-weight: 500;
    color: #999; letter-spacing: 1px;
    margin-bottom: 20px;
}
.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 28px 42px; max-width: 1180px;
    margin: 0 auto; justify-items: center;
}
.quick-col { width: 100%; max-width: 220px; }
.quick-title {
    color: #c9a96e; font-size: 11px;
    font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; margin-bottom: 8px;
}
.quick-col a {
    display: block; color: #777;
    text-decoration: none; font-size: 13px;
    padding: 3px 0; transition: color 0.3s;
}
.quick-col a:hover { color: #c9a96e; }

@media (min-width: 769px) {
    .quick-grid,
    .footer-grid {
        grid-template-columns: repeat(4, minmax(180px, 220px));
        justify-content: center;
        width: fit-content;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .banner-detail-hero {
        padding: 18px 14px 10px;
    }
    .banner-detail-card {
        grid-template-columns: 1fr;
    }
    .banner-detail-media,
    .banner-detail-media img {
        min-height: 260px;
    }
    .banner-detail-content {
        padding: 22px 18px;
    }
    .banner-detail-actions {
        flex-direction: column;
    }
    .banner-detail-actions .btn-gold,
    .banner-detail-actions .btn-gold-outline {
        width: 100%;
    }
}

/* ===== FILTER BAR MOBILE TOGGLE ===== */
.filter-toggle {
    width: 100%; display: none;
    align-items: center; justify-content: space-between;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; padding: 12px 14px;
    color: #f2ead8;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}
.filter-toggle-label {
    display: flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 600;
    letter-spacing: 1.6px; text-transform: uppercase;
}
.filter-toggle-label i, .filter-toggle-chevron { color: #c9a96e; }
.filter-toggle-meta {
    margin-left: auto; font-size: 9px;
    letter-spacing: 1.1px; text-transform: uppercase;
    color: #85724f; white-space: nowrap;
}
.filter-toggle-chevron {
    font-size: 11px; transition: transform 0.3s ease;
}
.filter-bar.is-open .filter-toggle-chevron { transform: rotate(180deg); }

/* ===== PROFILE PAGE ===== */
.profile-contact-bar {
    max-width: 1180px;
    margin: 18px auto 0;
    padding: 0 20px;
}
.navbar + .profile-contact-bar {
    display: none;
}
.contact-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.contact-item {
    position: relative;
    display: flex; align-items: center; justify-content: center; gap: 14px;
    min-height: 118px;
    padding: 20px 22px 18px;
    border-radius: 18px;
    border: 1px solid rgba(201,169,110,0.18);
    background:
        linear-gradient(180deg, rgba(201,169,110,0.08), rgba(201,169,110,0.02) 24%, rgba(255,255,255,0.015)),
        linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012)),
        #121212;
    box-shadow: 0 22px 45px rgba(0,0,0,0.34);
    overflow: hidden;
}
.contact-item::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,110,0.8), transparent);
    opacity: 0.85;
}
.contact-item:hover {
    border-color: rgba(201,169,110,0.32);
    transform: translateY(-1px);
    transition: border-color 0.28s ease, transform 0.28s ease;
}
.contact-icon {
    width: 50px; height: 50px;
    background: radial-gradient(circle at 30% 30%, rgba(201,169,110,0.34), rgba(201,169,110,0.12));
    border: 1px solid rgba(201,169,110,0.22);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: #dcc089; font-size: 17px; flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.contact-icon svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: currentColor;
}
.contact-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    min-width: 0;
}
.contact-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: 1.8px; text-transform: uppercase;
    color: #b89857;
}
.contact-text a, .contact-text span {
    color: #f3efe7; font-size: 14px; font-weight: 600;
    text-decoration: none;
}
.contact-value {
    display: block;
    color: #fff !important;
    font-size: 18px !important;
    line-height: 1.35;
    letter-spacing: 0.2px;
}
.contact-meta {
    display: block;
    color: #8f8572 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.45;
}
.contact-rates {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    width: 100%;
}
.contact-rate-line {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.contact-rate-label {
    color: #b89857 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.contact-rate-value {
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.2;
}
.contact-text a.contact-value:hover {
    color: #dcc089 !important;
    text-decoration: none;
}

/* Profile Side Navigation */
.profile-side-nav {
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 40;
}
.profile-side-nav__btn {
    position: absolute;
    top: 0;
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 72px;
    max-width: 220px;
    padding: 12px 14px;
    background: rgba(14,14,14,0.92);
    border: 1px solid rgba(201,169,110,0.32);
    color: #f3e4bf;
    box-shadow: 0 10px 28px rgba(0,0,0,0.28);
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.profile-side-nav__btn:hover {
    transform: scale(1.02);
    border-color: rgba(201,169,110,0.62);
    background: rgba(19,19,19,0.98);
}
.profile-side-nav__btn--prev {
    left: 14px;
    border-radius: 0 14px 14px 0;
}
.profile-side-nav__btn--next {
    right: 14px;
    border-radius: 14px 0 0 14px;
    justify-content: flex-end;
    text-align: right;
}
.profile-side-nav__arrow {
    font-size: 28px;
    line-height: 1;
    color: #c9a96e;
    flex: 0 0 auto;
}
.profile-side-nav__label {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.profile-side-nav__label small {
    color: rgba(201,169,110,0.84);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}
.profile-side-nav__label strong {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Photo Gallery */
.profile-gallery {
    max-width: 1180px; margin: 20px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 12px;
}
.gallery-main {
    border-radius: 8px; overflow: hidden;
    background: #151515;
    aspect-ratio: 3/4;
    touch-action: pan-y;
    user-select: none;
}
.gallery-main img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    user-select: none;
    -webkit-user-drag: none;
}
.gallery-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-content: start;
}
.gallery-thumb {
    border-radius: 6px; overflow: hidden;
    cursor: pointer; aspect-ratio: 1;
    border: 2px solid transparent;
    transition: border-color 0.3s;
    background: #151515;
}
.gallery-thumb.active { border-color: #c9a96e; }
.gallery-thumb:hover { border-color: rgba(201,169,110,0.5); }
.gallery-thumb img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}

/* Profile Info */
.profile-info-section {
    max-width: 1180px; margin: 0 auto;
    padding: 20px;
}
.profile-name {
    font-size: 30px; font-weight: 700;
    color: #c9a96e; letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.profile-stats {
    display: flex; gap: 20px;
    flex-wrap: wrap;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 24px;
}
.stat-item {
    display: flex; flex-direction: column;
    align-items: center; gap: 2px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
}
.stat-value { font-size: 19px; font-weight: 600; color: #fff; }
.stat-label { font-size: 10px; color: #888; letter-spacing: 1px; font-weight: 600; }

.profile-section { margin-bottom: 28px; }
.section-title-gold {
    font-size: 14px; font-weight: 600;
    color: #c9a96e; letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(201,169,110,0.2);
}
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-gold {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px;
    border: 1px solid rgba(201,169,110,0.35);
    border-radius: 20px;
    font-size: 12px; color: #c9a96e;
    background: rgba(201,169,110,0.06);
    transition: all 0.3s;
}
.tag-gold:hover { background: rgba(201,169,110,0.12); }
.tag-gold i { font-size: 11px; }
.profile-map { margin-top: 10px; border-radius: 8px; overflow: hidden; }
.profile-map-placeholder {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
        radial-gradient(circle at top, rgba(201,169,110,0.14), transparent 45%),
        linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(201,169,110,0.18);
}
.profile-map-copy {
    max-width: 460px;
    text-align: center;
}
.profile-map-copy strong {
    display: block;
    color: #f5e7c3;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}
.profile-map-copy p {
    color: #b7b7b7;
    line-height: 1.7;
    margin-bottom: 16px;
}
.profile-description {
    font-size: 14px; color: #bbb;
    line-height: 1.8;
}

/* Share Buttons */
.share-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.share-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px; font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer; border: none;
    font-family: 'Montserrat', sans-serif;
}
.share-whatsapp { background: #25d366; color: #fff; }
.share-whatsapp:hover { background: #1ebe57; }
.share-twitter { background: #1da1f2; color: #fff; }
.share-twitter:hover { background: #0d8ecf; }
.share-copy { background: rgba(255,255,255,0.1); color: #ccc; }
.share-copy:hover { background: rgba(255,255,255,0.15); }

/* Comments */
.comments-section {
    max-width: 1180px; margin: 0 auto;
    padding: 20px; margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.comments-list { margin-bottom: 30px; }
.comment-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 16px; margin-bottom: 10px;
}
.comment-header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 8px;
}
.comment-stars { color: #c9a96e; font-size: 13px; }
.comment-stars i { margin-right: 1px; }
.comment-author { font-size: 13px; font-weight: 600; color: #ddd; }
.comment-date { font-size: 11px; color: #666; margin-left: auto; }
.comment-text { font-size: 13px; color: #aaa; line-height: 1.6; }

.comment-form-container {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 20px;
}
.star-rating {
    display: flex; gap: 4px;
    font-size: 20px; color: #555;
    cursor: pointer;
}
.star-rating i.fas { color: #c9a96e; }
.star-rating i:hover { color: #c9a96e; }

/* ===== AUTH PAGES ===== */
.auth-page {
    display: flex; align-items: center; justify-content: center;
    min-height: calc(100vh - 200px);
    padding: 40px 20px;
}
.auth-card {
    width: 100%; max-width: 420px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
}
.auth-logo { margin-bottom: 24px; }
.auth-title {
    font-size: 22px; font-weight: 600;
    color: #fff; margin-bottom: 6px;
}
.auth-subtitle {
    font-size: 12px; color: #888;
    margin-bottom: 28px;
}
.auth-form { text-align: left; }
.auth-footer {
    margin-top: 20px;
    font-size: 12px; color: #888;
}
.auth-footer a { color: #c9a96e; }
.auth-footer a:hover { text-decoration: underline; }

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 10px; font-weight: 600;
    color: #c9a96e; letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group input[type="url"],
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 10px 14px;
    color: #ddd; font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c9a96e;
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 30px;
}
.form-group select option { background: #1a1a1a; color: #ccc; }
.form-group textarea { resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0 20px;
}
.full-width { grid-column: 1 / -1; }

.btn-gold {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    background: linear-gradient(135deg, #c9a96e, #a8854a);
    color: #000; padding: 10px 24px;
    border: none; border-radius: 4px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
}
.btn-gold:hover { opacity: 0.9; }
.btn-large { padding: 14px 32px; font-size: 12px; width: 100%; }
.btn-gold-outline {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    background: transparent;
    color: #c9a96e; padding: 8px 16px;
    border: 1px solid #c9a96e; border-radius: 4px;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.5px; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
}
.btn-gold-outline:hover { background: rgba(201,169,110,0.1); }
.btn-danger-outline {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    background: transparent;
    color: #e74c3c; padding: 8px 16px;
    border: 1px solid #e74c3c; border-radius: 4px;
    font-size: 11px; font-weight: 600;
    cursor: pointer; transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
}
.btn-danger-outline:hover { background: rgba(231,76,60,0.1); }

.btn-sm { padding: 6px 12px; font-size: 10px; }
.btn-danger {
    background: #e74c3c; color: #fff;
    border: none; border-radius: 4px;
    padding: 6px 10px; cursor: pointer;
    font-size: 11px; transition: all 0.3s;
}
.btn-danger:hover { background: #c0392b; }

.checkbox-group {
    display: flex; flex-wrap: wrap; gap: 10px 16px;
}
.checkbox-label {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; color: #bbb;
    cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
    width: 16px; height: 16px;
    accent-color: #c9a96e;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px 16px;
}

/* Alert */
.alert {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 12px;
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 8px;
}
.alert-error {
    background: rgba(231,76,60,0.1);
    border: 1px solid rgba(231,76,60,0.3);
    color: #e74c3c;
}
.alert-success {
    background: rgba(46,204,113,0.1);
    border: 1px solid rgba(46,204,113,0.3);
    color: #2ecc71;
}

/* ===== REGISTER PAGE ===== */
.register-page {
    min-height: calc(100vh - 200px);
    padding: 30px 20px;
}
body.register-welcome-open {
    overflow: hidden;
}
body.register-submit-open {
    overflow: hidden;
}
.register-welcome {
    position: fixed;
    inset: 0;
    z-index: 9800;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(10px);
}
.register-welcome.is-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}
.register-welcome__panel {
    width: min(100%, 620px);
    padding: 34px 32px 30px;
    border-radius: 20px;
    border: 1px solid rgba(201,169,110,0.28);
    background: rgba(12,12,12,0.96);
    box-shadow: 0 30px 70px rgba(0,0,0,0.48);
    text-align: center;
}
.register-welcome__brand {
    width: min(100%, 320px);
    height: 92px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    background: rgba(12,12,12,0.96);
    overflow: hidden;
    padding: 8px 10px;
}
.register-welcome__brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}
.register-welcome__eyebrow {
    color: #c9a96e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.register-welcome__title {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.06;
}
.register-welcome__copy {
    margin: 0 auto;
    max-width: 500px;
    color: #ddd;
    font-size: 15px;
    line-height: 1.8;
}
.register-welcome__note {
    margin: 22px auto 0;
    max-width: 500px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: #f0e7d6;
    font-size: 13px;
    line-height: 1.7;
}
.register-welcome__note i {
    color: #c9a96e;
    margin-top: 3px;
    flex: 0 0 auto;
}
.register-welcome__cta {
    width: 100%;
    max-width: 260px;
    margin-top: 24px;
}
.register-submit-overlay {
    position: fixed;
    inset: 0;
    z-index: 9900;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0,0,0,0.82);
    backdrop-filter: blur(10px);
    transition: opacity 0.18s ease;
}
.register-submit-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
}
.register-submit-overlay__panel {
    width: min(100%, 420px);
    padding: 28px 24px 24px;
    border-radius: 20px;
    border: 1px solid rgba(201,169,110,0.28);
    background: rgba(12,12,12,0.96);
    box-shadow: 0 26px 60px rgba(0,0,0,0.45);
    text-align: center;
}
.register-submit-overlay__spinner {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 3px solid rgba(201,169,110,0.18);
    border-top-color: #c9a96e;
    animation: register-submit-spin 0.85s linear infinite;
}
.register-submit-overlay__title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.4px;
}
.register-submit-overlay__copy {
    margin: 10px 0 0;
    color: #d5d5d5;
    font-size: 14px;
    line-height: 1.7;
}
@keyframes register-submit-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.register-container {
    max-width: 800px; margin: 0 auto;
}
.autofill-trap {
    position: absolute;
    left: -9999px;
    top: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}
.register-title {
    font-size: 26px; font-weight: 700;
    color: #c9a96e; letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.register-subtitle {
    font-size: 13px; color: #888;
    margin-bottom: 30px;
}
.form-section {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
}
.form-section-header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.form-section-number {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, #c9a96e, #a8854a);
    color: #000; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
    flex-shrink: 0;
}
.form-section-header h3 {
    font-size: 15px; font-weight: 600;
    color: #fff; letter-spacing: 0.5px;
}

.file-upload-area {
    border: 2px dashed rgba(201,169,110,0.3);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #888; font-size: 12px;
}
.file-upload-area:hover,
.file-upload-area.dragover {
    border-color: #c9a96e;
    background: rgba(201,169,110,0.04);
}
.file-upload-area[data-upload-status="loading"] {
    border-color: rgba(201,169,110,0.7);
    background: rgba(201,169,110,0.08);
}
.upload-helper-text {
    display: block;
    margin-top: 8px;
    color: #7f7f7f;
    font-size: 11px;
}
.photo-upload-meta {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #8f8f8f;
    font-size: 11px;
}
.photo-upload-status {
    min-height: 18px;
    margin-top: 8px;
    color: #c9a96e;
    font-size: 11px;
}
.file-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 8px;
    color: #aaa; font-size: 12px;
}
.photo-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
    gap: 12px; margin-top: 14px;
}
.photo-preview-item {
    position: relative;
    aspect-ratio: 0.84;
    border-radius: 12px;
    overflow: hidden;
    background: #151515;
    border: 1px solid rgba(255,255,255,0.08);
    cursor: grab;
    box-shadow: 0 12px 28px rgba(0,0,0,0.28);
}
.photo-preview-item.is-loading {
    cursor: progress;
}
.photo-preview-item.dragging {
    opacity: 0.42;
    transform: scale(0.98);
}
.photo-preview-item.drag-over {
    border-color: rgba(201,169,110,0.72);
    box-shadow: 0 0 0 2px rgba(201,169,110,0.16);
}
.photo-preview-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-preview-skeleton {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.04), rgba(201,169,110,0.16), rgba(255,255,255,0.04));
    background-size: 220% 100%;
    animation: photoPreviewPulse 1.2s ease infinite;
}
.photo-loading-copy {
    position: absolute;
    inset: auto 10px 36px 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.74);
    color: #f0e7d6;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.photo-loading-spinner {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,0.22);
    border-top-color: #c9a96e;
    animation: photoSpinnerSpin 0.8s linear infinite;
}
.photo-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,0.7);
    color: #c9a96e; font-size: 10px;
    text-align: center; padding: 6px 10px;
    font-weight: 700;
    letter-spacing: 0.4px;
}
.photo-remove-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background: rgba(0,0,0,0.82);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    z-index: 2;
}
.photo-remove-btn:hover {
    background: #e74c3c;
}
.photo-sort-handle {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(0,0,0,0.72);
    color: #dcc089;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 2;
    pointer-events: none;
}
.photo-preview-empty {
    grid-column: 1 / -1;
    padding: 18px 16px;
    border-radius: 10px;
    border: 1px dashed rgba(255,255,255,0.08);
    color: #777;
    font-size: 12px;
    text-align: center;
}
@keyframes photoPreviewPulse {
    0% { background-position: 200% 0; }
    100% { background-position: -20% 0; }
}
@keyframes photoSpinnerSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.register-notice {
    background: rgba(201,169,110,0.08);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 6px;
    padding: 14px 18px;
    font-size: 12px; color: #c9a96e;
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
}

/* ===== DASHBOARD ===== */
.dashboard-page {
    min-height: calc(100vh - 200px);
    padding: 30px 20px;
}
.dashboard-container { max-width: 1100px; margin: 0 auto; }
.page-title {
    font-size: 24px; font-weight: 700;
    color: #c9a96e; letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.status-banner {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
}
.status-banner i { font-size: 18px; }
.status-note { font-size: 11px; width: 100%; margin-top: 4px; opacity: 0.8; }
.alert-dismissible {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.alert-copy {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.alert-close {
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.78;
    padding: 0;
    flex: 0 0 auto;
}
.alert-close:hover {
    opacity: 1;
}
.status-pendiente, .status-pending {
    background: rgba(241,196,15,0.1);
    border: 1px solid rgba(241,196,15,0.3);
    color: #f1c40f;
}
.status-aprobado, .status-approved {
    background: rgba(46,204,113,0.1);
    border: 1px solid rgba(46,204,113,0.3);
    color: #2ecc71;
}
.status-rechazado, .status-rejected {
    background: rgba(231,76,60,0.1);
    border: 1px solid rgba(231,76,60,0.3);
    color: #e74c3c;
}
.status-bloqueado, .status-blocked {
    background: rgba(231,76,60,0.1);
    border: 1px solid rgba(231,76,60,0.3);
    color: #e74c3c;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.dashboard-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 20px;
}
.profile-status-card {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}
.profile-status-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}
.profile-status-label {
    color: #9a9a9a;
    font-size: 11px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.profile-status-card .status-note {
    margin: 10px 0 0;
    width: auto;
}
.card-title {
    font-size: 13px; font-weight: 600;
    color: #c9a96e; letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.card-title i { margin-right: 6px; }

.stats-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.stats-grid-extended {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
}
.stat-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 16px; text-align: center;
}
.stat-box-compact {
    padding: 14px 12px;
}
.stat-number { font-size: 28px; font-weight: 700; color: #c9a96e; display: block; }
.stat-text { font-size: 10px; color: #888; letter-spacing: 1px; text-transform: uppercase; }
.dashboard-grid-analytics {
    margin-top: 20px;
}
.dashboard-card-full {
    margin-top: 20px;
}
.analytics-table strong {
    color: #c9a96e;
}
.analytics-empty {
    color: #888;
    font-size: 12px;
    line-height: 1.6;
}
.profile-comment-list {
    display: grid;
    gap: 12px;
}
.profile-comment-card {
    padding: 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}
.profile-comment-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
    color: #999;
    font-size: 11px;
}
.profile-comment-stars {
    margin-top: 6px;
    color: #c9a96e;
    display: flex;
    gap: 3px;
    font-size: 12px;
}
.profile-comment-card p {
    margin: 0;
    color: #ddd;
    line-height: 1.7;
    white-space: pre-wrap;
    font-size: 13px;
}
.message-thread {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 18px 0 20px;
}
.admin-message-thread {
    max-height: 560px;
    overflow-y: auto;
    padding-right: 4px;
}
.message-bubble {
    max-width: 78%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}
.message-bubble.is-user {
    align-self: flex-start;
    border-color: rgba(255,255,255,0.08);
}
.message-bubble.is-admin {
    align-self: flex-end;
    background: rgba(201,169,110,0.12);
    border-color: rgba(201,169,110,0.28);
}
.message-bubble-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 11px;
    color: #999;
}
.message-bubble p {
    margin: 0;
    white-space: pre-wrap;
    color: #ddd;
    font-size: 13px;
    line-height: 1.65;
}
.message-compose-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.message-compose-form label {
    color: #c9a96e;
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.message-compose-form textarea {
    width: 100%;
    resize: vertical;
    min-height: 110px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 12px 14px;
    color: #ddd;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
}
.message-compose-form textarea:focus {
    border-color: rgba(201,169,110,0.45);
}
.security-password-form .form-grid {
    margin-bottom: 16px;
}
.security-password-form input[type="password"] {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 12px 14px;
    color: #ddd;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
}
.security-password-form input[type="password"]:focus {
    border-color: rgba(201,169,110,0.45);
}
.status-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border: 1px solid transparent;
}
.tone-success {
    background: rgba(46,204,113,0.1);
    color: #2ecc71;
    border-color: rgba(46,204,113,0.24);
}
.tone-warning {
    background: rgba(241,196,15,0.1);
    color: #f1c40f;
    border-color: rgba(241,196,15,0.24);
}
.tone-danger {
    background: rgba(231,76,60,0.1);
    color: #e74c3c;
    border-color: rgba(231,76,60,0.24);
}
.tone-info {
    background: rgba(52,152,219,0.1);
    color: #63b3ed;
    border-color: rgba(52,152,219,0.24);
}
.tone-neutral {
    background: rgba(255,255,255,0.06);
    color: #d1d5db;
    border-color: rgba(255,255,255,0.1);
}
.finance-stats-grid {
    margin-bottom: 18px;
}
.upgrade-card-list {
    display: grid;
    gap: 12px;
}
.upgrade-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}
.upgrade-card p {
    margin: 8px 0 10px;
    color: #b6b6b6;
    font-size: 12px;
    line-height: 1.6;
}
.upgrade-price {
    color: #c9a96e;
    font-weight: 700;
    font-size: 14px;
}
.messages-admin-layout {
    display: grid;
    grid-template-columns: minmax(320px, 380px) minmax(0, 1fr);
    gap: 20px;
}
.accounting-admin-layout {
    align-items: start;
}
.inline-status-form {
    display: flex;
    align-items: center;
    gap: 8px;
}
.inline-status-form select {
    min-width: 130px;
}
.conversation-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.accounting-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.conversation-list-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.conversation-list-item:hover,
.conversation-list-item.active {
    border-color: rgba(201,169,110,0.36);
    background: rgba(201,169,110,0.06);
}
.conversation-list-item img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
}
.conversation-list-copy {
    min-width: 0;
}
.conversation-list-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #f2f2f2;
    font-size: 13px;
}
.conversation-list-sub,
.conversation-list-copy p {
    display: block;
    color: #8f8f8f;
    font-size: 11px;
    margin-top: 4px;
}
.conversation-list-copy p {
    margin-bottom: 0;
    line-height: 1.5;
}
.conversation-header {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.quick-actions { display: flex; flex-direction: column; gap: 8px; }
.action-btn {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    color: #ccc; font-size: 12px;
    text-decoration: none; transition: all 0.3s;
}
.action-btn:hover { border-color: #c9a96e; color: #c9a96e; }
.action-btn i { color: #c9a96e; width: 16px; text-align: center; }

/* Photo Management */
.photo-manage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}
.photo-manage-grid-large {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 16px;
}
.photo-manage-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #151515;
}
.photo-manage-item-large {
    aspect-ratio: 0.76;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 36px rgba(0,0,0,0.24);
    cursor: grab;
}
.photo-manage-item-large.dragging {
    opacity: 0.45;
    transform: scale(0.98);
}
.photo-manage-item-large.drag-over {
    border-color: rgba(201,169,110,0.6);
    box-shadow: 0 0 0 2px rgba(201,169,110,0.18);
}
.photo-manage-item img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.photo-review-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    align-items: start;
    gap: 16px;
}
.photo-review-item {
    aspect-ratio: auto;
    min-height: 240px;
    border: 1px solid rgba(255,255,255,0.08);
    background: #080808;
}
.photo-review-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 240px;
    background: #080808;
}
.photo-review-link img {
    width: 100%;
    height: auto;
    max-height: 620px;
    object-fit: contain;
}
.photo-actions {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,0.8);
    padding: 6px;
    display: flex; justify-content: center; gap: 6px;
    opacity: 0; transition: opacity 0.3s;
}
.photo-manage-item:hover .photo-actions { opacity: 1; }
.photo-actions-persistent {
    opacity: 1;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.14) 12%, rgba(0,0,0,0.82) 100%);
}
.photo-badge {
    position: absolute; top: 6px; left: 6px;
    background: #c9a96e; color: #000;
    font-size: 9px; font-weight: 700;
    padding: 2px 8px; border-radius: 3px;
    letter-spacing: 0.5px;
}
.photo-order-badge {
    position: absolute; top: 6px; right: 6px;
    background: rgba(0,0,0,0.76); color: #fff;
    font-size: 9px; font-weight: 700;
    padding: 2px 8px; border-radius: 999px;
    letter-spacing: 0.5px;
}
.photo-drag-handle {
    position: absolute;
    top: 34px;
    right: 8px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(0,0,0,0.72);
    color: #f0d29a;
    border: 1px solid rgba(255,255,255,0.08);
    pointer-events: none;
}
.photo-manager-shell {
    display: grid;
    gap: 14px;
}
.photo-manager-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.photo-manager-toolbar form {
    margin-left: auto;
}
.admin-upload-form {
    display: grid;
    gap: 12px;
}
.admin-convert-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(201,169,110,0.18);
    border-radius: 12px;
    background: rgba(201,169,110,0.06);
}

@media (max-width: 900px) {
    .messages-admin-layout,
    .accounting-admin-layout {
        grid-template-columns: 1fr;
    }
    .upgrade-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .inline-status-form {
        flex-direction: column;
        align-items: stretch;
    }
    .photo-manage-grid-large {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    .photo-manager-toolbar form {
        width: 100%;
        margin-left: 0;
    }
    .photo-upload-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    .alert-dismissible,
    .profile-status-head {
        align-items: flex-start;
    }
}

/* ===== ADMIN LAYOUT ===== */
.admin-layout {
    display: flex;
    min-height: 100vh;
}
.admin-sidebar {
    width: 240px;
    background: #111;
    border-right: 1px solid rgba(255,255,255,0.06);
    position: fixed; top: 0; left: 0; bottom: 0;
    overflow-y: auto;
    z-index: 100;
}
.sidebar-brand {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sidebar-brand a { display: block; }
.sidebar-nav { padding: 12px 0; }
.sidebar-link {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 20px;
    color: #999; font-size: 12px; font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}
.sidebar-link:hover { color: #c9a96e; background: rgba(201,169,110,0.05); }
.sidebar-link.active {
    color: #c9a96e;
    background: rgba(201,169,110,0.08);
    border-right: 3px solid #c9a96e;
}
.sidebar-link i { width: 18px; text-align: center; font-size: 14px; }
.sidebar-badge {
    margin-left: auto;
    background: rgba(201,169,110,0.15);
    color: #c9a96e; font-size: 10px; font-weight: 700;
    padding: 2px 8px; border-radius: 10px;
}
.sidebar-badge.badge-warning {
    background: rgba(231,76,60,0.15);
    color: #e74c3c;
}
.sidebar-divider {
    height: 1px;
    background: rgba(255,255,255,0.05);
    margin: 8px 16px;
}

body.age-gate-open {
    overflow: hidden;
}

html.age-gate-accepted .age-gate {
    display: none;
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0,0,0,0.84);
    backdrop-filter: blur(10px);
}

.age-gate.is-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.age-gate__panel {
    width: min(100%, 560px);
    border: 1px solid rgba(201,169,110,0.34);
    border-radius: 20px;
    background: rgba(12,12,12,0.96);
    box-shadow: 0 28px 60px rgba(0,0,0,0.45);
    padding: 34px 30px 28px;
    text-align: center;
}

.age-gate__icon {
    width: min(100%, 320px);
    height: 92px;
    margin: 0 auto 22px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    border: none;
    background: rgba(12,12,12,0.96);
    overflow: hidden;
    padding: 8px 10px;
}
.age-gate__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.age-gate__title {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.05;
}

.age-gate__copy {
    margin: 0 auto 22px;
    max-width: 440px;
    color: #d5d5d5;
    font-size: 15px;
    line-height: 1.7;
}

.age-gate__check {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    color: #f2f2f2;
    text-align: left;
    margin-bottom: 18px;
    cursor: pointer;
}

.age-gate__check input {
    width: 22px;
    height: 22px;
    margin-top: 2px;
    accent-color: #c9a96e;
    flex: 0 0 auto;
}

.age-gate__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.age-gate__enter[disabled] {
    cursor: not-allowed;
    opacity: 0.5;
}

.age-gate__exit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    color: #f4f4f4;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 16px;
}
.age-gate__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 12px;
    margin-top: 18px;
}
.age-gate__links a {
    color: #c9a96e;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}
.age-gate__links a:hover {
    color: #e3c78f;
}

.admin-main {
    flex: 1;
    margin-left: 240px;
    padding: 24px 30px;
}
.admin-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px;
}
.admin-header h1 {
    font-size: 22px; font-weight: 600;
    color: #fff; letter-spacing: 0.5px;
}
.admin-welcome {
    font-size: 12px; color: #888;
}
.admin-welcome strong { color: #c9a96e; }
.admin-badge-count {
    font-size: 12px; color: #888;
    background: rgba(255,255,255,0.05);
    padding: 4px 12px; border-radius: 4px;
}

/* Admin Stats */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.admin-stat-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 18px;
    display: flex; align-items: center; gap: 14px;
}
.stat-card-icon {
    width: 46px; height: 46px;
    background: rgba(201,169,110,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #c9a96e; font-size: 18px;
}
.stat-warning .stat-card-icon { background: rgba(241,196,15,0.1); color: #f1c40f; }
.stat-success .stat-card-icon { background: rgba(46,204,113,0.1); color: #2ecc71; }
.stat-danger .stat-card-icon { background: rgba(231,76,60,0.1); color: #e74c3c; }
.stat-card-number {
    font-size: 26px; font-weight: 700; color: #fff; display: block;
}
.stat-card-label {
    font-size: 10px; color: #888;
    letter-spacing: 0.5px; text-transform: uppercase;
}

/* Admin Panels */
.admin-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}
.admin-panel {
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    overflow: hidden;
}
.admin-stack {
    display: grid;
    gap: 20px;
}
.admin-note {
    color: #999;
    font-size: 13px;
    line-height: 1.7;
}
.admin-kpi-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 18px;
}
.admin-kpi {
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    padding: 18px 16px;
}
.admin-kpi-label {
    display: block;
    color: #8e8e8e;
    font-size: 11px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.admin-kpi-value {
    display: block;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
}
.admin-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.admin-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.admin-status-pill.is-on {
    background: rgba(39,174,96,0.12);
    color: #51d18f;
}
.admin-status-pill.is-off {
    background: rgba(201,169,110,0.14);
    color: #c9a96e;
}
.panel-header {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: space-between;
}
.panel-header h3 {
    font-size: 13px; font-weight: 600;
    color: #ddd; letter-spacing: 0.3px;
}
.panel-header h3 i { color: #c9a96e; margin-right: 8px; }
.panel-link {
    font-size: 10px; color: #c9a96e;
    text-decoration: none; font-weight: 600;
    letter-spacing: 0.5px; text-transform: uppercase;
}
.panel-link:hover { text-decoration: underline; }
.panel-body { padding: 16px 18px; }
.empty-text {
    color: #666; font-size: 12px;
    text-align: center; padding: 20px 0;
}

/* Admin Table */
.table-responsive { overflow-x: auto; }
.admin-table {
    width: 100%;
    border-collapse: collapse;
}
.admin-table th,
.admin-table td {
    padding: 10px 12px;
    text-align: left;
    font-size: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.admin-table th {
    color: #888;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.admin-table td { color: #ccc; }
.admin-table tr:hover { background: rgba(255,255,255,0.02); }
.table-avatar {
    width: 36px; height: 36px;
    border-radius: 4px;
    object-fit: cover;
}
.table-user-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.origin-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.origin-badge.is-demo {
    background: rgba(201,169,110,0.14);
    color: #c9a96e;
}
.origin-badge.is-real {
    background: rgba(39,174,96,0.12);
    color: #51d18f;
}

/* Badges */
.badge-category {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(201,169,110,0.1);
    color: #c9a96e;
    border-radius: 3px;
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.3px;
}
.badge-status {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 10px; font-weight: 600;
    text-transform: capitalize;
}
.badge-pendiente, .badge-pending { background: rgba(241,196,15,0.15); color: #f1c40f; }
.badge-aprobado, .badge-approved { background: rgba(46,204,113,0.15); color: #2ecc71; }
.badge-rechazado, .badge-rejected { background: rgba(231,76,60,0.15); color: #e74c3c; }
.badge-bloqueado, .badge-blocked { background: rgba(231,76,60,0.15); color: #e74c3c; }

/* Action Buttons */
.action-buttons { display: flex; gap: 6px; flex-wrap: wrap; }
.action-form { display: inline-flex; }
.btn-action {
    min-height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    gap: 6px;
    border-radius: 4px; border: none;
    font-size: 11px; cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    padding: 6px 10px;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.btn-action i { font-size: 11px; }
.btn-view { background: rgba(52,152,219,0.15); color: #3498db; }
.btn-view:hover { background: rgba(52,152,219,0.25); }
.btn-edit { background: rgba(201,169,110,0.15); color: #c9a96e; }
.btn-edit:hover { background: rgba(201,169,110,0.25); }
.btn-divinity-contact { background: rgba(142, 68, 173, 0.16); color: #d2a8ff; }
.btn-divinity-contact:hover { background: rgba(142, 68, 173, 0.28); }
.btn-divinity-added { background: rgba(46,204,113,0.18); color: #6ee7a8; }
.btn-divinity-added:hover { background: rgba(46,204,113,0.28); }
.btn-approve { background: rgba(46,204,113,0.15); color: #2ecc71; }
.btn-approve:hover { background: rgba(46,204,113,0.25); }
.btn-block { background: rgba(241,196,15,0.15); color: #f1c40f; }
.btn-block:hover { background: rgba(241,196,15,0.25); }
.btn-delete { background: rgba(231,76,60,0.15); color: #e74c3c; }
.btn-delete:hover { background: rgba(231,76,60,0.25); }
.table-user-submeta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}
.divinity-status-chip,
.divinity-status-detail {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 10px;
    line-height: 1.1;
}
.divinity-status-chip {
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.divinity-status-detail {
    background: rgba(255,255,255,0.05);
    color: #b8b8b8;
}
.tone-neutral { background: rgba(201,169,110,0.16); color: #e4c48d; }
.tone-info { background: rgba(52,152,219,0.16); color: #7ec9ff; }
.tone-warning { background: rgba(241,196,15,0.16); color: #f6d85a; }
.tone-success { background: rgba(46,204,113,0.16); color: #6ee7a8; }
.tone-danger { background: rgba(231,76,60,0.16); color: #ff8f86; }
.admin-dialog {
    position: fixed;
    inset: 0;
    width: min(680px, calc(100vw - 32px));
    max-width: 680px;
    max-height: calc(100vh - 48px);
    margin: auto;
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 18px;
    padding: 0;
    background: #121212;
    color: #f5f5f5;
    box-shadow: 0 24px 80px rgba(0,0,0,0.45);
    overflow: auto;
}
.admin-dialog::backdrop {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(3px);
}
.admin-dialog-card {
    padding: 24px;
}
.admin-dialog-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}
.admin-dialog-header h3 {
    margin: 0 0 6px;
    font-size: 20px;
    color: #c9a96e;
}
.admin-dialog-header p {
    margin: 0;
    color: #9e9e9e;
    font-size: 13px;
}
.admin-dialog-close {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: #f5f5f5;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}
.admin-contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.admin-contact-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #d4d4d4;
    font-size: 12px;
    font-weight: 600;
}
.admin-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.contact-input {
    background-image: none;
    padding-right: 12px;
}
.admin-contact-textarea {
    min-height: 92px;
    resize: vertical;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    color: #f0f0f0;
    padding: 12px 14px;
    font: inherit;
}
.admin-contact-textarea:focus {
    outline: none;
    border-color: rgba(201,169,110,0.6);
}
.checkbox-inline {
    flex-direction: row !important;
    align-items: center;
    gap: 10px !important;
    min-height: 42px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    padding: 0 12px;
}
.checkbox-inline input {
    width: 16px;
    height: 16px;
}
.admin-contact-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.admin-contact-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
@media (max-width: 720px) {
    .admin-contact-grid {
        grid-template-columns: 1fr;
    }
    .admin-dialog-card {
        padding: 18px;
    }
    .admin-contact-actions {
        justify-content: stretch;
    }
    .admin-contact-actions .btn-outline,
    .admin-contact-actions .btn-gold {
        width: 100%;
    }
}

/* Admin Filters */
.admin-filters {
    margin-bottom: 20px;
}
.filter-inline {
    display: flex; gap: 10px; align-items: center;
    flex-wrap: wrap;
}
.filter-select-admin {
    appearance: none;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 8px 30px 8px 12px;
    color: #aaa; font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer; outline: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}
.filter-select-admin:focus { border-color: #c9a96e; }
.filter-select-admin option { background: #1a1a1a; color: #ccc; }
.filter-search-admin {
    min-width: 240px;
    background-image: none;
    padding-right: 12px;
    cursor: text;
}

/* Pagination */
.pagination {
    display: flex; justify-content: center;
    gap: 6px; margin-top: 20px;
}
.page-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: #aaa; font-size: 12px;
    text-decoration: none; transition: all 0.3s;
}
.page-link:hover { border-color: #c9a96e; color: #c9a96e; }
.page-link.active {
    background: #c9a96e; color: #000;
    border-color: #c9a96e; font-weight: 700;
}
.accounting-pagination {
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Admin Quick Actions */
.admin-quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}
.admin-action-btn {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    color: #ccc; font-size: 12px; font-weight: 500;
    text-decoration: none; transition: all 0.3s;
}
.admin-action-btn:hover { border-color: #c9a96e; color: #c9a96e; }
.admin-action-btn i { color: #c9a96e; font-size: 14px; }

/* Comment Preview (Admin dashboard) */
.comment-preview {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.comment-preview:last-child { border-bottom: none; }
.comment-preview-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 4px;
}
.comment-preview-header strong { color: #ddd; font-size: 12px; }
.comment-preview-header em { color: #888; font-size: 11px; }
.comment-stars-small { color: #c9a96e; font-size: 10px; }
.comment-preview-text { color: #999; font-size: 11px; line-height: 1.5; }

/* Admin Form Grid */
.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 20px;
}
.admin-edit-form { width: 100%; }

/* Request Cards */
.requests-list { display: flex; flex-direction: column; gap: 16px; }
.request-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 20px;
}
.request-preview {
    display: flex; gap: 16px; margin-bottom: 16px;
}
.request-avatar {
    width: 80px; height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.request-info { flex: 1; }
.request-info h3 {
    font-size: 16px; font-weight: 600;
    color: #fff; margin-bottom: 6px;
}
.request-meta {
    display: flex; gap: 14px; flex-wrap: wrap;
    margin-bottom: 8px;
}
.request-meta span {
    font-size: 11px; color: #999;
}
.request-meta i { color: #c9a96e; margin-right: 4px; }
.request-description {
    font-size: 12px; color: #888;
    line-height: 1.5; margin-bottom: 6px;
}
.request-details {
    display: flex; gap: 12px; flex-wrap: wrap;
}
.request-details span {
    font-size: 10px; color: #777;
    background: rgba(255,255,255,0.04);
    padding: 2px 8px; border-radius: 3px;
}
.request-actions {
    display: flex; gap: 8px; flex-wrap: wrap;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Banner Management */
.banner-manage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}
.banner-manage-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    overflow: hidden;
}
.banner-thumb {
    position: relative;
    height: 140px;
}
.banner-thumb img { width: 100%; height: 100%; object-fit: cover; }
.banner-inactive-badge {
    position: absolute; top: 6px; right: 6px;
    background: rgba(231,76,60,0.9); color: #fff;
    font-size: 9px; font-weight: 700;
    padding: 2px 8px; border-radius: 3px;
}
.banner-manage-info {
    padding: 10px 12px;
}
.banner-manage-info h4 { font-size: 13px; color: #ddd; margin-bottom: 2px; }
.banner-manage-info p { font-size: 11px; color: #888; }
.banner-detail-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 8px;
    font-size: 11px;
    color: #9c9c9c;
}
.banner-runtime-pill,
.banner-payment-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}
.banner-runtime-pill.is-running { background: rgba(46,204,113,0.12); color: #52d68c; }
.banner-runtime-pill.is-scheduled { background: rgba(52,152,219,0.14); color: #73b8ef; }
.banner-runtime-pill.is-expired { background: rgba(231,76,60,0.14); color: #f07a6e; }
.banner-runtime-pill.is-inactive { background: rgba(255,255,255,0.08); color: #b7b7b7; }
.banner-runtime-pill.is-payment-pending,
.banner-runtime-pill.is-payment-overdue { background: rgba(201,169,110,0.15); color: #daba7b; }
.banner-payment-pill.is-paid { background: rgba(46,204,113,0.12); color: #52d68c; }
.banner-payment-pill.is-pending { background: rgba(201,169,110,0.15); color: #daba7b; }
.banner-payment-pill.is-overdue { background: rgba(231,76,60,0.14); color: #f07a6e; }
.banner-payment-pill.is-courtesy { background: rgba(52,152,219,0.14); color: #73b8ef; }
.banner-notes {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.banner-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}
.banner-metric-card {
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 12px 14px;
}
.banner-metric-card strong {
    display: block;
    margin-top: 6px;
    color: #fff;
    font-size: 22px;
}
.banner-metric-label {
    display: block;
    color: #8e8e8e;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.permission-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}
.permission-group-card {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 16px;
    background: rgba(255,255,255,0.02);
}
.permission-group-head {
    margin-bottom: 12px;
    color: #fff;
}
.permission-option-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.permission-option {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #cfcfcf;
    font-size: 14px;
}
.permission-option input {
    margin-top: 2px;
}
.backoffice-user-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
}
.backoffice-user-card {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 18px;
    background: rgba(255,255,255,0.02);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.backoffice-user-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.backoffice-user-header h4 {
    margin: 0;
}
.permission-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.permission-chip {
    border: 1px solid rgba(201,169,110,0.24);
    background: rgba(201,169,110,0.08);
    border-radius: 999px;
    padding: 8px 12px;
    display: inline-flex;
    flex-direction: column;
    min-width: 110px;
}
.permission-chip strong {
    font-size: 12px;
    color: #fff;
}
.permission-chip small {
    font-size: 11px;
    color: #9a9a9a;
}
.legal-editor-textarea {
    min-height: 720px;
    font-family: Consolas, "Courier New", monospace;
    line-height: 1.55;
}
.banner-manage-actions {
    padding: 8px 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex; gap: 6px;
}

/* FAQ Management */
.faq-manage-list { display: flex; flex-direction: column; gap: 8px; }
.faq-manage-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
}
.faq-manage-number {
    width: 28px; height: 28px;
    background: rgba(201,169,110,0.1);
    color: #c9a96e;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700;
    flex-shrink: 0;
}
.faq-manage-content { flex: 1; min-width: 0; }
.faq-manage-content h4 {
    font-size: 12px; color: #ddd;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.faq-manage-content p { font-size: 11px; color: #888; }
.faq-manage-actions {
    display: flex; gap: 6px; flex-shrink: 0;
}

/* Comment Management */
.comments-manage-list { display: flex; flex-direction: column; gap: 12px; }
.comment-manage-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 16px;
}
.comment-manage-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 8px; flex-wrap: wrap; gap: 8px;
}
.comment-manage-author { color: #ddd; font-size: 13px; }
.comment-manage-profile { font-size: 11px; color: #888; }
.comment-manage-meta { display: flex; align-items: center; gap: 10px; }
.comment-manage-date { font-size: 10px; color: #666; }
.comment-manage-text { font-size: 12px; color: #aaa; line-height: 1.6; margin-bottom: 12px; }
.comment-manage-actions { display: flex; gap: 8px; }

/* Backoffice typography lift */
.admin-layout {
    font-size: 17px;
}
.admin-layout .sidebar-link {
    font-size: 13.5px;
}
.admin-layout .sidebar-link i {
    font-size: 15px;
}
.admin-layout .sidebar-badge,
.admin-layout .admin-badge-count {
    font-size: 11.5px;
}
.admin-layout .admin-header h1 {
    font-size: 25px;
}
.admin-layout .admin-welcome,
.admin-layout .admin-subtitle {
    font-size: 13.5px;
}
.admin-layout .panel-header h3,
.admin-layout .card-title {
    font-size: 16px;
}
.admin-layout .panel-header p,
.admin-layout .admin-note,
.admin-layout .analytics-empty,
.admin-layout .empty-text {
    font-size: 14px;
    line-height: 1.65;
}
.admin-layout .admin-table th,
.admin-layout .admin-table td {
    font-size: 13.5px;
}
.admin-layout .admin-table th {
    font-size: 11.5px;
}
.admin-layout .table-user-meta strong,
.admin-layout .conversation-list-head strong,
.admin-layout .request-info h3,
.admin-layout .banner-manage-info h4,
.admin-layout .faq-manage-content h4,
.admin-layout .comment-manage-author {
    font-size: 14.5px;
}
.admin-layout .table-user-meta span,
.admin-layout .table-user-submeta,
.admin-layout .conversation-list-sub,
.admin-layout .conversation-list-copy p,
.admin-layout .request-meta span,
.admin-layout .request-description,
.admin-layout .request-details span,
.admin-layout .banner-manage-info p,
.admin-layout .banner-detail-row,
.admin-layout .faq-manage-content p,
.admin-layout .comment-manage-profile,
.admin-layout .comment-manage-date,
.admin-layout .comment-manage-text,
.admin-layout .comment-preview-header strong,
.admin-layout .comment-preview-header em,
.admin-layout .comment-preview-text {
    font-size: 13px;
}
.admin-layout .filter-select-admin,
.admin-layout .filter-search-admin,
.admin-layout input,
.admin-layout select,
.admin-layout textarea {
    font-size: 13.5px;
}
.admin-layout label,
.admin-layout .form-group label,
.admin-layout .admin-contact-form label span,
.admin-layout .checkbox-label,
.admin-layout .permission-chip,
.admin-layout .permission-chip small {
    font-size: 13px;
}
.admin-layout .btn-sm,
.admin-layout .btn-gold,
.admin-layout .btn-gold-outline,
.admin-layout .btn-danger,
.admin-layout .btn-danger-outline,
.admin-layout .btn-outline,
.admin-layout .btn-action,
.admin-layout .admin-action-btn,
.admin-layout .page-link {
    font-size: 12.5px;
}
.admin-layout .btn-action i,
.admin-layout .admin-action-btn i {
    font-size: 13px;
}
.admin-layout .badge-status,
.admin-layout .badge-category,
.admin-layout .origin-badge,
.admin-layout .status-chip,
.admin-layout .divinity-status-chip,
.admin-layout .admin-status-pill,
.admin-layout .banner-runtime-pill,
.admin-layout .banner-payment-pill {
    font-size: 11.5px;
}
.admin-layout .stat-card-number {
    font-size: 29px;
}
.admin-layout .stat-card-label,
.admin-layout .stat-text,
.admin-layout .admin-kpi-label {
    font-size: 11.5px;
}
.admin-layout .admin-kpi-value,
.admin-layout .stat-number {
    font-size: 31px;
}
.admin-layout .admin-dialog-header h3 {
    font-size: 23px;
}
.admin-layout .admin-dialog-header p {
    font-size: 14.5px;
}
.admin-layout .admin-dialog-close {
    font-size: 24px;
}

/* Empty State */
.empty-state {
    text-align: center; padding: 40px 20px;
    color: #555;
}
.empty-state i { font-size: 36px; margin-bottom: 12px; display: block; }
.empty-state p { font-size: 13px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .nav-links a { padding: 17px 8px; font-size: 10px; }
    .admin-stats { grid-template-columns: repeat(2, 1fr); }
    .admin-content-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1180px) {
    .stories-section {
        gap: 0;
    }
    .stories-nav {
        display: none !important;
    }
}
@media (min-width: 1181px) {
    .stories-nav {
        display: inline-flex;
    }
}
@media (max-width: 768px) {
    body { overflow-x: hidden; }

    .navbar {
        display: flex; flex-wrap: wrap;
        align-items: flex-start;
        height: auto; padding: 12px 14px 10px; gap: 10px 0;
    }
    .logo { order: 1; flex: 0 1 auto; max-width: calc(100% - 184px); }
    .logo img { width: clamp(148px, 44vw, 188px); height: auto; }
    .navbar-right {
        order: 2; flex: 1 0 100%; width: 100%;
        margin-left: 0; display: block;
    }
    .search-bar { width: 100%; margin-top: 12px; }
    .search-bar form { width: 100%; }
    .search-bar input { flex: 1 1 auto; width: auto; min-width: 0; height: 42px; padding: 0 12px; font-size: 13px; }
    .search-bar input:focus { width: auto; }
    .search-bar button { height: 42px; padding: 0 12px; }
    .nav-actions {
        position: absolute; top: 12px; right: 14px;
        justify-content: flex-end; width: auto;
    }
    .nav-links {
        display: none;
    }
    .mobile-category-filter {
        order: 3;
        display: block;
        flex: 1 0 100%;
        width: 100%;
        padding-top: 2px;
        border-top: 1px solid rgba(255,255,255,0.06);
    }

    .filter-toggle { display: flex; }
    .filter-panel {
        max-height: 0; overflow: hidden; opacity: 0;
        transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.35s ease;
        margin-top: 0;
    }
    .filter-bar.is-open .filter-panel {
        max-height: 1200px; opacity: 1; margin-top: 12px;
    }
    .filter-row, .filter-row-secondary {
        display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 10px; align-items: end;
    }
    .filter-wide { grid-column: 1 / -1; }
    .filter-select { width: 100%; height: 42px; padding: 0 30px 0 12px; font-size: 12px; }
    .filter-range input[type="number"] { width: 100%; height: 42px; }
    .filter-divider { display: none; }
    .filter-actions {
        grid-column: 1 / -1; margin-left: 0;
        display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    }
    .btn-filter { width: 100%; height: 42px; }

    .banner-section { height: clamp(300px, 88vw, 370px); padding: 0 14px; }
    .banner-track { gap: 14px; }
    .banner-slide {
        flex: 0 0 calc(100vw - 28px);
        width: calc(100vw - 28px);
        min-width: calc(100vw - 28px);
        border-radius: 10px;
    }
    .banner-slide-bg { filter: brightness(0.46); }
    .banner-slide-content { padding: 0 22px; bottom: 24px; }
    .banner-slide-title { font-size: 23px; }
    .banner-slide-sub { font-size: 10.5px; }
    .sponsored-slot { padding: 14px 14px 4px; }
    .sponsored-card {
        grid-template-columns: minmax(0, 1fr);
        min-height: auto;
    }
    .sponsored-card-content {
        max-width: 100%;
        padding: 16px 16px 12px;
        gap: 6px;
    }
    .sponsored-card-media,
    .sponsored-card-bg,
    .sponsored-card-compact,
    .sponsored-card-compact .sponsored-card-media,
    .sponsored-card-compact .sponsored-card-bg {
        min-height: 96px;
    }
    .sponsored-card-media {
        order: -1;
        border-left: none;
        border-bottom: 1px solid rgba(201,169,110,0.12);
    }
    .sponsored-card-title { font-size: 17px; line-height: 1.08; }
    .sponsored-card-copy { font-size: 12px; line-height: 1.5; }
    .sponsored-card-kicker { font-size: 9px; letter-spacing: 1.4px; }
    .sponsored-card-tag { font-size: 9px; letter-spacing: 1.6px; padding: 6px 10px; }
    .sponsored-card-btn { margin-top: 4px; }

    .section-header { padding: 20px 14px 12px; }
    .stories-header { padding: 20px 14px 12px; }
    .stories-section { padding: 0 14px 8px; }
    .stories-track { gap: 12px; }
    .story-item { width: 72px; max-width: 72px; }
    .story-ring { width: 68px; height: 68px; }
    .story-name { max-width: 68px; font-size: 10px; }

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px; padding: 0 14px;
    }
    .card { border-radius: 8px; }
    .card-overlay { padding: 46px 10px 10px; }
    .card-name { width: 100%; text-align: center; padding: 5px 10px; font-size: 11px; }
    .card-location { font-size: 9px; }
    .card-price { font-size: 13px; }
    .stats-grid,
    .stats-grid-extended { grid-template-columns: 1fr; }
    .messages-admin-layout { grid-template-columns: 1fr; }
    .contact-web-grid,
    .web-lead-meta-grid { grid-template-columns: 1fr; }
    .contact-web-card { padding: 24px 18px; }
    .contact-web-card h1 { font-size: 30px; }
    .contact-web-actions { flex-direction: column; }
    .message-bubble { max-width: 100%; }

    .faq-section { padding: 0 14px; margin-top: 34px; }
    .quick-access { padding: 30px 14px; }
    .quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 12px; }
    .footer { padding: 32px 14px 18px; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 12px; }
    .footer-creator-copy { justify-content: flex-start; text-align: left; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
    .age-gate { padding: 16px; }
    .age-gate__panel { padding: 28px 20px 22px; border-radius: 18px; }
    .age-gate__copy { font-size: 14px; }
    .age-gate__check { padding: 14px; gap: 12px; }
    .age-gate__links { gap: 8px 10px; }
    .age-gate__links a { font-size: 10px; }
    .register-welcome { padding: 16px; }
    .register-welcome__panel { padding: 28px 20px 24px; border-radius: 18px; }
    .register-welcome__brand { height: 84px; margin-bottom: 16px; }
    .register-welcome__title { font-size: 30px; }
    .register-welcome__copy { font-size: 14px; line-height: 1.7; }
    .register-welcome__note { font-size: 12px; padding: 12px 14px; }
    .register-submit-overlay__panel { padding: 24px 18px 20px; border-radius: 18px; }
    .register-submit-overlay__title { font-size: 20px; }
    .register-submit-overlay__copy { font-size: 13px; }

    /* Profile page responsive */
    .contact-bar-inner { grid-template-columns: 1fr 1fr; gap: 12px; }
    .contact-item { min-height: 104px; padding: 18px 18px 16px; }
    .contact-icon { width: 46px; height: 46px; border-radius: 14px; }
    .contact-value { font-size: 16px !important; }
    .contact-rate-value { font-size: 16px !important; }
    .profile-gallery { grid-template-columns: 1fr; }
    .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
    .profile-name { font-size: 23px; }
    .profile-stats { gap: 10px; }
    .profile-side-nav {
        top: auto;
        bottom: 18px;
        left: 14px;
        right: 14px;
        transform: none;
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }
    .profile-side-nav__btn {
        position: static;
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
        padding: 11px 12px;
        border-radius: 12px;
    }
    .profile-side-nav__btn--next {
        text-align: right;
    }
    .profile-side-nav__label strong { font-size: 11px; }
    .profile-side-nav__arrow { font-size: 24px; }

    /* Admin responsive */
    .admin-sidebar {
        width: 200px;
    }
    .admin-main { margin-left: 200px; padding: 20px; }
    .admin-stats { grid-template-columns: 1fr 1fr; }
    .admin-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; }
    .contact-bar-inner { grid-template-columns: 1fr; }
    .profile-contact-bar { margin-top: 14px; }
}
@media (max-width: 420px) {
    .nav-actions a { font-size: 12px; }
    .btn-anunciate { min-width: 110px; padding: 0 12px; font-size: 9px !important; }
    .filter-toggle-meta { display: none; }
}
