/* 
   Nikos Acrylic Paints - Main Stylesheet 
   Design: Bright but conservative, light background, sans-serif fonts (Montserrat).
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary-color: #000000; /* Black like in Grass.su */
    --accent-color: #28a745; /* Green like in Grass.su */
    --accent-hover: #218838;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --text-muted: #888888;
    --bg-light: #f4f4f4;
    --bg-white: #ffffff;
    --border-color: #eeeeee;
    --success-green: #25D366;
    
    /* Spacing */
    --container-width: 1200px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 40px;
    
    /* Fonts - Montserrat for modern clean look */
    --font-main: 'Montserrat', sans-serif;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 14px;
}

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

ul {
    list-style: none;
}

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

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-lg) 0;
}

.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-whatsapp {
    background-color: var(--success-green);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Header & Nav (Grass.su Style) */
header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 28px;
    width: auto;
}

.footer-logo {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 11px;
    color: #666;
    padding: 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-divider {
    color: #ddd;
    font-size: 14px;
}

.top-info {
    font-size: 11px;
    color: #999;
}

/* Hero Section */
.hero {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-transform: uppercase;
}

/* Footer (Grass.su Style) */
footer {
    background-color: #f8f8f8;
    color: #333;
    padding: 60px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
    text-transform: capitalize;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    font-size: 13px;
}

.footer-links a:hover {
    color: #000;
}

.footer-contact {
    text-align: right;
}

.footer-contact h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-contact p {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.footer-contact .phone {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    display: block;
    margin-bottom: 10px;
}

/* ===== FULL-WIDTH CAROUSEL ===== */
.carousel {
    position: relative;
    width: 100%;
    height: 624px; /* Увеличено на 20% для десктопа (было 520px) */
    overflow: hidden;
    background: #111;
}
.carousel-track {
    display: flex;
    height: 100%;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    will-change: transform;
    flex-wrap: nowrap;
}
.carousel-track:active {
    cursor: grabbing;
}
.carousel-slide {
    height: 100%;
    position: relative;
    flex: none;
    display: block;
}
.carousel-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65%;
    display: block;
    pointer-events: none;
    max-width: none;
}
.carousel-btn {
    display: inline-block;
    padding: 10px 28px;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background 0.3s, border-color 0.3s;
    text-decoration: none;
    flex-shrink: 0;
}
.carousel-btn:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(0,0,0,0.25);
    border: none;
    border-radius: 50%;
    transition: background 0.3s;
    z-index: 6;
    padding: 0;
}
.carousel-arrow:hover {
    background: rgba(0,0,0,0.5);
}
.carousel-arrow--left {
    left: 16px;
}
.carousel-arrow--right {
    right: 16px;
}
.carousel-arrow svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.carousel-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background 0.3s;
    display: block;
}
.carousel-dot:hover {
    background: rgba(255,255,255,0.65);
}
.carousel-dot.active {
    background: #fff;
}

/* Fixed WhatsApp */
.fixed-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
        gap: 15px;
    }
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-contact {
        text-align: left;
    }
    .carousel {
        height: 100vw;
    }
    .carousel-slide-img {
        object-position: right center;
    }
    .carousel-heading-area {
        top: 20px;
        left: 20px;
        transform: none;
        max-width: 280px;
        text-align: left;
    }
    .carousel-heading {
        font-size: 1.1rem;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        line-height: 1.3;
    }
    .carousel-heading-logo {
        height: 0.8em;
    }
    .carousel-bottom-bar {
        left: 20px;
        right: 20px;
        bottom: 20px;
        gap: 12px;
        transform: none;
        max-width: none;
        padding: 0;
    }
    .about-section {
        padding: 40px 15px;
    }
    .about-title {
        font-size: 1.5rem;
    }
    .about-text {
        font-size: 15px;
    }
    .about-subtitle {
        font-size: 1.3rem;
    }
    .footer-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn-footer {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .catalog-intro { 
        padding: 35px 15px; 
    }
    .catalog-intro h1 { 
        font-size: 1.5rem; 
    }
    .catalog-badges { 
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 10px;
    }
    .product-card {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    .product-card-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .product-specs {
        grid-template-columns: 1fr;
    }
    .product-advantages ul {
        grid-template-columns: 1fr;
    }
    .product-card-body { 
        text-align: center; 
    }
    .product-specs { 
        justify-items: center; 
    }
    .product-advantages ul { 
        text-align: left; 
        display: block; 
    }
    .size-tags { 
        justify-content: center; 
    }
    .product-card-actions { 
        justify-content: center; 
    }
}

@media (max-width: 1024px) {
    .carousel-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .carousel {
        height: 100vw;
    }
    .carousel-slide-img {
        object-position: right center;
    }
    .carousel-btn {
        padding: 8px 20px;
        font-size: 11px;
    }
    .carousel-dot {
        width: 7px;
        height: 7px;
    }
    .carousel-heading-area {
        top: 15px;
        left: 15px;
        transform: none;
        max-width: 220px;
        text-align: left;
    }
    .carousel-heading {
        font-size: 0.95rem;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        line-height: 1.3;
    }
    .carousel-heading-logo {
        height: 0.8em;
    }
    .carousel-bottom-bar {
        left: 15px;
        right: 15px;
        bottom: 15px;
        gap: 10px;
        transform: none;
        max-width: none;
        padding: 0;
    }
}

/* Auto-hide header */
header, .site-header {
    transition: transform 0.3s ease;
}
header.header-hidden, .site-header.header-hidden {
    transform: translateY(-100%);
}

/* Carousel overlay and content positioning */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    z-index: 3;
    pointer-events: none;
}
.carousel-heading-area {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    pointer-events: auto;
    z-index: 4;
    text-align: left;
}
.carousel-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    margin: 0;
    max-width: 420px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}
