/* ==========================================================================
   Kusanco Custom Checkout - CSS riêng hoàn toàn
   ========================================================================== */

/* ---------- Layout 2 cột ---------- */
.ksc-checkout-page {
	max-width: 1200px;
	margin: 30px auto;
	padding: 0;
	box-sizing: border-box;
	font-family: inherit;
}

.ksc-checkout-layout {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

.ksc-checkout-col {
	box-sizing: border-box;
}

.ksc-checkout-col--form {
	flex: 1 1 0;
	min-width: 0;
	order: 1;
}

.ksc-checkout-col--summary {
	width: 420px;
	flex-shrink: 0;
	order: 2;
}

.ksc-order-summary-wrap {
	background: #fff;
	border: 1px solid #f0eadf;
	border-radius: 16px;
	padding: 30px;
	position: sticky;
	top: 24px;
}

/* ---------- Cột Form ---------- */
.ksc-checkout-section {
	background: #fff;
	border: 1px solid #f0eadf;
	border-radius: 16px;
	padding: 30px;
	margin-bottom: 24px;
}

.ksc-checkout-section-title {
	font-size: 16px;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 24px 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.ksc-checkout-section-icon {
	width: 22px;
	height: 22px;
	color: #d10d01;
	flex-shrink: 0;
}

.ksc-checkout-section-icon svg {
	width: 100%;
	height: 100%;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* ---------- Form fields ---------- */
.ksc-checkout-row {
	display: flex;
	gap: 15px;
}

.ksc-checkout-row .ksc-checkout-field {
	flex: 1;
}

.ksc-checkout-form-group {
	margin-bottom: 16px;
}

.ksc-checkout-form-group:last-child {
	margin-bottom: 0;
}

.ksc-checkout-field {
	display: flex;
	flex-direction: column;
}

.ksc-checkout-field label {
	font-size: 13px;
	font-weight: 500;
	color: #555;
	margin-bottom: 7px;
}

.ksc-required {
	color: #d10d01;
}

.ksc-optional {
	font-weight: 400;
	color: #999;
	font-size: 12px;
}

.ksc-checkout-field input,
.ksc-checkout-field textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 15px;
	border: 1px solid #e5e7eb;
	border-radius: 9px;
	font-size: 14px;
	font-family: inherit;
	color: #1a1a1a;
	background: #fafafa;
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
	outline: none;
}

.ksc-checkout-field input:focus,
.ksc-checkout-field textarea:focus {
	border-color: #d10d01;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(218, 37, 29, 0.1);
}

.ksc-checkout-field textarea {
	resize: vertical;
}

.ksc-field-error {
	font-size: 12px;
	color: #d10d01;
	margin-top: 5px;
	min-height: 16px;
}

/* ---------- Payment methods ---------- */
.ksc-payment-methods {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ksc-payment-option {
	display: flex;
	flex-direction: column;
	border: 1.5px solid #e5e7eb;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	transition: border-color 0.2s;
}

.ksc-payment-option.active {
	border-color: #d10d01;
}

.ksc-payment-option-header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
}

.ksc-payment-option input[type="radio"] {
	accent-color: #d10d01;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	cursor: pointer;
}

.ksc-payment-label {
	font-size: 14px;
	font-weight: 500;
	flex: 1;
}

.ksc-payment-icon img {
	height: 24px;
	width: auto;
}

.ksc-payment-description {
	display: none;
	padding: 0 16px 14px 42px;
	font-size: 13px;
	color: #666;
	line-height: 1.5;
}

.ksc-payment-description.show {
	display: block;
}

/* ---------- Order Summary items ---------- */
.ksc-order-summary-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.ksc-order-summary-header .ksc-checkout-section-title {
	margin-bottom: 0;
}

.ksc-edit-cart {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	color: #888;
	text-decoration: none;
	transition: color 0.2s;
}

.ksc-edit-cart:hover {
	color: #d10d01;
}

.ksc-edit-cart svg {
	width: 14px;
	height: 14px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ksc-order-items {
	max-height: 380px;
	overflow-y: auto;
	margin-bottom: 24px;
	padding-right: 8px;
}

/* Custom Scrollbar for Order Items */
.ksc-order-items::-webkit-scrollbar {
	width: 4px;
}
.ksc-order-items::-webkit-scrollbar-track {
	background: #f5f5f5;
	border-radius: 4px;
}
.ksc-order-items::-webkit-scrollbar-thumb {
	background: #d10d01;
	border-radius: 4px;
}
.ksc-order-items::-webkit-scrollbar-thumb:hover {
	background: #b91d17;
}

.ksc-order-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
}

.ksc-order-item + .ksc-order-item {
	border-top: 1px solid #f7f7f7;
}

.ksc-order-item-img {
	width: 100px;
	height: 100px;
	flex-shrink: 0;
	border: 1px solid #eaeaea;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
}

.ksc-order-item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ksc-order-item-qty {
	position: absolute;
	top: -6px;
	right: -6px;
	background: #1a1a1a;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ksc-order-item-details {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ksc-order-item-meta {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ksc-order-item-unit-price {
	font-size: 12px;
	color: #999;
}

.ksc-order-item-name {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	text-decoration: none;
	line-height: 1.4;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.product-quantity {
	color: #666;
	font-weight: 500;
	font-size: 13px;
	margin-left: 4px;
}

.ksc-item-remove {
	width: 28px;
	height: 28px;
	border: none;
	border-radius: 6px;
	background: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: background 0.2s;
}

.ksc-item-remove:hover {
	background: rgba(218, 37, 29, 0.08);
}

.ksc-item-remove svg {
	width: 15px;
	height: 15px;
	stroke: #aaa;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: stroke 0.2s;
}

.ksc-item-remove:hover svg {
	stroke: #d10d01;
}

/* Removing animation */
.ksc-order-item.removing {
	opacity: 0.4;
	pointer-events: none;
	transition: opacity 0.3s;
}

.ksc-order-item-price {
	font-size: 13px;
	font-weight: 600;
	color: #d10d01;
	white-space: nowrap;
	margin-top: 2px;
}

.ksc-order-item-right {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* ---------- Tổng tiền ---------- */
.ksc-order-totals {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
}

.ksc-order-total-row {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	color: #555;
}

.ksc-order-total-final {
	border-top: 1.5px solid #ebebeb;
	padding-top: 12px;
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
}

.ksc-total-amount,
.ksc-order-total-final span:last-child {
	color: #d10d01;
}

/* ---------- Nút ---------- */
.ksc-checkout-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #d10d01;
	color: #fff;
	border: none;
	padding: 14px 28px;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.25s, transform 0.1s;
	font-family: inherit;
}

.ksc-checkout-btn:hover {
	background: #b51c15;
	color: #fff;
}

.ksc-checkout-btn:active {
	transform: scale(0.98);
}

.ksc-checkout-btn--full {
	width: 100%;
}

.ksc-checkout-btn--outline {
	background: transparent;
	border: 2px solid #d10d01;
	color: #d10d01;
}

.ksc-checkout-btn--outline:hover {
	background: #fdf2f2;
	color: #d10d01;
}

/* ==========================================================================
   Kusanco Custom Cart - Bổ sung cho Giỏ Hàng
   ========================================================================== */
.ksc-cart-item {
	display: flex;
	align-items: center;
	padding: 15px 0;
	border-bottom: 1px solid #f1f1f1;
	gap: 15px;
}
.ksc-cart-item:last-child {
	border-bottom: none;
}
.ksc-cart-item-details {
	flex: 1;
}
.ksc-cart-item-price-unit {
	font-size: 14px;
	color: #666;
	margin-top: 5px;
}
.ksc-cart-item-qty {
	width: 120px;
	flex-shrink: 0;
}
.ksc-cart-item-subtotal {
	width: 100px;
	text-align: right;
	font-size: 16px;
	color: #d10d01;
	flex-shrink: 0;
}
.ksc-cart-item-remove-col {
	width: 32px;
	flex-shrink: 0;
	text-align: right;
}
.ksc-cart-quantity {
	display: flex;
	align-items: center;
	border: 1px solid #ddd;
	border-radius: 30px;
	overflow: hidden;
	height: 36px;
	width: 100px;
}
.ksc-cart-quantity .ksc-qty-btn {
	background: none;
	border: none;
	width: 30px;
	height: 100%;
	font-size: 18px;
	cursor: pointer;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ksc-cart-quantity .ksc-qty-btn:hover {
	background: #f5f5f5;
}
.ksc-cart-quantity .ksc-qty-input {
	width: 40px;
	height: 100%;
	border: none;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	-moz-appearance: textfield;
	padding: 0;
}
.ksc-cart-quantity .ksc-qty-input::-webkit-outer-spin-button,
.ksc-cart-quantity .ksc-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
@media (max-width: 768px) {
	.ksc-cart-item {
		display: grid !important;
		grid-template-columns: 100px 1fr auto;
		grid-template-rows: auto auto auto;
		gap: 10px 15px;
		align-items: start;
		padding-bottom: 15px;
	}
	.ksc-cart-item .ksc-order-item-img {
		grid-column: 1 / 2;
		grid-row: 1 / 3;
	}
	.ksc-cart-item .ksc-order-item-details {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
	}
	.ksc-cart-item .ksc-cart-item-remove-col {
		grid-column: 3 / 4;
		grid-row: 1 / 2;
		margin-top: 0;
	}
	.ksc-cart-item .ksc-cart-item-qty {
		grid-column: 2 / 4;
		grid-row: 2 / 3;
		margin-top: 5px;
	}
	.ksc-cart-item .ksc-cart-item-subtotal {
		grid-column: 2 / 4;
		grid-row: 3 / 4;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		padding-top: 5px;
		border-top: none;
		margin-top: 0;
		text-align: left;
		gap: 8px;
	}
	.ksc-cart-item .ksc-cart-item-subtotal div {
		margin-bottom: 0 !important;
	}
}

/* ==========================================================================
   Kusanco Custom Cart UI Additions (từ thiết kế mới)
   ========================================================================== */
.ksc-cart-header-box {
	background: #fff;
	border: 1px solid #f0eadf;
	border-radius: 16px;
	padding: 30px;
	margin-bottom: 24px;
}

.ksc-cart-badge {
	display: inline-block;
	background: #fff7f7;
	color: #d10e02;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 30px;
	margin-bottom: 15px;
	letter-spacing: 0.5px;
}

.ksc-cart-title {
	font-size: 36px;
	font-weight: 800;
	color: #111;
	margin: 0 0 8px 0;
}

.ksc-cart-subtitle {
	font-size: 14px;
	color: #666;
	margin: 0;
}

.ksc-cart-box {
	background: #fff;
	border: 1px solid #f0eadf !important; /* Thay viền đứt màu đỏ */
	border-radius: 16px;
	padding: 30px;
}

.ksc-cart-box-title {
	font-size: 24px;
	font-weight: 800;
	color: #111;
	margin: 0 0 6px 0;
}

.ksc-cart-box-subtitle {
	font-size: 13px;
	color: #777;
	margin: 0 0 20px 0;
}

.ksc-cart-continue {
	margin-top: 24px;
}

.ksc-cart-continue-btn {
	display: inline-block;
	padding: 10px 24px;
	border: 1px solid #ddd;
	border-radius: 30px;
	color: #333;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	background: #fff;
	transition: all 0.2s;
}

.ksc-cart-continue-btn:hover {
	background: #f5f5f5;
	color: #111;
}

.ksc-cart-item-remove-text {
	background: none;
	border: none;
	color: #d10d01;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	padding: 0;
}

.ksc-cart-item-remove-text:hover {
	text-decoration: underline;
}

.ksc-cart-totals .ksc-order-total-row {
	padding: 12px 0;
	border-bottom: 1px solid #f5f5f5;
	font-size: 14px;
	color: #333;
}

.ksc-cart-totals .ksc-order-total-row:last-child {
	border-bottom: none;
}

.ksc-cart-note {
	margin-top: 20px;
}

.ksc-cart-note label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #111;
	margin-bottom: 8px;
}

.ksc-cart-note textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 14px;
	resize: vertical;
	box-sizing: border-box;
	font-family: inherit;
}

.ksc-cart-note textarea:focus {
	border-color: #1b5b40;
	outline: none;
}

/* Ghi đè nền của page ksc-cart-page */
.ksc-cart-page {
	background: transparent;
}

.ksc-checkout-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
}

/* ---------- Spinner ---------- */
.ksc-spinner {
	width: 18px;
	height: 18px;
	animation: ksc-spin 0.8s linear infinite;
}

.ksc-spinner circle {
	stroke: #fff;
	stroke-dasharray: 50;
	stroke-dashoffset: 15;
}

@keyframes ksc-spin {
	to { transform: rotate(360deg); }
}

/* ---------- Terms & Message ---------- */
.ksc-checkout-terms {
	text-align: center;
	font-size: 12px;
	color: #999;
	margin-top: 14px;
	margin-bottom: 0;
}

.ksc-checkout-terms a {
	color: #d10d01;
}

.ksc-order-message {
	margin-top: 16px;
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
	text-align: center;
}

.ksc-order-message.success {
	background: #f0fdf4;
	color: #166534;
	border: 1px solid #bbf7d0;
}

.ksc-order-message.error {
	background: #fff1f0;
	color: #d10d01;
	border: 1px solid #fecaca;
}

/* ---------- Empty cart ---------- */
.ksc-checkout-empty {
	text-align: center;
	padding: 60px 20px;
	color: #888;
}

.ksc-checkout-empty svg {
	width: 64px;
	height: 64px;
	stroke: #ddd;
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	margin-bottom: 16px;
}

.ksc-checkout-empty p {
	font-size: 16px;
	margin-bottom: 20px;
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.ksc-thankyou-page {
	max-width: 720px;
	margin: 40px auto;
	padding: 0 20px;
}

.ksc-thankyou-card {
	background: #fff;
	border: 1px solid #ebebeb;
	border-radius: 16px;
	padding: 40px;
	text-align: center;
}

.ksc-thankyou-success-header {
	margin-bottom: 32px;
}

.ksc-thankyou-check-icon {
	width: 80px;
	height: 80px;
	background: rgba(218, 37, 29, 0.08);
	color: #d10d01;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.ksc-thankyou-check-icon svg {
	width: 36px;
	height: 36px;
}

.ksc-thankyou-check-icon--error {
	background: rgba(218, 37, 29, 0.08);
	color: #d10d01;
}

.ksc-thankyou-success-header h2 {
	font-size: 26px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 10px;
}

.ksc-thankyou-subtitle {
	color: #666;
	font-size: 15px;
	margin: 0;
}

/* Meta */
.ksc-thankyou-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1px;
	background: #f0f0f0;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 28px;
}

.ksc-thankyou-meta-item {
	flex: 1 1 22%;
	background: #fff;
	padding: 16px 12px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.ksc-meta-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #999;
}

.ksc-meta-value {
	font-size: 15px;
	font-weight: 600;
	color: #1a1a1a;
}

.ksc-meta-total {
	color: #d10d01;
}

/* Contact */
.ksc-thankyou-contact {
	text-align: left;
	background: #fafafa;
	border-radius: 10px;
	padding: 16px 20px;
	margin-bottom: 20px;
}

.ksc-thankyou-contact h4 {
	margin: 0 0 10px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #999;
}

.ksc-thankyou-contact-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	font-size: 14px;
	color: #333;
	font-weight: 500;
}

