/* shipments-index.css — listing page /otgruzki (header + pagination; grid/cards in shipments-section.css) */

.shipments-page {
    padding-bottom: 60px;
}

._block-group__head {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 32px;
}

._block-group__head-left {
    flex: 0 0 70%;
    padding-right: 20px;
}

._block-title-wrapper {
    margin-bottom: 12px;
}

._block-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.aluminumrolled__listing-products-shown {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px;
}

.aluminumrolled__listing-products-shown span {
    font-weight: 600;
    color: #1a1a1a;
}

.aluminumrolled__listing-descr {
    margin-top: 16px;
}

.aluminumrolled__listing-descr-content {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
    max-height: 75px;
    overflow: hidden;
    position: relative;
}

.aluminumrolled__listing-descr-content.expanded {
    max-height: none;
}

.aluminumrolled__listing-descr-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
}

.aluminumrolled__listing-descr-content.expanded::after {
    display: none;
}

.aluminumrolled__listing-descr-toggle {
    background: none;
    border: none;
    padding: 0;
    margin-top: 12px;
    font-size: 14px;
    color: #1a1a1a;
    cursor: pointer;
    font-weight: 500;
}

.aluminumrolled__listing-descr-toggle:hover {
    color: #f0cf4c;
}

.conversion {
    flex: 0 0 28%;
    background: #f9fafb;
    border-radius: 10px;
    padding: 14px 16px;
}

.conversion ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.conversion ul li {
    font-size: 12px;
    color: #374151;
    padding: 3px 0 3px 16px;
    position: relative;
    line-height: 1.4;
}

.conversion ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 11px;
}

.conversion__bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 10px;
}

.conversion__online {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.conversion__online-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.conversion__online p {
    font-size: 12px;
    color: #374151;
    margin: 0;
}

.conversion__contacts {
    display: flex;
    gap: 8px;
    align-items: center;
}

.conversion__contacts a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background: #fff;
    transition: all 0.2s ease;
}

.conversion__contacts a:hover {
    background: #f0cf4c;
}

@media (max-width: 992px) {
    ._block-group__head {
        flex-direction: column;
    }

    ._block-group__head-left,
    .conversion {
        flex: 1;
        width: 100%;
    }

    ._block-group__head-left {
        padding-right: 0;
    }
}

.shipment-card__location {
    font-size: 13px;
    color: #6b7280;
    margin-top: 8px;
}

.pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.no-shipments {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}
