/* InstaGpam — ночной клубный стиль */
:root {
    --bg-dark: #0d0d12;
    --bg-card: #15151d;
    --bg-card-hover: #1a1a24;
    --border: #2a2a38;
    --text: #e8e6f0;
    --text-muted: #8888a0;
    --accent: #ff2d8e;
    --accent-glow: rgba(255, 45, 142, 0.4);
    --accent-secondary: #00d4aa;
    --gold: #d4af37;
    --radius: 12px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.5;
}

a {
    color: var(--accent);
    text-decoration: none;
}
a:hover {
    color: var(--accent-secondary);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 13, 18, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.05em;
}
.logo:hover {
    color: var(--accent);
}
.city {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.nav {
    display: flex;
    gap: 1.25rem;
}
.nav a {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.nav a:hover {
    color: var(--accent);
}
.header-actions {
    margin-left: auto;
    display: flex;
    gap: 0.75rem;
}
/* Hamburger — скрыт на десктопе */
.header-burger {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    color: var(--text);
    -webkit-tap-highlight-color: transparent;
}
.header-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.2s, opacity 0.2s;
}
.header-burger:hover {
    color: var(--accent);
}
/* Мобильная шапка: только логотип, город и бутерброд */
@media (max-width: 768px) {
    .nav,
    .header-actions {
        display: none !important;
    }
    .header-burger {
        display: flex;
    }
    .header-inner {
        padding: 0.75rem 1rem;
    }
    .city {
        font-size: 0.8rem;
    }
}
/* Мобильное меню */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.25s, opacity 0.25s;
}
.mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
}
.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    -webkit-tap-highlight-color: transparent;
}
.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 85vw);
    max-width: 100%;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.25s ease-out;
}
.mobile-menu.is-open .mobile-menu-panel {
    transform: translateX(0);
}
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
}
.mobile-menu-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text);
}
.mobile-menu-close {
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.mobile-menu-close:hover {
    color: var(--text);
}
.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    overflow: auto;
}
.mobile-menu-nav a {
    display: block;
    padding: 1rem 1.25rem;
    color: var(--text);
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    -webkit-tap-highlight-color: transparent;
}
.mobile-menu-nav a:hover {
    background: var(--bg-dark);
    color: var(--accent);
}
.mobile-menu-nav a.mobile-menu-btn {
    margin: 0.75rem 1.25rem;
    padding: 0.85rem 1.25rem;
    text-align: center;
    background: linear-gradient(135deg, var(--accent), #c41e6e);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
}
.mobile-menu-nav a.mobile-menu-btn:hover {
    background: linear-gradient(135deg, #e02a82, #b01a5e);
    color: #fff;
}
.btn-ghost {
    padding: 0.5rem 1rem;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
}
.btn-ghost:hover {
    color: var(--text);
    border-color: var(--accent);
}
.btn-neon {
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--accent), #c41e6e);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 0 20px var(--accent-glow);
}
.btn-neon:hover {
    box-shadow: 0 0 28px var(--accent-glow);
    color: #fff;
}
.header-glow {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-secondary), transparent);
    opacity: 0.6;
}

/* Main */
.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

/* Page title */
.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin: 0 0 1.5rem;
    color: var(--text);
}

/* Filters */
.filters {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}
.filters label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.filters select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.9rem;
    cursor: pointer;
}
.filters select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent-glow);
}
.filters .btn-apply {
    align-self: end;
    padding: 0.6rem 1.25rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}
.filters .btn-apply:hover {
    background: #e02a82;
    box-shadow: 0 0 16px var(--accent-glow);
}

