/* ========== SERVICES PAGE STYLES ========== */
.services-page {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h1 {
    color: #2c3e50;
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-header .subtitle {
    color: #7f8c8d;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Сервис карточки */
.service-detail-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 30px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
}

.service-header i {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.service-header h2 {
    font-size: 1.8rem;
    margin: 0;
    flex: 1 1 260px;
    min-width: 0;
}

.service-header .service-id {
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: auto;
}

.service-content {
    padding: 40px;
}

.service-description {
    color: #5a6c7d;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Преимущества */
.service-advantages h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-advantages h3 i {
    color: #27ae60;
}

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

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 3px solid #3498db;
}

.advantage-item i {
    color: #3498db;
    margin-top: 3px;
    font-size: 1.1em;
}

/* Процесс работы */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    counter-reset: step;
}

.process-step {
    flex: 1;
    min-width: 200px;
    background: #f8fafc;
    padding: 25px;
    border-radius: 15px;
    position: relative;
    counter-increment: step;
}

.process-step:before {
    content: counter(step);
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.process-step h4 {
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.process-step p {
    color: #7f8c8d;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Примеры работ */
.work-examples {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.work-examples h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.example-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #5a6c7d;
}

.example-item i {
    color: #3498db;
    margin-right: 8px;
}

.example-item--link {
    text-decoration: none;
    color: #5a6c7d;
    display: block;
}

.example-item--link:hover {
    background: #e8f3ff;
    color: #1f6fb2;
}

.wheels-samples {
    margin-top: 24px;
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 20px;
}

.wheels-samples h3 {
    margin: 0 0 14px;
    color: #2c3e50;
    font-size: 1.2rem;
}

.wheels-samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.wheels-sample {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f5f9;
}

.wheels-sample img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.wheels-sample:hover img {
    transform: scale(1.03);
}

/* Изображение сервиса */
.service-image {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-image picture {
    display: block;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-image--contain {
    background: #ffffff;
    padding: 10px;
}

.service-image--contain img {
    height: auto;
    max-height: 700px;
    object-fit: contain;
}

.service-image--double {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    background: #0f172a;
}

.service-image--double img {
    height: 260px;
}

.equipment-slider {
    position: relative;
    background: #0f172a;
}

.equipment-slider__viewport {
    position: relative;
    height: clamp(360px, 46vw, 520px);
}

.equipment-slider__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    transform: none;
}

.equipment-slider .equipment-slider__slide {
    height: 100%;
    object-fit: cover;
}

.equipment-slider__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.equipment-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.68);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease, transform 0.2s ease;
}

.equipment-slider__btn:hover {
    background: rgba(15, 23, 42, 0.9);
}

.equipment-slider__btn:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}

.equipment-slider__btn--prev {
    left: 12px;
}

.equipment-slider__btn--next {
    right: 12px;
}

.service-detail-card:hover .service-image img {
    transform: scale(1.05);
}

.service-detail-card:hover .service-image--contain img {
    transform: none;
}

.service-detail-card:hover .equipment-slider__slide {
    transform: none;
}

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

    .service-image--double img {
        height: 240px;
    }

    .service-image--contain img {
        max-height: 480px;
    }

    .equipment-slider__viewport {
        height: clamp(280px, 72vw, 420px);
    }

    .equipment-slider__btn {
        width: 38px;
        height: 38px;
    }

    .equipment-slider__btn--prev {
        left: 10px;
    }

    .equipment-slider__btn--next {
        right: 10px;
    }
}

/* Кнопка заказа */
.service-cta {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.service-cta .btn + .btn {
    margin-left: 15px;
}

/* Быстрые ссылки */
.service-quick-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #f8fafc;
    border-radius: 10px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-nav-link:hover {
    background: #3498db;
    color: white;
    transform: translateY(-3px);
}

.service-nav-link.active {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.service-nav-link i {
    font-size: 1.2em;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.services-cta h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.services-cta p {
    color: #7f8c8d;
}

.services-cta .cta-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta .cta-phone {
    margin-top: 20px;
    color: #7f8c8d;
}

.services-cta .cta-phone a {
    color: #3498db;
    font-weight: 600;
}

/* Каталог товаров */
.catalog-section {
    margin-top: 50px;
    background: #ffffff;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #eef2f7;
}

.catalog-header {
    text-align: center;
    margin-bottom: 20px;
}

.catalog-header h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.catalog-subtitle {
    color: #6b7280;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

.catalog-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 25px 0 30px;
}

.catalog-tab {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 10px 18px;
    background: #f3f6fb;
    color: #2c3e50;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.catalog-tab:hover {
    background: #e6f0fb;
    transform: translateY(-1px);
}

.catalog-tab:focus-visible {
    outline: 2px solid rgba(45, 139, 214, 0.5);
    outline-offset: 3px;
}

.catalog-tab.is-active {
    background: #2d8bd6;
    color: #ffffff;
    border-color: #2d8bd6;
    box-shadow: 0 10px 24px rgba(45, 139, 214, 0.25);
}

.catalog-panels {
    margin-top: 10px;
}

.catalog-panel {
    display: none;
}

.catalog-panel.is-active {
    display: block;
    animation: catalogFade 0.35s ease;
}

@keyframes catalogFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.catalog-grid--wide {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.catalog-card {
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    border: 1px solid #eef2f7;
}

.catalog-card--wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 2fr;
}

.catalog-card__media {
    position: relative;
    min-height: 200px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.catalog-card__media--placeholder {
    background: linear-gradient(135deg, #e9f2ff, #f6f7fb);
    color: #7aa7d6;
    font-size: 2rem;
}

.catalog-card__content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.catalog-card__content h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3rem;
}

.catalog-card__content p {
    margin: 0;
    color: #5a6c7d;
    line-height: 1.6;
}

.catalog-card__content ul {
    margin: 0;
    padding-left: 18px;
    color: #5a6c7d;
    line-height: 1.6;
}

.catalog-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.catalog-pill {
    background: #e8f3ff;
    color: #1f6fb2;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.catalog-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.catalog-columns h4 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: #2c3e50;
}

.catalog-list {
    list-style: disc;
    padding-left: 18px;
}

.catalog-list--inline {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.catalog-list--inline li {
    background: #eef5fb;
    color: #2c3e50;
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: 600;
}

.catalog-contacts {
    margin-top: 24px;
    background: #f1f7fd;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.catalog-contacts h4 {
    margin: 0 0 6px;
    color: #2c3e50;
}

.catalog-contacts p {
    margin: 0;
    color: #6b7280;
}

.catalog-contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.catalog-contact-list a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.catalog-contact-list a i {
    color: #2d8bd6;
}

.catalog-partners {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eef2f7;
    text-align: center;
}

.catalog-partners h3 {
    color: #2c3e50;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    align-items: center;
}

.partner-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
}

.partner-card--logo img {
    max-width: 120px;
    max-height: 54px;
    width: 100%;
    height: auto;
}

/* Адаптивность услуг */
@media (max-width: 992px) {
    .service-content {
        padding: 30px;
    }

    .service-header {
        padding: 24px;
        gap: 12px;
    }

    .service-header h2 {
        font-size: 1.6rem;
    }

    .catalog-section {
        padding: 35px;
    }

    .catalog-card--wide {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-page {
        padding: 60px 0;
    }

    .services-header h1 {
        font-size: 2.2rem;
    }

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

    .service-quick-nav {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 12px;
    }

    .service-nav-link {
        justify-content: center;
    }

    .service-cta .btn {
        width: 100%;
        margin-bottom: 15px;
        margin-left: 0;
    }

    .service-cta .btn + .btn {
        margin-left: 0;
    }

    .catalog-section {
        padding: 30px 20px;
    }

    .catalog-contacts {
        flex-direction: column;
        align-items: flex-start;
    }

    .catalog-tab {
        justify-content: center;
        flex: 1 1 auto;
    }

    .partner-card {
        text-transform: none;
        letter-spacing: 0.02em;
    }

    .wheels-sample img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .services-header h1 {
        font-size: 1.8rem;
    }

    .service-header h2 {
        font-size: 1.5rem;
    }

    .service-quick-nav {
        grid-template-columns: 1fr;
    }

    .service-content {
        padding: 25px;
    }

    .service-header .service-id {
        padding: 6px 15px;
        font-size: 0.8rem;
    }

    .wheels-sample img {
        height: 180px;
    }
}

/* Каталог */
.catalog-page {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f6 100%);
    min-height: 100vh;
}

.catalog-hero {
    margin-bottom: 32px;
}

.catalog-breadcrumbs {
    font-size: 0.85rem;
    color: #9aa3b2;
    letter-spacing: 0.02em;
}

.catalog-hero h1 {
    font-size: 2.6rem;
    color: #2c3e50;
    margin: 8px 0 12px;
}

.catalog-hero p {
    color: #6b7280;
    max-width: 760px;
    line-height: 1.6;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.catalog-sidebar {
    position: sticky;
    top: 110px;
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    border: 1px solid #eef2f7;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.catalog-sidebar__group + .catalog-sidebar__group {
    margin-top: 18px;
}

.catalog-sidebar__title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #94a3b8;
    margin-bottom: 10px;
}

.catalog-link {
    width: 100%;
    text-align: left;
    background: #f3f6fb;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.catalog-link:hover {
    background: #e6f0fb;
}

.catalog-link:focus-visible {
    outline: 2px solid rgba(45, 139, 214, 0.5);
    outline-offset: 2px;
}

.catalog-link.is-active {
    background: #2d8bd6;
    color: #ffffff;
    border-color: #2d8bd6;
    box-shadow: 0 12px 26px rgba(45, 139, 214, 0.28);
}

.catalog-link--sub {
    padding-left: 22px;
    font-weight: 500;
}

.catalog-content {
    min-width: 0;
}

.catalog-panel {
    display: none;
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid #eef2f7;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.catalog-panel.is-active {
    display: block;
    animation: catalogFade 0.35s ease;
}

.catalog-panel__header h2 {
    margin: 6px 0 0;
    color: #2c3e50;
    font-size: 2rem;
}

.catalog-panel__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.catalog-panel__grid--stack {
    grid-template-columns: 1fr;
}

.catalog-panel__grid--shutters {
    align-items: start;
    gap: 24px;
}

.catalog-panel__grid--shutters .catalog-panel__text {
    grid-column: 1;
}

.catalog-panel__side--shutters {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-self: start;
}

.catalog-panel__text {
    color: #5a6c7d;
    line-height: 1.6;
}

.catalog-panel__text ul {
    margin: 12px 0 0;
    padding-left: 18px;
}

.catalog-panel__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.catalog-panel__badges span {
    background: #e8f3ff;
    color: #1f6fb2;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.catalog-panel__media {
    border-radius: 16px;
    overflow: hidden;
    background: #e5e7eb;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-panel__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.catalog-panel__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.catalog-panel__gallery--two {
    grid-template-columns: 1fr;
    margin-top: 0;
}

.catalog-panel__gallery-item {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #0f172a;
}

.catalog-panel__gallery-item--cover {
    aspect-ratio: 4 / 3;
}

.catalog-panel__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.catalog-panel__gallery-item--cover img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.catalog-panel__gallery-item--contain {
    align-self: stretch;
    background: #0f172a;
}

.catalog-panel__gallery-item--contain img {
    height: 100%;
    object-fit: contain;
}

.catalog-panel__media--contain {
    background: #eef2f6;
    align-self: start;
}

.catalog-panel__media--contain img {
    height: auto;
    object-fit: contain;
}

.catalog-panel__media--shutters {
    min-height: 0;
    background: #eef2f6;
}

.catalog-panel__media--shutters img {
    height: auto;
    object-fit: contain;
}

.catalog-panel__gallery--shutters {
    grid-template-columns: 1fr;
    margin-top: 0;
    gap: 10px;
}

.catalog-panel__gallery--shutters .catalog-panel__gallery-item {
    aspect-ratio: auto;
    background: #eef2f6;
}

.catalog-panel__gallery--shutters .catalog-panel__gallery-item:nth-child(2) {
    margin-top: 40px;
}

.catalog-panel__gallery--shutters .catalog-panel__gallery-item img {
    height: auto;
    object-fit: contain;
}

.catalog-panel__colors-strip {
    margin: 18px 0 0;
    border-radius: 16px;
    overflow: hidden;
    background: #eef2f6;
    padding: 8px;
}

.catalog-panel__colors-strip img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.catalog-panel__profnastil-note {
    margin: 8px 0 0;
    color: #6b7280;
}

.catalog-panel__media--placeholder {
    background: linear-gradient(135deg, #e9f2ff, #f6f7fb);
    color: #7aa7d6;
    font-size: 2.2rem;
}

.catalog-spec-group {
    margin-top: 28px;
}

.catalog-spec-group h3 {
    margin: 0 0 14px;
    color: #2c3e50;
    font-size: 1.4rem;
}

.catalog-panel__grid--spec {
    align-items: start;
}

.catalog-panel__spec-cards {
    display: grid;
    gap: 16px;
}

.catalog-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.catalog-info-card {
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 14px;
    padding: 16px;
    color: #5a6c7d;
}

.catalog-info-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: #2c3e50;
}

.catalog-info-card h4 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: #2c3e50;
}

.catalog-info-card ul {
    margin: 0;
    padding-left: 18px;
}

.catalog-list--inline {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.catalog-list--inline li {
    background: #eef5fb;
    color: #2c3e50;
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: 600;
}

.catalog-mini-card {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    background: #f8fafc;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #eef2f7;
}

.catalog-mini-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    min-height: 120px;
}

.catalog-panel__cta {
    margin-top: 24px;
    background: #f1f7fd;
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.catalog-panel__cta h3 {
    margin: 0 0 6px;
    color: #2c3e50;
}

.catalog-panel__cta p {
    margin: 0;
    color: #6b7280;
}

.catalog-contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.catalog-contact-list a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.catalog-contact-list a i {
    color: #2d8bd6;
}

.catalog-cta {
    margin-top: 28px;
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 24px;
    border: 1px solid #eef2f7;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.catalog-cta h3 {
    margin: 0 0 6px;
    color: #2c3e50;
}

.catalog-cta p {
    margin: 0;
    color: #6b7280;
}

@media (max-width: 1024px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }

    .catalog-sidebar__group + .catalog-sidebar__group {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .catalog-page {
        padding: 60px 0;
    }

    .catalog-hero h1 {
        font-size: 2rem;
    }

    .catalog-panel {
        padding: 22px;
    }

    .catalog-panel__grid {
        grid-template-columns: 1fr;
    }

    .catalog-panel__grid--shutters .catalog-panel__text,
    .catalog-panel__side--shutters,
    .catalog-panel__media--shutters,
    .catalog-panel__gallery--shutters {
        grid-column: auto;
        grid-row: auto;
    }

    .catalog-panel__side--shutters {
        gap: 8px;
    }

    .catalog-panel__gallery--shutters {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .catalog-panel__gallery--shutters .catalog-panel__gallery-item:nth-child(2) {
        margin-top: 20px;
    }

    .catalog-mini-card {
        grid-template-columns: 1fr;
    }

    .catalog-panel__cta,
    .catalog-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .catalog-sidebar {
        grid-template-columns: 1fr;
    }

    .service-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
    }

    .service-header h2 {
        /* On mobile the desktop flex-basis (260px) stretches the blue header vertically */
        flex: 0 1 auto;
        width: 100%;
    }

    .service-header .service-id {
        margin-left: 0;
    }
}