.carousel-heading-logo {
    display: inline;
    height: 0.8em;
    width: auto;
    filter: brightness(0) invert(1);
    vertical-align: baseline;
    margin-right: 0.1em;
    position: relative;
    top: 0.05em;
}
.carousel-bottom-bar {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
    pointer-events: auto;
    box-sizing: border-box;
}

/* Site Footer */
.site-footer {
    background: #222;
    color: #fff;
    padding: 50px 20px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.footer-logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    margin: 0 auto 20px;
}
.footer-text {
    color: #aaa;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.footer-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.btn-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 4px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-footer svg {
    flex-shrink: 0;
}
.btn-footer-call {
    background: #fff;
    color: #222;
    border-color: #fff;
}
.btn-footer-call:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-footer-whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}
.btn-footer-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
}
.btn-footer-callback {
    background: transparent;
    color: #fff;
    border-color: #555;
}
.btn-footer-callback:hover {
    border-color: #fff;
}

/* About section */
.about-section {
    background: #fff;
    padding: 60px 20px;
}
.about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.about-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
}
.about-text {
    line-height: 1.8;
    color: #333;
    font-size: 16px;
    margin-bottom: 25px;
    text-align: center;
}
.about-subtitle {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    text-align: center;
}

/* Catalog page styles */
.catalog-intro {
    background-image: url('hero-bg.png');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    position: relative;
}
.catalog-intro::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
}
.catalog-intro-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.catalog-intro h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}
.catalog-intro p {
    color: #ddd;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}
.catalog-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.catalog-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.catalog-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #000;
    border: 2px solid #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.catalog-badge span {
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.catalog-category {
    padding: 50px 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.category-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #000;
    display: inline-block;
}

.products-section {
    padding: 30px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    display: flex;
    gap: 40px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 30px;
    margin-bottom: 40px;
    scroll-margin-top: 80px;
}
.product-card-image {
    flex-shrink: 0;
    width: 320px;
}
.product-card-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}
.product-card-body {
    flex: 1;
}
.product-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.product-card-subtitle {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-card-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 30px;
    margin-bottom: 20px;
}
.product-spec {
    display: flex;
    gap: 8px;
    font-size: 13px;
}
.product-spec-label {
    color: #888;
    white-space: nowrap;
}
.product-spec-value {
    color: #222;
    font-weight: 500;
}

.product-advantages {
    margin-bottom: 20px;
}
.product-advantages-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.product-advantages ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.product-advantages li {
    font-size: 13px;
    color: #444;
    padding-left: 18px;
    position: relative;
}
.product-advantages li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

.product-sizes {
    margin-bottom: 20px;
}
.product-sizes-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.size-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.size-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.product-card-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-catalog {
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}
.btn-black {
    background: #000;
    color: #fff;
}
.btn-outline {
    background: transparent;
    color: #000;
    border: 1px solid #000;
}

