/* ==================== МАГАЗИН КОМПРЕССОРОВ - ФИНАЛЬНАЯ ВЕРСИЯ ==================== */

/* СБРОС И БАЗОВЫЕ СТИЛИ */
.shop-header, .discount-banner, .search-section, .products-section, .warranty-section, .delivery-section {
    box-sizing: border-box;
}

/* УБИРАЕМ КНОПКУ ПРОКРУТКИ НАВЕРХ НА ВСЕХ СТРАНИЦАХ */
.floating-scroll-top {
    display: none !important;
}

/* БЕЗОПАСНЫЙ SEO КОНТЕНТ */
.seo-safe-content {
    opacity: 0.01;
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -1000;
}

.seo-safe-content h2,
.seo-safe-content h3 {
    color: #333;
    margin: 10px 0;
    font-size: 16px;
}

.seo-safe-content p {
    color: #555;
    line-height: 1.4;
    margin: 8px 0;
    font-size: 14px;
}

.seo-safe-content ul {
    margin: 8px 0 8px 20px;
}

.seo-safe-content li {
    margin: 4px 0;
    color: #555;
    font-size: 14px;
}

/* ШАПКА МАГАЗИНА */
.shop-header {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.7)), 
                url('../images/header-bg-desktop.webp') center/cover no-repeat;
    padding: 80px 20px 60px;
    text-align: center;
    color: white;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.shop-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.3) 0%, rgba(41, 128, 185, 0.3) 100%);
    z-index: 1;
}

.logo-container, .shop-title, .shop-subtitle, .shop-stats {
    position: relative;
    z-index: 2;
}

.shop-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 30px 0 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(to right, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.8s ease forwards 0.3s;
}

.shop-subtitle {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.8s ease forwards 0.6s;
    color: #e0f7ff;
    font-weight: 300;
    line-height: 1.6;
    padding: 0 20px;
}

.shop-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.8s ease forwards 0.9s;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1rem;
    color: #b3e0ff;
    margin-top: 5px;
    font-weight: 400;
}

/* БАННЕР СКИДКИ - ПОЛНОСТЬЮ ИСПРАВЛЕН */
.discount-banner {
    background: linear-gradient(135deg, 
        rgba(52, 152, 219, 0.95) 0%, 
        rgba(41, 128, 185, 0.95) 100%);
    color: white;
    padding: 25px 15px;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #FFD700;
    width: 100%;
}

.discount-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 10px;
}

.discount-icon {
    font-size: 2.5rem;
    color: #FFD700;
    animation: pulse 2s infinite;
    margin-bottom: 10px;
}

.discount-text {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.discount-text h2 {
    margin: 0 0 12px 0;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    text-align: center;
}

.discount-text h2 i {
    color: #FFD700;
    font-size: 1.8rem;
}

.discount-text p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.95;
    text-align: center;
    max-width: 100%;
    word-wrap: break-word;
}

.discount-text strong {
    color: #FFD700;
    font-weight: 700;
}

.discount-btn {
    background: linear-gradient(to right, #FFD700, #FFC107);
    color: #000;
    padding: 14px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
    min-height: 44px;
}

.discount-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    background: linear-gradient(to right, #FFC107, #FFD700);
}

/* ПОИСКОВАЯ СТРОКА */
.search-section {
    padding: 50px 15px;
    background: linear-gradient(to bottom, #f8fafc, #e8f4fc);
    position: relative;
    width: 100%;
}

.search-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #3498db, transparent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

.search-box {
    width: 100%;
    margin: 0 auto;
    background: white;
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.12);
    border: 2px solid #e1f0ff;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.search-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #3498db, #2ecc71);
}

.search-header {
    text-align: center;
    margin-bottom: 25px;
    width: 100%;
}

.search-header h3 {
    color: #2c3e50;
    font-size: 1.6rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    text-align: center;
}

.search-header p {
    color: #5d6d7e;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    text-align: center;
}

.search-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #d1ecf1;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s;
    background: #f8fdff;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
    box-sizing: border-box;
    min-height: 44px;
}

