@version(2) @load('css/shop.css')

{{ $lang->shop_checkout }}

@if ($payment_price > 0 && !$pay_available)

{{ $lang->shop_pay_unavailable }}

@else

{{ $lang->shop_shipping }}

@if ($is_member && count($my_addresses ?? []))
@endif
@if ($shop_need_country)
@endif
@if ($is_member) @endif

{{ $lang->shop_orderer }}

@if ($is_member) @endif
@if (!$is_member)
{{ $lang->shop_guest_password_help }}
@endif

{{ $lang->shop_item }}

@foreach ($cart->items as $entry) @if (!$entry->blocked) @php $shp_row_thumb = !empty($entry->item->thumb) ? "background-image:url('" . $entry->item->thumb . "');" : ''; @endphp
{{ $entry->item->item_name }} @if ($entry->option)
{{ $entry->option->option_label }}
@endif
{{ $lang->shop_qty }} {{ $entry->qty }}개
{{ shop_money_in($entry->subtotal, $shp_currency) }}
@endif @endforeach
@if ($is_member && $shp_currency === ($shp_base_currency ?? 'KRW')) {{-- 쿠폰·적립금 — KRW 원장 전용이라 외화 주문서에서는 숨긴다 --}}

{{ $lang->shop_coupon }} · {{ $lang->shop_credit }}

@if (!empty($my_coupons))
@endif
@if ($credit_balance > 0) @php $shp_credit_min = max(0, (int)($shop_config->credit_min_use ?? 0)); @endphp
@if ($shp_credit_min > 0){{ shop_money_base($shp_credit_min) }} 이상부터 사용할 수 있고, @endif상품 금액(할인 적용 후)까지 1원 단위로 사용할 수 있어요.
@endif
{{ $lang->shop_coupon_help }}
@endif
@endif