@import url("./design-tokens.css");

.equipment-single {
    position: relative;
    overflow: hidden;
}



.equipment-hero,
.equipment-specs,
.equipment-consultation,
.equipment-benefits,
.equipment-single__content {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 100% 0%, var(--color-highlight), transparent 36%), linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
    box-shadow: var(--shadow-highlight);
}

.equipment-hero {
    min-height: 430px;
    padding: 28px 26px 28px 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(440px, .98fr);
    gap: 38px;
}

.equipment-gallery {
    min-width: 0;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
}

.equipment-gallery__rail {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}

.equipment-gallery__thumbs {
    max-height: 348px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.equipment-gallery__thumbs::-webkit-scrollbar { display: none; }

.equipment-gallery__thumb {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    padding: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 5px;
    background: #0a0a0a;
    cursor: pointer;
    transition: border-color .2s ease;
}

.equipment-gallery__thumb.is-active,
.equipment-gallery__thumb:hover {
    border-color: var(--color-red, #ef342d);
}

.equipment-gallery__thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.equipment-gallery__arrow {
    width: 100%;
    height: 20px;
    padding: 0;
    border: 0;
    display: grid;
    place-items: center;
    background: transparent;
    color: #ddd;
    cursor: pointer;
}

.equipment-gallery__arrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.equipment-gallery__stage,
.equipment-gallery__empty {
    min-width: 0;
    min-height: 360px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at center, rgba(36, 36, 36, .72), transparent 68%);
}

.equipment-gallery__main-image {
    width: 100%;
    height: 100%;
    max-height: 380px;
    display: block;
    object-fit: contain;
    transition: opacity .18s ease, transform .3s ease;
}

.equipment-gallery__stage:hover .equipment-gallery__main-image { transform: scale(1.018); }
.equipment-gallery__main-image.is-changing { opacity: .15; }

.equipment-gallery__empty {
    grid-column: 1 / -1;
    color: #303030;
}

.equipment-gallery__empty svg {
    width: 110px;
    height: 110px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1;
}

.equipment-hero__content {
    min-width: 0;
    padding-top: 2px;
    display: flex;
    flex-direction: column;
}

.equipment-hero__number {
    margin-bottom: 8px;
    color: var(--color-red, #ef342d);
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
}

.equipment-hero__title {
    margin: 0;
    color: var(--color-white, #fff);
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -.025em;
}

.equipment-hero__subtitle {
    margin: 12px 0 0;
    color: #a3a3a3;
    font-size: 17px;
    line-height: 1.45;
}

.equipment-hero__description {
    margin-top: 15px;
    color: #d1d1d1;
    font-size: 14px;
    line-height: 1.65;
}

.equipment-hero__description p { margin: 0; }

.equipment-features {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}

.equipment-feature {
    min-height: 112px;
    padding: 14px 9px;
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 7px;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.equipment-feature__icon {
    width: 45px;
    height: 45px;
    margin-bottom: 8px;
    display: grid;
    place-items: center;
    color: var(--color-red, #ef342d);
}

.equipment-feature__icon img,
.equipment-feature__icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.equipment-feature__icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.equipment-feature strong {
    color: #fff;
    font-size: var(--font-size-base);
    line-height: 1.3;
}

.equipment-feature > span:last-child:not(.equipment-feature__icon) {
    margin-top: 7px;
    color: #858585;
    font-size: var(--font-size-2xs);
    line-height: 1.4;
}

.equipment-hero__actions {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.equipment-button {
    min-height: 43px;
    padding: 0 24px;
    border: 0;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f23a34, #d71d24);
    box-shadow: 0 8px 22px rgba(220, 29, 34, .18);
    color: #fff;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.equipment-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 11px 28px rgba(220, 29, 34, .28);
    color: #fff;
}

.equipment-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d9d9d9;
    font-size: 12px;
    text-decoration: none;
}

.equipment-download svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: var(--color-red, #ef342d);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.equipment-details {
    margin-top: 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 14px;
}

.equipment-specs { padding: 25px 28px 20px; }

.equipment-specs h2,
.equipment-documents h2 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}

.equipment-specs h2 {
    padding-bottom: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.equipment-specs__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
}

.equipment-spec {
    min-height: 60px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .075);
    display: grid;
    grid-template-columns: 25px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
}

.equipment-spec__icon {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    color: var(--color-red, #ef342d);
}

.equipment-spec__icon img,
.equipment-spec__icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.equipment-spec__icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.equipment-spec__name,
.equipment-spec__value { display: block; }

.equipment-spec__name {
    margin-bottom: 2px;
    color: #d4d4d4;
    font-size: 12px;
    line-height: 1.35;
}

.equipment-spec__value {
    color: #a6a6a6;
    font-size: 12px;
    line-height: 1.4;
}

.equipment-sidebar {
    overflow: hidden;
    border-color: rgba(239, 52, 45, .45);
}

.equipment-consultation,
.equipment-documents { padding: 25px 24px; }

.equipment-consultation {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: radial-gradient(circle at 100% 0, rgba(177, 30, 30, .15), transparent 55%);
}

.equipment-consultation__head {
    display: flex;
    align-items: center;
    gap: 15px;
}

.equipment-consultation__head strong {
    color: #fff;
    font-size: var(--font-size-base);
    line-height: 1.45;
}

.equipment-consultation__icon {
    width: 37px;
    height: 37px;
    flex: 0 0 auto;
    color: var(--color-red, #ef342d);
}

.equipment-consultation__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.equipment-consultation p {
    margin: 13px 0 17px;
    color: #aaa;
    font-size: var(--font-size-2xs);
    line-height: 1.55;
}

.equipment-consultation .equipment-button { width: 100%; }

.equipment-documents h2 {
    margin-bottom: 10px;
    font-size: 16px;
}

.equipment-document {
    min-height: 53px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    display: grid;
    grid-template-columns: 23px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
}

.equipment-document__file,
.equipment-document__download {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.equipment-document__file { color: #eee; }
.equipment-document__download { color: var(--color-red, #ef342d); }

.equipment-document strong,
.equipment-document small { display: block; }

.equipment-document strong {
    overflow: hidden;
    color: #e2e2e2;
    font-size: 11px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.equipment-document small {
    margin-top: 2px;
    color: #858585;
    font-size: 10px;
}

.equipment-benefits {
    margin-top: 14px;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.equipment-benefit {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 13px;
}

.equipment-benefit__icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(239, 52, 45, .09);
    color: var(--color-red, #ef342d);
}

.equipment-benefit__icon img,
.equipment-benefit__icon svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.equipment-benefit__icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.equipment-benefit strong,
.equipment-benefit small { display: block; }

.equipment-benefit strong {
    margin-bottom: 3px;
    color: #fff;
    font-size: 12px;
    line-height: 1.35;
}

.equipment-benefit small {
    color: #8f8f8f;
    font-size: 10px;
    line-height: 1.4;
}

.equipment-single__content {
    margin-top: 14px;
    padding: 28px;
    color: #b5b5b5;
}

.equipment-single__empty {
    margin: 18px 0 0;
    color: #858585;
}
.equipment-single .page-header{
margin-bottom: 0 !important;
}
@media (max-width: 1199px) {
    .equipment-hero { grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr); gap: 24px; }
    .equipment-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .equipment-feature { min-height: 100px; }
    .equipment-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991px) {
    .equipment-hero { grid-template-columns: 1fr; }
    .equipment-gallery__stage { min-height: 420px; }
    .equipment-details { grid-template-columns: 1fr; }
    .equipment-sidebar { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .equipment-consultation { border-right: 1px solid rgba(255, 255, 255, .08); border-bottom: 0; }
}

@media (max-width: 767px) {
    .equipment-hero { padding: 18px; }
    .equipment-gallery { grid-template-columns: 1fr; }
    .equipment-gallery__rail { order: 2; flex-direction: row; }
    .equipment-gallery__thumbs { max-width: 100%; flex-direction: row; overflow-x: auto; }
    .equipment-gallery__arrow { width: 24px; height: 64px; flex: 0 0 24px; transform: rotate(-90deg); }
    .equipment-gallery__stage { min-height: 320px; }
    .equipment-specs__grid { grid-template-columns: 1fr; }
    .equipment-sidebar { display: block; }
    .equipment-consultation { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
}

@media (max-width: 575px) {
    .equipment-hero { padding: 14px; border-radius: 7px; }
    .equipment-gallery__stage { min-height: 250px; }
    .equipment-hero__title { font-size: 28px; }
    .equipment-hero__subtitle { font-size: 15px; }
    .equipment-features { grid-template-columns: 1fr 1fr; }
    .equipment-hero__actions { align-items: stretch; flex-direction: column; gap: 15px; }
    .equipment-button { width: 100%; }
    .equipment-download { justify-content: center; }
    .equipment-specs { padding: 20px 18px; }
    .equipment-benefits { padding: 18px; grid-template-columns: 1fr; gap: 18px; }
    .equipment-single__content { padding: 20px 18px; }
}

