/**
 * Custom Checkout — Shopify-style two-column layout (Optimized)
 */

/* ===== Global Reset ===== */
.pc-custom-checkout-form {
	margin: 0 auto !important;
	padding: 0 24px !important;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
	color: #323232 !important;
	background: #f5f5f5 !important;
	min-height: 100vh;
	line-height: 1.5 !important;
}

.pc-custom-checkout-form .woocommerce-error,
.pc-custom-checkout-form .woocommerce-message,
.pc-custom-checkout-form .woocommerce-info {
	margin: 0 0 16px !important;
	border-radius: 8px !important;
	font-size: 13px !important;
}

/* ===== Two-column wrapper ===== */
.pc-checkout-wrapper {
	display: flex !important;
	gap: 40px !important;
	align-items: flex-start !important;
	padding: 44px 0 80px !important;
	max-width: 1200px;
	margin: 0 auto;
}

/* ===== LEFT COLUMN ===== */
.pc-checkout-main {
	flex: 1 !important;
	min-width: 0 !important;
	background: #fff !important;
	border-radius: 12px !important;
	padding: 48px 56px !important;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04) !important;
	border: 1px solid #eaeaea !important;
}

/* Brand / Logo */
.pc-checkout-brand {
	margin-bottom: 8px !important;
}
.pc-checkout-logo {
	max-height: 44px !important;
	width: auto !important;
}
.pc-checkout-site-title {
	font-size: 24px !important;
	font-weight: 700 !important;
	color: #2b2b2b !important;
	letter-spacing: -0.01em !important;
}

/* ===== Step breadcrumb ===== */
.pc-checkout-breadcrumb {
	display: flex !important;
	align-items: center !important;
	gap: 6px !important;
	font-size: 13px !important;
	margin-bottom: 36px !important;
	padding-bottom: 18px;
	border-bottom: 1px solid #eee;
}
.pc-step {
	color: #999 !important;
	text-decoration: none !important;
	font-weight: 500 !important;
	transition: color 0.15s !important;
}
.pc-step.pc-step-active {
	color: #323232 !important;
	font-weight: 600 !important;
}
.pc-step.pc-step-done {
	color: #323232 !important;
	font-weight: 600 !important;
}
.pc-step.pc-step-done:hover {
	text-decoration: underline !important;
}
.pc-step-arrow {
	color: #ccc !important;
	font-size: 14px !important;
	line-height: 1 !important;
	margin: 0 2px !important;
}

/* ===== Sections ===== */
.pc-checkout-section {
	margin-bottom: 32px !important;
	padding-bottom: 32px !important;
	border-bottom: 1px solid #e8e8e8 !important;
}
.pc-checkout-section:last-child {
	border-bottom: none !important;
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

.pc-section-header {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	margin-bottom: 20px !important;
}
.pc-section-header h2 {
	font-size: 18px !important;
	font-weight: 600 !important;
	color: #2b2b2b !important;
	margin: 0 !important;
	flex: 1 !important;
	letter-spacing: -0.01em;
}

/* Step number circle */
.pc-section-step {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 28px !important;
	height: 28px !important;
	background: #2b2b2b !important;
	color: #fff !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	border-radius: 50% !important;
	flex-shrink: 0 !important;
}

/* ===== Form Fields ===== */
.pc-checkout-main .form-row {
	margin: 0 0 14px 0 !important;
	padding: 0 !important;
	float: none !important;
	width: 100% !important;
}

.pc-checkout-main .form-row label {
	display: block !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	color: #555 !important;
	margin-bottom: 5px !important;
}

.pc-checkout-main .form-row label .required {
	color: #e22120 !important;
}

.pc-checkout-main .form-row input[type="text"]:not(.input-text),
.pc-checkout-main .form-row input[type="email"],
.pc-checkout-main .form-row input[type="tel"],
.pc-checkout-main .form-row input[type="password"],
.pc-checkout-main .form-row input[type="number"],
.pc-checkout-main .form-row textarea {
	width: 100% !important;
	height: 48px !important;
	padding: 0 16px !important;
	font-size: 14px !important;
	border: 1.5px solid #d9d9d9 !important;
	border-radius: 8px !important;
	background: #fafafa !important;
	color: #323232 !important;
	box-sizing: border-box !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s !important;
	outline: none !important;
	box-shadow: none !important;
	-webkit-appearance: none !important;
}
/* Native select: custom dropdown arrow */
.pc-checkout-main .form-row select {
	width: 100% !important;
	height: 48px !important;
	padding: 0 36px 0 16px !important;
	font-size: 14px !important;
	border: 1.5px solid #d9d9d9 !important;
	border-radius: 8px !important;
	background: #fafafa url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23888'/%3E%3C/svg%3E") no-repeat right 14px center !important;
	background-size: 12px !important;
	color: #323232 !important;
	box-sizing: border-box !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
	outline: none !important;
	box-shadow: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	cursor: pointer !important;
}
.pc-checkout-main .form-row textarea {
	height: auto !important;
	padding: 12px 14px !important;
	min-height: 80px !important;
}
.pc-checkout-main .form-row input:focus,
.pc-checkout-main .form-row select:focus,
.pc-checkout-main .form-row textarea:focus {
	border-color: #2b2b2b !important;
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05) !important;
	background: #fff !important;
}
.pc-checkout-main .form-row input::placeholder,
.pc-checkout-main .form-row textarea::placeholder {
	color: #b5b5b5 !important;
}

