
.equipment-item:last-child {
    margin-bottom: 0;
}

.equipment-info {
    padding: 30px;
}

.equipment-title {
    font-size: 24px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 20px;
    position: relative;
}

.equipment-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #FF6B35;
}

.equipment-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #4A5568;
}

.equipment-desc p {
    margin-bottom: 15px;
}

.equipment-gallery-single {
    position: relative;
    padding: 20px;
    border-radius: 15px;
}

.egs-slider {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.egs-slide {
    height: 400px;
}

.egs-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.egs-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    z-index: 10;
}

.equipment-gallery-single:hover .egs-nav {
    opacity: 1;
    visibility: visible;
}

.egs-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid #FF6B35;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.egs-arrow:hover {
    background: #FF6B35;
    color: white;
    transform: scale(1.1);
}

.egs-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.egs-dots .slick-dots {
    position: static;
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.egs-dots .slick-dots li {
    margin: 0;
}

.egs-dots .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #CBD5E0;
    text-indent: -9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.egs-dots .slick-dots li.slick-active button {
    background: #FF6B35;
    transform: scale(1.2);
}

.egs-dots .slick-dots li button:hover {
    background: #FF8E53;
}

/* Адаптивность */
@media (max-width: 991px) {
    .equipment-item {
        margin-bottom: 60px;
    }

    .equipment-info {
        padding: 20px;
        margin-bottom: 30px;
    }

    .egs-slide {
        height: 350px;
    }

    .egs-nav {
        opacity: 1;
        visibility: visible;
        padding: 0 15px;
    }

    .egs-arrow {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .equipment-title {
        font-size: 20px;
    }

    .egs-slide {
        height: 300px;
    }

    .egs-arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .egs-slide {
        height: 250px;
    }

    .egs-arrow {
        width: 35px;
        height: 35px;
    }

    .equipment-info {
        padding: 15px;
    }
}





.equipment-gallery-multiple {
    position: relative;
    padding: 20px;
    border-radius: 15px;
}

.egm-slider {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.egm-slide-group {
    padding: 10px;
}

.egm-images-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 0 auto;
}

.egm-image-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.egm-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.egm-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.egm-image-item:hover .egm-image {
    transform: scale(1.05);
}

.egm-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    z-index: 10;
}

.equipment-gallery-multiple:hover .egm-nav {
    opacity: 1;
    visibility: visible;
}

.egm-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid #FF6B35;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.egm-arrow:hover {
    background: #FF6B35;
    color: white;
    transform: scale(1.1);
}

.egm-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.egm-dots .slick-dots {
    position: static;
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.egm-dots .slick-dots li {
    margin: 0;
}

.egm-dots .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #CBD5E0;
    text-indent: -9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.egm-dots .slick-dots li.slick-active button {
    background: #FF6B35;
    transform: scale(1.2);
}

.egm-dots .slick-dots li button:hover {
    background: #FF8E53;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .egm-images-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .egm-image {
        height: 180px;
    }
}

@media (max-width: 991px) {
    .equipment-gallery-multiple {
        padding: 15px;
    }

    .egm-images-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .egm-image {
        height: 160px;
    }

    .egm-nav {
        opacity: 1;
        visibility: visible;
        padding: 0 15px;
    }

    .egm-arrow {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .egm-images-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .egm-image {
        height: 140px;
    }

    .egm-arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .egm-images-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .egm-image {
        height: 200px;
    }

    .egm-arrow {
        width: 35px;
        height: 35px;
    }

    .equipment-gallery-multiple {
        padding: 10px;
    }
}




.equipment-gallery-multiple {
    position: relative;
    padding: 20px;
    border-radius: 15px;
}

.egm-slider {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.egm-slide {
    padding: 10px;
}

.egm-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.egm-slide a {
    display: block;
    transition: transform 0.3s ease;
}

.egm-slide a:hover {
    transform: translateY(-5px);
}

.egm-slide a:hover .egm-image {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: scale(1.05);
}

.egm-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    z-index: 10;
}

.equipment-gallery-multiple:hover .egm-nav {
    opacity: 1;
    visibility: visible;
}

.egm-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid #FF6B35;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6B35;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.egm-arrow:hover {
    background: #FF6B35;
    color: white;
    transform: scale(1.1);
}

.egm-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.egm-dots .slick-dots {
    position: static;
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.egm-dots .slick-dots li {
    margin: 0;
}

.egm-dots .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #CBD5E0;
    text-indent: -9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.egm-dots .slick-dots li.slick-active button {
    background: #FF6B35;
    transform: scale(1.2);
}

.egm-dots .slick-dots li button:hover {
    background: #FF8E53;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .egm-image {
        height: 180px;
    }
}

@media (max-width: 991px) {
    .equipment-gallery-multiple {
        padding: 15px;
    }

    .egm-image {
        height: 160px;
    }

    .egm-nav {
        opacity: 1;
        visibility: visible;
        padding: 0 15px;
    }

    .egm-arrow {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .egm-image {
        height: 140px;
    }

    .egm-arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .egm-image {
        height: 200px;
    }

    .egm-arrow {
        width: 35px;
        height: 35px;
    }

    .equipment-gallery-multiple {
        padding: 10px;
    }
}