/* Wholesale Form Section */
.wholesale-form-section {
    background: #f9f9f9;
    padding: 60px 20px;
}
.wholesale-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.wholesale-form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
    text-align: center;
}
.wholesale-form-subtitle {
    font-size: 1rem;
    color: #666;
    margin: 0 0 30px;
    text-align: center;
}
.wholesale-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}
.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #28a745;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}
.btn-submit {
    padding: 14px 32px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-submit:hover {
    background: #333;
}
.btn-submit:active {
    transform: translateY(1px);
}

@media (max-width: 768px) {
    .wholesale-form-container {
        padding: 30px 20px;
    }
    .wholesale-form-title {
        font-size: 1.5rem;
    }
}

/* Wholesale Hero Section */
.wholesale-hero-section {
    position: relative;
    background-image: url('attached_assets/fone 1st section.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wholesale-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}
.wholesale-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
}
.wholesale-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 30px;
    line-height: 1.3;
    text-align: center;
}
.wholesale-hero-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #f0f0f0;
    margin: 0 0 20px;
    text-align: center;
}
.wholesale-hero-btn {
    display: inline-block;
    margin: 30px auto 0;
    padding: 16px 40px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.2s;
    text-align: center;
    display: block;
    max-width: 350px;
    border: 2px solid #fff;
}
.wholesale-hero-btn:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .wholesale-hero-section {
        padding: 50px 20px;
    }
    .wholesale-hero-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    .wholesale-hero-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    .wholesale-hero-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* Modern Footer */
.modern-footer {
    background: #000;
    color: #fff;
    padding: 40px 0 0;
    margin: 0;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}
.footer-col {
    display: flex;
    flex-direction: column;
}
.footer-logo-img {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
}
.footer-description {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
    margin: 0 0 15px;
}
.footer-link-simple {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.footer-link-simple:hover {
    color: #28a745;
}
.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 20px;
    color: #fff;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #fff;
}
.footer-contact-info {
    margin-bottom: 20px;
}
.footer-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-phone:hover {
    color: #28a745;
}
.footer-phone svg {
    flex-shrink: 0;
}
.footer-address {
    font-size: 0.9rem;
    color: #aaa;
    margin: 0;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}
.footer-address:hover {
    color: #aaa;
}
.footer-social {
    margin-bottom: 20px;
}
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 50%;
    color: #fff;
    transition: background 0.2s;
}
.social-link:hover {
    background: #333;
}
.footer-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}
.footer-btn svg {
    flex-shrink: 0;
}
.footer-btn-call {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
}
.footer-btn-call:hover {
    background: #fff;
    color: #000;
}
.footer-btn-whatsapp {
    background: #25D366;
    color: #fff;
}
.footer-btn-whatsapp:hover {
    background: #1fb855;
}
.footer-bottom {
    padding: 25px 0;
    text-align: center;
}
.footer-copyright {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
}

/* Contacts Page */
.contacts-about {
    padding: 60px 0;
    background: #f8f8f8;
}
.contacts-about h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #000;
}
.contacts-about p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    max-width: 900px;
}
.contacts-map {
    padding: 60px 0;
}
.contacts-map h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #000;
}
.map-info {
    margin-bottom: 30px;
}
.address-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
}
.phone-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: color 0.2s;
}
.phone-link:hover {
    color: #28a745;
}
.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.map-container iframe {
    display: block;
}

.footer-catalog {
    display: none;
}
.footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
}
.footer-col {
    text-align: center;
}
.footer-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}
.footer-social-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-social-text:hover {
    color: #25D366;
}
.footer-social-text svg {
    width: 20px;
    height: 20px;
    background: #25D366;
    border-radius: 50%;
    padding: 4px;
    flex-shrink: 0;
}
.footer-btn-call {
    display: none;
}
.footer-buttons {
    display: none;
}

/* Desktop footer optimization */
@media (min-width: 769px) {
    .modern-footer {
        padding: 30px 0 0;
    }
    .footer-top {
        gap: 15px;
    }
    .footer-col {
        text-align: left;
    }
    .footer-logo-img {
        width: 120px;
        margin-bottom: 10px;
    }
    .footer-description {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    .footer-link-simple {
        font-size: 0.9rem;
    }
    .footer-contact-info {
        align-items: flex-start;
        margin-bottom: 10px;
    }
    .footer-phone {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    .footer-address {
        font-size: 0.85rem;
    }
    .footer-social {
        justify-content: flex-start;
        margin-bottom: 10px;
    }
    .footer-bottom {
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .contacts-about {
        padding: 40px 0;
    }
    .contacts-about h1 {
        font-size: 1.8rem;
    }
    .contacts-map {
        padding: 40px 0;
    }
    .contacts-map h2 {
        font-size: 1.5rem;
    }
    .footer-logo-img {
        width: 100px;
    }
}

/* ===== MAP & STORES PAGE ===== */
.map-section {
    padding: 40px 0 0;
}
.map-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 10px;
}
.map-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
#map {
    width: 100%;
    height: 500px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.map-popup {
    font-family: var(--font-main);
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .map-title {
        font-size: 1.5rem;
    }
    #map {
        height: 350px;
    }
}
