/**
 * Custom Cart — Shopify-style layout
 * Product Customizer v2.0
 */

/* ===== Global ===== */
.pc-custom-cart-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: 60vh;
	line-height: 1.5 !important;
	position: relative;
}

/* ===== Loading Overlay ===== */
.pc-cart-loading-overlay {
	display: none;
	position: absolute;
	inset: 0;
	background: rgba(245,245,245,0.75);
	z-index: 100;
	border-radius: 8px;
	cursor: wait;
}
.pc-cart-loading-spinner {
	position: sticky;
	top: 40vh;
	margin: 0 auto;
	width: 36px;
	height: 36px;
	border: 3px solid #e0e0e0;
	border-top-color: #2b2b2b;
	border-radius: 50%;
	animation: pc-spin 0.8s linear infinite;
}
@keyframes pc-spin {
	to { transform: rotate(360deg); }
}

/* ===== Skeleton Loading Animations ===== */
@keyframes pc-fade-in-up {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes pc-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes pc-slide-in {
	from { opacity: 0; transform: translateX(20px); }
	to { opacity: 1; transform: translateX(0); }
}
@keyframes pc-pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

.pc-cart-item {
	animation: pc-fade-in-up 0.4s ease both;
}
.pc-cart-item:nth-child(1) { animation-delay: 0.05s; }
.pc-cart-item:nth-child(2) { animation-delay: 0.1s; }
.pc-cart-item:nth-child(3) { animation-delay: 0.15s; }
.pc-cart-item:nth-child(4) { animation-delay: 0.2s; }
.pc-cart-item:nth-child(5) { animation-delay: 0.25s; }

/* ===== Buttons ===== */
.pc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 24px;
	height: 48px;
	line-height: 1;
	font-size: 14px;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease;
	border: 1px solid transparent;
	box-sizing: border-box;
	letter-spacing: 0.01em;
}
.pc-btn-primary {
	background: #2b2b2b !important;
	color: #fff !important;
	border-color: #2b2b2b !important;
}
.pc-btn-primary:hover {
	background: #1a1a1a !important;
	box-shadow: 0 4px 16px rgba(0,0,0,0.18);
	transform: translateY(-1px);
}
.pc-btn-primary:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.pc-btn-secondary {
	background: #f5f5f5 !important;
	color: #555 !important;
	border-color: #e0e0e0 !important;
}
.pc-btn-secondary:hover {
	background: #ebebeb !important;
	border-color: #ccc !important;
}
.pc-btn-block {
	display: flex !important;
	width: 100% !important;
	height: 56px !important;
	font-size: 16px !important;
	border-radius: 8px !important;
}
.pc-btn-lg {
	padding: 0 32px;
	height: 52px;
	font-size: 15px;
}

/* Checkout button with arrow */
.pc-checkout-btn {
	position: relative;
	overflow: hidden;
}
.pc-checkout-btn-icon {
	margin-left: 4px;
	transition: transform 0.2s ease;
}
.pc-checkout-btn:hover .pc-checkout-btn-icon {
	transform: translateX(3px);
}

/* ===== Empty Cart ===== */
.pc-cart-empty {
	text-align: center;
	padding: 80px 24px 48px;
	background: #fff;
	border-radius: 8px;
	margin: 0 auto;
	max-width: 640px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.pc-cart-empty-icon {
	margin-bottom: 20px;
	opacity: 0.5;
}
.pc-cart-empty h2 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #323232;
	letter-spacing: -0.01em;
}
.pc-cart-empty p {
	font-size: 15px;
	color: #999;
	margin-bottom: 28px;
}
.pc-cart-empty .pc-btn {
	margin-bottom: 40px;
}

/* Recommended products in empty cart */
.pc-cart-recommended {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid #e0e0e0;
	text-align: left;
}
.pc-cart-recommended h3 {
	font-size: 16px;
	font-weight: 600;
	color: #555;
	margin-bottom: 16px;
}
.pc-recommended-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.pc-recommended-item a {
	text-decoration: none;
	color: inherit;
	display: block;
}
.pc-recommended-thumb {
	border-radius: 8px;
	overflow: hidden;
	background: #f5f5f5;
	aspect-ratio: 1;
	margin-bottom: 8px;
	transition: transform 0.2s ease;
}
.pc-recommended-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pc-recommended-item a:hover .pc-recommended-thumb {
	transform: scale(1.03);
}
.pc-recommended-name {
	font-size: 13px;
	font-weight: 500;
	color: #555;
	margin-bottom: 4px;
	line-height: 1.3;
}
.pc-recommended-price {
	font-size: 13px;
	font-weight: 600;
	color: #323232;
}