/* Items */
.ksc-thankyou-items {
	text-align: left;
	margin-bottom: 20px;
}

.ksc-thankyou-items h4 {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #999;
	margin: 0 0 12px;
}

.ksc-thankyou-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 10px 0;
	border-bottom: 1px solid #f5f5f5;
}

.ksc-thankyou-item:last-child {
	border-bottom: none;
}

.ksc-thankyou-item-img img {
	width: 52px;
	height: 52px;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid #f0f0f0;
	display: block;
}

.ksc-thankyou-item-info {
	flex: 1;
	min-width: 0;
}

.ksc-thankyou-item-name {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #333;
}

.ksc-thankyou-item-qty {
	font-size: 12px;
	color: #999;
}

.ksc-thankyou-item-total {
	font-size: 14px;
	font-weight: 600;
	color: #d10d01;
	white-space: nowrap;
}

/* Totals */
.ksc-thankyou-totals {
	background: #fafafa;
	border-radius: 10px;
	padding: 16px 20px;
	margin-bottom: 28px;
	text-align: left;
}

.ksc-thankyou-total-row {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	color: #555;
	padding: 6px 0;
}

.ksc-thankyou-grand-total {
	border-top: 1.5px solid #ebebeb;
	margin-top: 6px;
	padding-top: 12px;
	font-size: 17px;
	font-weight: 700;
	color: #1a1a1a;
}

