/**
 * Phone Bought Together — modern ecommerce UI (#1e73be)
 */
.pbm-offers {
	--pbm-accent: #1e73be;
	--pbm-accent-dark: #185d98;
	--pbm-accent-soft: #e8f4fc;
	--pbm-accent-border: rgba(30, 115, 190, 0.22);
	--pbm-text: #1a1a1a;
	--pbm-muted: #6b7280;
	--pbm-border: #e5e7eb;
	--pbm-radius: 14px;
	--pbm-shadow: 0 4px 18px rgba(30, 115, 190, 0.08);
	position: relative;
	width: 100%;
	max-width: 100%;
	margin: 2rem 0 2.5rem;
	padding: 1.25rem;
	box-sizing: border-box;
	color: var(--pbm-text);
	background: #fff;
	border: 1px solid var(--pbm-accent-border);
	border-radius: var(--pbm-radius);
	box-shadow: var(--pbm-shadow);
}

.product-gallery .pbm-offers--gallery-column,
.woocommerce-product-gallery + .pbm-offers--gallery-column,
.pbm-offers--gallery-column {
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
	clear: both;
}

.product-gallery .pbm-offers--gallery-column {
	margin-top: 1.25rem;
}

/* Mobile summary column — after shipping/installment notes */
.product-summary .pbm-offers--summary-mobile,
.entry-summary .pbm-offers--summary-mobile {
	margin: 1rem 0 1.25rem;
	padding: 1rem;
}

/* —— Header —— */
.pbm-offers__header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem 1.25rem;
	margin-bottom: 1.25rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--pbm-border);
}

.pbm-offers__header-main {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	flex: 1 1 220px;
	min-width: 0;
}

.pbm-offers__header-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--pbm-accent);
	color: #fff;
}

.pbm-offers__header-text {
	min-width: 0;
}

.pbm-offers__title {
	margin: 0 0 0.25rem;
	font-size: clamp(1.05rem, 2.5vw, 1.35rem);
	font-weight: 800;
	line-height: 1.25;
	color: var(--pbm-accent);
	letter-spacing: -0.02em;
}

.pbm-offers__subtitle {
	margin: 0;
	font-size: 0.875rem;
	color: var(--pbm-muted);
	line-height: 1.45;
}

.pbm-offers__header-save {
	flex: 0 1 auto;
	min-width: 0;
	max-width: 100%;
	text-align: right;
}

.pbm-offers__header-save-label {
	display: block;
	font-size: 0.75rem;
	color: var(--pbm-muted);
	line-height: 1.3;
}

.pbm-offers__header-save-amount {
	display: block;
	margin: 0.1rem 0;
	font-size: clamp(1.1rem, 3vw, 1.5rem);
	font-weight: 800;
	line-height: 1.2;
	color: var(--pbm-accent);
	white-space: nowrap;
}

.pbm-offers__header-save-amount .woocommerce-Price-amount {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
}

.pbm-offers__header-save-note {
	display: inline-block;
	max-width: 100%;
	margin-top: 0.15rem;
	padding: 0.2rem 0.5rem;
	font-size: 0.6875rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--pbm-accent);
	background: var(--pbm-accent-soft);
	border-radius: 999px;
	white-space: normal;
	word-break: break-word;
}

/* —— Carousel —— */
.pbm-offers__carousel-wrap {
	position: relative;
	padding: 0 48px;
	max-width: 100%;
	overflow: hidden;
}

.product-gallery .pbm-offers__carousel-wrap {
	padding: 0 40px;
}

.pbm-swiper {
	overflow: hidden;
	padding-bottom: 2.25rem;
}

.pbm-swiper .swiper-wrapper {
	align-items: stretch;
}

.pbm-swiper .swiper-slide {
	height: auto;
	box-sizing: border-box;
	overflow: visible;
}

.pbm-carousel-nav {
	position: absolute;
	top: 50%;
	z-index: 3;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid var(--pbm-accent-border);
	border-radius: 10px;
	background: #fff;
	color: var(--pbm-accent);
	font-size: 0;
	line-height: 0;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(30, 115, 190, 0.12);
	transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.pbm-carousel-nav span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 1.35rem;
	line-height: 1;
	transform: translateY(-1px);
}

.pbm-carousel-nav:hover {
	background: var(--pbm-accent);
	color: #fff;
	border-color: var(--pbm-accent);
	box-shadow: 0 4px 14px rgba(30, 115, 190, 0.25);
}