/* Field validation — red border */
.pc-checkout-main .form-row.woocommerce-invalid input,
.pc-checkout-main .form-row.woocommerce-invalid select,
.pc-checkout-main .form-row.woocommerce-invalid textarea {
	border-color: #e22120 !important;
}
.pc-checkout-main .form-row.woocommerce-invalid input:focus,
.pc-checkout-main .form-row.woocommerce-invalid select:focus,
.pc-checkout-main .form-row.woocommerce-invalid textarea:focus {
	box-shadow: 0 0 0 3px rgba(226,33,32,0.1) !important;
}
.pc-field-error {
	display: block !important;
	font-size: 12px !important;
	color: #e22120 !important;
	margin-top: 4px !important;
}

/* Select2 invalid state */
.pc-checkout-main .form-row.woocommerce-invalid .select2-container .select2-selection--single {
	border-color: #e22120 !important;
}

/* Select2 */
.pc-checkout-main .select2-container {
	width: 100% !important;
}
.pc-checkout-main .select2-container .select2-selection--single {
	height: 46px !important;
	border: 1px solid #d9d9d9 !important;
	border-radius: 5px !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}
.pc-checkout-main .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 46px !important;
	padding-left: 14px !important;
	padding-right: 32px !important;
	font-size: 14px !important;
	color: #323232 !important;
}
.pc-checkout-main .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 44px !important;
	width: 30px !important;
	right: 4px !important;
}
.pc-checkout-main .select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: #888 transparent transparent transparent !important;
	border-width: 5px 5px 0 5px !important;
	margin-left: -5px !important;
	margin-top: -2px !important;
}
/* Select2 focus */
.pc-checkout-main .select2-container--default.select2-container--open .select2-selection--single,
.pc-checkout-main .select2-container--default.select2-container--focus .select2-selection--single {
	border-color: #323232 !important;
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06) !important;
}
/* Select2 dropdown */
.pc-checkout-main .select2-dropdown {
	border: 1px solid #d9d9d9 !important;
	border-radius: 5px !important;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
	margin-top: 4px !important;
}
.pc-checkout-main .select2-results__option {
	padding: 10px 14px !important;
	font-size: 14px !important;
}
.pc-checkout-main .select2-results__option--highlighted {
	background: #323232 !important;
	color: #fff !important;
}
/* Select2 search input inside dropdown */
.pc-checkout-main .select2-search__field {
	height: 40px !important;
	padding: 0 10px !important;
	border: 1px solid #d4d4d4 !important;
	border-radius: 4px !important;
	outline: none !important;
}