/* Cross-sells on non-empty cart */
.pc-cart-recommended-section {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 40px;
	padding: 0;
}
.pc-cart-recommended-title {
	font-size: 16px;
	font-weight: 600;
	color: #323232;
	margin-bottom: 16px;
}

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

/* ===== LEFT COLUMN ===== */
.pc-cart-main {
	flex: 1 !important;
	min-width: 0 !important;
}
.pc-cart-title {
	font-size: 24px !important;
	font-weight: 700 !important;
	margin: 0 0 24px !important;
	letter-spacing: -0.01em !important;
}

/* ===== Free Shipping Bar ===== */
.pc-shipping-bar {
	background: #fff;
	border-radius: 8px;
	padding: 18px 24px;
	margin-bottom: 24px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.04);
	border: 1px solid #e0e0e0;
	transition: all 0.3s ease;
}
.pc-shipping-bar--achieved {
	border-color: #c8e6c9;
	background: linear-gradient(135deg, #f1f8e9 0%, #fff 100%);
}
.pc-shipping-bar-text {
	font-size: 13px !important;
	color: #666 !important;
	margin: 0 0 12px !important;
	display: flex;
	align-items: center;
	gap: 8px;
}
.pc-shipping-bar--achieved .pc-shipping-bar-text {
	color: #2e7d32 !important;
}
.pc-shipping-icon {
	flex-shrink: 0;
	color: #999;
}
.pc-shipping-icon--check {
	color: #2e7d32;
}
.pc-shipping-bar-track {
	height: 8px;
	background: #e0e0e0;
	border-radius: 4px;
	overflow: hidden;
}
.pc-shipping-bar-fill {
	height: 100%;
	background: linear-gradient(90deg, #2b2b2b, #444);
	border-radius: 4px;
	transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.pc-shipping-bar--achieved .pc-shipping-bar-fill {
	background: linear-gradient(90deg, #43a047, #66bb6a);
}

/* ===== Product List ===== */
.pc-cart-products {
	background: #fff !important;
	border-radius: 8px !important;
	box-shadow: 0 1px 4px rgba(0,0,0,0.04) !important;
	border: 1px solid #e0e0e0 !important;
	overflow: hidden;
	margin-bottom: 24px;
}

.pc-cart-item {
	display: grid !important;
	grid-template-columns: 140px 1fr auto !important;
	gap: 24px !important;
	padding: 24px !important;
	border-bottom: 1px solid #e0e0e0 !important;
	position: relative;
	transition: background 0.2s ease;
	align-items: start;
}
.pc-cart-item:hover {
	background: #fafafa;
}
.pc-cart-item:last-child {
	border-bottom: none !important;
}

/* Thumbnail */
.pc-cart-item-thumb {
	flex-shrink: 0;
	width: 140px;
	height: 140px;
	border-radius: 8px;
	overflow: hidden;
	background: #f7f7f7;
	border: 1px solid #e0e0e0;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pc-cart-item-thumb:hover {
	transform: scale(1.03);
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.pc-cart-item-thumb a {
	display: block;
	width: 100%;
	height: 100%;
}
.pc-cart-item-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Body */
.pc-cart-item-body {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.pc-cart-item-name {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 2px;
}
.pc-cart-item-name a {
	color: #2b2b2b;
	text-decoration: none;
	transition: color 0.15s;
}
.pc-cart-item-name a:hover {
	color: #555;
}

.pc-cart-item-meta {
	font-size: 12px;
	color: #999;
	margin-bottom: 6px;
}
.pc-cart-item-meta dl { margin: 0; }
.pc-cart-item-meta dt,
.pc-cart-item-meta dd { display: inline; margin: 0; padding: 0; }
.pc-cart-item-meta dd p { display: inline; margin: 0; }

/* Hide WooCommerce variation : colon for our custom data */
.pc-cart-item .variation dt[class="variation-"] {
	display: none !important;
}
.pc-cart-item .variation dd[class="variation-"] {
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
}
.pc-cart-item .variation:has(dt[class="variation-"]) {
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
}

.pc-cart-item-price {
	font-size: 13px;
	color: #999;
	margin-bottom: 14px;
}
.pc-cart-item-price-label {
	color: #999;
	margin-right: 2px;
}
.pc-cart-item-backorder {
	font-size: 12px;
	color: #e67e22;
	background: #fef3e8;
	padding: 4px 10px;
	border-radius: 4px;
	display: inline-block;
	margin: 4px 0 10px;
}

.pc-cart-item-stock-warning {
	font-size: 12px;
	color: #c62828;
	background: #fef0f0;
	padding: 4px 10px;
	border-radius: 4px;
	display: inline-block;
	margin: 4px 0 10px;
}

/* Actions row */
.pc-cart-item-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

/* ---- Quantity +/- ---- */
.pc-qty {
	display: inline-flex;
	align-items: center;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	height: 38px;
	background: #fff;
	overflow: hidden;
}
.pc-qty:focus-within {
	border-color: #2b2b2b;
	box-shadow: 0 0 0 3px rgba(43,43,43,0.08);
}
.pc-qty-btn {
	width: 38px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fafafa;
	border: none;
	border-right: 1px solid #e0e0e0;
	color: #555;
	font-size: 18px;
	font-weight: 400;
	cursor: pointer;
	padding: 0;
	line-height: 1;
	transition: background 0.15s, color 0.15s;
	user-select: none;
	flex-shrink: 0;
}
.pc-qty-btn:last-child {
	border-right: none;
	border-left: 1px solid #e0e0e0;
}
.pc-qty-btn:hover {
	background: #f0f0f0;
	color: #2b2b2b;
}
.pc-qty-btn:active {
	background: #e8e8e8;
}
.pc-qty-input {
	width: 60px !important;
	height: 100% !important;
	text-align: center !important;
	border: none !important;
	border-radius: 0 !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	color: #323232 !important;
	padding: 0 !important;
	background: #fff !important;
	outline: none !important;
	box-shadow: none !important;
	-moz-appearance: textfield !important;
	flex-shrink: 0 !important;
	min-width: 0 !important;
	margin: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
}
.pc-qty-input::-webkit-outer-spin-button,
.pc-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.pc-qty-changing {
	animation: pc-pulse 0.3s ease;
}

/* Remove */
.pc-cart-item-remove {
	color: #999;
	text-decoration: none;
	padding: 6px;
	border-radius: 6px;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
}
.pc-cart-item-remove:hover {
	color: #e22120;
	background: #fef0f0;
}

/* Line total */
.pc-cart-item-total {
	flex-shrink: 0;
	font-size: 16px;
	font-weight: 600;
	min-width: 90px;
	text-align: right;
	color: #323232;
	transition: color 0.15s, transform 0.15s;
}
.pc-total-updating {
	animation: pc-total-flash 0.35s ease;
}
@keyframes pc-total-flash {
	0% { transform: scale(1); }
	50% { transform: scale(1.12); color: #2b2b2b; }
	100% { transform: scale(1); }
}

/* ===== Collapsible Sections ===== */
.pc-cart-section {
	margin-bottom: 12px;
}

/* Shipping methods table normalization */
.pc-shipping-table,
.pc-shipping-table tbody,
#pc-shipping-total-value table,
#pc-shipping-total-value tbody {
	width: 100%;
}
.pc-shipping-table tr,
#pc-shipping-total-value tr {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 4px 0;
}
.pc-shipping-table th,
#pc-shipping-total-value th {
	font-weight: 500;
	font-size: 14px;
	color: #666;
}
.pc-shipping-table td,
#pc-shipping-total-value td {
	font-size: 14px;
	color: #323232;
	text-align: right;
}
.pc-cart-section-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	background: none;
	border: none;
	padding: 10px 0;
	font-size: 14px;
	color: #666;
	cursor: pointer;
	font-weight: 500;
	transition: color 0.2s;
	user-select: none;
}
.pc-cart-section-toggle:hover {
	color: #323232;
}
.pc-cart-section-toggle-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1.5px solid #e0e0e0;
	transition: all 0.2s ease;
	color: #999;
}
.pc-cart-section-toggle:hover .pc-cart-section-toggle-icon {
	border-color: #999;
	color: #555;
}
.pc-cart-section-toggle.pc-section-open .pc-cart-section-toggle-icon {
	border-color: #2b2b2b;
	color: #2b2b2b;
}
.pc-cart-section-body {
	padding-top: 12px;
}
.pc-cart-notes-input {
	width: 100%;
	padding: 14px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-size: 14px;
	resize: vertical;
	box-sizing: border-box;
	outline: none;
	font-family: inherit;
	transition: border-color 0.2s, box-shadow 0.2s;
	background: #fafafa;
}
.pc-cart-notes-input:focus {
	border-color: #2b2b2b;
	box-shadow: 0 0 0 3px rgba(43,43,43,0.08);
	background: #fff;
}
.pc-cart-notes-input::placeholder { color: #aaa; }

/* Coupon row */
.pc-coupon-row {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 6px 0 2px;
}
.pc-coupon-input {
	flex: 1;
	height: 46px;
	padding: 0 16px;
	font-size: 14px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	outline: none;
	color: #323232;
	box-sizing: border-box;
	margin: 0;
	transition: border-color 0.2s, box-shadow 0.2s;
	background: #fff;
}
.pc-coupon-input:focus {
	border-color: #2b2b2b;
	box-shadow: 0 0 0 3px rgba(43,43,43,0.08);
}
.pc-coupon-input::placeholder { color: #aaa; }
.pc-coupon-row .pc-btn {
	height: 46px;
	padding: 0 20px;
	font-size: 13px;
	font-weight: 600;
	border-radius: 6px;
	background: #2b2b2b !important;
	color: #fff !important;
	border-color: #2b2b2b !important;
	flex-shrink: 0;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.pc-coupon-row .pc-btn:hover {
	background: #1a1a1a !important;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.pc-coupon-row .pc-btn:active {
	transform: scale(0.98);
}

/* ===== RIGHT COLUMN ===== */
.pc-cart-sidebar {
	width: 320px;
	flex-shrink: 0;
	position: sticky;
	top: 32px;
}
.pc-cart-summary {
	background: #fff;
	border-radius: 8px;
	padding: 28px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.04);
	border: 1px solid #e0e0e0;
}
.pc-cart-totals {
	margin-bottom: 24px;
}

.pc-total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 9px 0;
	font-size: 14px;
	color: #666;
}
.pc-total-row.pc-total-discount {
	color: #2e7d32;
	font-weight: 500;
}
.pc-total-row.pc-total-discount .pc-total-label {
	display: flex;
	align-items: center;
	gap: 6px;
}
.pc-total-amount {
	font-weight: 600;
	color: #555;
}
.pc-total-row.pc-total-discount .pc-total-amount {
	color: #2e7d32;
}
.pc-total-row.pc-total-grand {
	padding-top: 18px;
	margin-top: 10px;
	border-top: 2px solid #e0e0e0;
	font-size: 22px;
	font-weight: 700;
	color: #2b2b2b;
}
.pc-total-row.pc-total-grand .pc-total-amount {
	font-size: 22px;
	color: #2b2b2b;
}

.pc-shipping-estimate {
	font-size: 13px;
	font-weight: 400;
	color: #999;
}
.pc-free-shipping-tag {
	background: #e8f5e9;
	color: #2e7d32;
	padding: 2px 10px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
}

.pc-total-tax-note {
	font-size: 11px;
	color: #999;
	margin-top: 6px;
	text-align: right;
}

/* Payment methods */
.pc-payment-methods {
	text-align: center;
	margin: 20px 0 16px;
}
.pc-payment-methods-label {
	display: block;
	font-size: 11px;
	color: #999;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.pc-payment-icons {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}
.pc-payment-icon {
	width: 38px;
	height: 24px;
	border-radius: 3px;
	background: #f5f5f5;
	border: 1px solid #e0e0e0;
	transition: transform 0.2s;
}
.pc-payment-icon:hover {
	transform: translateY(-1px);
}

/* Trust badges */
.pc-trust-badges {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 4px;
}
.pc-trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: #999;
	justify-content: center;
}
.pc-trust-item svg {
	flex-shrink: 0;
}

/* ===== Footer ===== */
.pc-cart-footer {
	text-align: center;
	padding: 20px 24px 40px;
	font-size: 13px;
	max-width: 1200px;
	margin: 0 auto;
}
.pc-continue-shopping-link {
	color: #666;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: color 0.2s, gap 0.2s;
	font-weight: 500;
}
.pc-continue-shopping-link:hover {
	color: #323232;
	gap: 10px;
}

/* ===== Notices ===== */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
	max-width: 1200px;
	margin: 0 auto 20px !important;
	border-radius: 8px !important;
	font-size: 13px !important;
	border: none !important;
}
.woocommerce-message {
	background: #e8f5e9 !important;
	color: #2e7d32 !important;
	border-left: 4px solid #4caf50 !important;
}
.woocommerce-error {
	background: #fef0f0 !important;
	color: #c62828 !important;
	border-left: 4px solid #e53935 !important;
}
.woocommerce-info {
	background: #e3f2fd !important;
	color: #1565c0 !important;
	border-left: 4px solid #1e88e5 !important;
}

/* ===== MOBILE ≤900px ===== */
@media only screen and (max-width: 900px) {
	.pc-custom-cart-form {
		padding: 0 !important;
		background: #f8f8f8 !important;
	}
	.pc-cart-wrapper {
		flex-direction: column;
		gap: 16px;
		padding: 12px 0 32px;
	}
	.pc-cart-sidebar {
		width: 100%;
		position: static;
		order: -1;
	}
	.pc-cart-summary {
		border-radius: 0;
		box-shadow: none;
		border: none;
		border-bottom: 1px solid #e0e0e0;
		padding: 18px 16px;
	}
	.pc-total-row.pc-total-grand {
		font-size: 18px;
		padding-top: 14px;
	}
	.pc-total-row.pc-total-grand .pc-total-amount {
		font-size: 18px;
	}
	.pc-cart-title {
		padding: 0 16px;
		font-size: 20px !important;
		margin-bottom: 16px !important;
	}
	.pc-shipping-bar {
		border-radius: 0;
		margin-left: 0;
		margin-right: 0;
		padding: 14px 16px;
		border: none;
		border-bottom: 1px solid #e0e0e0;
	}
	.pc-cart-products {
		border-radius: 0 !important;
		box-shadow: none !important;
		border: none !important;
		border-top: 1px solid #e0e0e0 !important;
		border-bottom: 1px solid #e0e0e0 !important;
	}
	.pc-cart-item {
		display: flex !important;
		flex-wrap: wrap;
		padding: 16px !important;
		gap: 14px !important;
	}
	.pc-cart-item-thumb {
		width: 100px;
		height: 100px;
		border-radius: 8px;
	}
	.pc-cart-item-body {
		flex: 1;
		min-width: 0;
	}
	.pc-cart-item-total {
		width: 100%;
		text-align: right;
		padding-top: 0;
		margin-top: -8px;
		font-size: 15px;
	}
	.pc-cart-item-name {
		font-size: 14px;
	}
	.pc-btn-block {
		height: 50px !important;
		font-size: 15px !important;
	}
	.pc-cart-section {
		padding: 0 16px;
		margin-bottom: 8px;
	}
	.pc-cart-footer {
		padding: 16px 16px 32px;
	}
	.pc-cart-recommended-section {
		padding: 0 16px;
		margin-bottom: 32px;
	}
	.pc-recommended-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}

/* ===== MEDIUM MOBILE ≤600px ===== */
@media only screen and (max-width: 600px) {
	.pc-cart-item {
		flex-wrap: wrap;
		padding: 16px !important;
	}
	.pc-cart-item-thumb {
		width: 80px;
		height: 80px;
		border-radius: 6px;
	}
	.pc-cart-item-body {
		flex: 1;
		min-width: 0;
	}
	.pc-cart-item-total {
		width: 100%;
		text-align: right;
		padding-top: 0;
		margin-top: -8px;
		font-size: 14px;
	}
	.pc-cart-item-price {
		margin-bottom: 10px;
	}
	.pc-qty {
		border-radius: 6px;
		height: 34px;
		background: #fff;
	}
	.pc-qty-btn {
		width: 34px;
		height: 100%;
		font-size: 16px;
		background: #fafafa;
		border-right: 1px solid #e0e0e0;
	}
	.pc-qty-btn:last-child {
		border-right: none;
		border-left: 1px solid #e0e0e0;
	}
	.pc-qty-input {
		width: 54px !important;
		height: 100% !important;
		font-size: 14px !important;
		background: #fff !important;
	}
}

/* ===== SMALL MOBILE ≤480px ===== */
@media only screen and (max-width: 480px) {
	.pc-cart-item {
		padding: 14px 12px !important;
	}
	.pc-cart-item-thumb {
		width: 70px;
		height: 70px;
		border-radius: 5px;
	}
	.pc-cart-item-name {
		font-size: 13px;
	}
	.pc-cart-item-total {
		font-size: 13px;
	}
	.pc-qty {
		height: 32px;
	}
	.pc-qty-btn {
		width: 32px;
		font-size: 15px;
	}
	.pc-qty-input {
		width: 50px !important;
		font-size: 13px !important;
	}
	.pc-cart-empty {
		padding: 60px 16px 32px;
	}
	.pc-recommended-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}
