.work-item{
    opacity: .7;
    height: 100%;
    display: block;
    background: none;
    padding: 0;
    font-size: auto;
    color: #000;
    text-align: center;

    .work-image{
        height: 300px;

        img{
            object-fit: cover;
            height: 100%;
            width: 100%;
        }
    }

    &.swiper-slide-active{
        opacity: 1;
    }

     .work-content--title{
        font-size: 18px;
        font-weight: bold;
     }

     .work-content--desc{
        font-size: 16px;
     }
}

.video-modal {
    background: none;

     &.swiper-slide-active{
        .work-item{
            opacity: 1;
        }
    }

    .work-item{
        height: 300px;

        img{
            object-fit: cover;
            height: 100%;
            width: 100%;
        }
    }
}

.gallery-work{
    .work-item{
        height: 100%;
        width: 100%;
    }
}


.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.price-table th,
.price-table td {
    padding: 4px 24px;
    text-align: center;
    border-bottom: 1px solid #e8e8e8;
    vertical-align: middle;
}

.price-table th {
    background-color: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-table td:first-child {
    text-align: center;
    background: #fff;
    border-right: 2px solid #e8e8e8;
}

.price-table tr:hover td {
    background-color: #fafafa;
}

.price-table .price {
    color: #cc0000;
    font-weight: 700;
    font-style: italic;
    font-size: 14px;
}

.price-table .btn {
    font-size: 13px !important;
    padding: 10px 18px !important;
    white-space: nowrap;
    border-radius: 4px;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .price-table {
        font-size: 13px;
    }

    .price-table th,
    .price-table td {
        padding: 10px 8px;
    }

    .price-table th:first-child,
    .price-table td:first-child {
        min-width: 120px;
        font-size: 12px;
    }

    .price-table .price {
        font-size: 14px;
    }

    .price-table .btn {
        font-size: 11px !important;
        padding: 8px 10px !important;
    }
}

@media (max-width: 480px) {
    .price-table th:nth-child(2),
    .price-table td:nth-child(2) {
        display: none;
    }

    .price-table th,
    .price-table td {
        padding: 8px 6px;
    }
}