* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #1a1a1a;
    background: #ffffff;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(4px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
    transition: box-shadow 0.3s;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: #000;
    background: linear-gradient(135deg, #000 0%, #2c2c2c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.logo-badge {
    font-size: 0.7rem;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 30px;
    font-weight: 500;
}

.city-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.city-selector select {
    padding: 6px 12px;
    border-radius: 30px;
    border: 1px solid #ddd;
    background: #fff;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
	max-width: 160px;
}

.city-selector select:hover {
    border-color: #999;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav__list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav__list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.2s;
}

.nav__list a:hover::after,
.nav__list a.active::after {
    width: 100%;
}

.nav__list a:hover {
    color: #000;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf9f8 0%, #f3f2f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(0,0,0,0.02) 0%, transparent 70%);
    pointer-events: none;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1a1a1a, #4a4a4a);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-text {
    font-size: 1.05rem;
    color: #2c2c2c;
}

.hero-text p {
    margin-bottom: 16px;
}

.hero__cta {
    font-weight: 500;
    background: rgba(0,0,0,0.03);
    padding: 16px 24px;
    border-radius: 24px;
    margin-top: 16px;
    border-left: 4px solid #000;
}

/* Benefits */
.benefits {
    padding: 60px 0;
    background: #fff;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
}

.benefit-item {
    padding: 24px;
    border-radius: 24px;
    background: #faf9f8;
    transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.05);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Catalog */
.catalog {
    padding: 60px 0;
    background: #ffffff;
}

.catalog h2, .guide h2, .about-brand h2, .contacts h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.01em;
}

.mirror-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.mirror-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.mirror-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 36px -12px rgba(0,0,0,0.15);
}

.mirror-card__img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.mirror-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mirror-card:hover .mirror-card__img img {
    transform: scale(1.05);
}

.mirror-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.mirror-card:hover .mirror-card__overlay {
    opacity: 1;
}

.btn-overlay {
    background: white;
    color: black;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-overlay:hover {
    transform: scale(1.05);
    background: #f0f0f0;
}

.mirror-card h3 {
    font-size: 1.5rem;
    margin: 20px 20px 8px;
}

.mirror-card__desc {
    margin: 0 20px 16px;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.4;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    margin: 0 20px 20px;
    border: 1px solid transparent;
    text-align: center;
}

.btn-outline {
    border-color: #000;
    color: #000;
    background: transparent;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
    transform: scale(0.98);
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Guide section */
.guide {
    background: #faf9f8;
    padding: 60px 0;
}

.guide-content h3 {
    margin: 28px 0 12px;
    font-size: 1.4rem;
    font-weight: 600;
}

.guide-content p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: #2a2a2a;
}

/* About & Contacts */
.about-brand, .contacts {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.contacts ul {
    list-style: none;
    margin: 16px 0;
}

.contacts li {
    margin: 12px 0;
}

.contacts a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px dotted;
}

/* Mirror detail page */
.mirror-detail {
    padding: 60px 0;
}

.mirror-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.main-image {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15);
}

.main-image img {
    width: 100%;
    display: block;
    transition: transform 0.3s;
}

.main-image:hover img {
    transform: scale(1.02);
}

.thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 16px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s, transform 0.2s;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.mirror-detail__info h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.mirror-price {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 16px 0;
    color: #2c6e2c;
}

.mirror-description {
    margin: 24px 0;
    line-height: 1.7;
    color: #2d2d2d;
}

.btn-buy {
    font-size: 1.1rem;
    padding: 14px 36px;
    background: #2c6e2c;
    border: none;
    border-radius: 40px;
    box-shadow: 0 4px 8px rgba(44,110,44,0.2);
}

.btn-buy:hover {
    background: #1e4f1e;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(44,110,44,0.3);
}

.mirror-keywords {
    margin-top: 32px;
    font-size: 0.8rem;
    color: #777;
    border-top: 1px solid #eee;
    padding-top: 16px;
}

/* 404 */
.error-404 {
    text-align: center;
    padding: 120px 0;
}

.error-404 h1 {
    font-size: 7rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #000, #666);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Cookie notice */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #1a1a1a;
    color: white;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    z-index: 1000;
    border-radius: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    max-width: 500px;
    margin: 0 auto;
}

.cookie-notice p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-notice button {
    background: white;
    border: none;
    padding: 8px 24px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.cookie-notice button:hover {
    background: #f0f0f0;
}

/* Promo popup fullscreen */
.promo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-content {
    background: white;
    max-width: 400px;
    width: 90%;
    padding: 40px 32px;
    border-radius: 48px;
    text-align: center;
    position: relative;
    box-shadow: 0 40px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #1c1c1c;
    transition: color 0.2s;
}

.popup-close:hover {
    color: #181818;
}

.popup-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 6px;
}

.popup-btn {
    background: #000;
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, transform 0.1s;
    display: inline-block;
}

.popup-btn:hover {
    background: #333;
    transform: scale(1.02);
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: #ccc;
    padding: 48px 0 32px;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer__copy p {
    margin: 6px 0;
    font-size: 0.85rem;
}

.footer__keywords {
    font-size: 0.8rem;
    color: #888;
}

.footer__keywords span {
    color: #eee;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #000;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #333;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .header__inner {
        flex-wrap: wrap;
    }
    .nav {
        order: 3;
        width: 100%;
        display: none;
    }
    .nav.open {
        display: block;
    }
    .nav__list {
        flex-direction: column;
        gap: 12px;
        padding: 16px 0;
    }
    .mobile-menu-btn {
        display: block;
    }
    .mirror-detail__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .mirror-grid {
        grid-template-columns: 1fr;
    }
    .cookie-notice {
        border-radius: 20px;
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
    .benefits__grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer__inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .benefits__grid {
        grid-template-columns: 1fr;
    }
    .popup-content {
        padding: 32px 20px;
    }
}
.logozerk {
  max-width: 200px;
  margin-top: 32px;
}
.logozerk.top {
  margin: 0;
}
.btn.btn-primary.erpage {
  margin-top: 20px;
}