/* style.css — главный файл стилей основного сайта */

/* ========== ПЕРЕМЕННЫЕ ========== */
:root {
    /* Цвета — благородный шоколад, золото, кремовый */
    --color-primary: #6B3A1F;
    --color-secondary: #9C5D32;
    --color-accent: #D4AF37;
    --color-light: #FDF8F0;
    --color-dark: #2C241A;
    --color-text: #2C2C2C;
    --color-text-secondary: #6B6258;
    --color-background: #FFFCF8;
    
    /* Градиенты */
    --gradient-primary: linear-gradient(135deg, #6B3A1F 0%, #9C5D32 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 100%);
    
    /* Тени */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 56px rgba(0, 0, 0, 0.16);
    
    /* Скругления */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    /* Шрифты */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Cormorant Garamond', 'Playfair Display', serif;
    --font-display: 'Cormorant Garamond', 'Playfair Display', serif;

    /* Алиасы для совместимости с каталогом и внутренними страницами */
    --primary: #6B3A1F;
    --primary-dark: #562816;
    --primary-light: #9C5D32;
    --secondary: #D4AF37;
    --bg-primary: #FFFCF8;
    --bg-secondary: #FDF8F0;
    --bg-card: #FFFFFF;
    --text-primary: #2C241A;
    --text-secondary: #6B6258;
    --text-muted: #A69E94;
    --gradient-secondary: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 100%);
    --gradient-dark: linear-gradient(135deg, #2C241A 0%, #1E1915 100%);
}

/* ========== БАЗОВЫЕ СТИЛИ ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.5;
    padding-top: 80px;
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== ХЕДЕР ========== */
.header {
    background-color: rgba(255, 252, 248, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(212, 175, 55, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    transition: box-shadow 0.35s, background 0.35s;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 252, 248, 0.98);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right:20px;
}

.logo-icon {
    font-size: 1.6rem;
    color: var(--color-accent);
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
}

.logo-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.3px;
    margin: 0;
}

.tagline {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    margin-top: 2px;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text);
    padding: 0.5rem 0;
    position: relative;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-primary);
    font-weight: 600;
}
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.6rem;
    color: var(--color-primary);
}

/* ========== ОБЩИЕ СЕКЦИИ ========== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-suptitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-accent);
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 8px;
}

.section-divider {
    width: 70px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* ========== КНОПКИ ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    filter: brightness(1.02);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.btn-small {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, #FCF6ED 0%, #FEFAF4 50%, #FFFCF8 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(ellipse 70% 50% at 80% 20%, rgba(212, 175, 55, 0.08), transparent 60%),
                radial-gradient(ellipse 50% 40% at 10% 80%, rgba(107, 58, 31, 0.04), transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    max-width: 90%;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.image-frame-accent {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid rgba(212, 175, 55, 0.25);
    pointer-events: none;
    z-index: 2;
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(107,58,31,0.2), transparent);
    pointer-events: none;
    z-index: 1;
}

.hero-img {
    width: 100%;
    transition: transform 0.5s;
}

.image-frame:hover .hero-img {
    transform: scale(1.03);
}

/* ========== ABOUT ========== */
.about {
    background: var(--color-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.about-paragraph {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 32px;
}

.quote {
    background: white;
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-accent);
    box-shadow: var(--shadow-md);
    margin: 32px 0;
    position: relative;
}

.quote-icon {
    color: var(--color-accent);
    font-size: 1.6rem;
    opacity: 0.5;
    margin-bottom: 8px;
}

.quote p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-primary);
    line-height: 1.5;
}

.quote cite {
    display: block;
    margin-top: 12px;
    font-size: 0.85rem;
    font-style: normal;
    color: var(--color-text-secondary);
}

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

.stat-item {
    background: white;
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.3s;
    box-shadow: var(--shadow-sm);
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.stat-text {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-card {
    background: white;
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-primary);
}

/* ========== PRODUCTS ========== */
.products {
    background: var(--color-background);
}

.products-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.products-intro-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.products-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}

