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

body {
    font-family: 'Inter', sans-serif;
    background: #0B0F1C;
    color: #EFF3F8;
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Фон */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, #0F172A, #020617);
    z-index: -2;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(230, 126, 34, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230, 126, 34, 0.12) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridDrift 30s linear infinite;
}

@keyframes gridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.glow-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}
.glow-line span {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(230,126,34,0.4), transparent);
    height: 2px;
    width: 80%;
    left: 10%;
    animation: linePulse 6s ease-in-out infinite;
}
.glow-line span:nth-child(1) { top: 20%; animation-delay: 0s; }
.glow-line span:nth-child(2) { top: 45%; width: 60%; left: 20%; animation-delay: -2s; }
.glow-line span:nth-child(3) { top: 70%; width: 70%; left: 15%; animation-delay: -4s; }
@keyframes linePulse {
    0% { opacity: 0; transform: scaleX(0.3); }
    50% { opacity: 0.6; transform: scaleX(1); }
    100% { opacity: 0; transform: scaleX(0.3); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* Шапка */
.site-header {
    position: sticky;
    top: 20px;
    z-index: 100;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(16px);
    border-radius: 60px;
    margin: 20px auto 0;
    max-width: 1300px;
    padding: 8px 24px;
    border: 1px solid rgba(230,126,34,0.3);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #E67E22, #B85C0F);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 0 15px rgba(230,126,34,0.5);
}
.logo span {
    font-size: 1.7rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFF, #E67E22);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.main-nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}
.main-nav a {
    color: #EFF3F8;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
    color: #E67E22;
    text-shadow: 0 0 5px rgba(230,126,34,0.5);
    outline: none;
}

.contacts-header {
    display: flex;
    gap: 24px;
}
.contacts-header a {
    color: #E67E22;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.2s;
}
.contacts-header a:hover, .contacts-header a:focus {
    color: #F39C12;
    text-decoration: underline;
}

.btn {
    background: linear-gradient(95deg, #E67E22, #C95F0A);
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 4px 12px rgba(230,126,34,0.3);
    display: inline-block;
    text-decoration: none;
    text-align: center;
}
.btn:hover, .btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230,126,34,0.5);
    background: linear-gradient(95deg, #F39C12, #E67E22);
    outline: none;
}

/* Hero */
.hero {
    text-align: center;
    padding: 100px 20px 80px;
}
.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF, #E67E22, #FFB347);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2rem;
    color: #CBD5E1;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Фильтр */
.filter-bar {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 80px;
    padding: 18px 28px;
    margin: 30px 0 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    border: 1px solid rgba(230,126,34,0.3);
}
.filter-bar input {
    background: rgba(0,0,0,0.5);
    border: 1px solid #334155;
    padding: 12px 24px;
    border-radius: 40px;
    color: white;
    font-size: 1rem;
    min-width: 240px;
    transition: 0.2s;
}
.filter-bar input:focus {
    outline: none;
    border-color: #E67E22;
    box-shadow: 0 0 8px rgba(230,126,34,0.3);
}
.filter-bar input::placeholder {
    color: #94A3B8;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}
.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #E67E22;
    margin: 16px auto 0;
    border-radius: 4px;
}

/* ===== ОДИНАКОВАЯ ВЫСОТА КАРТОЧЕК И КНОПОК ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    align-items: stretch;
}
.product-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.product-card {
    background: rgba(20, 28, 45, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    border: 1px solid rgba(230,126,34,0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-card:hover, .product-link:focus .product-card {
    transform: translateY(-8px);
    border-color: #E67E22;
}
.product-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #F1F5F9;
}
.product-article {
    color: #94A3B8;
    font-size: 0.8rem;
    margin-bottom: 16px;
}
.product-compat {
    background: rgba(0,0,0,0.4);
    border-radius: 20px;
    padding: 10px 14px;
    margin: 16px 0;
    max-height: 100px;
    overflow-y: auto;
    font-size: 0.75rem;
}
.product-compat span {
    display: inline-block;
    background: #1E293B;
    border-radius: 30px;
    padding: 4px 12px;
    margin: 4px 6px 4px 0;
    color: #CBD5E1;
}
.btn-small {
    width: 100%;
    text-align: center;
    padding: 12px;
    background: rgba(230,126,34,0.9);
    margin-top: auto;
}

/* Страница товара */
.product-detail {
    padding: 60px 0;
}
.btn-back {
    display: inline-block;
    margin-bottom: 30px;
    color: #E67E22;
    text-decoration: none;
    font-weight: 500;
}
.btn-back:hover, .btn-back:focus {
    text-decoration: underline;
    color: #F39C12;
}
.product-meta {
    background: rgba(0,0,0,0.3);
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0;
}
.product-compat-full {
    background: rgba(0,0,0,0.3);
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0;
}
.product-compat-full ul {
    list-style: none;
    margin-top: 10px;
}
.product-compat-full li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(230,126,34,0.2);
}
.product-actions {
    margin: 30px 0;
    text-align: center;
}

/* Формы */
.callback-section, .contact-section {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 48px;
    padding: 60px 40px;
    margin: 60px 0;
    border: 1px solid rgba(230,126,34,0.2);
}
.form-row {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row input, .form-row textarea {
    background: rgba(0,0,0,0.5);
    border: 1px solid #334155;
    padding: 14px 20px;
    border-radius: 40px;
    color: white;
    font-size: 1rem;
    transition: 0.2s;
}
.form-row input:focus, .form-row textarea:focus {
    outline: none;
    border-color: #E67E22;
    box-shadow: 0 0 8px rgba(230,126,34,0.3);
}
.map iframe {
    border-radius: 28px;
    border: 1px solid rgba(230,126,34,0.3);
}

footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(230,126,34,0.2);
    margin-top: 40px;
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-content {
    background: #0F172A;
    border: 1px solid #E67E22;
    border-radius: 32px;
    max-width: 420px;
    width: 90%;
    padding: 32px;
    text-align: center;
    box-shadow: 0 0 30px rgba(230,126,34,0.2);
}
.modal-content input {
    background: #1E293B;
    border: 1px solid #334155;
    padding: 12px;
    border-radius: 40px;
    width: 100%;
    margin: 16px 0;
    color: white;
}
.modal-close {
    margin-top: 16px;
    background: transparent;
    border: 1px solid #E67E22;
    color: #E67E22;
    padding: 8px 20px;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s;
}
.modal-close:hover, .modal-close:focus {
    background: #E67E22;
    color: white;
    outline: none;
}

/* ===== УЛУЧШЕННАЯ АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .site-header {
        margin: 10px;
        border-radius: 40px;
    }
    .header-inner {
        flex-direction: column;
        text-align: center;
    }
    .filter-bar {
        flex-direction: column;
        border-radius: 40px;
    }
    .filter-bar input {
        width: 100%;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 2rem;
    }
    .callback-section, .contact-section {
        padding: 40px 20px;
    }
}

@media (max-width: 600px) {
    .main-nav ul {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .contacts-header {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    .hero {
        padding: 60px 20px 40px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .filter-bar {
        padding: 15px;
    }
    .product-detail {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 1.1rem;
    }
    .btn-small {
        padding: 10px;
    }
    .modal-content {
        padding: 20px;
        width: 95%;
    }
    .product-meta, .product-compat-full {
        padding: 15px;
    }
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0B0F1C;
    color: #EFF3F8;
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Фон */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, #0F172A, #020617);
    z-index: -2;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(230, 126, 34, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230, 126, 34, 0.12) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridDrift 30s linear infinite;
}

@keyframes gridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.glow-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}
.glow-line span {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(230,126,34,0.4), transparent);
    height: 2px;
    width: 80%;
    left: 10%;
    animation: linePulse 6s ease-in-out infinite;
}
.glow-line span:nth-child(1) { top: 20%; animation-delay: 0s; }
.glow-line span:nth-child(2) { top: 45%; width: 60%; left: 20%; animation-delay: -2s; }
.glow-line span:nth-child(3) { top: 70%; width: 70%; left: 15%; animation-delay: -4s; }
@keyframes linePulse {
    0% { opacity: 0; transform: scaleX(0.3); }
    50% { opacity: 0.6; transform: scaleX(1); }
    100% { opacity: 0; transform: scaleX(0.3); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* Шапка */
.site-header {
    position: sticky;
    top: 20px;
    z-index: 100;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(16px);
    border-radius: 60px;
    margin: 20px auto 0;
    max-width: 1300px;
    padding: 8px 24px;
    border: 1px solid rgba(230,126,34,0.3);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #E67E22, #B85C0F);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 0 15px rgba(230,126,34,0.5);
}
.logo span {
    font-size: 1.7rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFF, #E67E22);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.main-nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}
.main-nav a {
    color: #EFF3F8;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
    color: #E67E22;
    text-shadow: 0 0 5px rgba(230,126,34,0.5);
    outline: none;
}

.contacts-header {
    display: flex;
    gap: 24px;
}
.contacts-header a {
    color: #E67E22;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.2s;
}
.contacts-header a:hover, .contacts-header a:focus {
    color: #F39C12;
    text-decoration: underline;
}

.btn {
    background: linear-gradient(95deg, #E67E22, #C95F0A);
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 4px 12px rgba(230,126,34,0.3);
    display: inline-block;
    text-decoration: none;
    text-align: center;
}
.btn:hover, .btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230,126,34,0.5);
    background: linear-gradient(95deg, #F39C12, #E67E22);
    outline: none;
}

/* Hero */
.hero {
    text-align: center;
    padding: 100px 20px 80px;
}
.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF, #E67E22, #FFB347);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2rem;
    color: #CBD5E1;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Фильтр */
.filter-bar {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 80px;
    padding: 18px 28px;
    margin: 30px 0 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    border: 1px solid rgba(230,126,34,0.3);
}
.filter-bar input {
    background: rgba(0,0,0,0.5);
    border: 1px solid #334155;
    padding: 12px 24px;
    border-radius: 40px;
    color: white;
    font-size: 1rem;
    min-width: 240px;
    transition: 0.2s;
}
.filter-bar input:focus {
    outline: none;
    border-color: #E67E22;
    box-shadow: 0 0 8px rgba(230,126,34,0.3);
}
.filter-bar input::placeholder {
    color: #94A3B8;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}
.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #E67E22;
    margin: 16px auto 0;
    border-radius: 4px;
}

/* ===== ОДИНАКОВАЯ ВЫСОТА КАРТОЧЕК И КНОПОК ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    align-items: stretch;
}
.product-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.product-card {
    background: rgba(20, 28, 45, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    border: 1px solid rgba(230,126,34,0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-card:hover, .product-link:focus .product-card {
    transform: translateY(-8px);
    border-color: #E67E22;
}
.product-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #F1F5F9;
}
.product-article {
    color: #94A3B8;
    font-size: 0.8rem;
    margin-bottom: 16px;
}
.product-compat {
    background: rgba(0,0,0,0.4);
    border-radius: 20px;
    padding: 10px 14px;
    margin: 16px 0;
    max-height: 100px;
    overflow-y: auto;
    font-size: 0.75rem;
}
.product-compat span {
    display: inline-block;
    background: #1E293B;
    border-radius: 30px;
    padding: 4px 12px;
    margin: 4px 6px 4px 0;
    color: #CBD5E1;
}
.btn-small {
    width: 100%;
    text-align: center;
    padding: 12px;
    background: rgba(230,126,34,0.9);
    margin-top: auto;
}

/* Страница товара */
.product-detail {
    padding: 60px 0;
}
.btn-back {
    display: inline-block;
    margin-bottom: 30px;
    color: #E67E22;
    text-decoration: none;
    font-weight: 500;
}
.btn-back:hover, .btn-back:focus {
    text-decoration: underline;
    color: #F39C12;
}
.product-meta {
    background: rgba(0,0,0,0.3);
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0;
}
.product-compat-full {
    background: rgba(0,0,0,0.3);
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0;
}
.product-compat-full ul {
    list-style: none;
    margin-top: 10px;
}
.product-compat-full li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(230,126,34,0.2);
}
.product-actions {
    margin: 30px 0;
    text-align: center;
}

/* Формы */
.callback-section, .contact-section {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 48px;
    padding: 60px 40px;
    margin: 60px 0;
    border: 1px solid rgba(230,126,34,0.2);
}
.form-row {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row input, .form-row textarea {
    background: rgba(0,0,0,0.5);
    border: 1px solid #334155;
    padding: 14px 20px;
    border-radius: 40px;
    color: white;
    font-size: 1rem;
    transition: 0.2s;
}
.form-row input:focus, .form-row textarea:focus {
    outline: none;
    border-color: #E67E22;
    box-shadow: 0 0 8px rgba(230,126,34,0.3);
}
.map iframe {
    border-radius: 28px;
    border: 1px solid rgba(230,126,34,0.3);
}

footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(230,126,34,0.2);
    margin-top: 40px;
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-content {
    background: #0F172A;
    border: 1px solid #E67E22;
    border-radius: 32px;
    max-width: 420px;
    width: 90%;
    padding: 32px;
    text-align: center;
    box-shadow: 0 0 30px rgba(230,126,34,0.2);
}
.modal-content input {
    background: #1E293B;
    border: 1px solid #334155;
    padding: 12px;
    border-radius: 40px;
    width: 100%;
    margin: 16px 0;
    color: white;
}
.modal-close {
    margin-top: 16px;
    background: transparent;
    border: 1px solid #E67E22;
    color: #E67E22;
    padding: 8px 20px;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s;
}
.modal-close:hover, .modal-close:focus {
    background: #E67E22;
    color: white;
    outline: none;
}

/* ===== УЛУЧШЕННАЯ АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .site-header {
        margin: 10px;
        border-radius: 40px;
    }
    .header-inner {
        flex-direction: column;
        text-align: center;
    }
    .filter-bar {
        flex-direction: column;
        border-radius: 40px;
    }
    .filter-bar input {
        width: 100%;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 2rem;
    }
    .callback-section, .contact-section {
        padding: 40px 20px;
    }
}

@media (max-width: 600px) {
    .main-nav ul {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .contacts-header {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    .hero {
        padding: 60px 20px 40px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .filter-bar {
        padding: 15px;
    }
    .product-detail {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 1.1rem;
    }
    .btn-small {
        padding: 10px;
    }
    .modal-content {
        padding: 20px;
        width: 95%;
    }
    .product-meta, .product-compat-full {
        padding: 15px;
    }
}