/* Field rows */
.pc-field-row {
	display: flex !important;
	gap: 14px !important;
}
.pc-field-row .pc-field-col {
	flex: 1 !important;
	min-width: 0 !important;
}
.pc-field-row .pc-field-col .form-row {
	margin-bottom: 12px !important;
}

/* ===== Login prompt ===== */
.pc-checkout-login-prompt {
	font-size: 13px !important;
	color: #555 !important;
	padding: 10px 0 14px !important;
}
.pc-checkout-login-prompt a {
	color: #323232 !important;
	text-decoration: underline !important;
	font-weight: 500 !important;
}
.pc-checkout-login-form {
	margin-bottom: 18px !important;
	padding: 18px !important;
	background: #f7f9fa !important;
	border-radius: 6px !important;
	border: 1px solid #e8e8e8 !important;
}

/* ===== Newsletter opt-in ===== */
.pc-newsletter-optin {
	margin-top: 12px !important;
}
.pc-newsletter-optin label {
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	font-size: 13px !important;
	color: #555 !important;
}
.pc-newsletter-optin input[type="checkbox"] {
	width: 20px !important;
	height: 20px !important;
	accent-color: #111 !important;
	cursor: pointer !important;
	flex-shrink: 0 !important;
	margin: 0 !important;
}

/* ===== Ship to different address ===== */
.pc-ship-different-toggle {
	margin-top: 16px !important;
	font-size: 13px !important;
}
.pc-ship-different-toggle label {
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	font-weight: 500 !important;
	color: #323232 !important;
}
#pc-shipping-fields {
	margin-top: 14px !important;
}

/* ===== Create Account ===== */
.pc-checkout-main .woocommerce-account-fields {
	margin-top: 16px !important;
	padding: 18px !important;
	background: #f7f9fa !important;
	border-radius: 6px !important;
	border: 1px solid #e8e8e8 !important;
}
.pc-checkout-main .woocommerce-account-fields .form-row {
	margin-bottom: 10px !important;
}
.pc-checkout-main .create-account {
	margin-bottom: 0 !important;
}
.pc-checkout-main .create-account label {
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	font-weight: 500 !important;
	color: #323232 !important;
	font-size: 13px !important;
}
.pc-checkout-main .create-account input[type="checkbox"] {
	width: 20px !important;
	height: 20px !important;
	accent-color: #111 !important;
	cursor: pointer !important;
	flex-shrink: 0 !important;
	margin: 0 !important;
}
/* ===== Shipping Methods ===== */
#pc-shipping-method-section .pc-section-body > p,
#pc-shipping-method-section .woocommerce-shipping-destination {
	display: none !important;
}
#pc-shipping-method-section ul.woocommerce-shipping-methods {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}
#pc-shipping-method-section ul.woocommerce-shipping-methods li {
	padding: 16px !important;
	margin-bottom: 8px !important;
	border: 1px solid #d4d4d4 !important;
	border-radius: 6px !important;
	background: #fff !important;
	transition: border-color 0.15s, box-shadow 0.15s !important;
	cursor: pointer !important;
}
#pc-shipping-method-section ul.woocommerce-shipping-methods li:has(input:checked),
#pc-shipping-method-section ul.woocommerce-shipping-methods li.pc-shipping-selected {
	border-color: #323232 !important;
	box-shadow: 0 0 0 1px #323232 !important;
	background: #fafafa !important;
}
#pc-shipping-method-section ul.woocommerce-shipping-methods li:hover {
	border-color: #323232 !important;
}
#pc-shipping-method-section .shipping_method {
	margin-right: 10px !important;
	accent-color: #323232 !important;
	width: 16px !important;
	height: 16px !important;
	flex-shrink: 0 !important;
	margin-top: 2px !important;
}
#pc-shipping-method-section label {
	font-size: 14px !important;
	font-weight: 500 !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: flex-start !important;
	gap: 8px !important;
	width: 100% !important;
}
#pc-shipping-method-section .woocommerce-shipping-methods label .amount {
	color: #555 !important;
	font-weight: 600 !important;
	white-space: nowrap !important;
}

