@media (min-width: 768px) {
    .woocommerce-cart .navbar-primary.navbar-expand-lg {
        padding: 20px;
    }
}

.woocommerce-cart {
    padding-top: 0px;
    background: #f2f2f2;
}

.cart-items-count-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-items-count {
    font-size: 16px;
    font-weight: 400;
    color: #999;
}

.cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cart-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.cart-items {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    padding: 20px 0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 150px;
    height: 190px;
    border-radius: 1000px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100% !important;
    border-radius: 1000px;
    object-fit: scale-down;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #040404;
}

.cart-item-meta {
    color: #999999;
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-transform: capitalize;
}

.cart-item-details-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-quantity-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0px;
}

.cart-item-quantity .quantity {
    font-size: 18px;
    font-weight: 600;
    color: #040404;
}

.quantity-button {
    width: 24px;
    height: 24px;
    border: none;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.cart-item-price {
    font-size: 20px;
    font-weight: 600;
    color: #040404;
    align-self: center;
}

.cart-summary {
    background: transparent;
    padding: 30px;
    border-radius: 8px;
    box-shadow: none;
    height: fit-content;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.cart-summary-label {
    color: #040404;
    font-size: 16px;
    font-weight: 400;
}

.cart-summary-value {
    font-weight: 600;
    color: #000;
    font-size: 16px;
}

.cart-total {
    border-top: 1px solid #D3D2D2;
    margin-top: 20px;
    padding-top: 20px;
}

.cart-total .cart-summary-label {
    font-size: 20px;
    font-weight: 400;
    color: #040404;
}

.cart-total .cart-summary-value {
    font-size: 20px;
    font-weight: 600;
    color: #040404;
}

.cart-summary-row-shipping .cart-summary-value {
    font-size: 14px;
    font-weight: 400;
    color: #999999;
}

.checkout-button {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: #FF9A24;
    color: #fff;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
    margin-top: 30px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.checkout-button:hover {
    background: #e58300;
}

.clear-cart {
    color: #162D54;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
}

.clear-cart:hover {
    color: #000;
}

.cart-item.updating {
    opacity: 0.5;
    pointer-events: none;
}

.cart-item.removing {
    opacity: 0.5;
    pointer-events: none;
}

.cart-container.updating {
    opacity: 0.5;
    pointer-events: none;
}

.cart-actions {
    margin: 20px 0;
    text-align: right;
}

.clear-cart {
    color: #162D54;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    border: none;
    transition: all 0.2s;
}

@media (max-width: 1024px) {
    body.woocommerce-cart.woocommerce-page > div:first-of-type{
        padding: 0;
        padding-top: 100px;
    }

    .cart-title {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .woocommerce-cart {
        padding: 0;
    }

    .cart-title {
        padding: 24px;
        font-size: 36px;
        margin-bottom: 0;
    }

    .cart-container {
        padding: 0;
    }

    .cart-items {
        padding: 24px;
        border-radius: 0;
    }

    .cart-items-count-container {
        height: 20px;
    }

    .cart-content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cart-item {
        display: flex;
        grid-template-columns: 1fr;
        text-align: left;
    }

    .cart-item-image {
        width: 96px;
        height: 100%;
    }

    .cart-item-title {
        font-size: 20px;
        width: 60%;
    }

    .cart-item-quantity-container {
        width: 100%;
    }

    .cart-item-price {
        align-self: flex-start;
    }

    .cart-item-image {
        margin: 0;
    }

    .cart-summary {
        padding: 24px;
    }

    .cart-item-details {
        width: 100%;
    }
}