.search-input:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2), inset 0 2px 5px rgba(0,0,0,0.05);
    background: white;
}

.search-btn {
    background: linear-gradient(to right, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.25);
    width: 100%;
    box-sizing: border-box;
    min-height: 44px;
}

.search-btn:hover {
    background: linear-gradient(to right, #219653, #27ae60);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(39, 174, 96, 0.35);
}

.clear-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    background: rgba(149, 165, 166, 0.15);
    border: none;
    color: #95a5a6;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 6px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    min-width: 44px;
    min-height: 44px;
}

.clear-btn:hover {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.search-hint {
    margin-top: 20px;
    padding: 15px;
    background: #f0f8ff;
    border-radius: 12px;
    border: 1px solid #d1ecf1;
    width: 100%;
    box-sizing: border-box;
}

.hint-title {
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 600;
    margin-right: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    text-align: center;
}

.hint-title i {
    color: #3498db;
}

.hint-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    justify-content: center;
}

.hint-tag {
    background: white;
    color: #3498db;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid #d1ecf1;
    font-weight: 500;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hint-tag:hover {
    background: #3498db;
    color: white;
    border-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(52, 152, 219, 0.25);
}

.search-tip {
    margin-top: 25px;
    padding: 18px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
    border-radius: 12px;
    border-left: 4px solid #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #856404;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.search-tip i {
    color: #FFD700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* КАТАЛОГ ТОВАРОВ */
.products-section {
    padding: 60px 15px;
    background: white;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
    width: 100%;
}

.section-header h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-align: center;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #3498db, #2ecc71);
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.3s ease;
}

.section-header:hover h2::after {
    transform: translateX(-50%) scaleX(1);
}

.results-info {
    font-size: 1.1rem;
    color: #5d6d7e;
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid #e1e8ed;
    text-align: center;
}

.results-info span {
    color: #3498db;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 4px;
}

/* КАРТОЧКИ ТОВАРОВ - БОЛЕЕ ТЕМНЫЙ ФОН */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    width: 100%;
}

.product-card {
    background: #f9f9f9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e8e8;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: calc(var(--card-index, 0) * 0.1s);
    width: 100%;
    box-sizing: border-box;
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #3498db;
}

.product-card.highlighted {
    animation: highlightPulse 2s infinite;
    border: 3px solid #FFD700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.25);
}

.product-badge {
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    border-bottom: 2px solid #ddd;
    width: 100%;
    box-sizing: border-box;
}

.badge-new {
    background: linear-gradient(to right, #27ae60, #2ecc71);
    color: white;
    padding: 5px 12px;
    border-radius: 18px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.2);
}

.badge-stock {
    color: #27ae60;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-used {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 5px 12px;
    border-radius: 18px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.2);
}

.product-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #3498db, #2ecc71);
}

.product-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f9f9f9;
    width: 100%;
    box-sizing: border-box;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
    border-bottom: 2px solid #eee;
    padding-bottom: 12px;
    text-align: center;
}

.product-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
    font-style: italic;
    background: #f0f0f0;
    padding: 12px;
    border-radius: 8px;
    border-left: 3px solid #3498db;
    text-align: center;
}

.product-specs {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f0f0f0;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    width: 100%;
    box-sizing: border-box;
}

.spec-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.9rem;
    padding: 6px 0;
    border-bottom: 1px dashed #ddd;
    width: 100%;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-item i {
    color: #3498db;
    width: 18px;
    text-align: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.spec-label {
    color: #666;
    font-weight: 500;
    flex-shrink: 0;
    min-width: 120px;
    text-align: left;
}

.spec-value {
    font-weight: 700;
    color: #333;
    text-align: right;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-price {
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    padding: 18px;
    border-radius: 12px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #ddd;
    width: 100%;
    box-sizing: border-box;
}

.price-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.price-value {
    font-size: 2rem;
    font-weight: 900;
    color: #27ae60;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    position: relative;
}

.price-value::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #27ae60, transparent);
}

.product-order-btn {
    background: linear-gradient(to right, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1rem;
    margin-top: auto;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.25);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    min-height: 44px;
}

.product-order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s;
}