/* ===== Payment Section ===== */
.pc-section-subtitle {
	font-size: 12px !important;
	color: #888 !important;
	margin-top: -4px !important;
	margin-bottom: 6px !important;
}

/* Hide duplicate order review table inside #order_review (sidebar handles totals) */
#order_review .woocommerce-checkout-review-order-table {
	display: none !important;
}
/* Ensure #order_review payment form uses same styling as our payment section */
.pc-checkout-main #order_review {
	background: transparent !important;
	padding: 0 !important;
	margin: 0 !important;
	border: none !important;
}
.pc-checkout-main #order_review > .woocommerce-checkout-payment {
	margin-top: 0 !important;
}

.pc-checkout-main .wc_payment_methods {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}
.pc-checkout-main .wc_payment_method {
	margin-bottom: 8px !important;
	padding: 16px !important;
	border: 1px solid #d4d4d4 !important;
	border-radius: 6px !important;
	background: #fff !important;
	transition: border-color 0.15s, box-shadow 0.15s, background 0.15s !important;
	cursor: pointer !important;
}
.pc-checkout-main .wc_payment_method:hover {
	border-color: #323232 !important;
}
.pc-checkout-main .wc_payment_method:has(input:checked),
.pc-checkout-main .wc_payment_method.pc-payment-selected {
	border-color: #323232 !important;
	box-shadow: 0 0 0 1px #323232 !important;
	background: #fafafa !important;
}
.pc-checkout-main .wc_payment_method label {
	font-size: 14px !important;
	font-weight: 500 !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: flex-start !important;
	gap: 10px !important;
	margin: 0 !important;
	padding: 0 !important;
}
.pc-checkout-main .wc_payment_method .input-radio {
	margin-right: 0 !important;
	accent-color: #323232 !important;
	width: 16px !important;
	height: 16px !important;
	flex-shrink: 0 !important;
	margin-top: 2px !important;
}
.pc-checkout-main .payment_box {
	margin-top: 12px !important;
	padding: 14px !important;
	background: #f7f9fa !important;
	border-radius: 6px !important;
	border: 1px solid #e8e8e8 !important;
	font-size: 13px !important;
	color: #555 !important;
}
.pc-checkout-main .payment_box:empty {
	display: none !important;
}

/* Place Order Button */
.pc-checkout-main #place_order {
	display: block !important;
	width: 100% !important;
	height: 56px !important;
	background: #2b2b2b !important;
	color: #fff !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	border: none !important;
	border-radius: 8px !important;
	cursor: pointer !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	margin-top: 18px !important;
	transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s !important;
}
.pc-checkout-main #place_order:hover {
	background: #1a1a1a !important;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18) !important;
	transform: translateY(-1px);
}
.pc-checkout-main #place_order:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12) !important;
}

/* ===== Footer policies ===== */
.pc-checkout-footer {
	display: flex !important;
	gap: 18px !important;
	padding-top: 12px !important;
	font-size: 12px !important;
}
.pc-checkout-footer a {
	color: #888 !important;
	text-decoration: none !important;
}
.pc-checkout-footer a:hover {
	color: #323232 !important;
}

/* Terms & Conditions checkbox */
.pc-checkout-main .woocommerce-terms-and-conditions-wrapper {
	margin-bottom: 12px !important;
	font-size: 13px !important;
	color: #555 !important;
}
.pc-checkout-main .woocommerce-terms-and-conditions-wrapper .input-checkbox {
	accent-color: #323232 !important;
	margin-right: 8px !important;
}
.pc-checkout-main .woocommerce-terms-and-conditions-wrapper a {
	color: #2b2b2b !important;
	text-decoration: underline !important;
}

/* ===== RIGHT COLUMN (Sidebar) ===== */
.pc-checkout-sidebar {
	width: 400px !important;
	flex-shrink: 0 !important;
	position: sticky !important;
	top: 32px !important;
}