.category-pill {
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-primary);
    background: white;
    border: 1px solid rgba(212, 175, 55, 0.25);
    transition: all 0.3s;
}

.category-pill:hover {
    background: var(--gradient-gold);
    border-color: transparent;
    transform: translateY(-2px);
}

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

.products-intro-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.price-link-wrapper {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* ========== ADVANTAGES (КАРУСЕЛЬ) ========== */
.advantages {
    position: relative;
}

.advantages-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 50px;
}

.advantages-carousel-container {
    overflow: hidden;
    border-radius: var(--radius-xl);
    position: relative;
}

.advantages-carousel {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.advantage-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    margin: 0;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: box-shadow 0.3s ease;
}

.advantage-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.advantage-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.advantage-desc {
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid var(--color-accent);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--color-primary);
    transition: all 0.2s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D4C5B5;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
    border: none;
    flex-shrink: 0;
}

.dot.active {
    background: var(--color-accent);
    width: 24px;
    border-radius: 20px;
}

.carousel-slide-counter {
    display: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* ========== STORES ========== */
.stores-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.stores-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 480px;
    overflow-y: auto;
    padding-right: 8px;
}

.stores-list::-webkit-scrollbar {
    width: 4px;
}
.stores-list::-webkit-scrollbar-track {
    background: #E6DDD0;
    border-radius: 4px;
}
.stores-list::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 4px;
}

.store-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 18px;
    border-radius: var(--radius-md);
    transition: all 0.2s;
    border-left: 3px solid transparent;
    box-shadow: var(--shadow-sm);
}

.store-item:hover {
    transform: translateX(4px);
    border-left-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.store-icon {
    width: 44px;
    height: 44px;
    background: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.2rem;
}

.store-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.store-location {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

.stores-map {
    background: white;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.map-placeholder h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.map-placeholder > p:not(.map-note) {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.map-note {
    margin-top: 20px;
    padding: 12px;
    background: var(--color-light);
    border-radius: var(--radius-md);
    font-style: italic;
    font-size: 0.85rem;
}

.map-placeholder-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.map-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 1.75rem;
    min-height: 48px;
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    border: none;
    vertical-align: middle;
}

.map-call-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.125rem;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.map-call-btn span {
    display: block;
    line-height: 1.2;
}

.map-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 480px) {
    .map-call-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ========== FOOTER ========== */
.footer {
    background: #1F1B17;
    color: #EADDCB;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: white;
}

.footer-tagline {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 24px;
}

.footer-price-btn {
    border-color: rgba(212, 175, 55, 0.6);
    color: var(--color-accent);
    background: transparent;
}

.footer-price-btn:hover {
    background: var(--color-accent);
    color: #1F1B17;
    border-color: var(--color-accent);
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-section-title {
    font-size: 1rem;
    margin-bottom: 20px;
    color: white;
    letter-spacing: 1px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.contact-item a {
    color: inherit;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--color-accent);
}

.contact-item i {
    width: 20px;
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.6;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 99;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* ========== АНИМАЦИИ ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .animate-in {
        animation: none;
    }
}

/* Оптовая секция — карточки преимуществ */
.wholesale-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}
.wholesale-stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.wholesale-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.wholesale-stat-value {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    white-space: nowrap;
}
.wholesale-stat-label {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}
@media (max-width: 768px) {
    .wholesale-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ========== ВНУТРЕННИЕ СТРАНИЦЫ — ОБЩИЕ ЭЛЕМЕНТЫ ========== */

/* Page Hero — шапка внутренних страниц */
.page-hero {
    background: linear-gradient(135deg, #FCF6ED 0%, #FEFAF4 50%, #FFFCF8 100%);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-accent);
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 12px;
    line-height: 1.15;
}

.page-hero-desc {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.page-hero-divider {
    width: 70px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 0 auto;
    border-radius: 2px;
}

/* Page Content — блок контента */
.page-content {
    padding: 60px 0;
}

.page-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
    max-width: 920px;
    margin: 0 auto;
}

.page-card h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 16px;
    line-height: 1.25;
}

.page-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 16px;
}

.page-card ul {
    margin: 16px 0 24px;
    padding: 0;
    list-style: none;
}

.page-card ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    padding: 8px 0 8px 28px;
    position: relative;
    margin-bottom: 4px;
}

.page-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
}

.page-card ul li strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* Section divider inline */
.section-divider-inline {
    width: 70px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 32px 0;
    border-radius: 2px;
}

/* Stat row */
.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.stat-row .stat-item {
    background: var(--color-light);
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.3s;
}

.stat-row .stat-item:hover {
    transform: translateY(-4px);
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    display: block;
    margin-bottom: 8px;
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    display: block;
}

/* Page actions */
.page-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

/* ========== КОНТАКТЫ ========== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.contact-block {
    background: var(--color-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-block:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.contact-block h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.5;
}

.contact-row i {
    width: 20px;
    color: var(--color-accent);
    font-size: 1rem;
    text-align: center;
    flex-shrink: 0;
}

.contact-row a {
    color: var(--color-primary);
    transition: color 0.2s;
}

.contact-row a:hover {
    color: var(--color-accent);
}

/* ========== ДОКУМЕНТЫ ========== */
.doc-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--color-light);
    padding: 18px 20px;
    border-radius: var(--radius-md);
    transition: all 0.3s;
    border: 1px solid transparent;
}

