.cart-item-image img {
    aspect-ratio: 1 / 1;  /* This enforces a square aspect ratio */
    object-fit: cover;    /* Ensures the image fills the container while maintaining its aspect ratio */
    width: 100%;          /* Ensures the image takes up the full width of its container */
    height: auto;         /* Let the height adjust based on width */
}

.padding-radius-overide {
    border-radius: 0.375rem;
    padding: 0.5rem 0.8rem;
}

.cart-quantity {
    max-width: 200px;
}

.custom-cart-table {
    color: white;
    background-color: transparent;
}

.custom-cart-table thead tr {
    border-bottom: 1px solid white; /* Bold line under headings */
}

.custom-cart-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Thin subtle line */
}

.custom-cart-table td,
.custom-cart-table th {
    background-color: transparent;
    vertical-align: middle;
    color: white;
}

.free-delivery-container {
    background-color: #2d415f;
}

@media (min-width: 992px) {
    .sticky-order-summary {
        position: sticky;
        top: 75px; /* Adjust as needed for spacing from the top */
        align-self: start; /* Helps with flexbox layouts */
    }
}

.thick-hr {
    border: 1px solid #dee2e6;
}

.success-item-image {
    aspect-ratio: 1 / 1;
    width: 125px; /* or whatever width you want */
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.success-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}