.ksc-thankyou-grand-total span:last-child {
	color: #d10d01;
}

/* Actions */
.ksc-thankyou-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
	.ksc-checkout-layout {
		flex-direction: column;
		gap: 24px;
	}
	
	.ksc-checkout-col--summary {
		width: 100%;
		order: 2;
	}

	.ksc-checkout-col--form {
		order: 1;
	}
	
	.ksc-checkout-section {
		margin-bottom: 16px;
	}
	
	.ksc-order-summary-wrap {
		position: static;
	}
	
	.ksc-checkout-row {
		flex-direction: column;
		gap: 0;
	}
	
	.ksc-thankyou-meta-item {
		flex: 1 1 45%;
	}
	
	.ksc-thankyou-actions {
		flex-direction: column;
	}
	
	.ksc-checkout-btn,
	.ksc-cart-continue-btn {
		width: 100%;
		box-sizing: border-box;
		text-align: center;
		display: block;
	}
}

@media (max-width: 480px) {
	.ksc-checkout-section,
	.ksc-order-summary-wrap,
	.ksc-thankyou-card {
		padding: 20px;
	}
}

/* ---------- Region Dropdown ---------- */
.ksc-region-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin-top: 5px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 9px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	z-index: 100;
	overflow: hidden;
}

.ksc-region-tabs {
	display: flex;
	border-bottom: 1px solid #e5e7eb;
	background: #fafafa;
}

