@charset "UTF-8"; :root {
    --blue-800: #1e3a8a;
    --blue-900: #0f172a;
    --blue-700: #1d4ed8;
    --blue-600: #2563eb;
    --blue-50: #eff6ff;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --green-500: #22c55e;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-50);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.phone-number {
    font-weight: 500;
    color: var(--gray-800);
    font-size: 0.875rem;
}

.working-hours {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.call-button {
    background-color: var(--orange-500);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    margin-top: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.call-button:hover {
    background-color: var(--orange-600);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
    color: white;
    padding: 1rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold!important;
    margin: 0 !important;
    padding: 0!important;
}

.hero span {
    font-size: 2.0rem;
    padding: 0;
    margin: 0;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: normal;
}

/* Section Styles */
.section {
    padding: 1rem 0;
}

.section-title {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.section-title h2 {
    font-size: 2rem;
    line-height: 2rem;
    font-weight: bold;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.section-title h3 {
    margin-bottom: 1rem;
}

.section-title p {
    color: #000000;
    font-size: 1.2rem;
    line-height: normal;
}

/* Delivery Options */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.delivery-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.delivery-card b {
    display: block;
    background-color: var(--blue-800);
    color: white;
    padding: 4px;
    width: 50%;
    margin: 10px auto 10px;
    line-height: 1.8rem;
}

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

.delivery-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.delivery-icon img {
    width: 100%
}

.delivery-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.delivery-card p {
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: normal;
}

.delivery-details {
    background-color: var(--blue-50);
    color: var(--blue-800);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: inline-block;
}

/* Regions Section */
.regions-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    align-items: center;
}

.regions-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.region-item {
    display: flex;
    align-items: flex-start;
}

.region-icon {
    color: var(--green-500);
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.region-note {
    background-color: var(--blue-50);
    border-left: 4px solid var(--blue-600);
    padding: 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
    margin-top: 2rem;
    font-weight: 500;
}

.region-note a {
    color: var(--blue-700);
    text-decoration: none;
    transition: var(--transition);
}

.region-note a:hover {
    text-decoration: underline;
}

.map-placeholder {
    background-color: var(--gray-100);
    border: 2px dashed var(--gray-300);
    border-radius: 1rem;
    height: 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
}

.map-icon {
    background-color: #dbeafe;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

/* Steps Section */
.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
    padding: 8px;
    border-radius: 8px;
}

.step-number {
    background-color: var(--blue-800);
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.step-item h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: var(--gray-800);
}

.step-item p {
    color: var(--gray-600);
    max-width: 250px;
}

.step-divider {
    display: none;
    width: 100%;
    height: 1px;
    background-color: var(--blue-200);
    margin: 1.5rem 0;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--gray-50);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.125rem;
    color: var(--gray-800);
    list-style: none;
    cursor: pointer;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-toggle {
    color: var(--blue-600);
    font-size: 1.5rem;
    margin-left: 0.5rem;
    font-weight: bold;
}

.faq-answer {
    margin-top: 1rem;
    color: var(--gray-600);
    padding-right: 1.5rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.contact-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.contact-section p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background-color: #1e3a8a;
    border-radius: 1rem;
    padding: 1.5rem;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.contact-card p {
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.consultation-button {
    background-color: var(--orange-500);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: bold;
    margin-top: 2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.consultation-button:hover {
    background-color: var(--orange-600);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--gray-900);
    color: var(--gray-300);
    padding: 3rem 0 2rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    background-color: var(--blue-800);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
}

.footer-logo-text {
    margin-left: 0.75rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
}

.footer-about p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #60a5fa;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: white;
}

.footer-column h3 {
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.footer-links a:hover {
    color: white;
}

.footer-links a.active {
    color: #60a5fa;
    font-weight: 500;
}

.contact-details li {
    display: flex;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-icon-small {
    margin-right: 0.75rem;
    min-width: 1.5rem;
}

.copyright {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    margin-top: 3rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .header-content {
        padding: 1.25rem 0;
    }

    nav ul {
        gap: 3rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .step-divider {
        display: block;
    }

    .steps-grid {
        flex-direction: row;
        align-items: center;
    }

    .step-item {
        align-items: flex-start;
        text-align: left;
    }

    .step-item p {
        max-width: none;
    }
}

@media (min-width: 1024px) {
    .delivery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .regions-container {
        grid-template-columns: 1fr 1fr;
    }

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

/* Карта */
.regions-container {
    display: flex;
    gap: 30px;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.regions-content {
    flex: 1;
    min-width: 300px;
    width: 100%;
}

/* Стили для списка регионов */
.regions-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 5px;
    margin-bottom: 20px;
}

.region-item {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    border: 1px solid transparent;
    line-height: normal;
}

.region-item:hover {
    background-color: #f0f7ff;
    border-color: #007bff;
}

.region-item.active {
    background-color: #e6f0ff;
    border-color: #007bff;
    font-weight: bold;
    width: 100%;
    max-width: 100%;
    /* flex-direction: column; */
}

.region-icon {
    color: #28a745;
}

/* Контейнер карты */
.map-container {
    flex: 1;
    max-width: 400px;
    height: 450px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.region-item {
    display: flex;
    align-items: center;
    gap: 1px;
    padding: 8px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.region-item:hover {
    background: #f9f9f9;
}

.region-info {
    font-size: 0.9em;
    color: #555;
    margin-left: auto;
    /* Прижимает цену и км к правому краю */
}

.price-value {
    font-weight: bold;
    color: #d32f2f;
}

.distance-value {
    color: #777;
    font-style: italic;
}

@media (max-width: 768px) {
    .map-container {
        min-width: 100%;
        height: auto;
    }
}

/* Оплата */
.contact-info {
    text-align: right;
}

.contact-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.contact-info i {
    margin-right: 8px;
    color: #ff9800;
}

.page-title {
    text-align: center;
    margin: 0 0 20px;
    font-family: 'Roboto';
    color: #ffffff;
}

.page-title:after {
    /* content: ''; */
    /* position: absolute; */
    /* width: 120px; */
    /* height: 4px; */
    /* background-color: #ff9800; */
    /* bottom: 0; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
}

.page-inner {
    margin: 0;
    /* padding: 0; */
}

.payment-container {
    margin: 0 auto;
    width: 99%;
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    font-family: 'Roboto';
}

.payment-info {
    width: 50%;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.payment-info a {
    border: none;
}

.payment-info .pstroke {
    display: block;
    width: 100%;
    background-color: #2eb1a8;
    color: white;
    font-weight: 600;
    text-shadow: 1px 0 0 BLACK;
    padding: 8px;
    text-align: center;
}

.payment-methods {
    margin-top: 20px;
}

.payment-method {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: #2eb1a8;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.1);
}

.payment-icon {
    font-size: 2.2rem;
    margin-right: 20px;
    color: #2eb1a8;
    width: 60px;
    text-align: center;
    text-shadow: 1px 0 0 BLACK;
}

.payment-details h3 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.payment-details p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.address-info {
    width: 50%;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.address-details {
    margin-top: 20px;
}

.address-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.address-icon {
    font-size: 1.5rem;
    color: #2eb1a8;
    margin-right: 15px;
    min-width: 30px;
    text-shadow: 1px 0 2px #9E9E9E;
}

.address-text h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.address-text p {
    color: #666;
}

@media (max-width: 768px) {
    .payment-container {
        display: flex;
        flex-direction: column;
    }

    .payment-info , .address-info {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .payment-container {
        display: flex;
        flex-direction: column;
    }

    .payment-info , .address-info {
        width: 100%;
    }
}

.map-container {
    /* стили для контейнера карты */
}

.map-placeholder {
    background: linear-gradient(to bottom right, #e0e0e0, #f5f5f5);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #666;
    text-align: center;
    padding: 0;
}

.map-placeholder i {
    font-size: 4rem;
    color: #2eb1a8;
    margin-bottom: 20px;
}

.qr-section {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.qr-code {
    margin: 20px auto;
    width: 200px;
    height: 200px;
    background: linear-gradient(to bottom right, #f5f5f5, #e0e0e0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.qr-code i {
    font-size: 5rem;
    color: #333;
    margin-bottom: 15px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.step {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.step-number {
    background-color: #2eb1a8;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    font-weight: 700;
    font-size: 1.2rem;
}

.step h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 30px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column-reverse;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .contact-info {
        text-align: center;
    }
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 8px;
}

.footer-logo span {
    /* color: #ff9800; */
}

.copyright {
    font-size: 0.9rem;
    color: #bbb;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: #2eb1a8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-link:hover {
    text-decoration: underline;
    transform: translateX(-5px);
}

.warning {
    color: #d32f2f;
    font-weight: 500;
}

.phone-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2eb1a8;
    text-shadow: 1px 0 0 #9E9E9E;
}

/* Общие настройки секции */
.services-section {
    padding: 80px 20px;
    background-color: #fcfcfc;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: normal;
    font-family: 'Roboto';
}

.services-intro p {
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: #36d2c7;
}

.service-card.highlight {
    background: #fffdf9;
    border: 1px solid #36d2c7;
}

.service-icon {
    font-size: 45px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: normal;
}

.service-desc {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 20px;
    font-style: italic;
}

.service-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1rem;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #36d2c7;
    font-weight: bold;
}

.service-card ul li strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 2px;
}

.services-footer {
    background: #2c3e50;
    background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
    border-radius: 12px;
    color: white;
    padding: 40px;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    line-height: normal;
}

.location-info {
    display: block;
    flex: 1;
    min-width: 100px;
    width: 100%;
    max-width: 50%;
}

.location-info strong {
    display: block;
    font-size: 1.3rem;
    color: #36d2c7;
    margin-bottom: 10px;
}

.footer-action {
    flex: 1;
    min-width: 100%;
    text-align: right;
}

.footer-action p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    padding: 20px 40px;
    text-align: center;
    background-color: #36d2c7;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.2s;
}

.cta-button:hover {
    background-color: #1d3884;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-action {
        text-align: left;
    }

    .services-intro h2 {
        font-size: 1.3rem;
    }

    .cta-button {
        padding: 15px
    }

    .location-info {
        max-width: 100%
    }
}

.footer-payment-icon {
    display: flex;
    align-items: center;
}

.footer-payment-icon span {
    filter: none!important;
}

.footer-payment-icon img {
    width: 80px;
    margin: 0 10px;
    border-radius: 8px;
}

.bonolit-card {
    max-width: 1000px;
    width: 100%;
    background: #ffffff;
    border-radius: 42px;
    box-shadow: 0 30px 50px -20px rgba(28, 49, 68, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: transform 0.2s ease;
    margin: 20px auto;
}

/* шапка с брендом и весом */
.product-header {
    background: #2c3e4f;
    /* глубокий сине-серый, цвет "мокрого шифера" */
    padding: 1.8rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    border-bottom: 4px solid #ffb347;
    /* акцент — тёплая полоса */
}

.title-group h2 {
    color: white;
    font-weight: 600;
    font-size: 2.2rem;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 0.3rem;
}

.title-group .subtitle {
    color: #bdd3e3;
    font-weight: 400;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.title-group .subtitle span {
    background: #3e5a6f;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    color: white;
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: normal;
}

.weight-badge {
    background: #ffb347;
    color: #1e2b36;
    font-weight: 700;
    font-size: 2rem;
    padding: 0.5rem 1.5rem;
    border-radius: 60px;
    box-shadow: 0 6px 0 #b46f1b;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.1s linear;
}

.weight-badge small {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* мягкий фон для таблицы */
.spec-container {
    padding: 2.2rem 2.5rem 2.5rem 2.5rem;
    background: #fafcff;
}

/* каждая строка — как отдельный элемент */
.spec-row {
    display: flex;
    border-bottom: 1px solid #dce5ec;
    padding: 0.9rem 0.5rem;
    transition: background 0.15s;
    border-radius: 12px;
}

.spec-row:hover {
    background: #f2f7fd;
    border-bottom-color: transparent;
    box-shadow: 0 4px 10px -6px #a0b8cf;
}

.spec-title {
    flex: 0 0 40%;
    font-weight: 600;
    color: #1f3a4f;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* иконки-маркеры (минимализм) */
.spec-title::before {
    content: "▸";
    color: #ffb347;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 0;
}

.spec-value {
    flex: 0 0 60%;
    color: #2b4b65;
    font-size: 1.05rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-right: 0.5rem;
}

.spec-value strong {
    font-weight: 700;
    color: #1f3a4f;
    background: #eef4fa;
    padding: 0.2rem 0.7rem;
    border-radius: 30px;
    margin-right: 8px;
    font-size: 0.95rem;
}

/* специальный стиль для ячеек с процентами / МПа */
.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge {
    background: white;
    border-radius: 40px;
    padding: 0.25rem 1rem;
    font-weight: 500;
    border: 1px solid #cbdae7;
    color: #1f3a4f;
    margin: 3px;
}

/* нижняя часть: дополнительный блок про упаковку */
.package-footnote {
    margin-top: 2rem;
    background: #e2eefc;
    border-radius: 32px;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
    color: #163342;
    border: 1px solid #c9ddec;
}

.package-footnote p {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.package-footnote .icon {
    font-size: 2rem;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.1));
}

.highlight-name {
    background: #ffb347;
    color: #1e2b36;
    padding: 0.5rem 1.4rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.3rem;
    border: none;
    white-space: nowrap;
}

/* адаптивность */
@media (max-width: 650px) {
    .title-group h2 {
        font-size: 1.35rem;
        letter-spacing: normal;
        line-height: normal;
    }

    .product-header {
        padding: 1.5rem;
        flex-direction: column;
    }

    .title-group .subtitle {
        flex-direction: column;
    }

    .title-group h1 {
        font-size: 1.8rem;
    }

    .weight-badge {
        font-size: 1.6rem;
        padding: 0.4rem 1.2rem;
    }

    .spec-container {
        padding: 4px;
    }

    .spec-row {
        flex-direction: column;
        padding: 1rem 0.5rem;
    }

    .spec-title {
        flex: auto;
        margin-bottom: 0.4rem;
    }

    .spec-value {
        flex: auto;
        padding-left: 1.8rem;
    }

    .package-footnote {
        padding: 0;
        align-items: center;
        justify-content: center;
    }

    .package-footnote p {
        flex-direction: column;
        font-size: 1rem;
        gap: 5px;
        padding: 8px;
    }

    .highlight-name {
        display: none
    }
}

@media (max-width: 400px) {
    .badge-list {
        flex-direction: column;
        gap: 4px;
    }
}

.shop-cat-desc h3 {
    font-family: 'Roboto';
    display: flex;
    min-height: 45px;
    font-size: 1.3rem;
    font-weight: 400;
    margin: 25px 0 12px 0;
    color: white;
    width: 100%;
    background: #016ead;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.shop-cat-desc h3:first-of-type {
    margin: 0;
}

.shop-cat-desc p {
    margin: 0 0 20px 0;
    font-size: 1.05rem;
    color: black;
    text-align: left;
}

.shop-cat-desc ul {
    margin: 10px 0 25px 0;
    padding-left: 0;
    list-style: none;
    text-align: left;
    width: 100%;
}

.shop-cat-desc li {
    position: relative;
    font-size: 1.05rem;
    color: black;
    text-align: left;
    width: 100%;
}

.shop-cat-desc li::before {
    content: "•";
    color: #2b5e3b;
    font-size: 1.8rem;
    position: absolute;
    left: 4px;
    top: -8px;
    display: none;
}

.shop-cat-desc strong {
    color: #235b34;
}
