/* ============================================
   TOP AUTO SHINY — Tire Shop Styles
   ============================================ */

:root {
    --primary: #1B2838;
    --accent: #FF6B00;
    --accent-hover: #E55D00;
    --accent-light: #FFF3E8;
    --bg: #F7F8FA;
    --white: #FFFFFF;
    --text: #2D3436;
    --text-light: #636E72;
    --text-muted: #B2BEC3;
    --border: #E9ECEF;
    --shadow: 0 2px 20px rgba(27,40,56,0.08);
    --shadow-lg: 0 8px 40px rgba(27,40,56,0.12);
    --shadow-card: 0 2px 12px rgba(27,40,56,0.06);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

/* ============= TOP BAR ============= */
.top-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}

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

/* ============= HEADER ============= */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(27,40,56,0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--primary);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-sub {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--accent);
    background: var(--accent-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
    transition: color var(--transition);
    white-space: nowrap;
}

.header-phone:hover {
    color: var(--accent);
}

.cart-btn {
    position: relative;
    background: none;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px;
    cursor: pointer;
    color: var(--text);
    transition: all var(--transition);
}

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

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition);
}

.cart-count.visible {
    opacity: 1;
    transform: scale(1);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ============= HERO ============= */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,40,56,0.92) 0%, rgba(44,62,80,0.85) 50%, rgba(27,40,56,0.95) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(255,107,0,0.12) 0%, transparent 60%);
}

.hero-tire-pattern {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 60px solid rgba(255,255,255,0.03);
    opacity: 0.5;
}

.hero-tire-pattern::before {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 30px solid rgba(255,255,255,0.02);
}

.hero-tire-pattern::after {
    content: '';
    position: absolute;
    inset: 80px;
    border-radius: 50%;
    border: 15px solid rgba(255,107,0,0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,0,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(255,107,0,0); }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 600px;
}

.hero-desc {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

/* ============= BUTTONS ============= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255,107,0,0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

/* ============= TIRE FINDER ============= */
.tire-finder {
    margin-top: -40px;
    position: relative;
    z-index: 10;
    margin-bottom: 40px;
}

.finder-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    box-shadow: var(--shadow-lg);
}

.finder-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary);
}

.finder-form {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.finder-group {
    flex: 1;
    min-width: 140px;
}

.finder-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.finder-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    cursor: pointer;
    transition: border-color var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23636E72' fill='none' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.finder-group select:focus {
    outline: none;
    border-color: var(--accent);
}

.finder-btn {
    min-width: 160px;
    padding: 14px 28px;
}

/* ============= SECTION STYLES ============= */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 48px;
}

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

.section-header .section-title {
    text-align: left;
    margin-bottom: 0;
}

/* ============= CATALOG ============= */
.catalog {
    padding: 40px 0 80px;
}

.catalog-tabs {
    display: flex;
    gap: 4px;
    background: var(--white);
    padding: 4px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
}

.tab {
    padding: 10px 20px;
    border: none;
    background: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition);
}

.tab:hover {
    color: var(--text);
}

