/* ================================= */
/* Euro-GUR.Ru - Main and common styles */
/* ================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

body {
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-bar {
    background: #ffd700;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #1a3e6f;
    position: relative;
}

.logo {
    text-align: center;
    flex-grow: 1;
}

.logo h1 {
    color: #1a3e6f;
    font-size: 2rem;
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
    white-space: nowrap;
}

.logo p {
    color: #0a1e3a;
    font-size: 1.1rem;
    margin: 5px 0 8px;
    font-weight: 600;
    opacity: 1;
}

.stock-text {
    color: #1a3e6f;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.cart-link {
    background: #1a3e6f;
    color: #fff;
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    white-space: nowrap;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.cart-link:hover {
    background: #0f2c4a;
}

@media (max-width: 700px) {
    .top-bar {
        flex-direction: column;
        padding: 15px;
    }
    .cart-link {
        position: static;
        transform: none;
        margin-top: 10px;
    }
}

@media (max-width: 500px) {
    .logo h1 {
        font-size: 1.7rem;
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 15px auto;
    padding: 0 15px;
    flex: 1;
}

.breadcrumbs {
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.breadcrumbs a {
    color: #1a3e6f;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: #666;
}

.selectors {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.selectors select {
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid #ccc;
    min-width: 180px;
    flex: 1 1 180px;
    font-size: 16px;
    background: #fff;
    cursor: pointer;
}

.selectors select:focus {
    outline: none;
    border-color: #1a3e6f;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex: 1;
}

.product-image {
    height: 150px;
    background: #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a3e6f;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-years {
    font-size: 14px;
    color: #1a3e6f;
    font-weight: 700;
    margin-bottom: 5px;
    background: #f0f0f0;
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
}

.product-type {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
    text-align: center;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: #1a3e6f;
    margin: 8px 0;
    text-align: center;
    background: #f9f9f9;
    padding: 5px;
    border-radius: 30px;
}

.product-stock {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
}

.stock-moscow {
    background: #e6f7e6;
    color: #2c5f2d;
}

.stock-minsk {
    background: #fff3cd;
    color: #856404;
}

.btn-add-to-cart {
    background: #1a3e6f;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 30px;
    margin-top: 10px;
    cursor: pointer;
    width: 100%;
    font-size: 14px;
    transition: 0.2s;
}

.btn-add-to-cart:hover {
    background: #0f2c4a;
}

.btn-add-to-cart.added {
    background: #2c5f2d !important;
    cursor: default;
    opacity: 0.9;
    pointer-events: none;
}

.btn-telegram {
    background: #2c5f2d;
    color: #fff;
    border: none;
    padding: 8px 10px;
    border-radius: 30px;
    margin-top: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 13px;
    transition: 0.2s;
}

.btn-telegram:hover {
    background: #1e4a1f;
}

.promo-banner {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 100%;
}

.promo-banner.hidden-block {
    display: none;
}

.promo-text {
    color: #1a3e6f;
}

.promo-text h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.promo-text p {
    font-size: 16px;
    opacity: 0.8;
}

.promo-button {
    background: #1a3e6f;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.promo-button:hover {
    background: #0f2c4a;
    transform: scale(1.05);
}

.show-all-btn {
    background: #1a3e6f;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    max-width: 200px;
    margin: 0 auto 20px;
    display: block;
}

.hidden-block {
    display: none !important;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px 0;
    width: 100%;
}

.features-grid.hidden-block {
    display: none;
}

.feature-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.feature-card h3 {
    color: #1a3e6f;
    margin-bottom: 8px;
    font-size: 18px;
}

.feature-card p {
    color: #000;
    font-size: 14px;
    line-height: 1.5;
}

footer {
    background: #333;
    color: #fff;
    padding: 30px 20px 15px;
    margin-top: 40px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.footer-grid h4 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 15px;
}

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

.footer-grid li {
    margin: 5px 0;
}

.footer-grid a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.footer-grid a:hover {
    color: #ffd700;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    text-align: center;
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

.footer-bottom p:first-child {
    margin-bottom: 5px;
}

.notification-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2c5f2d;
    color: white;
    padding: 12px 20px;
    border-radius: 40px;
    z-index: 2000;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: slideIn 0.3s;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ==================== PARTS.HTML ==================== */