.product-order-btn:hover {
    background: linear-gradient(to right, #128C7E, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.35);
}

.product-order-btn:hover::before {
    left: 100%;
}

.product-quick-view-btn {
    background: linear-gradient(to right, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-top: 10px;
    width: 100%;
    min-height: 44px;
}

.product-quick-view-btn:hover {
    background: linear-gradient(to right, #2980b9, #1c5988);
    transform: translateY(-2px);
}

/* СООБЩЕНИЕ "НИЧЕГО НЕ НАЙДЕНО" */
.no-results {
    text-align: center;
    padding: 60px 25px;
    background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
    border-radius: 20px;
    border: 3px dashed #ccc;
    margin: 30px auto;
    max-width: 500px;
    display: none;
    width: 100%;
    box-sizing: border-box;
}

.no-results-icon {
    font-size: 4rem;
    color: #aaa;
    margin-bottom: 25px;
    animation: bounce 2s infinite;
}

.no-results h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #2c3e50, #7f8c8d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.no-results p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.no-results-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.phone-help-btn {
    background: linear-gradient(to right, #3498db, #2980b9);
    color: white;
    padding: 14px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.25);
    font-size: 0.95rem;
    min-width: 200px;
    box-sizing: border-box;
    min-height: 44px;
}

.phone-help-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(52, 152, 219, 0.35);
}

.whatsapp-help-btn {
    background: linear-gradient(to right, #25D366, #128C7E);
    color: white;
    padding: 14px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    font-size: 0.95rem;
    min-width: 200px;
    box-sizing: border-box;
    min-height: 44px;
}

.whatsapp-help-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(37, 211, 102, 0.35);
}

/* СЕКЦИЯ ГАРАНТИИ - ИСПРАВЛЕНА */
.warranty-section {
    padding: 60px 15px;
    background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
    position: relative;
    width: 100%;
}

.warranty-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #3498db, #2ecc71, #3498db);
}

.warranty-card {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.12);
    border: 2px solid #e1f0ff;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.warranty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #3498db, #2ecc71);
}

.warranty-icon {
    font-size: 3.5rem;
    color: #3498db;
    margin-bottom: 25px;
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.warranty-content h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 15px;
    line-height: 1.3;
}

.warranty-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(to right, #3498db, #2ecc71);
    border-radius: 2px;
}

.warranty-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
    width: 100%;
}

.benefit {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    padding: 22px;
    border-radius: 16px;
    border: 2px solid #e8f4ff;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.3s;
    width: 100%;
    box-sizing: border-box;
    min-height: 140px;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.1);
    border-color: #3498db;
}

.benefit-icon {
    font-size: 2.2rem;
    color: #3498db;
    flex-shrink: 0;
    background: #e8f4ff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-text {
    flex: 1;
    min-width: 0;
}

.benefit-text h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 8px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.benefit-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.warranty-cta {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4ff 100%);
    border-radius: 16px;
    border: 2px solid #d1ecf1;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.cta-text h4 {
    color: #2c3e50;
    font-size: 1.6rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.cta-text p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    text-align: center;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.warranty-phone {
    background: linear-gradient(to right, #3498db, #2980b9);
    color: white;
    padding: 16px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.25);
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
    min-height: 44px;
}

.warranty-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.35);
}

.warranty-whatsapp {
    background: linear-gradient(to right, #25D366, #128C7E);
    color: white;
    padding: 16px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.25);
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
    min-height: 44px;
}

.warranty-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.35);
}

/* СЕКЦИЯ ДОСТАВКИ */
.delivery-section {
    padding: 60px 15px;
    background: linear-gradient(135deg, #e8f4fc 0%, #d4e7f7 100%);
    width: 100%;
}

.delivery-info-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.15);
    border: 2px solid #e1f0ff;
    position: relative;
    overflow: hidden;
}

