.cart-flex-wrapper {
    width: 100%;
    justify-content: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.woocommerce-cart-form {
    width: 100%;
    margin: 10px;
    display: flex;
    flex-direction: row;
}

.cart-left-panel {
    flex-grow: 1;
}

.cart-items-grid {
    width: 100%;
    min-width: 300px;
}

.cart-item-card {
    margin: 10px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    background-color: var(--bgTheme);
    min-height: 130px;
}

.product-thumbnail {
    width: 128px;
}

.product-details {
    display: flex;
    flex-direction: column;
    width: 78%;
}

.product-details>div {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 2px 10px;
}

.product-head {
    justify-content: space-between;
}

.remove {
    text-decoration: none;
    color: red;
}

.product-description {
    flex-grow: 1;
}

.product-pricing {
    justify-content: space-between;
}

.quantity {
    display: flex;
    flex-direction: row;
}

.quantity>input {
    width: 60px;
}

.product-userPictures {
    justify-content: space-between;
}

.product-userPictures div img {
    max-width: 200px;
    max-height: 200px;
}

.cart-collaterals, .coupon {
    margin: 20px;
    padding: 10px;
    background-color: var(--bgTheme);
    height: fit-content;
    border-radius: 5px;
    max-width: 320px;
}

.cart_totals {
    padding: 10px;
}

.coupon {
    text-align: center;
    /* max-width: 400px;
    margin: 20px;
    padding: 10px;
    background-color: var(--bgTheme);
    height: fit-content;
    border-radius: 5px; */
}

.coupon>span {
    margin-top: 20px;
    font-weight: bold;
    font-size: 1.2rem;
    height: 40px;
}

#coupon_code {
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
    outline: none;
    height: 40px;
    box-sizing: border-box;
}

.coupon>button, .wc-proceed-to-checkout>a {
    margin-top: 10px;
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--assistTheme);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.coupon>button:hover {
    background-color: var(--assistThemeDim);
}

.coupon>button:active {
    background-color: var(--assistThemeDark);
    transform: scale(0.97); 
}

.coupon>button:focus {
    outline: 2px solid var(--assistThemeDark);
    outline-offset: 2px;
}

.wc-proceed-to-checkout>a {
    background-color: var(--leadTheme);
}

.wc-proceed-to-checkout>a:hover {
    background-color: var(--leadThemeDim);
}

.wc-proceed-to-checkout>a:active {
    background-color: var(--leadThemeDark);
    transform: scale(0.97); 
}

.wc-proceed-to-checkout>a:focus {
    outline: 2px solid var(--leadThemeDark);
    outline-offset: 2px;
}