.filters {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    align-items: flex-end;
    border: 1px solid #eee;
}
.filter-group {
    flex: 1 1 180px;
    min-width: 150px;
}
.filter-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #1a3e6f;
    font-size: 14px;
}
.filter-group select {
    width: 100%;
    padding: 10px 15px;
    border-radius: 30px;
    border: 1px solid #ccc;
    font-size: 14px;
    background: white;
    cursor: pointer;
}
.filter-group select:focus {
    outline: none;
    border-color: #1a3e6f;
}
.reset-btn {
    background: #f0f0f0;
    color: #1a3e6f;
    border: 1px solid #ccc;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    height: 42px;
    white-space: nowrap;
    transition: 0.2s;
}
.reset-btn:hover {
    background: #ffd700;
}
.product-category {
    font-size: 12px;
    color: #666;
    background: #f0f0f0;
    padding: 3px 8px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 8px;
    width: fit-content;
}
.no-products {
    text-align: center;
    grid-column: 1/-1;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    font-size: 18px;
    color: #666;
}
.loading {
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: #1a3e6f;
}

/* ==================== FOOTER ADAPTIVE ==================== */
@media (max-width: 768px) {
    .footer-columns {
        gap: 40px;
    }
    .footer-col {
        min-width: 140px;
    }
    .footer-col h4 {
        font-size: 16px;
    }
    .footer-col a,
    .footer-col li {
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .footer-columns {
        gap: 30px;
    }
    .footer-col {
        min-width: 100%;
    }
}
@media (max-width: 600px) {
    .footer-text-pc { display: none; }
    .footer-text-mobile { display: block; }
}
@media (min-width: 601px) {
    .footer-text-mobile { display: none; }
}

/* ==================== DELIVERY.HTML ==================== */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}
@media (max-width: 900px) { .delivery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .delivery-grid { grid-template-columns: 1fr; } }
.delivery-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    transition: 0.3s;
}
.delivery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.delivery-card h2 {
    color: #1a3e6f;
    font-size: 22px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ffd700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.delivery-card ul { list-style: none; padding: 0; }
.delivery-card li { padding: 10px 0 10px 35px; position: relative; color: #000; font-size: 15px; }
.delivery-card li:before { content: "✅"; position: absolute; left: 5px; color: #2c5f2d; font-weight: bold; }
.payment-methods { background: white; border-radius: 15px; padding: 25px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); margin-bottom: 30px; border: 1px solid #eee; }
.payment-methods h2 { color: #1a3e6f; font-size: 22px; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 3px solid #ffd700; }
.payment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 20px; }
.payment-card { background: #f8f8f8; border-radius: 10px; padding: 20px; border: 1px solid #ddd; }
.payment-card h3 { color: #1a3e6f; margin-bottom: 10px; font-size: 18px; }
.payment-card p { margin: 5px 0; font-family: monospace; font-size: 16px; color: #000; }
.payment-card small { color: #000; }
.important-note { background: #fff3cd; border-left: 4px solid #856404; padding: 20px; border-radius: 10px; margin: 30px 0; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.important-note p { margin: 5px 0; color: #856404; font-weight: 500; }
.how-to-order { background: #f0f0f0; border-radius: 15px; padding: 25px; margin: 20px 0; border: 1px solid #ddd; }
.how-to-order h2 { color: #1a3e6f; margin-bottom: 15px; font-size: 22px; border-left: 5px solid #ffd700; padding-left: 15px; }
.how-to-order ol { padding-left: 25px; }
.how-to-order li { margin: 10px 0; color: #000; font-size: 16px; }
.back-link { display: inline-block; margin: 20px 0; color: #1a3e6f; text-decoration: none; font-size: 16px; padding: 10px 25px; background: #f0f0f0; border-radius: 30px; font-weight: 500; border: 1px solid #ccc; transition: 0.2s; }
.back-link:hover { background: #ffd700; border-color: #1a3e6f; }

/* ==================== CHECKOUT.HTML ==================== */
.checkout-wrapper { max-width: 500px; margin: 0 auto; }
.checkout-card { background: white; border-radius: 24px; padding: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.order-summary { background: #f8f9fa; border-radius: 12px; padding: 15px; margin-bottom: 25px; }
.order-summary h3 { color: #1a3e6f; font-size: 18px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.order-item { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }
.order-total { margin-top: 12px; padding-top: 12px; border-top: 1px solid #ddd; text-align: right; font-weight: 700; font-size: 18px; color: #1a3e6f; }
.vin-hint { font-size: 12px; color: #666; margin-top: 5px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: flex; align-items: center; gap: 5px; margin-bottom: 5px; font-weight: 600; font-size: 14px; color: #1a3e6f; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 15px; border: 2px solid #e0e0e0; border-radius: 12px; font-size: 15px; transition: border-color 0.2s; background: white; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #1a3e6f; outline: none; }
.required-star { color: #dc3545; font-size: 15px; }
.form-actions { display: flex; gap: 12px; margin-top: 25px; }
.btn-primary { flex: 2; background: #1a3e6f; color: white; border: none; padding: 14px 20px; border-radius: 40px; font-size: 16px; font-weight: 600; cursor: pointer; transition: 0.2s; }
.btn-primary:hover { background: #0f2c4a; }
.btn-secondary { flex: 1; background: #f0f0f0; color: #333; border: 1px solid #ccc; padding: 14px 20px; border-radius: 40px; font-size: 15px; text-decoration: none; text-align: center; transition: 0.2s; }
.btn-secondary:hover { background: #e0e0e0; }
.success-block { text-align: center; padding: 30px 20px; }
.success-icon { font-size: 56px; margin-bottom: 20px; }
.success-block h2 { color: #1a3e6f; margin-bottom: 10px; font-size: 24px; }
.success-block p { color: #666; margin-bottom: 25px; }
.order-item-checkout {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}
.order-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.order-item-details {
    flex: 1;
}
.order-item-title {
    font-weight: 600;
    font-size: 14px;
    color: #1a3e6f;
    text-decoration: none;
    display: block;
}
.order-item-price {
    font-size: 13px;
    color: #666;
}
.order-item-total {
    font-weight: 700;
    font-size: 15px;
    color: #1a3e6f;
    white-space: nowrap;
}
/* ==================== CART.HTML ==================== */
.cart-wrapper { max-width: 800px; margin: 0 auto; }
.cart-card { background: white; border-radius: 24px; padding: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.cart-item { display: flex; align-items: center; gap: 15px; padding: 15px 0; border-bottom: 1px solid #eee; }
.cart-item:last-of-type { border-bottom: none; }
.cart-item-image { width: 70px; height: 70px; border-radius: 10px; object-fit: cover; background: #e0e0e0; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-title { color: #1a3e6f; text-decoration: none; font-weight: 600; font-size: 16px; display: block; margin-bottom: 5px; }
.cart-item-title:hover { text-decoration: underline; color: #0f2c4a; }
.cart-item-price { font-size: 14px; color: #666; }
.cart-item-quantity { display: flex; align-items: center; gap: 10px; }
.qty-btn { background: #f0f0f0; border: 1px solid #ccc; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: 0.2s; }
.qty-btn:hover { background: #e0e0e0; }
.qty-value { font-size: 16px; font-weight: 600; min-width: 30px; text-align: center; }
.cart-item-total { font-weight: 700; font-size: 16px; color: #1a3e6f; min-width: 90px; text-align: right; }
.cart-item-remove { background: none; border: none; color: #d32f2f; cursor: pointer; font-size: 20px; padding: 5px; }
.cart-item-remove:hover { color: #b71c1c; }
.cart-summary { margin-top: 25px; padding-top: 20px; border-top: 2px solid #eee; text-align: right; }
.cart-total { font-size: 22px; font-weight: 700; color: #1a3e6f; margin-bottom: 20px; }
.cart-actions { display: flex; gap: 15px; justify-content: flex-end; }
.cart-empty { text-align: center; padding: 40px 20px; }
.cart-empty p { font-size: 18px; color: #666; margin-bottom: 20px; }

/* ==================== PRODUCT CARD ==================== */
.numbers-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0; }
.number-item { background: #f0f0f0; padding: 6px 12px; border-radius: 6px; font-family: monospace; font-size: 14px; display: inline-block; }
.hidden-numbers { display: none; }
.show-more-btn { margin-top: 8px; padding: 6px 14px; background: #f5f5f5; border: 1px dashed #999; border-radius: 4px; cursor: pointer; font-size: 13px; color: #555; }
.show-more-btn:hover { background: #e8e8e8; }




.seo-description { margin-top: 15px; line-height: 1.6; }
.seo-description p { margin: 6px 0; }
.cta-block { background: #f9f9f9; padding: 12px 15px; border-radius: 8px; margin-top: 12px; font-size: 14px; color: #333; border-left: 3px solid #ffd700; }
.compatibility-note { background: #f0f7ff; padding: 12px 15px; border-radius: 8px; margin: 12px 0; font-size: 14px; border-left: 3px solid #1a3e6f; }
.also-link { background: #fff9e6; padding: 10px 15px; border-radius: 8px; margin: 10px 0; border-left: 3px solid #ffd700; }
.manufacturer-row { display: flex; gap: 10px; padding: 6px 0; border-bottom: 1px dotted #ddd; }
/* ==================== MODAL ==================== */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 9999; justify-content: center; align-items: center; }
.modal-overlay.active { display: flex !important; }
.inquiry-modal { background: #fff; border-radius: 12px; padding: 20px; max-width: 450px; width: 90%; max-height: 90vh; overflow-y: auto; }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.modal-header h2 { font-size: 18px; color: #1a3e6f; }
.close-modal { font-size: 28px; cursor: pointer; color: #999; line-height: 1; }
.product-preview { display: flex; gap: 10px; align-items: center; margin-bottom: 15px; padding: 10px; background: #f5f5f5; border-radius: 8px; }
.preview-icon { font-size: 30px; }
.preview-title { font-weight: 600; font-size: 14px; color: #1a3e6f; }
.preview-price { font-size: 16px; font-weight: 700; color: #1a3e6f; }
.form-group { margin-bottom: 12px; }
.form-label { display: block; margin-bottom: 4px; font-weight: 600; font-size: 14px; color: #1a3e6f; }
.form-input, .form-textarea { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 6px; font-size: 16px; box-sizing: border-box; }
.form-textarea { resize: vertical; }
.required-star { color: red; }
.input-hint { font-size: 11px; color: #999; margin-top: 3px; }
.upload-compact { margin-bottom: 12px; }
.upload-row { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; }
.upload-btn-small { background: #4a90d9; color: #fff; border: none; padding: 6px 12px; border-radius: 4px; cursor: pointer; font-size: 13px; }
.upload-status-small { font-size: 12px; color: #2c5f2d; margin-top: 3px; }
.btn-submit, .btn-cancel { padding: 10px 20px; border: none; border-radius: 6px; font-size: 16px; cursor: pointer; }
.btn-submit { background: #ffd700; color: #1a3e6f; font-weight: 600; }
.btn-cancel { background: #eee; color: #666; }
.modal-actions { display: flex; gap: 10px; margin-top: 15px; }

.image-modal-content img { width: 100%; height: auto; max-height: 90vh; object-fit: contain; border-radius: 8px; }

/* ==================== FOOTER ==================== */
.site-footer { background: #0f0f0f; color: #ccc; padding: 30px 20px; margin-top: auto; }
.footer-columns { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; text-align: center; }
.footer-col { min-width: 160px; }
.footer-col h4 { color: #c9a227; margin-bottom: 10px; font-size: 18px; font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #ddd; text-decoration: none; font-size: 16px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 30px; padding-top: 20px; border-top: 1px solid #444; text-align: center; font-size: 15px; color: #bbb; }
.footer-bottom strong { color: #c9a227; }

/* ==================== MOBILE ==================== */
@media (max-width: 600px) {
    body { font-size: 20px; }
    .product-title { font-size: 20px; }
    .product-price { font-size: 24px; }
    .spec-value, 
    .seo-description { font-size: 18px; line-height: 1.8; }
    .btn-cart, .btn-inquiry { font-size: 20px; padding: 16px 20px; }
    .cta-block p { font-size: 17px; }
    .guarantee span { font-size: 17px; }
    .article-badge { font-size: 17px; }
    .form-input, .form-textarea, .form-label { font-size: 20px; }
    .btn-submit, .btn-cancel { font-size: 20px; padding: 16px 20px; }
    .inquiry-modal { padding: 20px; width: 95%; }
    .modal-header h2 { font-size: 22px; }
    .cart-item { flex-wrap: wrap; position: relative; padding-right: 30px; }
    .cart-item-remove { position: absolute; top: 10px; right: 5px; font-size: 24px; z-index: 5; }
    .cart-item-image { width: 80px !important; height: 80px !important; max-width: 80px !important; max-height: 80px !important; object-fit: cover; }
    .cart-item-total { min-width: auto; font-size: 18px; }
    .cart-item-title { font-size: 20px; }
    .cart-item-price { font-size: 17px; }
    .qty-btn { width: 44px; height: 44px; font-size: 24px; }
    .qty-value { font-size: 20px; }
    .cart-total { font-size: 26px; }
    .order-item-image { max-width: 60px !important; max-height: 60px !important; object-fit: cover; }
}
/* ==================== PARTS. HTML=================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0;
    flex-wrap: wrap;
}
.page-btn {
    background: #1a3e6f;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    min-width: 40px;
    text-align: center;
    transition: 0.2s;
}
.page-btn:hover {
    background: #0f2c4a;
}
.page-btn.active {
    background: #ffd700;
    color: #1a3e6f;
    font-weight: 700;
    cursor: default;
}

.specs-title {
    text-align: center;
    color: #1a3e6f;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.spec-label::after { content: ' '; }
.spec-value::first-letter { text-transform: uppercase; }









@media (min-width: 768px) {
    
    
}
@media (max-width: 767px) {
    
    
}

/* Модалка */
.image-modal-content {
    max-width: 95vw;
    max-height: 95vh;
    position: relative;
    text-align: center;
}
.image-modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}
.close-image-modal {
    position: absolute;
    top: 5px;
    right: 15px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    z-index: 20;
    background: rgba(0,0,0,0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Слайдер в модалке */



.image-modal-content 


/* Точки */




/* Адаптив */
@media (max-width: 767px) {
    
    
    
}
@media (min-width: 768px) {
    
}








.slider-dots { display: flex !important; justify-content: center !important; gap: 8px !important; margin: 12px 0 6px !important; padding: 6px 0 !important; }
.slider-dot { width: 8px !important; height: 8px !important; background: rgba(255,255,255,0.6) !important; border-radius: 50% !important; cursor: pointer !important; }
.slider-dot.active { background: #ffd700 !important; }

.gallery-slider { display: flex; align-items: center; justify-content: center; position: relative; }
.gallery-slider img { max-width: 100%; max-height: 70vh; object-fit: contain; border-radius: 8px; }
.slider-arrow { background: rgba(0,0,0,0.5); color: #fff; border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 20px; display: flex; align-items: center; justify-content: center; position: absolute; z-index: 10; }
.slider-prev { left: 10px; }
.slider-next { right: 10px; }
@media (max-width: 767px) {
    .slider-arrow { display: none; }
}

.specs-block { margin: 15px 0; padding: 15px; background: #f8f9fa; border-radius: 10px; }
.specs-title { text-align: center; color: #1a3e6f; font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.spec-item { display: flex; gap: 8px; padding: 5px 0; border-bottom: 1px dotted #ddd; }
.spec-label { font-weight: 600; color: #555; min-width: 100px; }
.spec-value { color: #1a3e6f; font-weight: 700; }
.spec-value::first-letter { text-transform: uppercase; }