.doc-item-link {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}

.doc-item-link:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: white;
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.doc-item > i:first-child {
    font-size: 1.6rem;
    color: var(--color-accent);
    width: 36px;
    text-align: center;
    flex-shrink: 0;
}

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

.doc-info h4 {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.doc-info p {
    font-size: 0.85rem !important;
    color: var(--color-text-secondary);
    margin-bottom: 0 !important;
}

.doc-arrow {
    color: var(--color-accent);
    font-size: 0.9rem;
    opacity: 0.5;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.doc-item-link:hover .doc-arrow {
    opacity: 1;
}

/* ========== ТАБЛИЦЫ (ОПТ) ========== */
.tier-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 24px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.tier-table thead {
    background: var(--gradient-primary);
}

.tier-table th {
    padding: 14px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    text-align: left;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tier-table td {
    padding: 14px 20px;
    font-size: 0.95rem;
    color: var(--color-text);
    background: white;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.tier-table tbody tr:hover td {
    background: var(--color-light);
}

.tier-table tbody tr:last-child td {
    border-bottom: none;
}

.price-badge {
    display: inline-block;
    background: var(--color-light);
    color: var(--color-primary);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* ========== КАТАЛОГ ========== */
.catalog-hero {
    background: linear-gradient(135deg, #FCF6ED 0%, #FEFAF4 50%, #FFFCF8 100%);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.catalog-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.catalog-hero-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-accent);
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.catalog-hero-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 12px;
    line-height: 1.15;
}

.catalog-hero-desc {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.catalog-hero-divider {
    width: 70px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 0 auto 32px;
    border-radius: 2px;
}

.catalog-stats {
    display: inline-flex;
    gap: 32px;
    background: white;
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.catalog-stat {
    text-align: center;
}

.catalog-stat-num {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-accent);
}

.catalog-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-secondary);
    margin-top: 4px;
}

.catalog-wholesale-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin: 32px 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.catalog-wholesale-info p {
    flex: 1;
    font-size: 0.9rem;
    color: var(--color-text);
    margin: 0;
    line-height: 1.5;
}

.catalog-wholesale-info p i {
    color: var(--color-accent);
    margin-right: 8px;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    background: white;
    border: 1px solid rgba(212, 175, 55, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-primary);
}

.filter-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-primary);
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
    background: white;
    border: 1px solid rgba(212, 175, 55, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-primary);
}

.view-btn:hover {
    border-color: var(--color-accent);
    background: var(--color-light);
}

/* Products grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin: 32px 0;
}

/* ===== ПРЕМИАЛЬНАЯ КАРТОЧКА ТОВАРА ===== */
.product-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(107, 58, 31, 0.15), 0 4px 12px rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Изображение */
.product-card__image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #FCF6ED 0%, #FEFAF4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-card__image img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 100%);
    color: var(--color-primary);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Тело карточки */
.product-card__body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card__category {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 8px;
}

.product-card__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-card__desc {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.product-card__meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.product-card__meta-item {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.product-card__meta-item i {
    color: var(--color-accent);
    font-size: 0.75rem;
}

/* Футер карточки */
.product-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.product-card__price-block {
    text-align: left;
}

.product-card__price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.product-card__price-currency {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-secondary);
}

.product-card__price-unit {
    font-size: 0.7rem;
    color: var(--color-text-secondary);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.product-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    background: var(--gradient-primary);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-primary);
    white-space: nowrap;
}

.product-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(107, 58, 31, 0.25);
}

.product-card__btn i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.product-card__btn:hover i {
    transform: translateX(3px);
}

/* Favorite button */
.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    transition: all 0.3s;
    font-size: 0.9rem;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.favorite-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: scale(1.1);
}

.favorite-btn.active {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
}

/* ===== ПРЕМИАЛЬНАЯ МОДАЛКА ТОВАРА ===== */
.modal-product {
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.modal-product__image {
    background: linear-gradient(135deg, #FCF6ED 0%, #FEFAF4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    min-height: 320px;
    width: 100%;
}

.modal-product__image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.modal-product__info {
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-product__category {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    font-weight: 500;
}

.modal-product__name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.25;
    margin: 0;
}

.modal-product__desc {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
}

.modal-product__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modal-product__badge {
    background: var(--color-light);
    color: var(--color-primary);
    font-size: 0.75rem;
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    font-weight: 500;
}

.modal-product__details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.modal-product__detail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text);
}

.modal-product__detail i {
    color: var(--color-accent);
    width: 18px;
    text-align: center;
}

.modal-product__ingredients {
    background: var(--color-light);
    border-radius: var(--radius-md);
    padding: 16px 20px;
}

.modal-product__ingredients h4 {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--color-primary);
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-product__ingredients h4 i {
    color: var(--color-accent);
}

.modal-product__ingredients p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Таблица оптовых цен */
.modal-tiers {
    background: white;
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: var(--radius-md);
    padding: 16px 20px;
}

.modal-tiers h4 {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--color-primary);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-tiers h4 i {
    color: var(--color-accent);
}

.tier-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.06);
}

