:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f8f8;
    --text-primary: #000000;
    --text-secondary: #555555;
    --text-tertiary: #999999;
    --accent: #f5c518;
    --border: #e8e8e8;
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Exo 2', sans-serif; background: var(--bg-primary); color: var(--text-primary); line-height: 1.5; }
body.no-scroll { overflow: hidden; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* Анимации */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Хедер */
.maono-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: 72px; background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); transition: all 0.3s; }
.maono-header.scrolled { height: 60px; box-shadow: 0 1px 20px rgba(0,0,0,0.06); }
.header-container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; gap: 32px; }
.header-logo { display: flex; align-items: center; transition: transform 0.3s; }
.header-logo:hover { transform: scale(1.03); }
.header-logo img { height: 34px; width: auto; filter: brightness(0) saturate(100%) invert(75%) sepia(85%) saturate(2000%) hue-rotate(5deg); }

.header-nav { display: flex; align-items: center; justify-content: center; }
.main-menu { display: flex; list-style: none; gap: 36px; }
.main-menu a { color: #555; text-decoration: none; font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.8px; position: relative; padding: 8px 0; }
.main-menu a::after { content: ''; position: absolute; bottom: 4px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s; }
.main-menu a:hover { color: #000; }
.main-menu a:hover::after { width: 100%; }

/* Поиск */
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.search-trigger { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: none; border: none; cursor: pointer; border-radius: 50%; color: #555; transition: all 0.3s; }
.search-trigger:hover { color: #000; background: #f5f5f5; }

.search-panel { position: fixed; top: 0; left: 0; right: 0; background: #fff; padding: 16px 24px; z-index: 2000; transform: translateY(-100%); transition: transform 0.4s; box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.search-panel.active { transform: translateY(0); }
.search-form { max-width: 600px; margin: 0 auto; display: flex; align-items: center; gap: 12px; background: #f5f5f5; border-radius: 12px; padding: 8px 16px; }
.search-form input[type="search"] { flex: 1; border: none; background: transparent; padding: 12px 0; font-size: 16px; font-family: 'Exo 2', sans-serif; outline: none; }
.search-close { background: none; border: none; cursor: pointer; color: #999; padding: 4px; border-radius: 50%; }

/* Мобильное меню */
.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; }
.mobile-menu-toggle span { width: 20px; height: 2px; background: #000; transition: all 0.3s; }
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-menu-toggle.active span:nth-child(2) { transform: rotate(-45deg); }

.mobile-menu { position: fixed; top: 0; right: -100%; width: 340px; height: 100vh; background: #fff; z-index: 3000; padding: 28px; transition: right 0.4s; box-shadow: -10px 0 40px rgba(0,0,0,0.08); }
.mobile-menu.active { right: 0; }
.mobile-menu-list { list-style: none; padding: 0; margin: 20px 0 0; }
.mobile-menu-list a { display: block; padding: 16px 0; font-size: 17px; font-weight: 500; color: #000; text-decoration: none; border-bottom: 1px solid #f0f0f0; }
.mobile-menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2500; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.mobile-menu-overlay.active { opacity: 1; pointer-events: auto; }

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #0a0a0a;
    margin-top: -72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 60px 20px;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f5c518;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 80px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    max-width: 900px;
    color: #fff;
}

.hero h1 span {
    font-weight: 700;
    color: #f5c518;
}

.brand-quote {
    max-width: 650px;
    margin: 0 auto 48px;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background: #f5c518;
    color: #000;
    border: none;
}

.hero .btn-primary:hover {
    background: #e0b015;
    box-shadow: 0 8px 30px rgba(245,197,24,0.4);
}

.hero .btn-secondary {
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    background: transparent;
}

.hero .btn-secondary:hover {
    border-color: #f5c518;
    color: #f5c518;
    background: rgba(245,197,24,0.1);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    letter-spacing: 1px;
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ==================== КНОПКИ ==================== */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #f5c518;
    color: #000;
    border: none;
}

.btn-primary:hover {
    background: #e0b015;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245,197,24,0.3);
}

.btn-secondary {
    border: 1px solid #ccc;
    color: #000;
    background: #fff;
}

.btn-secondary:hover {
    border-color: #f5c518;
    background: #fff9e6;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid #ccc;
    color: #000;
    background: #fff;
    padding: 14px 28px;
    font-weight: 500;
}

.btn-outline:hover {
    border-color: #f5c518;
    background: #fff9e6;
    transform: translateY(-2px);
}

/* ==================== ЗАГОЛОВКИ СЕКЦИЙ ==================== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-header p {
    color: #888;
    font-size: 15px;
}

.section-footer {
    text-align: center;
    margin-top: 48px;
}

/* ==================== КАТЕГОРИИ ==================== */
.categories-strip {
    padding: 80px 0;
    background: #fff;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: #f5c518;
}

.category-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: #fff9e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.category-icon svg {
    stroke: #000;
}

.category-card:hover .category-icon {
    background: #f5c518;
    transform: scale(1.1);
}

.category-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.category-count {
    font-size: 13px;
    color: #999;
    display: block;
}

.category-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    transition: all 0.3s ease;
}

.category-arrow svg {
    stroke: #000;
}

.category-card:hover .category-arrow {
    background: #f5c518;
    transform: translateX(4px);
}

/* ==================== ПОПУЛЯРНЫЕ ТОВАРЫ ==================== */
.featured-products {
    padding: 80px 0;
    background: #f8f8f8;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: #f5c518;
}

.product-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
    background: #f8f8f8;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
}

.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #f5c518;
    color: #000;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
}

.product-card-body {
    padding: 20px;
}

.product-card-body h3 {
    margin: 0;
}

.product-card-body h3 a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s;
}

.product-card-body h3 a:hover {
    color: #f5c518;
}

.product-card-footer {
    padding: 16px 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-guide-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.card-guide-link:hover {
    border-color: #f5c518;
    background: #fff9e6;
    color: #000;
}

.card-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.card-detail-link:hover {
    color: #f5c518;
}

/* ==================== ПРЕИМУЩЕСТВА ==================== */
.features-section {
    padding: 80px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: #fff9e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon svg {
    stroke: #000;
}

.feature-item:hover .feature-icon {
    background: #f5c518;
    transform: scale(1.05);
}

.feature-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

/* ==================== ЦИТАТА ==================== */
.brand-quote-section {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.brand-quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('http://cl38483-wordpress-0oj1e.tw1.ru/wp-content/uploads/2026/08/24.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.brand-blockquote {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: 40px 0;
}

.brand-blockquote::before {
    content: '\201C';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 100px;
    line-height: 1;
    color: #f5c518;
    font-family: Georgia, serif;
}

.brand-blockquote p {
    font-size: 20px;
    line-height: 1.8;
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
}

.brand-blockquote cite {
    display: block;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f5c518;
    font-style: normal;
}

/* ==================== CTA ==================== */
.cta-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.cta-card {
    background: #0a0a0a;
    color: #fff;
    border-radius: 20px;
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('http://cl38483-wordpress-0oj1e.tw1.ru/wp-content/uploads/2026/08/24.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.cta-card > * {
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 16px;
}

.cta-card p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-card .btn-primary {
    background: #f5c518;
    color: #000;
}

.cta-card .btn-primary:hover {
    background: #e0b015;
}

/* ==================== АНИМАЦИИ ==================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ==================== АДАПТИВ ==================== */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        margin-top: -60px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .category-grid,
    .product-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        padding: 40px 24px;
    }
    
    .brand-quote {
        font-size: 14px;
    }
}
/* Футер */
.maono-footer { background: #0a0a0a; color: #666; padding: 40px 0; text-align: center; font-size: 13px; }
.maono-footer .container { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.maono-footer a { color: #fff; text-decoration: none; }
.maono-footer a:hover { color: var(--accent); }

@media (max-width: 768px) {
    body { padding-top: 60px; }
    .maono-header { height: 60px; }
    .header-nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    .header-container { grid-template-columns: 1fr auto; }
    .hero { min-height: 80vh; margin-top: -60px; }
    .hero h1 { font-size: 32px; }
    .hero-actions { flex-direction: column; }
    .category-grid, .product-grid, .features-grid { grid-template-columns: 1fr; }
    .cta-card { padding: 40px 24px; }
}