.ksc-region-tab {
	flex: 1;
	text-align: center;
	padding: 12px 10px;
	font-size: 13px;
	font-weight: 500;
	color: #888;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	transition: all 0.2s;
}

.ksc-region-tab.active {
	color: #1a1a1a;
	border-bottom-color: #1a1a1a;
	background: #fff;
}

.ksc-region-tab.disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.ksc-region-search {
	padding: 10px;
	border-bottom: 1px solid #e5e7eb;
}

.ksc-region-search input {
	width: 100%;
	box-sizing: border-box;
	padding: 8px 12px;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	font-size: 13px;
	outline: none;
	transition: border-color 0.2s;
}

.ksc-region-search input:focus {
	border-color: #d10d01;
}

.ksc-region-content {
	max-height: 250px;
	overflow-y: auto;
}

.ksc-region-list {
	display: none;
	padding: 10px 0;
}

.ksc-region-list.active {
	display: block;
}

.ksc-region-item {
	padding: 10px 15px;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.2s;
}

.ksc-region-item:hover {
	background: #f5f5f5;
}

.ksc-region-loading {
	margin: 20px auto;
	width: 24px;
	height: 24px;
	border: 2px solid #e5e7eb;
	border-top-color: #d10d01;
	border-radius: 50%;
	animation: ksc-spin 0.8s linear infinite;
}

/* Ẩn các thông báo WooCommerce mặc định */
.woocommerce-error, 
.woocommerce-info, 
.woocommerce-message { 
	display: none !important; 
}