.tier-row:last-child {
    border-bottom: none;
}

.tier-label {
    font-size: 0.85rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tier-label i {
    font-size: 0.5rem;
    color: var(--color-accent);
}

.tier-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Блок заказа */
.modal-product__order {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: auto;
}

.modal-product__price-block {
    text-align: left;
}

.modal-product__price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.modal-product__price-currency {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-text-secondary);
}

.modal-product__price-unit {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    margin-top: 4px;
}

.modal-product__call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 100%);
    color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-primary);
    text-decoration: none;
    white-space: nowrap;
}

.modal-product__call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.modal-product__hint {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    padding: 8px 12px;
    background: var(--color-light);
    border-radius: var(--radius-sm);
}

.modal-product__hint i {
    color: var(--color-accent);
    font-size: 0.85rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Loading indicator */
.loading-indicator {
    text-align: center;
    padding: 60px 0;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

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

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

/* CTA Block */
.cta-block {
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-md);
    margin: 48px 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.cta-block h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.cta-block p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

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

/* Luxury buttons */
.btn-luxury {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
    text-decoration: none;
}

.btn-luxury-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 100%);
    color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.btn-luxury-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.btn-luxury-outline {
    background: transparent;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-luxury-outline:hover {
    background: var(--color-primary);
    color: white;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(44, 36, 26, 0.5);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.open {
    display: flex;
}

.modal-content,
.modal-content-wide {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.modal-content-wide {
    max-width: 720px;
}

.close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--color-text-secondary);
    transition: color 0.2s;
    line-height: 1;
    background: none;
    border: none;
}

.close:hover {
    color: var(--color-primary);
}

/* ========== PRIVACY PAGE ========== */
.privacy-page .page-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========== АДАПТИВНОСТЬ ВНУТРЕННИХ СТРАНИЦ ========== */
@media (max-width: 992px) {
    .page-hero-title,
    .catalog-hero-title {
        font-size: 2.2rem;
    }

    .page-card {
        padding: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .catalog-stats {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: var(--radius-lg);
        padding: 16px 24px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 40px 0 32px;
    }

    .page-hero-title,
    .catalog-hero-title {
        font-size: 1.8rem;
    }

    .page-hero-desc,
    .catalog-hero-desc {
        font-size: 0.95rem;
    }

    .page-content {
        padding: 32px 0;
    }

    .page-card {
        padding: 24px 20px;
        border-radius: var(--radius-lg);
    }

    .page-card h2 {
        font-size: 1.4rem;
    }

    .stat-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tier-table {
        font-size: 0.85rem;
    }

    .tier-table th,
    .tier-table td {
        padding: 10px 14px;
    }

    .catalog-hero {
        padding: 40px 0 32px;
    }

    .catalog-stats {
        gap: 16px;
        padding: 12px 20px;
    }

    .catalog-stat-num {
        font-size: 1.1rem;
    }

    .catalog-wholesale-info {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 16px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card__image {
        height: 200px;
        padding: 0;
    }

    .product-card__body {
        padding: 16px 18px 20px;
    }

    .product-card__name {
        font-size: 1.1rem;
    }

    .product-card__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .product-card__btn {
        justify-content: center;
    }

    .modal-product {
        min-height: auto;
    }

    .modal-product__image {
        padding: 0;
        min-height: 220px;
    }

    .modal-product__image img {
        height: 220px;
    }

    .modal-product__info {
        padding: 24px 20px;
    }

    .modal-product__name {
        font-size: 1.3rem;
    }

    .modal-product__order {
        flex-direction: column;
        align-items: stretch;
    }

    .modal-product__call-btn {
        justify-content: center;
    }

    .cta-block {
        padding: 32px 20px;
    }

    .cta-block h3 {
        font-size: 1.3rem;
    }

    .page-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .page-actions .btn {
        justify-content: center;
        min-height: 48px;
    }

    .doc-list {
        gap: 10px;
    }

    .doc-item {
        padding: 14px 16px;
    }

    .contact-grid {
        gap: 12px;
    }

    .contact-block {
        padding: 18px;
    }

    .catalog-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-buttons {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .filter-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }

    .view-btn {
        justify-content: center;
    }

    .modal-content,
    .modal-content-wide {
        padding: 24px 20px;
        border-radius: var(--radius-lg);
    }

    .modal-product__details {
        gap: 12px;
    }

    .tier-row {
        padding: 6px 0;
    }

    .tier-price {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-hero-title,
    .catalog-hero-title {
        font-size: 1.5rem;
    }

    .page-card {
        padding: 20px 16px;
    }

    .page-card h2 {
        font-size: 1.2rem;
    }

    .catalog-stat-label {
        font-size: 0.6rem;
    }

    .product-card__price {
        font-size: 1.3rem;
    }

    .product-card__btn {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .modal-product__price {
        font-size: 1.5rem;
    }

    .modal-product__call-btn {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
}

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 992px) {
    .hero-content,
    .about-content,
    .stores-container,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-desc {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: calc(70px + var(--safe-top, 0px));
    }
    html {
        scroll-padding-top: calc(70px + var(--safe-top, 0px));
    }
    .container {
        padding: 0 16px;
    }
    .section {
        padding: 48px 0;
    }
    .hero {
        padding: 32px 0 40px;
    }
    .hero-content {
        gap: 28px;
    }
    .hero-image {
        order: -1;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-actions .btn {
        justify-content: center;
        min-height: 48px;
    }
    .header {
        height: auto;
        min-height: 70px;
        padding-top: var(--safe-top, 0px);
    }
    .header-content {
        flex-wrap: nowrap;
        gap: 10px;
    }
    .logo {
        flex: 1;
        min-width: 0;
    }
    .logo-title {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .tagline {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .advantages-carousel-wrapper {
        display: grid;
        grid-template-columns: 44px 1fr 44px;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "carousel carousel carousel"
            "prev dots next"
            "counter counter counter";
        gap: 1rem 0.75rem;
        padding: 0;
        max-width: 100%;
    }

    .advantages-carousel-container {
        grid-area: carousel;
        min-height: 240px;
        box-shadow: var(--shadow-md);
        border: 1px solid rgba(212, 175, 55, 0.12);
    }

    .advantage-card {
        padding: 1.75rem 1.25rem;
        min-height: 240px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: var(--radius-xl);
        box-shadow: none;
        border: none;
    }

    .advantage-number {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .advantage-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .advantage-desc {
        font-size: 0.9rem;
        line-height: 1.6;
        max-width: 320px;
        margin: 0 auto;
    }

    .carousel-arrow {
        position: static;
        transform: none;
        width: 44px;
        height: 44px;
        font-size: 1rem;
        box-shadow: var(--shadow-sm);
    }

    .carousel-arrow.prev {
        grid-area: prev;
        justify-self: center;
    }

    .carousel-arrow.next {
        grid-area: next;
        justify-self: center;
    }

    .carousel-dots {
        grid-area: dots;
        margin-top: 0;
        align-self: center;
        gap: 6px;
    }

    .carousel-slide-counter {
        display: block;
        grid-area: counter;
        text-align: center;
        margin-top: 0;
    }

    .stores-list {
        max-height: 400px;
    }
    .footer-info {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .back-to-top {
        bottom: calc(var(--mobile-bar-h, 64px) + var(--safe-bottom, 0px) + 0.75rem);
        right: 16px;
        width: 44px;
        height: 44px;
    }
    .nav {
        position: fixed;
        top: calc(70px + var(--safe-top, 0px));
        left: 0;
        right: 0;
        background: var(--color-background);
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        border-top: 1px solid rgba(0,0,0,0.05);
        z-index: 999;
    }
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }
    .btn-large {
        width: 100%;
        justify-content: center;
        min-height: 52px;
    }
    .footer-content {
        text-align: center;
    }
    .footer-logo .btn {
        width: 100%;
        justify-content: center;
    }
    .quote {
        padding: 20px 22px;
    }
    .about-paragraph {
        font-size: 1rem;
    }
    .price-link-wrapper .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .advantages-carousel-wrapper {
        grid-template-columns: 40px 1fr 40px;
        gap: 0.75rem 0.5rem;
    }
    .advantage-card {
        padding: 1.5rem 1rem;
        min-height: 220px;
    }
    .advantage-title {
        font-size: 1.15rem;
    }
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    .dot {
        width: 7px;
        height: 7px;
    }
    .dot.active {
        width: 20px;
    }
    .store-item {
        padding: 12px;
    }
    .logo-title {
        font-size: 1.1rem;
    }
    .logo-icon {
        font-size: 1.6rem;
    }
    .tagline {
        font-size: 0.65rem;
    }
}

/* Падение для старых браузеров: фикс якорей */
:target {
    scroll-margin-top: 80px;
}
@media (max-width: 768px) {
    :target {
        scroll-margin-top: 70px;
    }
}

/* Увеличенная кнопка прайс-листа */
.price-link-wrapper .btn-small {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.price-link-wrapper .btn-small:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}