.pc-order-summary {
	background: #fff !important;
	border-radius: 12px !important;
	padding: 28px !important;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04) !important;
	border: 1px solid #eaeaea !important;
}

/* Product items */
.pc-order-product-item {
	display: flex !important;
	align-items: flex-start !important;
	gap: 14px !important;
	padding: 16px 0 !important;
	border-bottom: 1px solid #f0f0f0 !important;
}
.pc-order-product-item:first-child {
	padding-top: 0 !important;
}

.pc-order-product-thumb-wrap {
	position: relative !important;
	flex-shrink: 0 !important;
}

.pc-order-product-thumb {
	width: 72px !important;
	height: 72px !important;
	border-radius: 8px !important;
	overflow: hidden !important;
	background: #f7f7f7 !important;
	border: 1px solid #eee !important;
}
.pc-order-product-thumb img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}
.pc-order-product-qty {
	position: absolute !important;
	top: -8px !important;
	right: -8px !important;
	min-width: 22px !important;
	height: 22px !important;
	padding: 0 5px !important;
	background: #555 !important;
	color: #fff !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	border-radius: 11px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	border: 2px solid #fff !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12) !important;
	line-height: 1 !important;
	z-index: 2 !important;
}

.pc-order-product-info {
	flex: 1 !important;
	min-width: 0 !important;
}
.pc-order-product-name {
	font-size: 13px !important;
	font-weight: 600 !important;
	color: #323232 !important;
	line-height: 1.4 !important;
	word-break: break-word !important;
}

/* Inline component list in sidebar */
.pc-order-product-name .pc-custom-cart-name {
	font-size: 13px !important;
}
.pc-order-product-name .pc-custom-cart-power-inline {
	font-size: 11px !important;
	color: #999 !important;
	display: block !important;
	margin-top: 2px !important;
}
.pc-order-product-name .pc-checkout-components {
	margin-top: 6px !important;
	padding: 6px 8px !important;
	background: #f9fafb !important;
	border-radius: 4px !important;
	font-size: 10px !important;
}
.pc-order-product-name .pc-checkout-components .pc-custom-item {
	display: flex !important;
	justify-content: space-between !important;
	padding: 1px 0 !important;
	border-bottom: 1px dashed #f0f0f0 !important;
}
.pc-order-product-name .pc-checkout-components .pc-custom-item:last-child {
	border-bottom: none !important;
}
.pc-order-product-name .pc-checkout-components .pc-custom-item-label {
	font-size: 10px !important;
	color: #777 !important;
}
.pc-order-product-name .pc-checkout-components .pc-custom-item-price {
	font-size: 10px !important;
	font-weight: 600 !important;
	color: #555 !important;
	flex-shrink: 0 !important;
	margin-left: 6px !important;
}
.pc-order-product-name .pc-checkout-components .pc-custom-service {
	display: flex !important;
	justify-content: space-between !important;
	margin-top: 3px !important;
	padding: 3px 6px !important;
	background: #e8f5e9 !important;
	border-radius: 3px !important;
}
.pc-order-product-name .pc-checkout-components .pc-custom-service .pc-custom-label,
.pc-order-product-name .pc-checkout-components .pc-custom-service .pc-custom-price {
	font-size: 10px !important;
	font-weight: 600 !important;
	color: #2e7d32 !important;
}

.pc-order-product-total {
	flex-shrink: 0 !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	color: #323232 !important;
	white-space: nowrap !important;
	margin-top: 2px !important;
}

