/* ============================================
   V1: CLASSIC DARK — Классический тёмный
   Masonry grid, описания при наведении
   ============================================ */

:root {
    --bg-primary: #1a1815;
    --bg-secondary: #222019;
    --bg-card: #2a2825;
    --text-primary: #f5f0e8;
    --text-secondary: rgba(245, 240, 232, 0.6);
    --accent: #d4a574;
    --accent-light: #e8c9a0;
    --accent-dark: #b8956a;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    --section-gap: clamp(2.5rem, 5vw, 4rem);
    --btn-padding: 1.25rem 2.5rem;
    --btn-font-size: 0.9rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.7;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.container { max-width: 1300px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.section { padding: var(--section-gap) 0; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: var(--btn-padding);
    font-size: var(--btn-font-size);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

.btn-ghost {
    background: rgba(255,255,255,0.08);
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.15);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.15);
}

/* Messenger icons - larger */
.fa-telegram {
    font-size: 1.5em;
    color: #29b6f6;
}

.btn:hover .fa-telegram {
    color: inherit;
}

.fa-whatsapp {
    font-size: 1.5em;
    color: #25D366;
}

.btn:hover .fa-whatsapp {
    color: inherit;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-large {
    padding: 1.4rem 2.8rem;
    font-size: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: all 0.4s;
}

.header.scrolled {
    background: rgba(26, 24, 21, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.02em;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-brand-sub {
    display: none;
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    /* margin-left: auto; */
    margin-right: -1.1%;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--accent); }

.nav-cta {
    background: var(--accent) !important;
    color: var(--bg-primary) !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 500 !important;
}

.nav-cta-secondary {
    background: transparent !important;
    border: 1px solid var(--accent) !important;
    color: var(--accent) !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 500 !important;
    border-radius: 30px !important;
    transition: all 0.3s ease !important;
}

.nav-cta-secondary:hover {
    background: rgba(212, 175, 125, 0.1) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* Section headers */
.section-header { margin-bottom: 2.5rem; }
.section-header.center { text-align: center; }

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
}

.section-header.center .section-eyebrow { justify-content: center; }

.gold-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-top: 0.75rem;
    max-width: 600px;
}

.section-header.center .section-subtitle { margin: 0.75rem auto 0; }

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg picture {
    position: absolute;
    left: 0;
    top: 0;
    width: 55%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, transparent 0%, rgba(26,24,21,0.5) 35%, rgba(26,24,21,0.9) 55%, rgba(26,24,21,0.98) 100%);
}

.hero-content {
    max-width: 480px;
    padding: 2rem 0;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
}

.hero h1 span { color: var(--accent); font-style: italic; }

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin: 1.5rem 0 2rem;
    line-height: 1.8;
}

.hero-cta-box { margin-bottom: 1.5rem; }