/* Card grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}
.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.profile-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 24px var(--accent-glow);
}
.profile-card a {
    color: inherit;
    display: block;
}
.profile-card .card-photo {
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, #1a1a24 0%, #252532 100%);
    position: relative;
    overflow: hidden;
}
.profile-card .card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.profile-card .card-photo .placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 3rem;
}
.profile-card .card-price {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: rgba(0, 0, 0, 0.75);
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    font-weight: 700;
    color: var(--gold);
    font-size: 0.95rem;
}
.profile-card .card-body {
    padding: 1rem;
}
.profile-card .card-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 0 0.25rem;
}
.profile-card .card-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.profile-card .card-meta span + span::before {
    content: ' · ';
}

/* Profile page */
.profile-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 900px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }
}
.profile-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    border-radius: var(--radius);
    overflow: hidden;
}
.profile-gallery .main-photo {
    grid-column: 1 / -1;
    aspect-ratio: 16/10;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
}
.profile-gallery .main-photo img,
.profile-gallery .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.profile-gallery .thumb {
    aspect-ratio: 1;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
}
.profile-gallery .main-photo .placeholder,
.profile-gallery .thumb .placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 2rem;
}
.profile-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin: 0 0 0.5rem;
}
.profile-info .profile-meta {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.profile-info .profile-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text);
}
.profile-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.profile-services .tag {
    padding: 0.35rem 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.profile-sidebar {
    position: sticky;
    top: 6rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.profile-sidebar .price-block {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}
.profile-sidebar .contact-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.profile-sidebar .btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    text-decoration: none;
    color: #fff;
}
.profile-sidebar .btn-phone {
    background: linear-gradient(135deg, var(--accent), #c41e6e);
    box-shadow: 0 0 20px var(--accent-glow);
}
.profile-sidebar .btn-tg {
    background: #0088cc;
}
.profile-sidebar .btn-contact:hover {
    opacity: 0.95;
    transform: scale(1.02);
}
.outcall-badge {
    margin-top: 1rem;
    padding: 0.5rem;
    background: rgba(0, 212, 170, 0.15);
    border: 1px solid var(--accent-secondary);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--accent-secondary);
}

/* Footer */
.site-footer {
    margin-top: 3rem;
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0 0 1rem;
}
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.footer-nav a {
    color: var(--text-muted);
    transition: color 0.2s;
}
.footer-nav a:hover {
    color: #b78cf7;
}
.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* Static pages */
.static-page {
    max-width: 720px;
    margin: 0 auto;
}
.static-page h1 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}
.static-page h2 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--text-muted);
}
.static-page p {
    color: var(--text);
    margin: 0 0 0.75rem;
}

/* Contacts */
.contacts-hero {
    margin: 0 0 1.25rem;
}
.contacts-subtitle {
    margin: -0.75rem 0 0;
    color: var(--text-muted);
    max-width: 70ch;
}

.contacts-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.25rem;
    align-items: start;
}
@media (max-width: 980px) {
    .contacts-layout {
        grid-template-columns: 1fr;
    }
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}
@media (max-width: 720px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    position: relative;
    background: radial-gradient(1200px 200px at 10% 0%, rgba(255, 45, 142, 0.10), transparent 55%),
                radial-gradient(900px 220px at 100% 20%, rgba(0, 212, 170, 0.10), transparent 55%),
                var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.contact-card::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(420px 180px at var(--mx, 50%) var(--my, 20%), rgba(255, 45, 142, 0.22), transparent 60%);
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
}
.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 45, 142, 0.7);
    box-shadow: 0 16px 52px rgba(0, 0, 0, 0.45), 0 0 28px rgba(255, 45, 142, 0.18);
}
.contact-card:hover::after {
    opacity: 1;
}
.contact-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.contact-card__title {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.contact-card__badge {
    font-size: 0.72rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 45, 142, 0.55);
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 45, 142, 0.85), rgba(196, 30, 110, 0.85));
    box-shadow: 0 0 18px rgba(255, 45, 142, 0.22);
}
.contact-card__badge--mint {
    border-color: rgba(0, 212, 170, 0.55);
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.9), rgba(0, 140, 115, 0.9));
    box-shadow: 0 0 18px rgba(0, 212, 170, 0.18);
}
.contact-card__badge--gold {
    border-color: rgba(212, 175, 55, 0.55);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(170, 125, 25, 0.9));
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.16);
}
.contact-card__badge--dim {
    border-color: rgba(136, 136, 160, 0.45);
    background: rgba(0, 0, 0, 0.35);
    box-shadow: none;
    color: var(--text-muted);
}
.contact-card__value {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.35rem;
}
.contact-card__muted {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}
.contact-link {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 45, 142, 0.35);
}
.contact-link:hover {
    color: var(--accent-secondary);
    border-bottom-color: rgba(0, 212, 170, 0.55);
}

.contact-form-card {
    position: sticky;
    top: 6rem;
    background: radial-gradient(900px 240px at 20% 0%, rgba(212, 175, 55, 0.10), transparent 60%),
                var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}
@media (max-width: 980px) {
    .contact-form-card {
        position: relative;
        top: auto;
    }
}
.contact-form-card__title {
    font-family: 'Playfair Display', serif;
    margin: 0 0 0.25rem;
    font-size: 1.35rem;
}
.contact-form-card__subtitle {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
}

