.description {
    padding: 50px 1.5rem;
    background-color: #f3f3f3;
    text-align: center;
}
.description-inner h1 {
    margin-bottom: 2rem;
}
.description-inner div p {
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.track-input {
    margin-top: 3rem;
}
.track-input p {
    color: #b4b4b4;
    margin-bottom: 1.5rem;
}
.track-input input {
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .description {
        padding: 16rem 3rem 7rem;
    }
    .description-inner {
        max-width: 1400px;
        margin: 0 auto;
    }
    .description-inner div:not(.track-input) p {
        text-align: left;
    }
    .track-input {
        margin-top: 4rem;
        display: flex;
        gap: 2%;
    }
    .track-input p {
        display: none;
    }
    .track-input input {
        margin-bottom: 0;
        flex-grow: 1;
    }
}


.order-tracking {
    padding: 3rem;
}
.order-tracking h1 {
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1.5rem;
}

.status-mobile {
    max-width: 100%;
    margin: 80px auto 50px;
}
.status-carousel-container {
    position: relative;
    margin-bottom: 3rem;
}
.status-carousel-wrapper {
    position: relative;
    overflow: hidden;
}
.previous-status {
    position: absolute;
    padding: 10px;
    top: 4px;
    left: -12px;
}
.next-status {
    position: absolute;
    padding: 10px;
    top: 4px;
    right: -12px;
}
.status-carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    touch-action: pan-y;
}
.status-item {
    min-width: calc(100% - 2rem);
    color: #000;
    background-color: #E5E5EA;
    margin: 0 1rem;
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
}
.status-item.current-status {
    color: #fff;
    background-color: #ff3b30;
}
.status-item.done.current-status {
    color: #fff;
    background-color: #017F36;
}

.status-desktop {
    display: none;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    max-width: 1300px;
    margin: 0 auto 5rem;
}
.status-item-desktop {
    position: relative;
    padding: 10px 100px;
    flex-grow: 1;
    background: #E5E5E5;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%, 15px 50%);
    margin-left: -15px;
    cursor: default;
}
.status-item-desktop:first-child {
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
}
.status-item-desktop:last-child {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 15px 50%);
}
.status-item-desktop.active {
    background: #e74c3c;
    color: white;
}
.status-item-desktop.completed.active {
    background: #27ae60;
    color: white;
}

.cart-desktop {
    display: none;
}
.cart-mobile {
    max-width: 100%;
}
.cart-carousel-container {
    margin-bottom: 3rem;
}
.cart-carousel-wrapper {
    position: relative;
    overflow: hidden;
}
.cart-carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    touch-action: pan-y;
}
.cart-item {
    min-width: 100%;
    padding-left: 35px;
}
.cart-item h5 {
    font-size: 14px;
    font-weight: 600;
    padding-right: 40%;
}
.cart-item-description {
    margin-bottom: 15px;
    padding-right: 40%;
}
.cart-item-details {

}
.cart-item-details > div {
    display: flex;
}
.cart-item-details > div > *:first-child {
    width: 45%;
}
.cart-item-details > div > *:last-child {
    width: 55%;
}
.cart-item-details p {
    font-weight: 600;
}
.cart-item-details-nav-prev {
    padding: 0 5px;
    cursor: pointer;
}
.cart-item-details-nav-next {
    padding: 0 5px;
    cursor: pointer;
}
.cart-item-quantity {
    margin-bottom: 1.5rem;
}
.cart-item-price-rub {
    margin-bottom: 1.5rem;
}
.cart-item-total {
    margin-bottom: 2rem;
}
.cart-item-total span span {
    font-weight: 600;
}
.cart-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.cart-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #E1E5EE;
    cursor: pointer;
    transition: background-color 0.3s;
}
.cart-dot.active {
    background-color: #000;
}
.cart-dot:hover {
    background-color: #000;
}
.cart-total-price {
    text-align: center;
    font-weight: 600;
}

.cart-desktop {
    display: none;
}
.table-container {
    border: 1px solid #E9E9E9;
}
.order-table {
    color: #313131;
    background: white;
    width: 100%;
    border-collapse: collapse;
    border-radius: 5px;
    overflow: hidden;
}
.order-table th,
.order-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}
.order-table th {
    color: #1E1E1E;
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.order-table td {
    font-size: 14px;
}
.order-table th:nth-child(n+3),
.order-table td:nth-child(n+3) {
    text-align: center;
}
.order-table tbody tr {
    transition: background-color 0.2s ease;
}
.order-table tbody tr:hover {
    background-color: #f8f9fa;
}
.order-table tbody tr.selected {
    background-color: #e3f2fd;
}
.order-table tfoot {
    font-weight: 600;
}
.order-table tfoot tr td {
    border-bottom: 0;
}
.col-euro {
    display: none;
}
.select-all-checkbox,
.row-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #FFCC00;
}

@media (min-width: 768px) {
    .order-tracking {
        padding: 9rem 3rem 7.5rem;
    }
    .order-tracking-inner {
        max-width: 1400px;
        margin: 0 auto;
    }
    .status-desktop {
        display: flex;
    }
    .status-mobile {
        display: none;
    }
    .section-subtitle {
        font-size: 16px;
    }

    .cart-desktop {
        display: block;
    }
    .cart-mobile {
        display: none;
    }
}

@media (min-width: 849px) {
    .order-table th {
        white-space: nowrap;
    }
}

@media (min-width: 1100px) {
    .col-euro {
        display: table-cell;
    }
}


.delivery-info {
    padding: 3rem 3rem 6rem;
    text-align: center;
}
.delivery-info-inner h1 {
    margin-bottom: 2rem;
}


.delivery-info p {
    font-size: 13px;
    text-align: center;
    font-weight: 500;
}

@media (min-width: 768px) {
    .delivery-info {
        padding: 0 3rem 7rem;
    }
    .delivery-info-inner {
        max-width: 1400px;
        margin: 0 auto;
    }
}