.tab.active {
    background: var(--accent);
    color: white;
}

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

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-card);
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-hit { background: #6C5CE7; color: white; }
.badge-new { background: #00B894; color: white; }
.badge-sale { background: #D63031; color: white; }
.badge-summer { background: #FDCB6E; color: #2D3436; }
.badge-winter { background: #74B9FF; color: #2D3436; }
.badge-allseason { background: #A29BFE; color: white; }

.product-img {
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #eef1f4 100%);
    min-height: 200px;
    overflow: hidden;
}

.product-img img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    transition: transform var(--transition);
}

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

/* Tire Visual */
.tire-visual {
    width: 130px;
    height: 130px;
    position: relative;
}

.tire-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 22px solid #2D3436;
    position: relative;
    background: transparent;
    box-shadow:
        inset 0 0 0 3px rgba(255,255,255,0.1),
        0 0 0 3px rgba(0,0,0,0.1),
        0 4px 15px rgba(0,0,0,0.2);
}

.tire-summer .tire-ring {
    border-color: #2D3436;
    background: repeating-conic-gradient(from 0deg, transparent 0deg, transparent 14deg, rgba(255,255,255,0.05) 14deg, rgba(255,255,255,0.05) 16deg);
}

.tire-winter .tire-ring {
    border-color: #34495E;
    background: repeating-conic-gradient(from 0deg, transparent 0deg, transparent 10deg, rgba(116,185,255,0.1) 10deg, rgba(116,185,255,0.1) 12deg);
}

.tire-allseason .tire-ring {
    border-color: #3D3D3D;
    background: repeating-conic-gradient(from 0deg, transparent 0deg, transparent 12deg, rgba(162,155,254,0.1) 12deg, rgba(162,155,254,0.1) 14deg);
}

.tire-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background: linear-gradient(135deg, #ddd 0%, #bbb 100%);
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.2);
}

.tire-inner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 30%;
    border-radius: 50%;
    background: #999;
    box-shadow: inset 0 1px 4px rgba(0,0,0,0.3);
}

.product-info {
    padding: 16px 20px 20px;
}

.product-brand {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin: 4px 0;
    line-height: 1.3;
}

.product-size {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 10px 0;
    font-size: 12px;
    color: var(--text-light);
}

.stars {
    color: #F1C40F;
    font-size: 14px;
    letter-spacing: 1px;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-old {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-current {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.btn-cart {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--accent);
    background: transparent;
    color: var(--accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}

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

.btn-cart.added {
    background: #00B894;
    border-color: #00B894;
    color: white;
}

.catalog-more {
    text-align: center;
    margin-top: 40px;
}

.catalog-more .btn-outline {
    color: var(--primary);
    border-color: var(--border);
}

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

/* ============= BRANDS ============= */
.brands {
    padding: 80px 0;
    background: var(--white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.brand-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 120px;
}

.brand-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.brand-logo {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all var(--transition);
}

.brand-card:hover .brand-logo {
    filter: grayscale(0%) opacity(1);
}

.brand-country {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ============= SERVICES ============= */
.services {
    padding: 80px 0;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-card);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
}

/* ============= ADVANTAGES ============= */
.advantages {
    padding: 60px 0;
    background: var(--primary);
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.adv-card {
    text-align: center;
    padding: 24px;
}

.adv-icon {
    margin-bottom: 16px;
}

.adv-card h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.adv-card p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.5;
}

/* ============= ABOUT ============= */
.about {
    padding: 80px 0;
    background: var(--white);
}

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

.about .section-title {
    text-align: left;
}

.about-lead {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid var(--border);
}

.about-stat {
    display: flex;
    flex-direction: column;
}

.about-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
}

.about-stat span:last-child {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-placeholder {
    background: var(--primary);
    aspect-ratio: 4/3;
}

/* ============= REVIEWS ============= */
.reviews {
    padding: 80px 0;
}

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

.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    color: var(--primary);
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
}

.review-stars {
    margin-left: auto;
    color: #F1C40F;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============= CONTACTS ============= */
.contacts {
    padding: 80px 0;
    background: var(--white);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item a {
    color: var(--text-light);
    transition: color var(--transition);
}

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

.contacts-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 350px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

/* ============= CTA ============= */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #2C3E50 100%);
}

.cta-inner {
    text-align: center;
}

.cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

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

/* ============= FOOTER ============= */
.footer {
    background: #111920;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: white;
    letter-spacing: 0.5px;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--accent);
}

.footer-col h4 {
    color: white;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 13px;
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal p {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 2px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    transition: color var(--transition);
}

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

/* ============= FLOATING WHATSAPP ============= */
.float-wa {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 99;
    transition: all var(--transition);
}

.float-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

/* ============= COOKIE BANNER ============= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 200;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 13px;
    color: var(--text-light);
}

.cookie-banner a {
    color: var(--accent);
    text-decoration: underline;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }

    .nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px;
        box-shadow: var(--shadow-lg);
        z-index: 99;
    }

    .nav.open {
        display: flex;
    }

    .burger {
        display: flex;
    }

    .header-phone span {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat-num {
        font-size: 22px;
    }

    .finder-form {
        flex-direction: column;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .adv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

    .about-image { order: -1; }

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

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

    .section-title {
        font-size: 26px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .catalog-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: 480px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