/* Discount code — in form flow */
.pc-coupon-section {
	padding-bottom: 20px !important;
}
.pc-coupon-row {
	display: flex !important;
	gap: 10px !important;
	align-items: center !important;
}
.pc-coupon-input-form {
	flex: 1 !important;
	height: 46px !important;
	padding: 0 14px !important;
	font-size: 14px !important;
	border: 1px solid #d9d9d9 !important;
	border-radius: 5px !important;
	outline: none !important;
	transition: border-color 0.2s !important;
	color: #323232 !important;
	box-sizing: border-box !important;
	margin: 0 !important;
	vertical-align: middle !important;
}
.pc-coupon-input-form:focus {
	border-color: #323232 !important;
}
.pc-coupon-input-form::placeholder {
	color: #b5b5b5 !important;
}
.pc-coupon-apply-btn {
	flex-shrink: 0 !important;
	height: 46px !important;
	padding: 0 18px !important;
	background: #f0f0f0 !important;
	color: #555 !important;
	border: 1px solid #d9d9d9 !important;
	border-radius: 5px !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	cursor: pointer !important;
	transition: background 0.15s !important;
	box-sizing: border-box !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 !important;
}
.pc-coupon-apply-btn:hover {
	background: #e4e4e4 !important;
}

/* Coupon applied state */
.pc-coupon-applied {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	padding: 10px 14px !important;
	background: #e8f5e9 !important;
	border-radius: 5px !important;
	border: 1px solid #c8e6c9 !important;
	font-size: 13px !important;
}
.pc-coupon-applied + .pc-coupon-applied {
	margin-top: 8px !important;
}
.pc-coupon-applied-icon {
	color: #2e7d32 !important;
	font-weight: bold !important;
	font-size: 14px !important;
}
.pc-coupon-applied-code {
	flex: 1 !important;
	color: #2e7d32 !important;
	font-weight: 600 !important;
}
.pc-coupon-remove-btn {
	flex-shrink: 0 !important;
	width: 24px !important;
	height: 24px !important;
	padding: 0 !important;
	background: transparent !important;
	color: #666 !important;
	border: none !important;
	border-radius: 50% !important;
	font-size: 14px !important;
	cursor: pointer !important;
	line-height: 24px !important;
	text-align: center !important;
	transition: background 0.15s, color 0.15s !important;
}
.pc-coupon-remove-btn:hover {
	background: rgba(0,0,0,0.08) !important;
	color: #e22120 !important;
}

/* Coupon notices */
.pc-coupon-message {
	margin-top: 10px !important;
}
.pc-coupon-notice {
	padding: 10px 14px !important;
	border-radius: 5px !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	margin-bottom: 4px !important;
}
.pc-coupon-success {
	background: #e8f5e9 !important;
	color: #2e7d32 !important;
	border: 1px solid #c8e6c9 !important;
}
.pc-coupon-error {
	background: #fce4ec !important;
	color: #c62828 !important;
	border: 1px solid #f8bbd0 !important;
}

/* Totals */
.pc-order-totals {
	padding-top: 16px !important;
}
.pc-total-row {
	display: flex !important;
	justify-content: space-between !important;
	padding: 7px 0 !important;
	font-size: 14px !important;
	color: #555 !important;
}
.pc-total-row.pc-total-discount {
	color: #2e7d32 !important;
}
.pc-total-row.pc-total-grand {
	padding-top: 16px !important;
	margin-top: 8px !important;
	border-top: 2px solid #e0e0e0 !important;
	font-size: 20px !important;
	font-weight: 700 !important;
	color: #323232 !important;
}
.pc-total-currency-note {
	font-size: 11px !important;
	color: #aaa !important;
	margin-top: 4px !important;
}

/* Payment methods in sidebar */
.pc-checkout-sidebar .pc-payment-methods {
	text-align: center;
	margin: 18px 0 12px;
	padding-top: 14px;
	border-top: 1px solid #f0f0f0;
}
.pc-checkout-sidebar .pc-payment-methods-label {
	display: block;
	font-size: 10px;
	color: #bbb;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.pc-checkout-sidebar .pc-payment-icons {
	display: flex;
	justify-content: center;
	gap: 6px;
	flex-wrap: wrap;
}
.pc-checkout-sidebar .pc-payment-icon {
	width: 32px;
	height: 20px;
	border-radius: 2px;
	background: #f5f5f5;
	border: 1px solid #e8e8e8;
	transition: transform 0.2s;
}
.pc-checkout-sidebar .pc-trust-badges {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.pc-checkout-sidebar .pc-trust-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 11px;
	color: #999;
}