.delivery-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #3498db, #2ecc71);
}

.delivery-info-card h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f8ff;
}

.delivery-methods {
    margin: 25px 0;
}

.method-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eef5ff;
}

.method-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.method-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.method-content {
    flex: 1;
}

.method-content h4 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 1.3rem;
}

.method-content > p {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.method-details {
    margin: 15px 0;
    padding-left: 20px;
    color: #666;
    font-size: 0.95rem;
}

.method-details li {
    margin-bottom: 8px;
    position: relative;
    line-height: 1.4;
}

.method-details li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

.map-open-btn {
    background: linear-gradient(to right, #f39c12, #e67e22);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.map-open-btn:hover {
    background: linear-gradient(to right, #e67e22, #d35400);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(243, 156, 18, 0.35);
}

.delivery-notice {
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4ff 100%);
    border-left: 4px solid #3498db;
    padding: 20px;
    margin-top: 30px;
    border-radius: 0 12px 12px 0;
    border: 1px solid #d1ecf1;
}

.delivery-notice p {
    margin: 10px 0;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.delivery-notice i {
    color: #3498db;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.delivery-notice a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.delivery-notice a:hover {
    text-decoration: underline;
    color: #2980b9;
}

/* МОДАЛЬНОЕ ОКНО БЫСТРОГО ПРОСМОТРА */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-container {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: modalSlideUp 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 20px 25px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #1c5988;
}

.modal-title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    min-width: 44px;
    min-height: 44px;
}

.modal-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.modal-product-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.modal-product-image {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f5f5f5, #eeeeee);
    border-radius: 12px;
    border: 2px solid #e0e0e0;
}

.modal-product-image img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.modal-product-title {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    text-align: center;
}

.modal-product-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    text-align: center;
}

.modal-product-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.modal-spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f0f8ff;
    border-radius: 8px;
    border: 1px solid #d1ecf1;
}

.modal-spec-label {
    color: #666;
    font-weight: 500;
    font-size: 0.95rem;
}

.modal-spec-value {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1rem;
}

.modal-product-price {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    border: 3px solid #27ae60;
    margin: 20px 0;
}

.modal-price-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #27ae60;
    margin: 10px 0;
}

.modal-footer {
    padding: 20px 25px;
    background: #f8f9fa;
    border-top: 2px solid #e1e8ed;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.modal-whatsapp-btn {
    background: linear-gradient(to right, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 16px 25px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.25);
    min-width: 200px;
    min-height: 44px;
    flex: 1;
}