.pbm-carousel-nav.swiper-button-disabled {
	opacity: 0.35;
	pointer-events: none;
}

.pbm-swiper-prev { left: 0; }
.pbm-swiper-next { right: 0; }

.pbm-swiper-pagination { bottom: 0 !important; }

.pbm-swiper-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: #c5d5e4;
	opacity: 1;
	transition: width 0.2s, background 0.2s;
}

.pbm-swiper-pagination .swiper-pagination-bullet-active {
	background: var(--pbm-accent);
	width: 22px;
	border-radius: 4px;
}

/* —— Product card —— */
.pbm-card {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	min-width: 0;
	border-radius: 12px;
	overflow: hidden;
	isolation: isolate;
	transition: transform 0.28s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.28s ease;
	transform-origin: center center;
}

.pbm-card__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-width: 0;
	padding: 0.85rem;
	background: #fff;
	border: 1px solid var(--pbm-border);
	border-radius: 12px;
	box-sizing: border-box;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
	overflow: hidden;
	transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

@media (min-width: 1025px) and (hover: hover) {
	.pbm-card:hover {
		z-index: 5;
		transform: scale(1.03);
		box-shadow: 0 10px 28px rgba(30, 115, 190, 0.18);
	}

	.pbm-card:hover .pbm-card__inner {
		border-color: var(--pbm-accent);
	}

	.pbm-card:hover .pbm-card__hover-actions {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.pbm-card:hover .pbm-card__name {
		-webkit-line-clamp: unset;
		line-clamp: unset;
		overflow: visible;
		display: block;
		min-height: 0;
	}
}

.pbm-card--selected .pbm-card__inner {
	border: 2px solid var(--pbm-accent);
	box-shadow: 0 0 0 3px rgba(30, 115, 190, 0.28), 0 8px 22px rgba(30, 115, 190, 0.16);
}

.pbm-card--selected {
	box-shadow: 0 0 0 1px var(--pbm-accent);
}

.pbm-card__checkbox {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Out of stock card */
.pbm-card--out-of-stock .pbm-card__media,
.pbm-card--out-of-stock .pbm-card__body {
	opacity: 0.55;
	filter: grayscale(1);
}

.pbm-card--out-of-stock .pbm-card__inner {
	background: #f8fafc;
	border-color: #e5e7eb !important;
}

.pbm-card--out-of-stock button.pbm-card__action--select {
	background: #ef4444 !important;
	border-color: #ef4444 !important;
	color: #ffffff !important;
	cursor: not-allowed;
}

/* Hover overlay — khớp bo góc card, không tràn */
.pbm-card__hover-actions {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 6;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	padding: 0.75rem;
	margin: 0;
	box-sizing: border-box;
	background: rgba(30, 115, 190, 0.48);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	border-radius: 12px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.pbm-card__hover-title {
	display: none;
	margin: 0;
	padding: 0 0.35rem;
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.35;
	color: #fff;
	text-align: center;
	overflow: visible;
	max-height: none;
	word-break: break-word;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

@media (min-width: 1025px) and (hover: hover) {
	.pbm-card:hover .pbm-card__hover-title {
		display: block;
	}
}

.pbm-card__hover-btns {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.4rem;
	width: 88%;
	max-width: 200px;
}

.pbm-card__hover-btns .pbm-card__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	width: 100%;
	height: 38px;
	min-height: 38px;
	max-height: 38px;
	padding: 0 0.55rem;
	font-size: 0.6875rem !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	text-align: center;
	text-decoration: none !important;
	border-radius: 8px !important;
	border-width: 1px !important;
	border-style: solid !important;
	cursor: pointer;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
	font-family: inherit;
	text-transform: none !important;
	letter-spacing: normal !important;
	transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.pbm-card__action-icon {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
}

.pbm-card__action-icon svg {
	display: block;
	width: 14px;
	height: 14px;
}

.pbm-card__action-text {
	display: block;
	flex: 0 1 auto;
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pbm-card__action--view {
	color: var(--pbm-accent);
	background: #fff;
	border-color: #fff;
}

.pbm-card__action--view:hover {
	color: var(--pbm-accent-dark);
	background: var(--pbm-accent-soft);
	border-color: var(--pbm-accent-soft);
}

.pbm-card__action--select {
	color: #fff;
	background: var(--pbm-accent);
	border-color: rgba(255, 255, 255, 0.4);
	text-transform: none;
	letter-spacing: normal;
}

.pbm-card__action--select:hover {
	background: #fff;
	color: var(--pbm-accent);
	border-color: #fff;
}

.pbm-card--selected .pbm-card__action--select {
	background: #fff;
	color: var(--pbm-accent);
	border-color: #fff;
}

.pbm-card__selected-badge {
	position: absolute;
	left: 6px;
	bottom: 6px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.14rem 0.38rem;
	font-size: 0.625rem;
	font-weight: 700;
	line-height: 1.2;
	color: #0f7a36;
	background: rgba(236, 253, 245, 0.95);
	border: 1px solid rgba(16, 185, 129, 0.35);
	border-radius: 999px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(2px);
	transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.pbm-card--selected .pbm-card__selected-badge {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Media */
.pbm-card__media {
	position: relative;
	margin-bottom: 0.65rem;
}

.pbm-card__save-badge {
	position: absolute;
	top: 6px;
	right: 6px;
	left: auto;
	z-index: 3;
	max-width: calc(100% - 12px);
	padding: 0.2rem 0.4rem;
	font-size: 0.625rem;
	font-weight: 700;
	line-height: 1.25;
	color: var(--pbm-accent);
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid var(--pbm-accent-border);
	border-radius: 6px;
	text-align: right;
	word-break: break-word;
	overflow-wrap: anywhere;
	white-space: normal;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
	pointer-events: none;
}

.pbm-card__save-badge .woocommerce-Price-amount {
	font-size: inherit;
	color: inherit;
	white-space: nowrap;
}

.pbm-card__thumb {
	display: block;
	aspect-ratio: 1;
	background: #f4f8fb;
	border-radius: 10px;
	overflow: hidden;
}

.pbm-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

/* Body */
.pbm-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 0.5rem;
	min-width: 0;
}

.pbm-card__name {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.8em;
}

.pbm-card__name a {
	color: inherit;
	text-decoration: none;
}

.pbm-card__name a:hover {
	color: var(--pbm-accent);
}

.pbm-card__prices {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	font-size: 0.8125rem;
}

.pbm-card__price-row {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	min-width: 0;
}

.pbm-card__price-label {
	font-size: 0.6875rem;
	color: var(--pbm-muted);
	font-weight: 500;
}

.pbm-card__regular {
	font-size: 0.75rem;
	color: #9ca3af;
	text-decoration: line-through;
	word-break: break-word;
}

.pbm-card__promo-badge {
	display: inline-block;
	max-width: 100%;
	padding: 0.12rem 0.4rem;
	font-size: 0.6875rem;
	font-weight: 700;
	color: #dc2626;
	background: #fef2f2;
	border-radius: 4px;
	word-break: break-word;
}

.pbm-card__bundle {
	display: block;
	color: var(--pbm-accent);
	font-weight: 800;
	font-size: clamp(0.875rem, 2.5vw, 1rem);
	text-decoration: none;
	line-height: 1.25;
	word-break: break-word;
}

.pbm-card__bundle .woocommerce-Price-amount {
	color: inherit;
	font-weight: inherit;
}

.pbm-card__regular .woocommerce-Price-amount,
.pbm-card__bundle .woocommerce-Price-amount,
.pbm-card__prices .amount {
	white-space: normal !important;
	word-break: break-word;
	overflow-wrap: anywhere;
}

.pbm-card__pick-variation {
	margin-top: 0.25rem;
	width: 100%;
	padding: 0.45rem 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
	border: 1px solid var(--pbm-accent);
	color: var(--pbm-accent);
	background: #fff;
	border-radius: 8px;
	cursor: pointer;
}

.pbm-card__pick-variation:hover {
	background: var(--pbm-accent-soft);
}

.pbm-card--needs-variation .pbm-card__pick-variation {
	animation: pbm-pulse 1.5s ease infinite;
}

@keyframes pbm-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.55; }
}

.pbm-card__variation-panel {
	margin-top: 0.35rem;
	font-size: 0.75rem;
}

.pbm-variation-row label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.pbm-variation-row select {
	width: 100%;
}

/* —— Summary + CTA —— */
.pbm-offers__actions {
	margin-top: 1.25rem;
}

.pbm-offers__summary {
	padding: 0.9rem 1rem;
	margin-bottom: 0.75rem;
	background: var(--pbm-accent-soft);
	border: 1px solid var(--pbm-accent-border);
	border-radius: 10px;
	transition: background 0.2s, border-color 0.2s;
}

.pbm-offers.has-selection .pbm-offers__summary {
	background: #fff;
	border-color: var(--pbm-accent);
}

.pbm-offers__summary-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 1rem;
	margin-bottom: 0.5rem;
	font-size: 0.8125rem;
	color: var(--pbm-muted);
}

.pbm-offers__summary-item strong {
	color: var(--pbm-text);
	font-weight: 700;
}

.pbm-offers__summary-savings strong {
	color: var(--pbm-accent);
}

.pbm-offers__summary-total {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.75rem;
	font-size: 0.875rem;
	font-weight: 600;
}

.pbm-offers__summary-total strong {
	font-size: clamp(1rem, 2.8vw, 1.2rem);
	font-weight: 800;
	color: var(--pbm-accent);
	white-space: nowrap;
}

.pbm-add-all {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	min-height: 50px;
	margin: 0;
	padding: 0.8rem 1rem !important;
	font-size: 0.9375rem !important;
	font-weight: 800 !important;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	border-radius: 10px !important;
	background: var(--pbm-accent) !important;
	border: none !important;
	color: #fff !important;
	box-shadow: 0 4px 14px rgba(30, 115, 190, 0.3);
	transition: background 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.pbm-add-all:hover:not(:disabled) {
	background: var(--pbm-accent-dark) !important;
	box-shadow: 0 6px 18px rgba(30, 115, 190, 0.35);
}

.pbm-add-all:disabled {
	opacity: 1;
	cursor: not-allowed;
	background: #d1d5db !important;
	color: #6b7280 !important;
	box-shadow: none;
}

.pbm-add-all.is-loading {
	opacity: 0.75;
	pointer-events: none;
}

.pbm-add-all__icon {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	line-height: 0;
	transform: translateY(1px);
}

.pbm-add-all__icon svg {
	display: block;
	width: 18px;
	height: 18px;
}

.pbm-add-all__label {
	display: inline-block;
	line-height: 1.2;
	text-align: center;
}

/* Skeleton */
.pbm-offers.is-loading .pbm-card__inner {
	background: linear-gradient(90deg, #f0f4f8 25%, #e8eef4 50%, #f0f4f8 75%);
	background-size: 200% 100%;
	animation: pbm-shimmer 1.2s infinite;
	min-height: 280px;
}

@keyframes pbm-shimmer {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

/* Responsive */
@media (max-width: 767px) {
	.pbm-offers {
		padding: 1rem;
	}

	.pbm-offers__header {
		flex-direction: column;
		gap: 0.45rem;
		margin-bottom: 0.85rem;
		padding-bottom: 0.7rem;
	}

	.pbm-offers__header-main {
		flex: 0 0 auto;
		width: 100%;
		gap: 0.55rem;
	}

	.pbm-offers__header-save {
		width: 100%;
		text-align: right;
		margin-top: 0;
	}

	.pbm-offers__header-save-amount {
		white-space: normal;
	}

	.pbm-offers__carousel-wrap,
	.product-gallery .pbm-offers__carousel-wrap {
		padding: 0 36px;
	}

	.pbm-carousel-nav {
		width: 32px;
		height: 32px;
		font-size: 1.15rem;
	}
}

/* Mobile/Tablet tap-to-reveal UX */
@media (max-width: 1024px) {
	.pbm-card {
		transform: none;
		box-shadow: none;
	}

	.pbm-card__inner {
		padding: 0.72rem;
	}

	.pbm-card__name {
		font-size: 0.79rem;
		-webkit-line-clamp: 2;
		line-clamp: 2;
		min-height: 2.45em;
	}

	.pbm-card__prices {
		gap: 0.28rem;
		font-size: 0.78rem;
	}

	.pbm-card__price-label {
		font-size: 0.655rem;
	}

	.pbm-card__hover-title {
		display: none;
	}

	.pbm-card__hover-actions {
		top: auto;
		right: 8px;
		bottom: 8px;
		left: 8px;
		padding: 0.52rem;
		gap: 0.45rem;
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.97);
		backdrop-filter: blur(4px);
		-webkit-backdrop-filter: blur(4px);
		border: 1px solid rgba(30, 115, 190, 0.2);
		box-shadow: 0 10px 24px rgba(30, 115, 190, 0.18);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(8px);
		transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
	}

	.pbm-card__hover-btns {
		width: 100%;
		max-width: none;
	}

	.pbm-card__hover-btns .pbm-card__action {
		height: 42px;
		min-height: 42px;
		max-height: 42px;
		font-size: 0.78rem !important;
	}

	.pbm-card--revealed {
		z-index: 6;
	}

	.pbm-card--revealed .pbm-card__inner {
		border-color: rgba(30, 115, 190, 0.7);
		box-shadow: 0 8px 20px rgba(30, 115, 190, 0.2);
	}

	.pbm-card--revealed .pbm-card__hover-actions {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}
}

@media (max-width: 480px) {
	.pbm-offers__carousel-wrap {
		padding: 0 30px;
	}
}

/* Cart line */
.pbm-cart-item--accessory .product-name {
	padding-left: 0;
	border-left: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
}

/* Coupon area cleanup: remove misplaced pseudo icons in cart totals */
.cart-collaterals .cart_totals .shop_table .cart-discount th::before,
.cart-collaterals .cart_totals .shop_table .cart-discount td::before,
.cart-collaterals .cart_totals .shop_table .coupon th::before,
.cart-collaterals .cart_totals .shop_table .coupon td::before,
.woocommerce-cart .cart-collaterals .coupon::before,
.woocommerce-cart .cart-collaterals .coupon::after {
	content: none !important;
	display: none !important;
}

/* Keep coupon input clean and aligned */
.woocommerce-cart .coupon,
.woocommerce-cart .cart-collaterals .coupon {
	position: relative;
	background-image: none !important;
}

.woocommerce-cart .coupon input[name="coupon_code"] {
	background-image: none !important;
	padding-left: 0.75rem !important;
}

/* Cart quantity selector — modern ecommerce style */
.woocommerce-cart form.woocommerce-cart-form .quantity,
.woocommerce-checkout-review-order-table .quantity {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	min-height: 40px;
	border: 1px solid #d7e3f2;
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
}

.woocommerce-cart form.woocommerce-cart-form .quantity input.qty,
.woocommerce-checkout-review-order-table .quantity input.qty {
	width: 48px;
	height: 40px;
	min-height: 40px;
	padding: 0 4px;
	margin: 0;
	border: 0 !important;
	border-radius: 0 !important;
	background: #fff;
	font-size: 0.9375rem;
	font-weight: 700;
	text-align: center;
	color: #1f2937;
	box-shadow: none !important;
}

.woocommerce-cart form.woocommerce-cart-form .quantity .minus,
.woocommerce-cart form.woocommerce-cart-form .quantity .plus,
.woocommerce-checkout-review-order-table .quantity .minus,
.woocommerce-checkout-review-order-table .quantity .plus {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 40px;
	min-height: 40px;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: #f6f9fc !important;
	color: #1e73be !important;
	font-size: 1.05rem !important;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: background 0.16s ease, color 0.16s ease;
}

.woocommerce-cart form.woocommerce-cart-form .quantity .minus:hover,
.woocommerce-cart form.woocommerce-cart-form .quantity .plus:hover,
.woocommerce-checkout-review-order-table .quantity .minus:hover,
.woocommerce-checkout-review-order-table .quantity .plus:hover {
	background: #e8f2fb !important;
	color: #185d98 !important;
}

.woocommerce-cart form.woocommerce-cart-form .quantity .minus:active,
.woocommerce-cart form.woocommerce-cart-form .quantity .plus:active,
.woocommerce-checkout-review-order-table .quantity .minus:active,
.woocommerce-checkout-review-order-table .quantity .plus:active {
	background: #d8eafa !important;
}

.woocommerce-cart form.woocommerce-cart-form .quantity:focus-within,
.woocommerce-checkout-review-order-table .quantity:focus-within {
	border-color: #1e73be;
	box-shadow: 0 0 0 3px rgba(30, 115, 190, 0.16);
}

@media (max-width: 767px) {
	.woocommerce-cart form.woocommerce-cart-form .quantity,
	.woocommerce-checkout-review-order-table .quantity {
		min-height: 44px;
	}

	.woocommerce-cart form.woocommerce-cart-form .quantity input.qty,
	.woocommerce-checkout-review-order-table .quantity input.qty {
		width: 52px;
		height: 44px;
		min-height: 44px;
		font-size: 1rem;
	}

	.woocommerce-cart form.woocommerce-cart-form .quantity .minus,
	.woocommerce-cart form.woocommerce-cart-form .quantity .plus,
	.woocommerce-checkout-review-order-table .quantity .minus,
	.woocommerce-checkout-review-order-table .quantity .plus {
		width: 42px;
		height: 44px;
		min-height: 44px;
		font-size: 1.15rem !important;
	}
}
