/* Checkout Cart Tile Container */
.checkout-cart-tile {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}

/* Loading State */
.checkout-cart-tile-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.checkout-cart-tile-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #1976d2;
    border-radius: 50%;
    animation: checkout-cart-tile-spin 1s linear infinite;
}

@keyframes checkout-cart-tile-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Image Container */
.checkout-cart-tile-image-container {
    position: relative;
    height: 50px;
    width: 50px;
    min-width: 50px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
}

.checkout-cart-tile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.checkout-cart-tile-image-error {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e0e0e0;
}

.checkout-cart-tile-error-icon {
    font-size: 24px;
    color: #f5f5f5;
}

/* Spacers */
.checkout-cart-tile-spacer {
    width: 10px;
    height: 1px;
}

.checkout-cart-tile-spacer-small {
    height: 5px;
}

/* Product Details Section */
.checkout-cart-tile-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.checkout-cart-tile-name {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.checkout-cart-tile-quantity {
    font-size: 12px;
    font-weight: 400;
    color: #666;
}

/* Price Section */
.checkout-cart-tile-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.checkout-cart-tile-gross-price {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    text-decoration: line-through;
}

.checkout-cart-tile-total-price {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .checkout-cart-tile {
        gap: 8px;
    }

    .checkout-cart-tile-image-container {
        height: 60px;
        width: 60px;
        min-width: 60px;
    }

    .checkout-cart-tile-name {
        font-size: 15px;
    }

    .checkout-cart-tile-quantity {
        font-size: 13px;
    }

    .checkout-cart-tile-gross-price,
    .checkout-cart-tile-total-price {
        font-size: 15px;
    }
}

/* Tablet and Up */
@media screen and (min-width: 769px) {
    .checkout-cart-tile:hover {
        background-color: #fafafa;
        border-radius: 4px;
        padding: 8px;
        margin: -8px;
        transition: background-color 0.2s ease-in-out;
    }
}