.modal-whatsapp-btn:hover {
    background: linear-gradient(to right, #128C7E, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.35);
}

.modal-phone-btn {
    background: linear-gradient(to right, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 16px 25px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.25);
    min-width: 200px;
    min-height: 44px;
    flex: 1;
}

.modal-phone-btn:hover {
    background: linear-gradient(to right, #2980b9, #1c5988);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.35);
}

/* ФУТЕР */
.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 40px 15px;
    margin-top: 40px;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.copyright {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #bdc3c7;
    text-align: center;
}

.footer-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.footer-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 4px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-link:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}

.social-links {
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

.social-link {
    color: white;
    font-size: 1.4rem;
    margin: 0 12px;
    transition: all 0.3s;
    display: inline-block;
    padding: 10px;
    border-radius: 50%;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: #3498db;
    transform: translateY(-3px);
    background: rgba(255,255,255,0.1);
}

/* АНИМАЦИИ */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes highlightPulse {
    0%, 100% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.25);
    }
    50% {
        box-shadow: 0 0 35px rgba(255, 215, 0, 0.35);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ПОДСВЕТКА ПОИСКА */
.search-highlight {
    background-color: #FFD700;
    color: #000;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: bold;
}

/* ПЛАВАЮЩИЕ КНОПКИ ДЛЯ МАГАЗИНА */
.floating-call-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: linear-gradient(to right, #27ae60, #2ecc71);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 50px;
    min-height: 50px;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.floating-call-btn .call-text {
    display: none;
}

.floating-whatsapp-btn {
    position: fixed;
    bottom: 160px;
    right: 20px;
    background: linear-gradient(to right, #25D366, #128C7E);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 50px;
    min-height: 50px;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* АВТОДОПОЛНЕНИЕ ПОИСКА */
.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #3498db;
    border-top: none;
    border-radius: 0 0 12px 12px;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: none;
}

.autocomplete-suggestion {
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
}

.autocomplete-suggestion:last-child {
    border-bottom: none;
}

.autocomplete-suggestion:hover {
    background: #f0f8ff;
}

.autocomplete-oem {
    font-weight: 700;
    color: #3498db;
    min-width: 150px;
}

.autocomplete-name {
    color: #2c3e50;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.autocomplete-brand {
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
    min-width: 100px;
    text-align: right;
}

/* СЧЕТЧИК ПРОСМОТРОВ */
.product-views {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(52, 152, 219, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(5px);
}

.product-views i {
    font-size: 0.7rem;
}

/* ОБЩИЕ ИСПРАВЛЕНИЯ ДЛЯ ВСЕХ СТРАНИЦ */
.floating-scroll-top,
[class*="scroll-top"],
[class*="scrollToTop"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* АДАПТИВНОСТЬ */
@media (min-width: 769px) {
    /* ДЕСКТОП ВЕРСИЯ */
    .discount-content {
        flex-direction: row;
        text-align: left;
        gap: 30px;
    }
    
    .discount-text {
        text-align: left;
    }
    
    .discount-text h2 {
        justify-content: flex-start;
        text-align: left;
    }
    
    .discount-text p {
        text-align: left;
    }
    
    .discount-btn {
        width: auto;
        max-width: none;
    }
    
    .search-input-group {
        flex-direction: row;
    }
    
    .search-btn {
        width: auto;
        min-width: 120px;
    }
    
    .clear-btn {
        right: 140px;
    }
    
    .hint-title {
        justify-content: flex-start;
        text-align: left;
    }
    
    .hint-tags {
        justify-content: flex-start;
    }
    
    .search-tip {
        justify-content: flex-start;
        text-align: left;
    }
    
    .cta-buttons {
        flex-direction: row;
    }
    
    .warranty-phone, .warranty-whatsapp {
        width: auto;
        max-width: none;
        min-width: 220px;
    }
    
    .method-item {
        align-items: flex-start;
    }
    
    .modal-body {
        flex-direction: row;
    }
    
    .modal-product-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .modal-product-image {
        grid-column: 1;
        grid-row: 1 / span 3;
    }
    
    .modal-product-title {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
        margin-top: 0;
    }
    
    .modal-product-description {
        grid-column: 2;
        grid-row: 2;
        text-align: left;
    }
    
    .modal-product-specs {
        grid-column: 2;
        grid-row: 3;
    }
    
    .modal-product-price {
        grid-column: 1 / span 2;
        grid-row: 4;
    }
}

@media (max-width: 768px) {
    /* ШАПКА */
    .shop-header {
        padding: 50px 15px 40px;
        min-height: 40vh;
    }
    
    .shop-title {
        font-size: 2rem;
        margin: 20px 0 10px;
    }
    
    .shop-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .shop-stats {
        gap: 20px;
        margin-top: 20px;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* БАННЕР - УЖЕ АДАПТИВНЫЙ */
    /* ПОИСК */
    .search-box {
        padding: 25px 20px;
    }
    
    .search-header h3 {
        font-size: 1.4rem;
        gap: 10px;
    }
    
    .search-input {
        padding: 14px;
        font-size: 1rem;
    }
    
    .search-btn {
        padding: 14px;
        min-width: 100px;
        font-size: 0.95rem;
    }
    
    .clear-btn {
        right: 110px;
        top: 14px;
    }
    
    /* КАРТОЧКИ */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .product-title {
        font-size: 1.2rem;
    }
    
    .product-image {
        height: 220px;
    }
    
    .spec-item {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .spec-label {
        min-width: 100px;
        font-size: 0.85rem;
        text-align: left;
    }
    
    .spec-value {
        font-size: 0.85rem;
        text-align: left;
        width: 100%;
        margin-top: 5px;
        white-space: normal;
    }
    
    /* ГАРАНТИЯ */
    .warranty-card {
        padding: 30px 20px;
    }
    
    .warranty-content h3 {
        font-size: 1.7rem;
    }
    
    .warranty-benefits {
        grid-template-columns: 1fr;
    }
    
    .benefit {
        padding: 20px;
    }
    
    .warranty-cta {
        padding: 25px 20px;
    }
    
    .cta-text h4 {
        font-size: 1.4rem;
    }
    
    .cta-text p {
        font-size: 0.95rem;
    }
    
    /* ДОСТАВКА */
    .delivery-info-card {
        padding: 25px 20px;
    }
    
    .method-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .method-icon {
        margin: 0 auto;
    }
    
    .method-content {
        text-align: center;
    }
    
    .method-details {
        text-align: left;
        padding-left: 25px;
    }
    
    .delivery-notice p {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    /* МОДАЛЬНОЕ ОКНО */
    .modal-container {
        max-height: 85vh;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-product-title {
        font-size: 1.5rem;
    }
    
    .modal-product-description {
        font-size: 1rem;
    }
    
    .modal-product-specs {
        grid-template-columns: 1fr;
    }
    
    .modal-price-value {
        font-size: 2rem;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-whatsapp-btn,
    .modal-phone-btn {
        width: 100%;
        min-width: auto;
    }
    
    /* ФУТЕР */
    .main-footer {
        padding: 30px 15px;
    }
    
    /* ПЛАВАЮЩИЕ КНОПКИ */
    .floating-call-btn {
        bottom: 80px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        min-width: 45px;
        min-height: 45px;
    }
    
    .floating-whatsapp-btn {
        bottom: 135px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        min-width: 45px;
        min-height: 45px;
    }
}

@media (max-width: 480px) {
    /* ШАПКА */
    .shop-title {
        font-size: 1.7rem;
    }
    
    .shop-subtitle {
        font-size: 1rem;
    }
    
    .shop-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        min-width: 100%;
    }
    
    /* ПОИСК */
    .search-header h3 {
        font-size: 1.3rem;
    }
    
    .hint-tags {
        justify-content: center;
    }
    
    .hint-tag {
        font-size: 0.8rem;
        padding: 8px 14px;
        min-height: 40px;
        min-width: auto;
    }
    
    /* КАРТОЧКИ */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-image {
        height: 200px;
        padding: 15px;
    }
    
    .product-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .price-value {
        font-size: 1.8rem;
    }
    
    /* ГАРАНТИЯ */
    .warranty-content h3 {
        font-size: 1.5rem;
    }
    
    .benefit {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .benefit-icon {
        margin-bottom: 10px;
    }
    
    .cta-buttons {
        gap: 12px;
    }
    
    .warranty-phone, .warranty-whatsapp {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    /* ДОСТАВКА */
    .delivery-info-card {
        padding: 20px;
    }
    
    .delivery-info-card h3 {
        font-size: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .method-details {
        padding-left: 20px;
        font-size: 0.9rem;
    }
    
    .map-open-btn {
        width: 100%;
        justify-content: center;
    }
    
    .delivery-notice p {
        font-size: 0.9rem;
        text-align: left;
    }
    
    /* ФУТЕР */
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-link {
        justify-content: center;
        padding: 10px;
    }
}

@media (max-width: 360px) {
    .shop-title {
        font-size: 1.5rem;
    }
    
    .search-header h3 {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .product-order-btn {
        padding: 14px;
        font-size: 0.95rem;
    }
    
    .product-quick-view-btn {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 15px;
    }
}