/* ===== MOBILE: Mobile order summary bar ===== */
.pc-mobile-order-bar {
	display: none !important;
}

/* ============================
   MOBILE STYLES (≤900px)
   ============================ */
@media only screen and (max-width: 900px) {
	.pc-custom-checkout-form {
		padding: 0 !important;
		background: #f5f5f5 !important;
	}

	.pc-checkout-wrapper {
		flex-direction: column !important;
		gap: 0 !important;
		padding: 0 !important;
	}

	/* Sidebar moves to top, hidden by default */
	.pc-checkout-sidebar {
		display: none !important;
		width: 100% !important;
		position: static !important;
		order: -1 !important;
	}
	.pc-checkout-sidebar.pc-sidebar-open {
		display: block !important;
	}
	.pc-checkout-sidebar .pc-order-summary {
		border-radius: 0 !important;
		border: none !important;
		border-bottom: 1px solid #e0e0e0 !important;
		box-shadow: none !important;
		padding: 16px !important;
		background: #fafafa !important;
	}

	/* Mobile order summary bar */
	.pc-mobile-order-bar {
		display: block !important;
		background: #fff !important;
		border-bottom: 1px solid #e0e0e0 !important;
		padding: 14px 16px !important;
		cursor: pointer !important;
		user-select: none !important;
		-webkit-tap-highlight-color: transparent !important;
		position: sticky !important;
		top: 0 !important;
		z-index: 99 !important;
	}
	.pc-mobile-order-bar-inner {
		display: flex !important;
		align-items: center !important;
		gap: 10px !important;
		font-size: 13px !important;
		color: #323232 !important;
		font-weight: 500 !important;
	}
	.pc-mobile-order-icon {
		font-size: 18px !important;
	}
	.pc-mobile-order-text {
		flex: 1 !important;
	}
	.pc-mobile-order-total {
		font-weight: 700 !important;
		color: #323232 !important;
		font-size: 15px !important;
	}
	.pc-mobile-order-arrow {
		font-size: 14px !important;
		transition: transform 0.2s !important;
	}

	/* Main form card on mobile */
	.pc-checkout-main {
		padding: 24px 16px 100px !important;
		border-radius: 0 !important;
		box-shadow: none !important;
		margin-top: 0 !important;
	}

	.pc-checkout-brand {
		padding-top: 8px !important;
	}

	/* Stack field rows */
	.pc-field-row {
		flex-direction: column !important;
		gap: 0 !important;
	}

	/* Step numbers smaller */
	.pc-section-step {
		width: 22px !important;
		height: 22px !important;
		font-size: 11px !important;
	}
	.pc-section-header h2 {
		font-size: 15px !important;
	}

	/* Sticky place order button on mobile */
	.pc-checkout-main #place_order {
		position: fixed !important;
		bottom: 0 !important;
		left: 0 !important;
		right: 0 !important;
		z-index: 200 !important;
		border-radius: 0 !important;
		height: 56px !important;
		font-size: 16px !important;
		margin: 0 !important;
		background: #2b2b2b !important;
	}

	/* Breadcrumb hide on mobile (space saving) */
	.pc-checkout-breadcrumb {
		display: none !important;
	}

	.pc-checkout-footer {
		flex-wrap: wrap !important;
		gap: 12px !important;
		padding-bottom: 10px !important;
	}

	/* Payment methods mobile */
	.pc-checkout-main .wc_payment_method {
		padding: 14px !important;
	}
}

/* ============================
   TABLET (901-1100px)
   ============================ */
@media only screen and (min-width: 901px) and (max-width: 1100px) {
	.pc-checkout-wrapper {
		gap: 28px !important;
	}
	.pc-checkout-main {
		padding: 36px 40px !important;
	}
	.pc-checkout-sidebar {
		width: 320px !important;
	}
}