.alert {
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    margin: 0 0 1rem;
    background: rgba(0, 0, 0, 0.25);
}
.alert--success {
    border-color: rgba(0, 212, 170, 0.55);
    color: var(--accent-secondary);
    box-shadow: 0 0 18px rgba(0, 212, 170, 0.12);
}
.alert--error {
    border-color: rgba(255, 45, 142, 0.55);
    color: #ffd0e7;
    box-shadow: 0 0 18px rgba(255, 45, 142, 0.12);
}

.contact-form {
    display: grid;
    gap: 0.85rem;
}
.field {
    display: grid;
    gap: 0.4rem;
}
.field__label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.field__control {
    width: 100%;
    padding: 0.7rem 0.85rem;
    background: rgba(13, 13, 18, 0.7);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.2;
    min-height: 44px;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.field__control:focus {
    outline: none;
    border-color: rgba(255, 45, 142, 0.75);
    box-shadow: 0 0 0 2px rgba(255, 45, 142, 0.18);
}
.field__control--textarea {
    resize: vertical;
    min-height: 140px;
}

/* Safari/macOS: нативный select может быть ниже input — фиксируем одинаковую высоту */
.contact-form input.field__control,
.contact-form select.field__control {
    height: 44px;
}

select.field__control {
    -webkit-appearance: none;
    appearance: none;
    padding-right: 2.6rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%238888a0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    background-size: 18px 18px;
    cursor: pointer;
}
.contact-form__submit {
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
}
.contact-form__note {
    margin: 0.2rem 0 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.contacts-back {
    margin: 1.25rem 0 0;
    text-align: center;
}

@media (prefers-reduced-motion: reduce) {
    .contact-card,
    .contact-card::after {
        transition: none;
    }
    .contact-card:hover {
        transform: none;
    }
}

/* Auth */
.auth-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.auth-box {
    width: 100%;
    max-width: 380px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}
.auth-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0 0 1.5rem;
    text-align: center;
}
.auth-error {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin: 0 0 1rem;
    text-align: center;
}
.auth-form label {
    display: block;
    margin-bottom: 1rem;
}
.auth-form .label-text {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}
.auth-form input[type="text"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 0.65rem 0.9rem;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
}
.auth-form input:focus {
    outline: none;
    border-color: var(--accent);
}
.btn-block {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.5rem;
    cursor: pointer;
}
.auth-hint {
    margin: 1.25rem 0 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}
.auth-hint kbd {
    background: var(--bg-dark);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-family: inherit;
}

/* Cabinet */
.cabinet-page {
    max-width: 800px;
}
.cabinet-welcome {
    margin: 0 0 1.5rem;
    color: var(--text-muted);
}
.cabinet-stats {
    margin-bottom: 2rem;
}
.cabinet-stats h2,
.cabinet-profile h2 {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0 0 1rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
}
.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.cabinet-profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.cabinet-profile-preview {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.cabinet-profile-preview .card-photo {
    flex-shrink: 0;
    width: 200px;
    aspect-ratio: 4/5;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-dark);
}
.cabinet-profile-preview .card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cabinet-profile-info h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}
.cabinet-profile-info .meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0 0 0.35rem;
}
.cabinet-profile-info .price {
    color: var(--gold);
    font-weight: 700;
    margin: 0 0 0.75rem;
}
.cabinet-profile-actions .btn-neon {
    display: inline-block;
}
.cabinet-no-profile {
    color: var(--text-muted);
    margin: 0 0 1rem;
}

/* Cabinet edit form */
.cabinet-edit .back-link {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--text-muted);
}
.form-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.form-success {
    background: rgba(0, 212, 170, 0.15);
    border: 1px solid var(--accent-secondary);
    color: var(--accent-secondary);
}
.form-error {
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid #ff6b6b;
    color: #ff6b6b;
}
.profile-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.profile-form label {
    display: block;
    margin-bottom: 1rem;
}
.profile-form .label-text {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.profile-form input[type="text"],
.profile-form input[type="number"],
.profile-form input[type="email"],
.profile-form select,
.profile-form textarea {
    width: 100%;
    max-width: 400px;
    padding: 0.6rem 0.85rem;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.95rem;
}
.profile-form input:focus,
.profile-form select:focus,
.profile-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.profile-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.profile-form .form-section {
    margin-bottom: 1rem;
}
.profile-form .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin-top: 0.5rem;
}
.profile-form .checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
    margin-bottom: 0;
}
.profile-form .checkbox-label input {
    width: auto;
    max-width: none;
}
.profile-form .form-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.profile-form .form-actions .btn-ghost {
    padding: 0.5rem 1rem;
}