.hero-cta-hint {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-cta-hint i { color: var(--accent); }

.hero-secondary {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-secondary .btn {
    font-size: 1rem;
    padding: 1rem 1.5rem;
}

/* Booking Slots */
.booking-slots-wrapper {
    margin-top: 2rem;
}

.booking-slots-title {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-slots-title i {
    color: var(--accent);
}

.booking-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: 360px;
}

.booking-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.booking-slot:hover {
    background: var(--accent);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.booking-slot-time {
    font-family: var(--font-body);
    letter-spacing: 0.02em;
}

/* Try-On Demo */
.tryon-demo-section { background: var(--bg-secondary); }

.tryon-demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tryon-steps { margin: 1.5rem 0; }

.tryon-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tryon-step:last-child { border-bottom: none; }

.tryon-step-num {
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.tryon-step h4 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
    text-transform: none;
    letter-spacing: 0;
}

.tryon-step p {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.tryon-demo-visual { display: flex; justify-content: center; }

.tryon-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.tryon-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.tryon-img picture {
    display: block;
    width: 100%;
    height: 400px;
}

.tryon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tryon-img-label {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: var(--bg-primary);
    color: var(--accent);
    padding: 0.3rem 0.75rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   PORTFOLIO - Masonry Grid with Hover
   ============================================ */
.portfolio-section { background: var(--bg-primary); }

#services { background: var(--bg-secondary); }

.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Разные размеры для визуального разнообразия */
.portfolio-item.tall { grid-row: span 2; }
.portfolio-item.wide { grid-column: span 2; }

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,24,21,0.95) 0%, rgba(26,24,21,0.4) 40%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay span {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 0.3rem 0.75rem;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    align-self: flex-start;
}

.portfolio-overlay h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.portfolio-more {
    text-align: center;
    margin-top: 2.5rem;
}

.portfolio-count {
    background: var(--accent);
    color: var(--bg-primary);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

/* Services / Price List */
.price-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.price-category {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.price-category:hover {
    border-color: rgba(212,165,116,0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.price-category-header {
    background: linear-gradient(135deg, rgba(212,165,116,0.18) 0%, rgba(212,165,116,0.06) 100%);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.price-category-icon {
    width: 56px;
    height: 56px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.price-category-header h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    font-family: var(--font-display);
}

.price-list {
    padding: 0.75rem 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item:hover {
    background: rgba(255,255,255,0.03);
}

.price-item.featured {
    background: rgba(212,165,116,0.1);
    border-left: 4px solid var(--accent);
}

.price-item-info {
    flex: 1;
    min-width: 0;
}

.price-item-info h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.price-item-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0.4rem;
}

.price-duration {
    font-size: 0.8rem;
    color: var(--accent);
    opacity: 0.85;
}

.price-duration i {
    margin-right: 0.3rem;
}

.price-value {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--accent);
    white-space: nowrap;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.6;
}

.price-new {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 1.1rem;
}

.price-note {
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.02);
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.price-note i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.price-cta {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-secondary);
    border-radius: 16px;
}

.price-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.price-cta-combined {
    text-align: center;
    padding: 2rem 0;
}

.cta-section {
    background: var(--bg-primary);
    padding-bottom: var(--section-gap);
}

.price-cta-combined h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.price-cta-combined > p {
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    font-size: 1.1rem;
}

.price-cta-combined .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.price-cta-combined .btn-large {
    padding: 1.25rem 2.25rem;
}

/* Legacy services grid (keep for compatibility) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: rgba(212,165,116,0.3);
    transform: translateY(-3px);
}

.service-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Price list responsive - tablet */
@media (max-width: 1100px) {
    .price-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .price-category {
        max-width: 650px;
        margin: 0 auto;
        width: 100%;
    }
    
    .price-category-header {
        padding: 1.5rem 1.75rem;
    }
    
    .price-category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .price-category-header h3 {
        font-size: 1.3rem;
    }
    
    .price-item {
        padding: 1.15rem 1.75rem;
    }
}

/* Price list responsive - mobile */
@media (max-width: 768px) {
    .price-categories {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .price-category {
        border-radius: 12px;
        max-width: 100%;
        margin: 0;
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
    
    .price-category-header {
        padding: 1.25rem 1.25rem;
        gap: 1rem;
    }
    
    .price-category-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .price-category-header h3 {
        font-size: 1.15rem;
    }
    
    .price-list {
        padding: 0.5rem 0;
    }
    
    .price-item {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 1.25rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    
    .price-item:last-child {
        border-bottom: none;
    }
    
    .price-item-info h4 {
        font-size: 1rem;
    }
    
    .price-item-info p {
        font-size: 0.85rem;
    }
    
    .price-value {
        text-align: left;
        align-items: flex-start;
        font-size: 1.1rem;
        margin-top: 0.25rem;
        color: var(--accent);
        font-weight: 600;
    }
    
    .price-old {
        font-size: 0.8rem;
    }
    
    .price-new {
        font-size: 1.05rem;
    }
    
    .price-note {
        padding: 0.85rem 1.25rem;
        font-size: 0.8rem;
        background: rgba(212,165,116,0.08);
    }
    
    .price-cta {
        padding: 1.75rem 1.25rem;
        border-radius: 12px;
        margin-top: 0.5rem;
    }
    
    .price-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .price-categories {
        gap: 1.25rem;
    }
    
    .price-category {
        border-radius: 10px;
    }
    
    .price-category-header {
        padding: 1rem 1rem;
    }
    
    .price-category-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .price-category-header h3 {
        font-size: 1.05rem;
    }
    
    .price-item {
        padding: 0.9rem 1rem;
    }
    
    .price-item-info h4 {
        font-size: 0.95rem;
    }
    
    .price-item-info p {
        font-size: 0.8rem;
    }
    
    .price-duration {
        font-size: 0.75rem;
    }
    
    .price-value {
        font-size: 1rem;
    }
    
    .price-note {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }
    
    .price-cta {
        padding: 1.5rem 1rem;
    }
}

/* About */
.about-header-mobile {
    display: none;
}

.about-compact {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;
    background: var(--bg-card);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.about-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.about-stats-inline {
    display: flex;
    gap: 2rem;
}

.about-stats-inline div {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.about-stats-inline strong {
    color: var(--accent);
    font-size: 1.1rem;
}

/* CTA */
.cta-section {
    background: var(--bg-card);
    text-align: center;
}

.cta-content h2 { margin-bottom: 0.5rem; }
.cta-content > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 2rem 0 1.5rem;
}

.footer-simple {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding-bottom: 1.5rem;
    gap: 1rem;
}

.footer-brand-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-tg {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-tg:hover {
    color: var(--accent);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.15rem;
}

.footer-links-inline {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links-inline a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links-inline a:hover { color: var(--accent); }

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.footer-social a {
    color: var(--text-secondary);
    font-size: 1.25rem;
    transition: color 0.3s;
}

.footer-social a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Mobile Nav */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-nav-content a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.15rem;
    transition: color 0.3s;
}

.mobile-nav-content a:hover { color: var(--accent); }

.mobile-nav-cta {
    background: var(--accent) !important;
    color: var(--bg-primary) !important;
    padding: 1rem 2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.mobile-nav-cta-secondary {
    background: transparent !important;
    border: 1px solid var(--accent) !important;
    color: var(--accent) !important;
    padding: 1rem 2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 30px;
}

.mobile-nav-contacts {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-nav-contacts a {
    color: var(--accent) !important;
    font-size: 0.95rem !important;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) { opacity: 0; }

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Portfolio Page */
.portfolio-page {
    padding-top: 100px;
    min-height: 100vh;
}

.portfolio-cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.portfolio-cta-text h3 {
    font-size: 1.15rem;
    color: var(--bg-primary);
    margin-bottom: 0.2rem;
}

.portfolio-cta-text p {
    color: rgba(26, 24, 21, 0.7);
    font-size: 0.9rem;
}

.portfolio-cta-banner .btn-primary {
    background: var(--bg-primary);
    color: var(--accent);
    flex-shrink: 0;
}

.portfolio-bottom-cta {
    text-align: center;
    padding: 3rem 1.5rem;
    margin-top: 2.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
}

.portfolio-bottom-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.portfolio-bottom-cta > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(n+6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
    .tryon-demo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .tryon-demo-visual { order: -1; }
    .portfolio-masonry { grid-template-columns: repeat(2, 1fr); }
    .about-compact {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-photo { margin: 0 auto; }
    .about-stats-inline { justify-content: center; }
}

/* Utility classes */
.mobile-only { display: none; }

@media (max-width: 768px) {
    .mobile-only { display: block; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    
    .hero .container { justify-content: center; }
    .hero-bg picture { width: 100%; left: 0; }
    .hero-gradient { background: linear-gradient(180deg, rgba(26,24,21,0.5) 0%, rgba(26,24,21,0.85) 50%, rgba(26,24,21,0.95) 100%); }
    .hero-content { max-width: 100%; margin-right: 0; text-align: center; padding-top: 10vh; }
    .nav-brand-sub { display: block; }
    .hero-eyebrow { display: none; }
    .hero h1 { font-size: 2.4rem; }
    .hero-eyebrow { justify-content: center; }
    .hero-cta-hint { justify-content: center; }
    .hero-secondary { flex-direction: column; }
    .hero-secondary .btn { width: 100%; justify-content: center; }
    .hero-messengers { flex-direction: row !important; }
    .hero-messengers .btn { width: auto; flex: 1; }
    .btn-large { padding: 1.15rem 1.75rem; width: 100%; justify-content: center; }
    
    .booking-slots-wrapper { margin-top: 1.5rem; }
    .booking-slots-title { font-size: 1rem; }
    .booking-slots { 
        gap: 0.5rem;
        max-width: 100%;
    }
    .booking-slot { 
        padding: 0.7rem 1rem; 
        font-size: 0.9rem;
    }
    
    .portfolio-masonry { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .portfolio-item.tall { grid-row: span 1; }
    .portfolio-item.wide { grid-column: span 1; }
    
    .services-grid { grid-template-columns: 1fr; }
    
    .about-header-mobile {
        display: block;
        margin-bottom: 1.5rem;
    }
    
    .about-eyebrow-desktop {
        display: none;
    }
    
    .about-photo { width: 120px; height: 120px; }
    .about-stats-inline { flex-direction: column; gap: 0.5rem; }
    
    .footer-simple { 
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.25rem;
    }
    .footer-brand-row {
        justify-content: center;
    }
    .footer-links-inline { justify-content: center; }
    .footer-social { justify-content: center; }
    
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; justify-content: center; }
    
    .price-cta-combined {
        padding: 1.5rem 0;
    }
    
    .price-cta-combined h2 {
        font-size: 1.4rem;
    }
    
    .price-cta-combined > p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .price-cta-combined .cta-buttons {
        flex-direction: column;
    }
    
    .price-cta-combined .btn {
        width: 100%;
        justify-content: center;
    }
    
    .price-cta-combined .btn-large {
        padding: 1.15rem 1.75rem;
    }
    
    .portfolio-cta-banner { flex-direction: column; text-align: center; padding: 1.25rem; }
    .portfolio-cta-banner .btn { width: 100%; }
    .portfolio-bottom-cta { padding: 2rem 1rem; }
}

/* ============================================
   TRY-ON PAGE
   ============================================ */
.try-on-page { padding-top: 100px; }

.try-on-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.step-indicator.active { opacity: 1; }
.step-indicator.completed { opacity: 0.7; }

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--accent);
    font-size: 0.9rem;
}

.step-indicator.active .step-num {
    background: var(--accent);
    color: var(--bg-primary);
}

.step-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step-content { display: none; }
.step-content.active { display: block; }
.step { display: none; }
.step.active { display: block; }

.step-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.upload-area {
    background: var(--bg-card);
    border: 2px dashed rgba(212,165,116,0.3);
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    max-width: 500px;
    margin: 0 auto;
}

.upload-area:hover {
    border-color: var(--accent);
    background: rgba(212,165,116,0.05);
}

.upload-area i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.upload-area h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.upload-area p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.photo-preview {
    max-width: 400px;
    margin: 0 auto 1.5rem;
    display: none;
}

.photo-preview.visible { display: block; }

.photo-preview img {
    width: 100%;
    border-radius: 8px;
    border: 2px solid var(--accent);
}

.hairstyles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

/* New hairstyles section structure */
.hairstyles-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hairstyle-row-group {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hairstyle-group {
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.custom-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Ряд с укладками и свой вариант - не переносить */
.row-with-custom {
    flex-wrap: nowrap;
}

/* Разделитель "ИЛИ" между блоками */
.or-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    align-self: stretch;
}

.or-line {
    flex: 1;
    width: 1px;
    min-height: 30px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.or-text {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    padding: 0.5rem 0;
}

/* Ряд с блоками на десктопе */
.hairstyle-desktop-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Вертикальный разделитель ИЛИ между блоками */
.or-divider-between {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    min-width: 50px;
}

.or-line-v {
    flex: 1;
    width: 1px;
    min-height: 20px;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
}

.or-text-bright {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.5rem 0;
    text-transform: lowercase;
}

.custom-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-align: center;
}

/* Вертикальный ИЛИ между рядами (десктоп) */
.or-divider-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0.25rem 0;
    padding: 0;
}

.or-divider-row .or-line-h {
    width: 1px;
    height: 20px;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
}

.custom-group .hairstyle-card {
    width: 200px !important;
}

.category-title {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
    font-weight: 400;
    text-align: center;
}

.hairstyles-row {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.hairstyle-card {
    width: 160px;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;
}

.hairstyle-card:hover {
    border-color: rgba(212,165,116,0.4);
}

.hairstyle-card.selected {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(212,165,116,0.2);
}

.hairstyle-card picture {
    display: block;
    width: 100%;
    aspect-ratio: 2/3;
    background: var(--bg-primary);
}

.hairstyle-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hairstyle-name {
    text-align: center;
    padding: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

#selectedStyleInfo {
    text-align: center;
    padding: 1rem;
    margin: 1rem 0;
    background: rgba(212,165,116,0.1);
    border-radius: 8px;
    color: var(--accent);
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.result-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 12px;
}

.result-cta h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.result-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.result-cta .btn {
    margin: 0 0.5rem;
}

.result-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hairstyle-card h4 {
    padding: 0.75rem;
    text-align: center;
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 400;
}

.processing-area {
    text-align: center;
    padding: 2rem;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(212,165,116,0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.progress-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
    max-width: 400px;
    margin: 1rem auto;
}

.progress-fill {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 0.3s;
}

.processing-container {
    text-align: center;
    padding: 2rem 0;
}

.processing-container #statusText {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.comparison,
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comparison-item img {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    border-radius: 8px;
    border: 2px solid var(--accent);
    display: inline-block;
}

.comparison-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.comparison-label {
    display: block;
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.comparison-item h4 {
    margin-top: 0.75rem;
    font-size: 1rem;
}

.result-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.message-container {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.message {
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
    white-space: nowrap;
}

.message.success { background: #2d5a3d; color: #a8e6cf; }
.message.error { background: #5a2d2d; color: #e6a8a8; }
.message.info { background: #2d4a5a; color: #a8d4e6; }

/* Error Modal */
.error-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.error-modal-overlay[style*="flex"] {
    display: flex;
}

.error-modal {
    background: var(--bg-card);
    padding: 2.5rem;
    max-width: 500px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
}

.error-modal-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.error-modal h3 {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
    color: var(--text-primary);
}

.error-modal p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.error-tips {
    background: rgba(255,255,255,0.05);
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: left;
}

.error-tips h4 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
}

.error-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-tips li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-tips li i {
    color: var(--accent);
    font-size: 0.75rem;
}

.error-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.error-modal-buttons .btn {
    width: 100%;
    justify-content: center;
}

/* Examples section */
.examples-section {
    background: var(--bg-secondary);
    margin-top: 3rem;
    padding: 2.5rem 0;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Try-on examples section */
.tryon-examples {
    margin-bottom: 3rem;
}

.tryon-examples-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tryon-examples-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.75rem;
}

.examples-badge {
    display: inline-block;
    background: rgba(212,165,116,0.15);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tryon-examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tryon-example {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}

.tryon-example-img {
    position: relative;
}

.tryon-example-img picture {
    display: block;
    width: 100%;
    height: 200px;
}

.tryon-example-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.tryon-example-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,0.7);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.tryon-example-name {
    grid-column: 1 / -1;
    text-align: center;
    padding: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .tryon-examples-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tryon-example-img picture {
        height: 150px;
    }
}

.example-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    background: var(--bg-card);
    padding: 0.5rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.example-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.example-card-label {
    grid-column: 1 / -1;
    text-align: center;
    padding: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.rate-limit-message {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    padding: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #e6a8a8;
    font-size: 0.9rem;
}

.limit-banner {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}

.limit-banner h3 {
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.limit-banner p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.limit-banner .countdown {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Preview container - фото слева, кнопки справа */
.preview-container {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2rem;
    align-items: center;
    margin: 1.5rem 0;
}

.preview-photo {
    text-align: center;
}

.preview-container img {
    max-width: 100%;
    max-height: 570px;
    border-radius: 8px;
    border: 2px solid var(--accent);
    display: block;
    margin: 0 auto;
}

.preview-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-actions .btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 600px) {
    .preview-container {
        grid-template-columns: 1fr;
    }
    .preview-actions {
        flex-direction: row;
        justify-content: center;
    }
    .preview-actions .btn {
        width: auto;
    }
}

.custom-upload-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 240px;
}

.custom-upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 2/3;
    background: var(--bg-primary);
    border: 2px dashed rgba(212,165,116,0.3);
    transition: all 0.3s;
}

.custom-upload-placeholder:hover {
    border-color: var(--accent);
    background: rgba(212,165,116,0.05);
}

.custom-upload-placeholder i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.custom-upload-placeholder span {
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-align: center;
    padding: 0 0.5rem;
}

.custom-upload-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .try-on-steps { gap: 1rem; }
    .step-label { display: none; }
    .hairstyles-grid { grid-template-columns: 1fr 1fr; }
    .hairstyle-row-group { gap: 1rem; }
    .hairstyle-group { padding: 0.75rem 1rem; }
    .hairstyle-card { width: 90px; }
    .hairstyles-row { gap: 0.5rem; }
    .category-title { font-size: 0.85rem; }
    .hairstyle-name { font-size: 0.65rem; padding: 0.4rem; }
    
    /* На мобильных блоки вертикально */
    .hairstyle-desktop-row {
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-bottom: 0;
    }
    
    /* На мобильных ИЛИ горизонтально */
    .or-divider-between {
        flex-direction: row;
        width: 100%;
        padding: 0.75rem 0;
        min-width: auto;
        gap: 0.75rem;
    }
    .or-line-v {
        width: auto;
        height: 1px;
        min-height: auto;
        flex: 1;
        max-width: 80px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }
    
    .or-divider {
        flex-direction: row;
        width: 100%;
        padding: 1rem 0;
    }
    .or-line {
        width: auto;
        height: 1px;
        min-height: auto;
        flex: 1;
        max-width: 80px;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    }
    
    /* На мобильных ИЛИ между рядами горизонтально */
    .or-divider-row {
        flex-direction: row;
        margin: 0.5rem 0;
        gap: 0.75rem;
    }
    .or-divider-row .or-line-h {
        width: auto;
        height: 1px;
        flex: 1;
        max-width: 80px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }
    .comparison, .comparison-grid { grid-template-columns: 1fr; }
    .examples-grid { grid-template-columns: 1fr; }
}

/* ============================================
   LIGHTBOX - Photo Gallery Modal
   ============================================ */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: zoom-out;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.lightbox.active .lightbox-image {
    transform: scale(1);
}

.lightbox-image.loaded {
    opacity: 1;
}

/* Loading spinner */
.lightbox-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: lightbox-spin 0.8s linear infinite;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
}

.lightbox-loader.visible {
    opacity: 1;
    visibility: visible;
}

@keyframes lightbox-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.lightbox-caption {
    margin-top: 1rem;
    text-align: center;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.lightbox.active .lightbox-caption {
    opacity: 1;
    transform: translateY(0);
}

.lightbox-caption span {
    display: block;
    font-size: 0.85rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.lightbox-caption h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-primary);
}

.lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(90deg);
}

.lightbox-close::before,
.lightbox-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    transition: background 0.3s ease;
}

.lightbox-close:hover::before,
.lightbox-close:hover::after {
    background: var(--bg-primary);
}

.lightbox-close::before {
    transform: rotate(45deg);
}

.lightbox-close::after {
    transform: rotate(-45deg);
}

/* Navigation arrows */
.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-nav::before {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--text-primary);
    border-right: 2px solid var(--text-primary);
    transition: border-color 0.3s ease;
}

.lightbox-nav:hover::before {
    border-color: var(--bg-primary);
}

.lightbox-prev::before {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.lightbox-next::before {
    transform: rotate(45deg);
    margin-right: 4px;
}

/* Portfolio item cursor */
.portfolio-item {
    cursor: zoom-in;
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
    .lightbox-close,
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-close::before,
    .lightbox-close::after {
        width: 16px;
    }
    
    .lightbox-nav::before {
        width: 10px;
        height: 10px;
    }
    
    .lightbox-prev {
        left: 0.75rem;
    }
    
    .lightbox-next {
        right: 0.75rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
    
    .lightbox-caption h3 {
        font-size: 1rem;
    }
}


/* ============================================
   SALON SECTION
   ============================================ */

.salon-section {
    background: var(--bg-secondary);
}

.salon-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.salon-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.salon-item-large {
    grid-column: span 2;
}

.salon-item picture,
.salon-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.salon-item:hover img {
    transform: scale(1.05);
}

.salon-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
    pointer-events: none;
}

.salon-info {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.salon-address {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--bg-card);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 1rem;
}

.salon-address i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Mobile salon adjustments */
@media (max-width: 768px) {
    .salon-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
        gap: 1rem;
    }
    
    .salon-item-large {
        grid-column: span 1;
    }
    
    .salon-address {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ====================== CONSULTATION FORM ====================== */

.consultation-section {
    background: var(--bg-primary);
}

.consultation-form-wrapper {
    max-width: 540px;
    margin: 0 auto;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Photo Upload */
.consultation-upload {
    position: relative;
}

.consultation-upload-label {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(212, 175, 125, 0.3);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consultation-upload-label:hover {
    border-color: var(--accent);
    background: rgba(212, 175, 125, 0.05);
}

.consultation-upload-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    flex-shrink: 0;
}

.consultation-upload-icon i {
    font-size: 1.5rem;
    color: var(--bg-dark);
}

.consultation-upload-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.consultation-upload-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
}

.consultation-upload-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Photo Preview */
.consultation-preview {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(212, 175, 125, 0.4);
    border-radius: 16px;
}

.consultation-preview img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
}

.consultation-preview-remove {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 53, 69, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.consultation-preview-remove:hover {
    background: #dc3545;
    transform: scale(1.1);
}

/* Messenger Toggle */
.consultation-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.consultation-contact-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.consultation-messenger-toggle {
    display: flex;
    gap: 0.5rem;
}

.consultation-messenger-option {
    flex: 1;
}

.consultation-messenger-option input {
    display: none;
}

.consultation-messenger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.consultation-messenger-option input:checked + .consultation-messenger-btn {
    background: rgba(212, 175, 125, 0.15);
    border-color: var(--accent);
    color: var(--text-light);
}

.consultation-messenger-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.consultation-messenger-btn i.fa-telegram {
    color: #0088cc;
}

.consultation-messenger-btn i.fa-whatsapp {
    color: #25D366;
}

/* Contact Label */
.consultation-contact-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.required-star {
    color: #e74c3c;
    font-weight: bold;
}

/* Input */
.consultation-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.consultation-input::placeholder {
    color: var(--text-muted);
}

.consultation-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(212, 175, 125, 0.05);
}

/* Privacy Checkbox */
.consultation-privacy {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.consultation-privacy input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--accent);
    cursor: pointer;
}

.consultation-privacy-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Submit Button */
.consultation-submit {
    width: auto;
    margin-top: 0.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-left: 3rem;
    padding-right: 3rem;
}

.consultation-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success Message */
.consultation-success {
    text-align: center;
    padding: 3rem 1.5rem;
    animation: fadeInUp 0.5s ease;
}

.consultation-success-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.2), rgba(40, 167, 69, 0.1));
    border-radius: 50%;
}

.consultation-success-icon i {
    font-size: 2.5rem;
    color: #28a745;
}

.consultation-success h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.consultation-success p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.consultation-success-note {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(212, 175, 125, 0.1);
    border-radius: 8px;
    display: inline-block;
    font-size: 0.9rem !important;
    color: var(--accent) !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .consultation-upload-label {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .consultation-submit {
        width: 100%;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .consultation-messenger-toggle {
        flex-direction: row;
    }
    
    .consultation-messenger-btn {
        padding: 0.65rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   PROMO POPUP - Скидка 30%
   ============================================ */
.promo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.promo-popup-overlay.active {
    display: flex;
}

.promo-popup {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
    border-radius: 24px;
    max-width: 480px;
    width: 100%;
    padding: 2.5rem;
    position: relative;
    border: 1px solid rgba(212, 175, 125, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    animation: popupSlideIn 0.4s ease;
    text-align: center;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.promo-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.promo-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.promo-popup-close::before,
.promo-popup-close::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background: var(--text-primary);
}

.promo-popup-close::before {
    transform: rotate(45deg);
}

.promo-popup-close::after {
    transform: rotate(-45deg);
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4686a, #c45a5c);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.promo-discount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 400;
    color: #d4686a;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.promo-discount span {
    font-size: 2.5rem;
}

.promo-popup h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.promo-popup p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.promo-deadline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 104, 106, 0.15);
    color: #d4686a;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.75rem;
}

.promo-deadline i {
    font-size: 1.1rem;
}

.promo-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.promo-cta .btn {
    width: 100%;
    justify-content: center;
}

.promo-cta .btn {
    font-size: 1.2rem;
    padding: 1.1rem 2.2rem;
}

.btn-promo-red {
    background: linear-gradient(135deg, #d4686a, #c45a5c);
    color: white;
    border: none;
}

.btn-promo-red:hover {
    background: linear-gradient(135deg, #e07577, #d4686a);
    transform: translateY(-2px);
}

.promo-skip {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.promo-skip:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .promo-popup {
        padding: 2rem 1.5rem;
    }
    
    .promo-discount {
        font-size: 3rem;
    }
    
    .promo-discount span {
        font-size: 2rem;
    }
    
    .promo-popup h3 {
        font-size: 1.4rem;
    }
}


