/*
 * Cue Creator Configurator V2 - cart presentation
 * Loaded only on the WooCommerce cart page.
 */

.woocommerce-cart-form .cc-custom-cue-cart-item > td,
.woocommerce-cart-form .cc-custom-cue-cart-item > th {
    vertical-align: top;
}

.woocommerce-cart-form .cc-custom-cue-cart-item .product-thumbnail {
    width: 230px;
    /*min-width: 230px;*/
}

.cc-custom-cue-cart__thumbnail {
    display: block;
    width: 220px !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 8px auto;
}

.woocommerce-cart-form .cc-custom-cue-cart-item .product-name {
    min-width: 320px;
}

.cc-custom-cue-cart__summary {
    margin-top: 10px;
    font-weight: 400;
}

.cc-custom-cue-cart__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 0;
    margin: 0 0 10px;
    color: #555;
    font-size: 0.92em;
    line-height: 1.45;
}

.cc-custom-cue-cart__highlights span {
    display: inline-flex;
    align-items: center;
}

.cc-custom-cue-cart__highlights span:not(:last-child)::after {
    content: "·";
    margin: 0 8px;
    color: #b88900;
}

.cc-custom-cue-cart__payment {
    margin: 7px 0 10px;
    font-size: 0.92em;
    font-weight: 600;
}

.cc-custom-cue-cart__details {
    margin-top: 8px;
    border-top: 1px solid #e8e8e8;
    padding-top: 9px;
}

.cc-custom-cue-cart__details > summary {
    width: max-content;
    max-width: 100%;
    cursor: pointer;
    color: #9b6c00;
    font-weight: 600;
    line-height: 1.4;
}

.cc-custom-cue-cart__details[open] > summary {
    margin-bottom: 8px;
}

.cc-custom-cue-cart__specification {
    margin: 0;
}

.cc-custom-cue-cart__spec-row {
    display: grid;
    grid-template-columns: minmax(145px, 0.8fr) minmax(0, 1.35fr);
    gap: 14px;
    padding: 7px 0;
    border-bottom: 1px solid #eeeeee;
}

.cc-custom-cue-cart__spec-row:last-child {
    border-bottom: 0;
}

.cc-custom-cue-cart__spec-row dt,
.cc-custom-cue-cart__spec-row dd {
    margin: 0;
    line-height: 1.4;
}

.cc-custom-cue-cart__spec-row dt {
    font-weight: 600;
}

.cc-custom-cue-cart__spec-row dd {
    overflow-wrap: anywhere;
}

.cc-custom-cue-cart-item .product-price,
.cc-custom-cue-cart-item .product-quantity,
.cc-custom-cue-cart-item .product-subtotal {
    white-space: nowrap;
}

.cc-custom-cue-cart__quantity {
    display: inline-block;
    min-width: 1.5em;
    text-align: center;
}

@media (max-width: 768px) {
    .woocommerce-cart-form .cc-custom-cue-cart-item .product-thumbnail {
        display: block !important;
        width: 100% !important;
        min-width: 0;
        text-align: left !important;
    }

    .cc-custom-cue-cart__thumbnail {
        width: 100% !important;
        max-width: 520px !important;
        margin: 4px auto 12px;
    }

    .woocommerce-cart-form .cc-custom-cue-cart-item .product-name {
        min-width: 0;
        text-align: left !important;
    }

    .cc-custom-cue-cart__highlights {
        display: block;
        margin-top: 8px;
    }

    .cc-custom-cue-cart__highlights span {
        display: inline;
    }

    .cc-custom-cue-cart__spec-row {
        grid-template-columns: 1fr;
        gap: 2px;
        padding: 8px 0;
    }
}
