.eatnet-checkout-summary {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #fff;
}

.eatnet-checkout-summary__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    background: #f7f7f7;
    border: 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

.eatnet-checkout-summary__left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.eatnet-checkout-summary__icon {
    font-size: 18px;
    line-height: 1;
}

.eatnet-checkout-summary__label {
    display: inline-block;
}

.eatnet-checkout-summary__right {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.eatnet-checkout-summary__total {
    font-weight: 700;
}

.eatnet-checkout-summary__arrow {
    transition: transform 0.2s ease;
    display: inline-block;
}

.eatnet-checkout-summary.is-open .eatnet-checkout-summary__arrow {
    transform: rotate(180deg);
}

.eatnet-checkout-summary__content {
    display: none;
    padding: 0;
    border-top: 1px solid #e5e5e5;
    background: #fff;
}

.eatnet-checkout-summary.is-open .eatnet-checkout-summary__content {
    display: block;
}

.eatnet-checkout-summary__content .shop_table {
    margin: 0;
    border: 0;
    border-radius: 0;
}

.eatnet-checkout-summary__content .shop_table th,
.eatnet-checkout-summary__content .shop_table td {
    padding-left: 18px;
    padding-right: 18px;
}

.eatnet-checkout-summary__content tr.chained_item .product-name {
    opacity: 0.75;
    font-size: 0.95em;
}

@media (max-width: 767px) {
    .eatnet-checkout-summary__toggle {
        padding: 14px 16px;
        font-size: 15px;
    }

    .eatnet-checkout-summary__right {
        gap: 8px;
    }
}
