/**
 * WooCommerce theme overrides — Brave & Luxurious Style
 *
 * Colors: #1d1e20, #00aeef, #ffffff (and opacities thereof)
 * Consistent with front-page.php / home.css design language.
 *
 * @package Svaros_Partneriai
 */

/* ==========================================================================
   SHOP PAGE — BASE
   ========================================================================== */
.sp-shop-page.brave-luxury {
	overflow-x: hidden;
	color: #1d1e20;
	background-color: #ffffff;
}

/* ==========================================================================
   SHOP PAGE — TOP BAR (compact: title + shipping + search + ordering)
   ========================================================================== */
.sp-shop-topbar {
	padding: 20px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	background: #ffffff;
}

.sp-shop-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.sp-shop-topbar__left {
	display: flex;
	align-items: center;
	gap: 20px;
	min-width: 0;
}

.sp-shop-topbar__title {
	font-size: 22px;
	font-weight: 900;
	color: #1d1e20;
	letter-spacing: -0.02em;
	margin: 0;
	white-space: nowrap;
}

.sp-shop-topbar__shipping {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(0, 174, 239, 0.08);
	color: #00aeef;
	padding: 6px 16px;
	border-radius: 100px;
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.sp-shop-topbar__shipping svg {
	flex-shrink: 0;
}

.sp-shop-topbar__right {
	display: flex;
	align-items: center;
	gap: 12px;
}

.sp-shop-topbar__search {
	display: flex;
	align-items: center;
	width: 220px;
	background: rgba(0, 0, 0, 0.03);
	border: 1px solid transparent;
	border-radius: 100px;
	overflow: hidden;
	transition: all 0.3s;
}

.sp-shop-topbar__search:focus-within {
	border-color: #00aeef;
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
	width: 280px;
}

.sp-shop-topbar__search-input {
	flex: 1;
	border: none;
	outline: none;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 500;
	background: transparent;
	color: #1d1e20;
	min-width: 0;
}

.sp-shop-topbar__search-input::placeholder {
	color: rgba(29, 30, 32, 0.4);
}

.sp-shop-topbar__search-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	background: none;
	border: none;
	color: rgba(29, 30, 32, 0.4);
	cursor: pointer;
	transition: color 0.3s;
}

.sp-shop-topbar__search-btn:hover {
	color: #00aeef;
}

.sp-shop-topbar__ordering {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 4px 6px 4px 16px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 100px;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.sp-shop-topbar__ordering:hover {
	border-color: rgba(0, 174, 239, 0.4);
}

.sp-shop-topbar__ordering:focus-within {
	border-color: #00aeef;
	box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.12);
}

.sp-shop-topbar__ordering-icon {
	color: #00aeef;
	flex-shrink: 0;
}

.sp-shop-topbar__ordering-label {
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(29, 30, 32, 0.6);
	white-space: nowrap;
}

.sp-shop-topbar__ordering .woocommerce-ordering {
	margin: 0;
}

.sp-shop-topbar__ordering .woocommerce-ordering select {
	padding: 8px 32px 8px 8px;
	border: none;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 700;
	background-color: transparent;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231d1e20' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
	background-repeat: no-repeat;
	background-position: right 10px center;
	color: #1d1e20;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	transition: color 0.2s;
}

.sp-shop-topbar__ordering .woocommerce-ordering select:focus {
	outline: none;
}

.sp-shop-topbar__ordering .woocommerce-ordering select:hover {
	color: #00aeef;
}

/* ==========================================================================
   SHOP PAGE — LAYOUT (sidebar left + products right)
   ========================================================================== */
.sp-shop-layout {
	padding: 0 0 80px;
	background: #ffffff;
}

.sp-shop-layout__grid {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 40px;
	align-items: start;
	padding-top: 30px;
}

/* ==========================================================================
   SHOP PAGE — LEFT SIDEBAR
   ========================================================================== */
.sp-shop-sidebar {
	position: sticky;
	top: 100px;
}

.sp-shop-sidebar__section {
	margin-bottom: 32px;
}

.sp-shop-sidebar__heading {
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: rgba(29, 30, 32, 0.4);
	margin: 0 0 16px;
	padding: 0 0 10px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sp-shop-sidebar__cat-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sp-shop-sidebar__cat-list > li {
	margin-bottom: 2px;
}

.sp-shop-sidebar__cat-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border-radius: 12px;
	text-decoration: none;
	color: #1d1e20;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	transition: all 0.2s;
}

.sp-shop-sidebar__cat-link:hover {
	background: rgba(0, 0, 0, 0.03);
}

.sp-shop-sidebar__cat-link.is-active {
	background: rgba(0, 174, 239, 0.08);
	color: #00aeef;
	font-weight: 800;
}

.sp-shop-sidebar__cat-icon {
	width: 32px;
	height: 32px;
	object-fit: contain;
	flex-shrink: 0;
}

.sp-shop-sidebar__cat-name {
	flex: 1;
	min-width: 0;
	white-space: normal;
	overflow-wrap: break-word;
	word-break: break-word;
}

.sp-shop-sidebar__cat-count {
	font-size: 12px;
	font-weight: 700;
	color: rgba(29, 30, 32, 0.3);
	flex-shrink: 0;
}

/* Subcategory list */
.sp-shop-sidebar__sub-list {
	list-style: none;
	padding: 0 0 0 20px;
	margin: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.sp-shop-sidebar__cat-list > li.is-open > .sp-shop-sidebar__sub-list {
	max-height: 500px;
}

.sp-shop-sidebar__sub-list .sp-shop-sidebar__cat-link {
	font-size: 13px;
	font-weight: 500;
	padding: 6px 12px;
	color: rgba(29, 30, 32, 0.7);
}

.sp-shop-sidebar__sub-list .sp-shop-sidebar__cat-link:hover {
	color: #1d1e20;
}

.sp-shop-sidebar__sub-list .sp-shop-sidebar__cat-link.is-active {
	color: #00aeef;
	font-weight: 700;
	background: rgba(0, 174, 239, 0.05);
}

/* Subcategory toggle button (desktop) */
.sp-shop-sidebar__cat-list > li.has-children {
	position: relative;
}

.sp-shop-sidebar__toggle {
	position: absolute;
	top: 6px;
	right: 4px;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: none;
	border-radius: 8px;
	color: rgba(29, 30, 32, 0.5);
	cursor: pointer;
	transition: all 0.2s;
}

.sp-shop-sidebar__toggle:hover {
	background: rgba(0, 0, 0, 0.05);
	color: #1d1e20;
}

.sp-shop-sidebar__toggle svg {
	transition: transform 0.25s ease;
}

.sp-shop-sidebar__cat-list > li.is-open > .sp-shop-sidebar__toggle svg {
	transform: rotate(180deg);
}

/* Hide count when toggle is present so they don't overlap */
.sp-shop-sidebar__cat-list > li.has-children > .sp-shop-sidebar__cat-link .sp-shop-sidebar__cat-count {
	margin-right: 28px;
}

/* Price range filter — dual-handle slider */
.sp-price-filter__values {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}

.sp-price-filter__value {
	display: inline-flex;
	align-items: center;
	padding: 5px 11px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 100px;
	font-size: 13px;
	font-weight: 800;
	color: #1d1e20;
	font-variant-numeric: tabular-nums;
}

.sp-price-filter__slider {
	position: relative;
	height: 32px;
	margin: 0 10px 18px;
}

.sp-price-filter__track {
	position: absolute;
	top: 50%;
	left: -10px;
	right: -10px;
	height: 6px;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.08);
	border-radius: 100px;
}

.sp-price-filter__range {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 6px;
	transform: translateY(-50%);
	background: linear-gradient(90deg, #00aeef 0%, #0089be 100%);
	border-radius: 100px;
	pointer-events: none;
}

.sp-price-filter__input {
	position: absolute;
	top: 50%;
	left: -10px;
	right: -10px;
	width: calc(100% + 20px);
	height: 32px;
	transform: translateY(-50%);
	margin: 0;
	padding: 0;
	background: transparent;
	pointer-events: none;
	-webkit-appearance: none;
	appearance: none;
}

.sp-price-filter__input:focus {
	outline: none;
}

/* Webkit thumb */
.sp-price-filter__input::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid #00aeef;
	box-shadow: 0 2px 8px rgba(0, 174, 239, 0.35);
	cursor: grab;
	pointer-events: auto;
	transition: transform 0.15s, box-shadow 0.15s;
}

.sp-price-filter__input::-webkit-slider-thumb:hover {
	transform: scale(1.1);
	box-shadow: 0 4px 14px rgba(0, 174, 239, 0.5);
}

.sp-price-filter__input::-webkit-slider-thumb:active {
	cursor: grabbing;
	transform: scale(1.15);
}

.sp-price-filter__input::-webkit-slider-runnable-track {
	background: transparent;
	border: none;
}

/* Firefox thumb */
.sp-price-filter__input::-moz-range-thumb {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid #00aeef;
	box-shadow: 0 2px 8px rgba(0, 174, 239, 0.35);
	cursor: grab;
	pointer-events: auto;
	transition: transform 0.15s, box-shadow 0.15s;
}

.sp-price-filter__input::-moz-range-thumb:hover {
	transform: scale(1.1);
}

.sp-price-filter__input::-moz-range-track {
	background: transparent;
	border: none;
}

.sp-price-filter__btn {
	width: 100%;
	padding: 10px 14px;
	background: #00aeef;
	color: #fff;
	border: none;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s, transform 0.1s;
}

.sp-price-filter__btn:hover {
	background: #008bbf;
}

.sp-price-filter__btn:active {
	transform: translateY(1px);
}

/* Active filter chips above the product grid */
.sp-shop-active-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	padding: 12px 16px;
	background: rgba(0, 174, 239, 0.05);
	border: 1px solid rgba(0, 174, 239, 0.15);
	border-radius: 14px;
}

.sp-shop-active-filters__label {
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(29, 30, 32, 0.5);
	margin-right: 4px;
}

.sp-shop-active-filters__chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px 6px 12px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 100px;
	font-size: 13px;
	font-weight: 700;
	color: #1d1e20;
	text-decoration: none;
	transition: all 0.2s;
}

.sp-shop-active-filters__chip:hover {
	background: #00aeef;
	color: #fff;
	border-color: #00aeef;
}

.sp-shop-active-filters__chip svg {
	opacity: 0.6;
}

.sp-shop-active-filters__chip:hover svg {
	opacity: 1;
}

.sp-shop-active-filters__clear {
	margin-left: auto;
	font-size: 12px;
	font-weight: 700;
	color: #00aeef;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.sp-shop-active-filters__clear:hover {
	text-decoration: underline;
}

/* ==========================================================================
   SHOP PAGE — MAIN CONTENT (right side)
   ========================================================================== */
.sp-shop-main__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.sp-shop-main__meta .woocommerce-result-count {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	color: rgba(29, 30, 32, 0.5);
}

.sp-shop-main__breadcrumb {
	font-size: 13px;
	font-weight: 600;
	color: rgba(29, 30, 32, 0.5);
}

.sp-shop-main__breadcrumb a {
	color: #00aeef;
	text-decoration: none;
}

.sp-shop-main__breadcrumb a:hover {
	text-decoration: underline;
}

.sp-shop-main__breadcrumb span {
	margin: 0 6px;
}

.sp-shop-main__breadcrumb-current {
	color: #1d1e20;
	font-weight: 800;
}

/* Product grid — 3 cols max because sidebar takes space */
.sp-shop-main .woocommerce ul.products,
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
}

@media (min-width: 900px) {
	.sp-shop-main .woocommerce ul.products,
	.woocommerce ul.products {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ==========================================================================
   PRODUCT CARD (Glassmorphism card, matches homepage cards)
   ========================================================================== */
.sp-product-card {
	width: 100% !important;
	margin: 0 !important;
	padding: 0;
	float: none !important;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.04);
	border-radius: 32px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
	position: relative;
}

.sp-product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
	border-color: rgba(0, 174, 239, 0.1);
}

/* Sale Badge */
.sp-product-card__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 10;
	background: #00aeef;
	color: #ffffff;
	padding: 6px 16px;
	border-radius: 100px;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Legacy WooCommerce sale badge */
.woocommerce span.onsale {
	background: #00aeef;
	color: #ffffff;
	border-radius: 100px;
	padding: 6px 16px;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	min-width: auto;
	min-height: auto;
	line-height: 1.6;
}

/* Product Image */
.sp-product-card__link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.sp-product-card__image {
	overflow: hidden;
}

.sp-product-card__image img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	margin: 0;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-product-card:hover .sp-product-card__image img {
	transform: scale(1.08);
}

/* Legacy WooCommerce img */
.woocommerce ul.products li.product a img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	margin: 0;
}

/* Product Body */
.sp-product-card__body {
	padding: 24px 24px 0;
	flex: 1;
}

.sp-product-card__title {
	font-size: 15px;
	font-weight: 800;
	color: #1d1e20;
	line-height: 1.3;
	margin: 0 0 8px;
}

.sp-product-card__price {
	display: block;
	font-size: 18px;
	font-weight: 900;
	color: #00aeef;
}

.sp-product-card__price del {
	color: rgba(29, 30, 32, 0.4);
	font-weight: 500;
	font-size: 14px;
}

.sp-product-card__price ins {
	text-decoration: none;
	color: #00aeef;
}

/* Legacy WooCommerce title/price */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 15px;
	font-weight: 800;
	padding: 24px 24px 0;
	color: #1d1e20;
}

.woocommerce ul.products li.product .price {
	padding: 8px 24px;
	font-size: 18px;
	font-weight: 900;
	color: #00aeef;
}

.woocommerce ul.products li.product .price del {
	color: rgba(29, 30, 32, 0.4);
	font-weight: 500;
	font-size: 14px;
}

.woocommerce ul.products li.product .price ins {
	text-decoration: none;
	color: #00aeef;
}

/* Add to Cart Button — Pill style like homepage CTAs */
.sp-product-card__action {
	padding: 16px 24px 24px;
}

.sp-product-card__action .button,
.woocommerce ul.products li.product .button {
	display: block;
	width: 100%;
	text-align: center;
	padding: 14px 24px;
	background: #00aeef;
	color: #ffffff !important;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	border: none;
	cursor: pointer;
	text-decoration: none;
	margin: 0;
	box-shadow: 0 8px 20px -6px rgba(0, 174, 239, 0.35);
}

.sp-product-card__action .button:hover,
.woocommerce ul.products li.product .button:hover {
	background: #008bbf;
	transform: translateY(-2px);
	box-shadow: 0 14px 32px -8px rgba(0, 174, 239, 0.5);
}

/* ==========================================================================
   SHOP PAGE — PAGINATION (Pill style)
   ========================================================================== */
.sp-shop-pagination {
	margin-top: 80px;
	text-align: center;
}

.sp-shop-pagination .woocommerce-pagination {
	margin: 0;
}

.sp-shop-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.sp-shop-pagination .page-numbers li a,
.sp-shop-pagination .page-numbers li span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 800;
	color: #1d1e20;
	text-decoration: none;
	transition: all 0.3s;
	border: 1px solid transparent;
}

.sp-shop-pagination .page-numbers li a:hover {
	background: rgba(0, 0, 0, 0.04);
	border-color: rgba(0, 0, 0, 0.08);
}

.sp-shop-pagination .page-numbers li span.current {
	background: #00aeef;
	color: #ffffff;
}

/* ==========================================================================
   SHOP PAGE — EMPTY STATE
   ========================================================================== */
.sp-shop-empty {
	text-align: center;
	padding: 120px 0;
}

.sp-shop-empty__icon {
	width: 80px;
	height: 80px;
	background: rgba(0, 0, 0, 0.03);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 30px;
	color: rgba(29, 30, 32, 0.3);
}

.sp-shop-empty h3 {
	font-size: 28px;
	font-weight: 900;
	color: #1d1e20;
	margin: 0 0 12px;
}

.sp-shop-empty p {
	font-size: 16px;
	color: rgba(29, 30, 32, 0.5);
	margin: 0 0 40px;
}

.sp-shop-empty__btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: #00aeef;
	color: #ffffff;
	text-decoration: none;
	padding: 18px 36px;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 174, 239, 0.3);
}

.sp-shop-empty__btn:hover {
	background: #0096ce;
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 15px 40px rgba(0, 174, 239, 0.4);
}

/* CTA sweep animation (same as homepage) */
.sp-shop-empty__btn::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
	transform: skewX(-25deg);
	animation: cta-sweep 5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes cta-sweep {
	0% { left: -100%; }
	20% { left: 200%; }
	100% { left: 200%; }
}

/* ==========================================================================
   SHOP PAGE — MOBILE FILTER DRAWER (hidden on desktop)
   ========================================================================== */
.sp-shop-mobile-controls,
.sp-shop-sidebar__drawer-header,
.sp-shop-sidebar__drawer-footer,
.sp-shop-sidebar__backdrop {
	display: none;
}

/* ==========================================================================
   SHOP PAGE — RESPONSIVE
   ========================================================================== */

/* Tablet & mobile: sidebar becomes a slide-in drawer */
@media (max-width: 900px) {
	.sp-shop-layout__grid {
		grid-template-columns: 1fr;
		gap: 0;
		padding-top: 0;
	}

	/* Mobile filter launcher bar */
	.sp-shop-mobile-controls {
		display: block;
		background: #ffffff;
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
		padding: 14px 0 16px;
	}

	.sp-shop-mobile-controls__btn {
		position: relative;
		display: inline-flex;
		align-items: center;
		gap: 10px;
		padding: 10px 20px;
		background: #00aeef;
		color: #ffffff;
		border: none;
		border-radius: 100px;
		font-family: inherit;
		font-size: 14px;
		font-weight: 700;
		letter-spacing: 0.01em;
		cursor: pointer;
		box-shadow: 0 10px 24px -8px rgba(0, 174, 239, 0.5);
		transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.18s ease;
	}

	.sp-shop-mobile-controls__btn:hover,
	.sp-shop-mobile-controls__btn:focus-visible {
		background: #008bbf;
		transform: translateY(-1px);
		box-shadow: 0 14px 30px -8px rgba(0, 174, 239, 0.6);
		outline: none;
	}

	.sp-shop-mobile-controls__btn svg {
		flex-shrink: 0;
	}

	.sp-shop-mobile-controls__badge {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 20px;
		height: 20px;
		padding: 0 6px;
		background: #ffffff;
		color: #00aeef;
		border-radius: 100px;
		font-size: 11px;
		font-weight: 900;
		font-variant-numeric: tabular-nums;
	}

	/* Drawer backdrop */
	.sp-shop-sidebar__backdrop {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 998;
		background: rgba(15, 17, 20, 0);
		backdrop-filter: blur(0);
		-webkit-backdrop-filter: blur(0);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
	}

	.sp-shop-sidebar__backdrop.is-open {
		opacity: 1;
		pointer-events: auto;
		background: rgba(15, 17, 20, 0.55);
		backdrop-filter: blur(6px);
		-webkit-backdrop-filter: blur(6px);
	}

	/* Drawer panel */
	.sp-shop-sidebar {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: auto;
		z-index: 999;
		width: 88%;
		max-width: 420px;
		margin: 0;
		padding: 0;
		background: #ffffff;
		box-shadow: -30px 0 60px -20px rgba(0, 0, 0, 0.35);
		border: none;
		display: flex;
		flex-direction: column;
		transform: translateX(100%);
		transition: transform 0.38s cubic-bezier(0.2, 0, 0, 1);
		overscroll-behavior: contain;
	}

	.sp-shop-sidebar.is-open {
		transform: translateX(0);
	}

	/* Drawer header */
	.sp-shop-sidebar__drawer-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		padding: 20px 22px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
		flex-shrink: 0;
	}

	.sp-shop-sidebar__drawer-title {
		font-size: 17px;
		font-weight: 900;
		letter-spacing: -0.01em;
		color: #1d1e20;
	}

	.sp-shop-sidebar__drawer-close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		padding: 0;
		background: rgba(0, 0, 0, 0.04);
		border: none;
		border-radius: 50%;
		color: #1d1e20;
		cursor: pointer;
		transition: background 0.18s ease;
	}

	.sp-shop-sidebar__drawer-close:hover,
	.sp-shop-sidebar__drawer-close:focus-visible {
		background: rgba(0, 0, 0, 0.08);
		outline: none;
	}

	/* Drawer body (scrollable) */
	.sp-shop-sidebar__drawer-body {
		flex: 1;
		min-height: 0;
		overflow-y: auto;
		padding: 22px 22px 24px;
		-webkit-overflow-scrolling: touch;
	}

	/* Drawer footer */
	.sp-shop-sidebar__drawer-footer {
		display: block;
		padding: 14px 22px calc(14px + env(safe-area-inset-bottom, 0));
		border-top: 1px solid rgba(0, 0, 0, 0.06);
		background: #ffffff;
		flex-shrink: 0;
	}

	.sp-shop-sidebar__drawer-apply {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		width: 100%;
		padding: 16px 24px;
		background: #00aeef;
		color: #ffffff;
		border: none;
		border-radius: 100px;
		font-family: inherit;
		font-size: 15px;
		font-weight: 800;
		letter-spacing: 0.01em;
		cursor: pointer;
		box-shadow: 0 12px 28px -10px rgba(0, 174, 239, 0.55);
		transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.18s ease;
	}

	.sp-shop-sidebar__drawer-apply:hover,
	.sp-shop-sidebar__drawer-apply:focus-visible {
		background: #008bbf;
		transform: translateY(-1px);
		box-shadow: 0 16px 32px -10px rgba(0, 174, 239, 0.65);
		outline: none;
	}

	/* Restore vertical category tree inside drawer */
	.sp-shop-sidebar__cat-list {
		display: block;
	}

	.sp-shop-sidebar__cat-list > li {
		margin-bottom: 2px;
	}

	.sp-shop-sidebar__cat-link {
		padding: 10px 14px;
		border-radius: 12px;
		font-size: 14.5px;
		border: none;
	}

	.sp-shop-sidebar__cat-link.is-active {
		border: none;
	}

	.sp-shop-sidebar__cat-count {
		display: inline-flex;
	}

	.sp-shop-sidebar__cat-icon {
		display: inline-block;
	}

	.sp-shop-sidebar__sub-list {
		display: block;
	}

	.sp-shop-sidebar__toggle {
		display: flex;
		top: 7px;
	}

	.sp-shop-sidebar__cat-list > li.has-children > .sp-shop-sidebar__cat-link .sp-shop-sidebar__cat-count {
		margin-right: 28px;
	}

	.sp-shop-sidebar__section + .sp-shop-sidebar__section {
		margin-top: 8px;
	}

	.sp-price-filter {
		max-width: none;
	}

	/* Hide inline price "Filtruoti" button — apply button in footer submits instead */
	.sp-shop-sidebar .sp-price-filter__btn {
		display: none;
	}

	.sp-shop-active-filters__clear {
		margin-left: 0;
	}
}

/* Mobile */
@media (max-width: 639px) {
	.sp-shop-topbar__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.sp-shop-topbar__left {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.sp-shop-topbar__right {
		flex-direction: column;
		gap: 8px;
	}

	.sp-shop-topbar__search {
		width: 100%;
	}

	.sp-shop-topbar__search:focus-within {
		width: 100%;
	}

	.sp-shop-topbar__ordering {
		width: 100%;
		justify-content: space-between;
	}

	.sp-shop-topbar__ordering .woocommerce-ordering,
	.sp-shop-topbar__ordering .woocommerce-ordering select {
		width: 100%;
	}

	.sp-product-card {
		border-radius: 24px;
	}

	.sp-product-card__body {
		padding: 16px 16px 0;
	}

	.sp-product-card__action {
		padding: 12px 16px 16px;
	}

	.sp-shop-layout {
		padding-bottom: 40px;
	}
}

/* ==========================================================================
   SINGLE PRODUCT — Brave & Luxurious
   ========================================================================== */
.sp-single-product.brave-luxury {
	overflow-x: hidden;
	color: #1d1e20;
	background-color: #ffffff;
}

/* ---------- Breadcrumb ---------- */
.sp-product__breadcrumb {
	padding: 20px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.sp-product__breadcrumb-nav {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	font-weight: 600;
}

.sp-product__breadcrumb-nav a {
	color: rgba(29, 30, 32, 0.5);
	text-decoration: none;
	transition: color 0.3s;
}

.sp-product__breadcrumb-nav a:hover {
	color: #00aeef;
}

.sp-product__breadcrumb-sep {
	color: rgba(29, 30, 32, 0.2);
	display: inline-flex;
}

.sp-product__breadcrumb-current {
	color: #1d1e20;
	font-weight: 800;
}

/* ---------- Main Product Grid ---------- */
.sp-product__main {
	padding: 60px 0 80px;
}

.sp-product__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}

@media (max-width: 900px) {
	.sp-product__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

/* ---------- Gallery ---------- */
.sp-product__gallery {
	position: relative;
}

.sp-product__badge {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 10;
	background: #00aeef;
	color: #ffffff;
	padding: 8px 20px;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	box-shadow: 0 8px 24px rgba(0, 174, 239, 0.3);
}

.sp-product__gallery-main {
	border-radius: 32px;
	overflow: hidden;
	background: #f8f9fb;
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.sp-product__gallery-img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	display: block;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-product__gallery-main:hover .sp-product__gallery-img {
	transform: scale(1.05);
}

.sp-product__gallery-thumbs {
	display: flex;
	gap: 12px;
	margin-top: 16px;
}

.sp-product__thumb {
	width: 80px;
	height: 80px;
	border-radius: 16px;
	overflow: hidden;
	border: 2px solid transparent;
	cursor: pointer;
	background: #f8f9fb;
	padding: 0;
	transition: all 0.3s;
}

.sp-product__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sp-product__thumb:hover {
	border-color: rgba(0, 0, 0, 0.15);
}

.sp-product__thumb.is-active {
	border-color: #00aeef;
	box-shadow: 0 4px 12px rgba(0, 174, 239, 0.2);
}

@media (max-width: 639px) {
	.sp-product__gallery-main {
		border-radius: 24px;
	}

	.sp-product__thumb {
		width: 64px;
		height: 64px;
		border-radius: 12px;
	}
}

/* ---------- Product Info ---------- */
.sp-product__info {
	display: flex;
	flex-direction: column;
}

.sp-product__category {
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #00aeef;
	margin-bottom: 12px;
}

.sp-product__category a {
	color: #00aeef;
	text-decoration: none;
}

.sp-product__title {
	font-size: clamp(1.75rem, 3vw, 2.75rem);
	font-weight: 900;
	color: #1d1e20;
	letter-spacing: -0.03em;
	line-height: 1.15;
	margin: 0 0 20px;
}

.sp-product__short-desc {
	font-size: 16px;
	color: rgba(29, 30, 32, 0.6);
	line-height: 1.7;
	margin-bottom: 24px;
}

.sp-product__short-desc p {
	margin: 0 0 12px;
}

.sp-product__short-desc p:last-child {
	margin-bottom: 0;
}

/* ---------- Price ---------- */
.sp-product__price-block {
	margin-bottom: 20px;
	padding: 24px 0;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sp-product__price-block .price,
.sp-product__price-block .amount {
	font-size: 36px;
	font-weight: 900;
	color: #1d1e20;
}

.sp-product__price-block del {
	color: rgba(29, 30, 32, 0.35);
	font-weight: 500;
	font-size: 20px;
}

.sp-product__price-block del .amount {
	font-size: 20px;
	font-weight: 500;
	color: rgba(29, 30, 32, 0.35);
}

.sp-product__price-block ins {
	text-decoration: none;
}

.sp-product__price-block ins .amount {
	color: #00aeef;
}

/* ---------- Stock ---------- */
.sp-product__stock {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 24px;
	padding: 8px 16px;
	border-radius: 100px;
}

.sp-product__stock--in {
	color: #16a34a;
	background: rgba(22, 163, 74, 0.08);
}

.sp-product__stock--out {
	color: #ef4444;
	background: rgba(239, 68, 68, 0.08);
}

/* ---------- Add to Cart Form ---------- */
.sp-product__cart-form {
	margin-bottom: 32px;
}

.sp-product__cart-form form.cart {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

/* Quantity selector with +/- buttons */
.sp-qty {
	display: flex;
	align-items: center;
	background: #f8f9fb;
	border-radius: 100px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	overflow: hidden;
}

.sp-qty__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 56px;
	background: transparent;
	border: none;
	cursor: pointer;
	color: #1d1e20;
	transition: all 0.25s ease;
	flex-shrink: 0;
}

.sp-qty__btn:hover {
	background: rgba(0, 174, 239, 0.1);
	color: #00aeef;
}

.sp-qty__btn:active {
	transform: scale(0.9);
}

.sp-qty .qty {
	width: 48px;
	height: 56px;
	text-align: center;
	border: none;
	background: transparent;
	font-size: 16px;
	font-weight: 800;
	color: #1d1e20;
	-moz-appearance: textfield;
	padding: 0;
}

.sp-qty .qty::-webkit-outer-spin-button,
.sp-qty .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.sp-product__cart-form .single_add_to_cart_button {
	flex: 1;
	min-width: 200px;
	background: #00aeef;
	color: #ffffff;
	border: none;
	border-radius: 100px;
	padding: 18px 48px;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 28px -8px rgba(0, 174, 239, 0.45);
}

.sp-product__cart-form .single_add_to_cart_button:hover {
	background: #008bbf;
	transform: translateY(-3px);
	box-shadow: 0 18px 42px -10px rgba(0, 174, 239, 0.6);
}

/* CTA sweep animation */
.sp-product__cart-form .single_add_to_cart_button::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
	transform: skewX(-25deg);
	animation: sp-btn-sweep 5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes sp-btn-sweep {
	0% { left: -100%; }
	20% { left: 200%; }
	100% { left: 200%; }
}

/* Variations */
.sp-product__cart-form .variations {
	width: 100%;
	margin-bottom: 16px;
	border-collapse: collapse;
}

.sp-product__cart-form .variations td,
.sp-product__cart-form .variations th {
	padding: 8px 0;
	border: none;
}

.sp-product__cart-form .variations label {
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #1d1e20;
}

.sp-product__cart-form .variations select {
	width: 100%;
	padding: 12px 20px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	font-size: 14px;
	font-weight: 600;
	color: #1d1e20;
	background: #ffffff;
	cursor: pointer;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.sp-product__cart-form .variations select:focus {
	border-color: #00aeef;
	box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
	outline: none;
}

/* ---------- Product Meta ---------- */
.sp-product__meta {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 24px 0;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	margin-bottom: 24px;
}

.sp-product__meta-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.sp-product__meta-label {
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(29, 30, 32, 0.4);
	min-width: 120px;
}

.sp-product__meta-value {
	font-size: 14px;
	font-weight: 600;
	color: #1d1e20;
}

.sp-product__meta-value a {
	color: #00aeef;
	text-decoration: none;
}

.sp-product__meta-value a:hover {
	text-decoration: underline;
}

/* ---------- Trust Badges ---------- */
.sp-product__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.sp-product__trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background: #f8f9fb;
	border-radius: 16px;
	font-size: 13px;
	font-weight: 700;
	color: #1d1e20;
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.sp-product__trust-item svg {
	color: #00aeef;
	flex-shrink: 0;
}

/* ---------- Tabs Section ---------- */
.sp-product__tabs-section {
	padding: 0 0 80px;
	background: #ffffff;
}

.sp-product__tabs {
	background: #f8f9fb;
	border-radius: 32px;
	border: 1px solid rgba(0, 0, 0, 0.04);
	overflow: hidden;
}

.sp-product__tab-nav {
	display: flex;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	overflow-x: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.sp-product__tab-nav::-webkit-scrollbar {
	display: none;
}

.sp-product__tab-btn {
	padding: 20px 32px;
	border: none;
	background: transparent;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(29, 30, 32, 0.4);
	cursor: pointer;
	transition: all 0.3s;
	white-space: nowrap;
	position: relative;
}

.sp-product__tab-btn:hover {
	color: #1d1e20;
}

.sp-product__tab-btn.is-active {
	color: #00aeef;
}

.sp-product__tab-btn.is-active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 24px;
	right: 24px;
	height: 3px;
	background: #00aeef;
	border-radius: 3px 3px 0 0;
}

.sp-product__tab-panel {
	padding: 48px;
	display: none;
}

.sp-product__tab-panel.is-active {
	display: block;
}

.sp-product__tab-panel h2 {
	font-size: 24px;
	font-weight: 900;
	color: #1d1e20;
	margin-bottom: 20px;
	letter-spacing: -0.02em;
}

.sp-product__tab-panel p {
	font-size: 16px;
	color: rgba(29, 30, 32, 0.65);
	line-height: 1.7;
	margin-bottom: 16px;
}

.sp-product__tab-panel ul,
.sp-product__tab-panel ol {
	padding-left: 20px;
	margin-bottom: 16px;
}

.sp-product__tab-panel li {
	font-size: 16px;
	color: rgba(29, 30, 32, 0.65);
	line-height: 1.7;
	margin-bottom: 8px;
}

.sp-product__tab-panel table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 16px;
}

.sp-product__tab-panel th {
	text-align: left;
	padding: 12px 16px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(29, 30, 32, 0.5);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sp-product__tab-panel td {
	padding: 12px 16px;
	font-size: 15px;
	color: #1d1e20;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

@media (max-width: 639px) {
	.sp-product__tabs {
		border-radius: 24px;
	}

	.sp-product__tab-btn {
		padding: 16px 20px;
		font-size: 12px;
	}

	.sp-product__tab-panel {
		padding: 24px;
	}
}

/* ---------- Related Products ---------- */
.sp-product__related-section {
	padding: 0 0 120px;
	background: #ffffff;
}

.sp-product__related-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}

.sp-product__related-header h2 {
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	font-weight: 900;
	color: #1d1e20;
	letter-spacing: -0.03em;
	margin: 0;
}

.sp-product__related-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #00aeef;
	text-decoration: none;
	transition: all 0.3s;
}

.sp-product__related-link:hover {
	gap: 12px;
}

.sp-product__related-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

@media (min-width: 640px) {
	.sp-product__related-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1024px) {
	.sp-product__related-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Related Card */
.sp-related-card {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.04);
	border-radius: 32px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-related-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
	border-color: rgba(0, 174, 239, 0.1);
}

.sp-related-card__image {
	position: relative;
	overflow: hidden;
}

.sp-related-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 5;
	background: #00aeef;
	color: #ffffff;
	padding: 4px 12px;
	border-radius: 100px;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.sp-related-card__img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	display: block;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-related-card:hover .sp-related-card__img {
	transform: scale(1.08);
}

.sp-related-card__body {
	padding: 20px 24px 24px;
}

.sp-related-card__title {
	font-size: 15px;
	font-weight: 800;
	color: #1d1e20;
	line-height: 1.3;
	margin: 0 0 8px;
}

.sp-related-card__price {
	font-size: 18px;
	font-weight: 900;
	color: #00aeef;
}

.sp-related-card__price del {
	color: rgba(29, 30, 32, 0.4);
	font-weight: 500;
	font-size: 14px;
}

.sp-related-card__price ins {
	text-decoration: none;
	color: #00aeef;
}

@media (max-width: 639px) {
	.sp-related-card {
		border-radius: 24px;
	}

	.sp-related-card__body {
		padding: 16px;
	}
}

/* ---------- Single Product Responsive ---------- */
@media (max-width: 900px) {
	.sp-product__main {
		padding: 40px 0 60px;
	}

	.sp-product__title {
		font-size: 1.75rem;
	}
}

@media (max-width: 639px) {
	.sp-product__main {
		padding: 24px 0 40px;
	}

	.sp-product__cart-form .single_add_to_cart_button {
		width: 100%;
		min-width: unset;
	}

	.sp-product__trust {
		flex-direction: column;
	}

	.sp-product__related-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.sp-product__related-section {
		padding-bottom: 60px;
	}
}

/* Hide default WooCommerce elements on single product */
.sp-single-product .woocommerce-breadcrumb,
.sp-single-product .related.products {
	display: none;
}

/* ==========================================================================
   CART PAGE — Brave & Luxurious
   ========================================================================== */
.sp-cart.brave-luxury {
	padding: 60px 24px 120px;
	max-width: 1280px;
	margin: 0 auto;
	box-sizing: border-box;
	color: #1d1e20;
	background: #ffffff;
}

/* ---------- Page Header ---------- */
.sp-cart__header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 32px;
}

.sp-cart__title {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 900;
	color: #1d1e20;
	letter-spacing: -0.03em;
	margin: 0;
}

.sp-cart__count {
	font-size: 14px;
	font-weight: 800;
	color: rgba(29, 30, 32, 0.4);
	background: rgba(0, 0, 0, 0.04);
	padding: 6px 16px;
	border-radius: 100px;
}

/* ---------- Shipping Progress ---------- */
.sp-cart__shipping-banner {
	background: #f8f9fb;
	border: 1px solid rgba(0, 0, 0, 0.04);
	border-radius: 24px;
	padding: 20px 28px;
	margin-bottom: 32px;
}

.sp-cart__shipping-msg {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 700;
	color: rgba(29, 30, 32, 0.6);
	margin-bottom: 12px;
}

.sp-cart__shipping-msg svg {
	color: #00aeef;
	flex-shrink: 0;
}

.sp-cart__shipping-msg--free {
	color: #16a34a;
}

.sp-cart__shipping-msg--free svg {
	color: #16a34a;
}

.sp-cart__shipping-bar {
	height: 6px;
	background: rgba(0, 0, 0, 0.06);
	border-radius: 100px;
	overflow: hidden;
}

.sp-cart__shipping-fill {
	height: 100%;
	background: linear-gradient(90deg, #00aeef, #33bef2);
	border-radius: 100px;
	transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Cart Layout (items left + totals right) ---------- */
.sp-cart__layout {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 48px;
	align-items: start;
}

@media (max-width: 1024px) {
	.sp-cart__layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* ---------- Cart Items ---------- */
.sp-cart__items-column {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.sp-cart__item {
	display: flex;
	gap: 24px;
	padding: 28px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	transition: background 0.3s;
}

.sp-cart__item:first-child {
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Item image */
.sp-cart__item-image {
	flex-shrink: 0;
	width: 120px;
	height: 120px;
	border-radius: 20px;
	overflow: hidden;
	background: #f8f9fb;
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.sp-cart__item-image a {
	display: block;
	width: 100%;
	height: 100%;
}

.sp-cart__item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-cart__item-image:hover img {
	transform: scale(1.08);
}

/* Item info */
.sp-cart__item-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-width: 0;
}

.sp-cart__item-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
}

.sp-cart__item-details {
	flex: 1;
	min-width: 0;
}

.sp-cart__item-name {
	display: block;
	font-size: 16px;
	font-weight: 800;
	color: #1d1e20;
	text-decoration: none;
	line-height: 1.3;
	margin-bottom: 6px;
	transition: color 0.3s;
}

.sp-cart__item-name:hover {
	color: #00aeef;
}

.sp-cart__item-price {
	font-size: 15px;
	font-weight: 700;
	color: rgba(29, 30, 32, 0.5);
}

.sp-cart__item-price .amount {
	color: rgba(29, 30, 32, 0.5);
}

/* ---- Cleaning service cart item ---- */
.sp-cart__item--cleaning {
	background: linear-gradient(135deg, rgba(0, 174, 239, 0.04) 0%, rgba(0, 174, 239, 0.02) 100%);
	border-radius: 20px;
	padding: 24px;
	border: 1px solid rgba(0, 174, 239, 0.15);
	gap: 20px;
	align-items: flex-start;
}

.sp-cart__cleaning-icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(135deg, #00aeef 0%, #0096ce 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	box-shadow: 0 6px 18px rgba(0, 174, 239, 0.25);
}

.sp-cart__item--cleaning .sp-cart__item-name {
	font-size: 17px;
	font-weight: 900;
	color: #1d1e20;
	letter-spacing: -0.02em;
	display: block;
	margin-bottom: 4px;
}

.sp-cart__item-price--cleaning {
	font-size: 22px;
	font-weight: 900;
	color: #00aeef !important;
	margin-bottom: 12px;
}

.sp-cart__item-price--cleaning .amount {
	color: #00aeef !important;
}

.sp-cart__booking-meta {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 14px 16px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 14px;
	border: 1px solid rgba(0, 174, 239, 0.12);
	margin-top: 4px;
}

.sp-cart__item-bottom--cleaning {
	margin-top: 16px;
	justify-content: space-between;
}

.sp-cart__item-bottom--cleaning .sp-cart__item-subtotal {
	font-size: 18px;
	font-weight: 900;
	color: #1d1e20;
}

.sp-cart__cleaning-edit-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: rgba(29, 30, 32, 0.45);
	text-decoration: none;
	padding: 8px 14px;
	border-radius: 100px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
}

.sp-cart__cleaning-edit-link:hover {
	color: #00aeef;
	border-color: rgba(0, 174, 239, 0.4);
	background: rgba(0, 174, 239, 0.05);
}

/* booking rows in cart (same component as side cart) */
.sp-cart__booking-meta .sp-booking-row {
	font-size: 13px;
}

.sp-cart__booking-meta .sp-booking-row__icon svg {
	width: 14px;
	height: 14px;
}

/* Variation data */
.sp-cart__item-info .variation {
	margin-top: 4px;
}

.sp-cart__item-info .variation dt,
.sp-cart__item-info .variation dd {
	display: inline;
	font-size: 13px;
	color: rgba(29, 30, 32, 0.5);
	font-weight: 600;
}

/* Remove button */
.sp-cart__item-remove {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border-radius: 12px;
	color: rgba(29, 30, 32, 0.3);
	transition: all 0.3s;
	text-decoration: none;
}

.sp-cart__item-remove:hover {
	background: rgba(239, 68, 68, 0.08);
	color: #ef4444;
}

/* Bottom row */
.sp-cart__item-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 16px;
}

/* Quantity input styling */
.sp-cart__item-qty .quantity {
	display: flex;
	align-items: center;
	background: #f8f9fb;
	border-radius: 100px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	overflow: hidden;
}

.sp-cart__item-qty .quantity .qty {
	width: 56px;
	height: 44px;
	text-align: center;
	border: none;
	background: transparent;
	font-size: 15px;
	font-weight: 800;
	color: #1d1e20;
	-moz-appearance: textfield;
}

.sp-cart__item-qty .quantity .qty::-webkit-outer-spin-button,
.sp-cart__item-qty .quantity .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Item subtotal */
.sp-cart__item-subtotal {
	font-size: 18px;
	font-weight: 900;
	color: #1d1e20;
}

/* ---------- Cart Actions ---------- */
.sp-cart__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 28px 0 0;
	flex-wrap: wrap;
}

.sp-cart__continue-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
	color: rgba(29, 30, 32, 0.5);
	text-decoration: none;
	transition: color 0.3s, gap 0.3s;
}

.sp-cart__continue-btn:hover {
	color: #00aeef;
	gap: 12px;
}

.sp-cart__update-btn {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	padding: 12px 24px !important;
	background: rgba(0, 0, 0, 0.04) !important;
	border: 1px solid rgba(0, 0, 0, 0.06) !important;
	border-radius: 100px !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	color: #1d1e20 !important;
	cursor: pointer !important;
	transition: all 0.3s !important;
}

.sp-cart__update-btn:hover {
	background: rgba(0, 0, 0, 0.08) !important;
	border-color: rgba(0, 0, 0, 0.12) !important;
	color: #1d1e20 !important;
}

/* ---------- Cart Totals Card ---------- */
.sp-cart__totals-column {
	position: sticky;
	top: 120px;
}

.sp-cart__totals-card {
	background: #f8f9fb;
	border: 1px solid rgba(0, 0, 0, 0.04);
	border-radius: 32px;
	padding: 36px;
}

.sp-cart__totals-heading {
	font-size: 20px;
	font-weight: 900;
	color: #1d1e20;
	letter-spacing: -0.02em;
	margin: 0 0 24px;
}

/* Totals rows */
.sp-cart__totals-rows {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 24px;
}

.sp-cart__totals-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sp-cart__totals-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.sp-cart__totals-label {
	font-size: 14px;
	font-weight: 600;
	color: rgba(29, 30, 32, 0.5);
}

.sp-cart__totals-value {
	font-size: 15px;
	font-weight: 700;
	color: #1d1e20;
}

.sp-cart__totals-value .amount {
	color: #1d1e20;
}

.sp-cart__totals-hint {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: -8px;
	margin-bottom: 6px;
	padding: 12px 14px;
	background: #fff7c2;
	border: 1px solid #f3d63a;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(243, 191, 0, 0.18);
	font-size: 13px;
	line-height: 1.5;
	color: #4a3a00;
}

.sp-cart__totals-hint svg {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	color: #b87a00;
}

.sp-cart__totals-hint > span {
	flex: 1;
	min-width: 0;
}

.sp-cart__totals-hint .amount {
	font-weight: 800;
	color: #1d1e20;
}

.sp-cart__totals-row--total {
	padding-top: 16px;
	border-top: 2px solid rgba(0, 0, 0, 0.08);
	margin-top: 8px;
}

.sp-cart__totals-row--total .sp-cart__totals-label {
	font-size: 16px;
	font-weight: 800;
	color: #1d1e20;
}

.sp-cart__totals-row--total .sp-cart__totals-value {
	font-size: 24px;
	font-weight: 900;
	color: #00aeef;
}

.sp-cart__totals-row--total .sp-cart__totals-value .amount {
	color: #00aeef;
}

.sp-cart__coupon-code {
	display: inline-block;
	background: rgba(0, 174, 239, 0.08);
	color: #00aeef;
	padding: 2px 8px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

/* Shipping methods inside totals — see unified rules under /* Shipping Methods (Cart Totals) */ */
.sp-cart__totals-card .woocommerce-shipping-methods {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Shipping row needs to stack: shipping radio cards eat the full sidebar
   width, so the label can't sit beside them on a flex row. Override the
   default .sp-cart__totals-row flex layout for this modifier. */
.sp-cart__totals-row--shipping {
	flex-direction: column;
	align-items: stretch;
	gap: 12px;
	padding-bottom: 18px;
}

.sp-cart__totals-row--shipping .sp-cart__totals-label {
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(29, 30, 32, 0.55);
}

.sp-cart__totals-value--shipping {
	display: block;
	width: 100%;
}

.sp-cart__totals-value--shipping .sp-shipping-package + .sp-shipping-package {
	margin-top: 12px;
}

.sp-cart__totals-value--shipping .woocommerce-shipping-destination,
.sp-cart__totals-value--shipping .woocommerce-shipping-contents {
	margin: 10px 0 0;
	font-size: 12px;
	font-weight: 600;
	color: rgba(29, 30, 32, 0.55);
	line-height: 1.5;
}

.sp-cart__totals-value--shipping .shipping-calculator-button {
	display: inline-flex;
	align-items: center;
	margin-top: 8px;
	font-size: 13px;
	font-weight: 700;
	color: #00aeef;
	text-decoration: none;
}

.sp-cart__totals-value--shipping .shipping-calculator-button:hover {
	text-decoration: underline;
}

/* Coupon form */
.sp-cart__coupon {
	padding: 20px 0;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	margin-bottom: 20px;
}

.sp-cart__coupon-label {
	display: block;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(29, 30, 32, 0.4);
	margin-bottom: 10px;
}

.sp-cart__coupon-form {
	display: flex;
	gap: 8px;
}

.sp-cart__coupon-input {
	flex: 1;
	padding: 12px 18px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 100px;
	font-size: 14px;
	font-weight: 600;
	background: #ffffff;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.sp-cart__coupon-input:focus {
	border-color: #00aeef;
	box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
	outline: none;
}

.sp-cart__coupon-btn {
	padding: 12px 20px !important;
	background: #1d1e20 !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 100px !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.05em !important;
	cursor: pointer !important;
	transition: all 0.3s !important;
	white-space: nowrap !important;
}

.sp-cart__coupon-btn:hover {
	background: #00aeef !important;
	color: #ffffff !important;
}

/* Checkout CTA in totals */
.sp-cart__checkout-wrap .checkout-button,
.sp-cart__checkout-wrap a.checkout-button,
.sp-cart__checkout-wrap .button.alt,
.sp-cart__checkout-wrap a.button,
.wc-proceed-to-checkout .checkout-button,
.wc-proceed-to-checkout a.checkout-button {
	display: block !important;
	width: 100% !important;
	text-align: center !important;
	padding: 20px 48px !important;
	background: #00aeef !important;
	color: #ffffff !important;
	text-decoration: none !important;
	border-radius: 100px !important;
	font-size: 16px !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.05em !important;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
	box-shadow: 0 10px 30px rgba(0, 174, 239, 0.3) !important;
	position: relative !important;
	overflow: hidden !important;
}

.sp-cart__checkout-wrap .checkout-button:hover,
.sp-cart__checkout-wrap a.button:hover,
.wc-proceed-to-checkout .checkout-button:hover {
	background: #0096ce !important;
	color: #ffffff !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 15px 40px rgba(0, 174, 239, 0.4) !important;
}

.sp-cart__checkout-wrap .checkout-button::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
	transform: skewX(-25deg);
	animation: sp-cart-checkout-sweep 5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes sp-cart-checkout-sweep {
	0% { left: -100%; }
	20% { left: 200%; }
	100% { left: 200%; }
}

/* Trust signals */
.sp-cart__trust {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.sp-cart__trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 600;
	color: rgba(29, 30, 32, 0.5);
}

.sp-cart__trust-item svg {
	color: #00aeef;
	flex-shrink: 0;
}

/* ---------- Empty Cart ---------- */
.sp-cart-empty.brave-luxury {
	padding: 120px 0;
	background: #ffffff;
}

.sp-cart-empty__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 480px;
	margin: 0 auto;
}

.sp-cart-empty__icon {
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.03);
	border-radius: 32px;
	color: rgba(29, 30, 32, 0.2);
	margin-bottom: 32px;
	animation: sp-empty-float 3s ease-in-out infinite;
}

.sp-cart-empty__title {
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	font-weight: 900;
	color: #1d1e20;
	letter-spacing: -0.03em;
	margin: 0 0 16px;
}

.sp-cart-empty__text {
	font-size: 16px;
	color: rgba(29, 30, 32, 0.5);
	line-height: 1.6;
	margin: 0 0 40px;
}

.sp-cart-empty__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 18px 40px;
	background: #1d1e20;
	color: #ffffff;
	text-decoration: none;
	border-radius: 100px;
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-cart-empty__btn:hover {
	background: #00aeef;
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 174, 239, 0.3);
}

/* ---------- Cart Responsive ---------- */
@media (max-width: 768px) {
	.sp-cart.brave-luxury {
		padding: 40px 16px 80px;
	}

	.sp-cart__item {
		gap: 16px;
		padding: 20px 0;
	}

	.sp-cart__item--cleaning {
		padding: 18px;
		gap: 14px;
		border-radius: 16px;
	}

	.sp-cart__item--cleaning .sp-cart__cleaning-icon {
		width: 44px;
		height: 44px;
		border-radius: 12px;
	}

	.sp-cart__item--cleaning .sp-cart__item-name {
		font-size: 15px;
	}

	.sp-cart__item-price--cleaning {
		font-size: 18px;
	}

	.sp-cart__booking-meta {
		padding: 12px 14px;
		font-size: 13px;
	}

	.sp-cart__item-image {
		width: 80px;
		height: 80px;
		border-radius: 16px;
	}

	.sp-cart__item-name {
		font-size: 14px;
	}

	.sp-cart__item-subtotal {
		font-size: 16px;
	}

	.sp-cart__totals-card {
		border-radius: 24px;
		padding: 24px;
	}

	.sp-cart__actions {
		flex-direction: column;
		align-items: stretch;
	}
}

/* ==========================================================================
   CHECKOUT PAGE — Brave & Luxurious
   ========================================================================== */
.sp-checkout.brave-luxury {
	padding: 60px 0 120px;
	color: #1d1e20;
	background: #ffffff;
}

/* ---------- Checkout Header ---------- */
.sp-checkout__header {
	margin-bottom: 48px;
}

.sp-checkout__title {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 900;
	color: #1d1e20;
	letter-spacing: -0.03em;
	margin: 0 0 24px;
}

/* Step indicator */
.sp-checkout__steps {
	display: flex;
	align-items: center;
	gap: 0;
}

.sp-checkout__step {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: rgba(29, 30, 32, 0.3);
}

.sp-checkout__step--active {
	color: #1d1e20;
}

.sp-checkout__step--done {
	color: #00aeef;
}

.sp-checkout__step-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 900;
	border: 2px solid currentColor;
	transition: all 0.3s;
}

.sp-checkout__step--active .sp-checkout__step-num {
	background: #1d1e20;
	color: #ffffff;
	border-color: #1d1e20;
}

.sp-checkout__step--done .sp-checkout__step-num {
	background: #00aeef;
	color: #ffffff;
	border-color: #00aeef;
}

.sp-checkout__step-text {
	font-size: 14px;
	font-weight: 700;
}

.sp-checkout__step-line {
	flex: 0 0 40px;
	height: 2px;
	background: rgba(0, 0, 0, 0.08);
	margin: 0 16px;
}

@media (max-width: 639px) {
	.sp-checkout__step-text {
		display: none;
	}
	.sp-checkout__step-line {
		flex: 1;
		margin: 0 8px;
	}
}

/* ---------- Checkout Layout ---------- */
.sp-checkout__layout {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 48px;
	align-items: start;
}

@media (max-width: 1024px) {
	.sp-checkout__layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* ---------- Checkout Sections ---------- */
.sp-checkout__section {
	margin-bottom: 40px;
}

.sp-checkout__section-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 28px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sp-checkout__section-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: rgba(0, 174, 239, 0.08);
	border-radius: 14px;
	color: #00aeef;
	flex-shrink: 0;
}

.sp-checkout__section-title {
	font-size: 18px;
	font-weight: 900;
	color: #1d1e20;
	letter-spacing: -0.02em;
	margin: 0;
}

/* ---------- Form Fields ---------- */
.sp-checkout__form .woocommerce-billing-fields__field-wrapper,
.sp-checkout__form .woocommerce-shipping-fields__field-wrapper,
.sp-checkout__form .woocommerce-additional-fields__field-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.sp-checkout__form .form-row-wide {
	grid-column: 1 / -1;
}

.sp-checkout__form .form-row {
	margin-bottom: 0 !important;
	padding: 0 !important;
}

.sp-checkout__form .form-row label {
	display: block;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(29, 30, 32, 0.5);
	margin-bottom: 8px;
}

.sp-checkout__form .form-row .input-text,
.sp-checkout__form .form-row textarea,
.sp-checkout__form .form-row select {
	width: 100%;
	padding: 14px 20px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	font-size: 15px;
	font-weight: 500;
	background: #ffffff;
	color: #1d1e20;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.sp-checkout__form .form-row textarea {
	min-height: 120px;
	resize: vertical;
	border-radius: 20px;
}

.sp-checkout__form .form-row .input-text:focus,
.sp-checkout__form .form-row textarea:focus,
.sp-checkout__form .form-row select:focus {
	border-color: #00aeef;
	box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
	outline: none;
}

.sp-checkout__form .form-row .input-text::placeholder,
.sp-checkout__form .form-row textarea::placeholder {
	color: rgba(29, 30, 32, 0.3);
}

/* Required asterisk */
.sp-checkout__form .required {
	color: #00aeef;
}

/* Select2 overrides (WooCommerce uses Select2 for country/state) */
.sp-checkout__form .select2-container--default .select2-selection--single {
	height: auto;
	padding: 14px 20px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
}

.sp-checkout__form .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding: 0;
	line-height: 1.4;
	font-size: 15px;
	font-weight: 500;
	color: #1d1e20;
}

.sp-checkout__form .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 100%;
	right: 16px;
}

.sp-checkout__form .select2-container--default.select2-container--focus .select2-selection--single,
.sp-checkout__form .select2-container--default.select2-container--open .select2-selection--single {
	border-color: #00aeef;
	box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

.select2-dropdown {
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.select2-results__option--highlighted {
	background-color: rgba(0, 174, 239, 0.08) !important;
	color: #1d1e20 !important;
}

.select2-results__option--selected {
	background-color: rgba(0, 174, 239, 0.15) !important;
	color: #00aeef !important;
	font-weight: 700;
}

/* Checkbox & ship-to-different toggle */
.sp-checkout__form .woocommerce-form__label-for-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
	color: #1d1e20;
	cursor: pointer;
}

.sp-checkout__form .woocommerce-form__input-checkbox {
	width: 20px;
	height: 20px;
	accent-color: #00aeef;
}

/* ---------- Order Review Card ---------- */
.sp-checkout__review-column {
	position: sticky;
	top: 120px;
}

.sp-checkout__review-card {
	background: #f8f9fb;
	border: 1px solid rgba(0, 0, 0, 0.04);
	border-radius: 32px;
	padding: 36px;
}

.sp-checkout__review-heading {
	font-size: 20px;
	font-weight: 900;
	color: #1d1e20;
	letter-spacing: -0.02em;
	margin: 0 0 24px;
}

/* ---------- Order review (.sp-review) ----------
   The default WC review-order.php is a single <table> with everything
   crammed into <th>/<td> pairs, which squeezes shipping radio cards into
   half-width on the 420 px sticky sidebar. We override the template (see
   woocommerce/checkout/review-order.php) to emit a clean div-based layout:

     .sp-review                            → outer wrapper
       ├─ ul.sp-review__items              → product list
       │    └─ li.sp-review__item          → name + meta + price
       ├─ .sp-review__rows                 → subtotal / coupon / fee rows
       ├─ .sp-review__section--shipping    → label + shipping radio cards
       │    └─ .sp-review__shipping-methods> ul.woocommerce-shipping-methods
       └─ .sp-review__total                → grand total

   Each section is full-width, no table semantics, so nothing collides with
   the MultiParcels pickup-location dropdown that the plugin injects via
   woocommerce_review_order_before_payment between the table and #payment. */
.sp-checkout__review-card .sp-review {
	display: flex;
	flex-direction: column;
}

/* Hide the legacy WC table in case any plugin still relies on emitting it
   directly into #order_review (defensive guard). */
.sp-checkout__review-card .woocommerce-checkout-review-order-table {
	display: none;
}

.sp-review__items {
	list-style: none;
	margin: 0 0 18px;
	padding: 0 0 6px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sp-review__item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

.sp-review__item:last-child {
	border-bottom: none;
}

.sp-review__item-info {
	flex: 1 1 0;
	min-width: 0;
}

.sp-review__item-title {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px 6px;
	font-size: 14px;
	font-weight: 700;
	color: #1d1e20;
	line-height: 1.35;
}

.sp-review__item-name {
	overflow-wrap: anywhere;
}

.sp-review__item-qty {
	font-size: 13px;
	font-weight: 700;
	color: rgba(29, 30, 32, 0.55);
}

.sp-review__item-meta {
	margin-top: 6px;
	font-size: 12.5px;
	font-weight: 600;
	color: rgba(29, 30, 32, 0.6);
	line-height: 1.5;
}

.sp-review__item-meta dl,
.sp-review__item-meta p {
	margin: 0;
	padding: 0;
}

.sp-review__item-meta dt {
	display: inline;
	font-weight: 700;
	color: rgba(29, 30, 32, 0.55);
}

.sp-review__item-meta dt::after {
	content: ': ';
}

.sp-review__item-meta dd {
	display: inline;
	margin: 0 0 0 2px;
	color: rgba(29, 30, 32, 0.75);
}

.sp-review__item-meta dd::after {
	content: '\A';
	white-space: pre;
}

.sp-review__item-meta dl > dd:last-of-type::after {
	content: '';
}

.sp-review__item-total {
	flex-shrink: 0;
	text-align: right;
	font-size: 14px;
	font-weight: 800;
	color: #1d1e20;
	white-space: nowrap;
}

/* Subtotal / coupon / fee rows */
.sp-review__rows {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 4px 0 14px;
}

.sp-review__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	font-size: 14px;
}

.sp-review__row-label {
	color: rgba(29, 30, 32, 0.6);
	font-weight: 600;
}

.sp-review__row-value {
	font-weight: 700;
	color: #1d1e20;
	white-space: nowrap;
	text-align: right;
}

.sp-review__row--coupon .sp-review__row-value {
	color: #16a34a;
}

/* Small-order-fee explainer card on checkout — undo the cart-side hint's
   -8px pull and give it breathing room from the fee row above. */
.sp-review__hint {
	margin-top: 12px;
}

/* Section heading shared by shipping (and any future sections) */
.sp-review__section {
	margin-top: 10px;
	padding: 16px 0 4px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.sp-review__section-label {
	display: block;
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(29, 30, 32, 0.55);
}

.sp-review__shipping-methods {
	display: block;
}

.sp-review__shipping-methods .sp-shipping-package + .sp-shipping-package {
	margin-top: 12px;
}

.sp-review__shipping-methods .woocommerce-shipping-destination,
.sp-review__shipping-methods .woocommerce-shipping-contents {
	margin: 8px 0 0;
	font-size: 12px;
	font-weight: 600;
	color: rgba(29, 30, 32, 0.5);
	line-height: 1.5;
}

/* Grand total — emphasised, separated by accent rule */
.sp-review__total {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-top: 18px;
	padding: 18px 0 4px;
	border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.sp-review__total-label {
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #1d1e20;
}

.sp-review__total-value {
	font-size: 26px;
	font-weight: 900;
	color: #00aeef;
	white-space: nowrap;
	text-align: right;
}

.sp-review__total-value .amount,
.sp-review__total-value bdi {
	color: inherit;
	font-weight: inherit;
}

/* ---------- Payment methods ----------
   The WC default markup puts <input> as a SIBLING of <label>, which makes
   the visible radio float above each card and pushes us into fragile
   absolute-positioning hacks. We override checkout/payment-method.php to
   nest the radio INSIDE the label as <input> + .sp-payment-method__radio
   (custom dot) + .sp-payment-method__title + .sp-payment-method__icon, so
   the entire card is one click target with a deterministic radio position.

   The native <input> is taken out of the visual flow (kept in the DOM so
   WC's checkout JS still finds it by id/name on submit). */
.sp-checkout__review-card #payment {
	margin-top: 8px;
}

.sp-checkout__review-card .wc_payment_methods {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
}

.sp-checkout__review-card .wc_payment_method {
	margin-bottom: 10px;
}

.sp-checkout__review-card .wc_payment_method:last-child {
	margin-bottom: 0;
}

.sp-checkout__review-card .sp-payment-method__label {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 18px;
	margin: 0;
	border: 1.5px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	background: #fff;
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	color: #1d1e20;
	min-height: 56px;
	box-sizing: border-box;
	line-height: 1.35;
	transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.sp-checkout__review-card .sp-payment-method__label .input-radio {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	margin: 0;
	pointer-events: none;
}

.sp-checkout__review-card .sp-payment-method__radio {
	flex-shrink: 0;
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid rgba(0, 0, 0, 0.2);
	background: #fff;
	position: relative;
	transition: border-color 0.25s ease;
}

.sp-checkout__review-card .sp-payment-method__radio::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #00aeef;
	transition: transform 0.2s ease;
}

.sp-checkout__review-card .sp-payment-method__title {
	flex: 1 1 auto;
	min-width: 0;
	overflow-wrap: anywhere;
}

.sp-checkout__review-card .sp-payment-method__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.sp-checkout__review-card .sp-payment-method__icon img {
	max-height: 24px;
	max-width: 56px;
	width: auto;
	height: auto;
	object-fit: contain;
	margin: 0;
}

.sp-checkout__review-card .sp-payment-method__label:hover {
	border-color: rgba(0, 174, 239, 0.45);
	background: rgba(0, 174, 239, 0.03);
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(0, 174, 239, 0.08);
}

.sp-checkout__review-card .wc_payment_method:has(.input-radio:checked) .sp-payment-method__label {
	border-color: #00aeef;
	background: rgba(0, 174, 239, 0.06);
	box-shadow: 0 6px 18px rgba(0, 174, 239, 0.18);
}

.sp-checkout__review-card .wc_payment_method:has(.input-radio:checked) .sp-payment-method__radio {
	border-color: #00aeef;
}

.sp-checkout__review-card .wc_payment_method:has(.input-radio:checked) .sp-payment-method__radio::after {
	transform: translate(-50%, -50%) scale(1);
}

/* MultiParcels pickup-location dropdown — injected by the plugin via the
   woocommerce_review_order_before_payment hook as a standalone form-row
   containing <span.mp-please-select-location> + <select> (and optionally
   <div.mp-selected-pickup-point-info>). Without explicit spacing it
   visually slams into the order total above and the payment cards below. */
.sp-checkout__review-card .multiparcels-pickup-location,
.sp-checkout__review-card .multiparcels-carrier,
.sp-checkout__review-card form.checkout > .form-row.form-row-wide:has(.mp-please-select-location),
.sp-checkout__review-card #order_review .form-row.form-row-wide:has(.mp-please-select-location) {
	margin: 16px 0 20px;
	padding: 0;
}

.sp-checkout__review-card .mp-please-select-location {
	display: block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(29, 30, 32, 0.6);
}

.sp-checkout__review-card .multiparcels-pickup-location select,
.sp-checkout__review-card .form-row-wide select {
	width: 100%;
	padding: 14px 18px;
	border: 1.5px solid rgba(0, 0, 0, 0.08);
	border-radius: 14px;
	background-color: #fff;
	font-size: 14px;
	font-weight: 600;
	color: #1d1e20;
}

.sp-checkout__review-card .mp-selected-pickup-point-info {
	display: block;
	margin-top: 10px;
	padding: 12px 14px;
	background: rgba(0, 174, 239, 0.05);
	border: 1px solid rgba(0, 174, 239, 0.18);
	border-left: 3px solid #00aeef;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 600;
	color: rgba(29, 30, 32, 0.75);
	line-height: 1.5;
}

.sp-checkout__review-card .payment_box {
	padding: 20px 22px 22px;
	margin: -4px 0 16px;
	border: 1px solid rgba(0, 0, 0, 0.04);
	border-top: none;
	border-radius: 0 0 16px 16px;
	background: #fafbfc;
	font-size: 13px;
	color: rgba(29, 30, 32, 0.68);
	line-height: 1.6;
}

/* Neopay plugin — bank selector override
   Plugin markup: .payment_box > .neopay-extra-info + .country_bank_list > .banks_grid > .bank_item > label > input.radio + .neopay-bank-img > img */
.sp-checkout__review-card .payment_box .neopay-extra-info {
	margin: 0 0 14px;
	padding: 0;
	font-size: 13px;
	color: rgba(29, 30, 32, 0.65);
	line-height: 1.55;
}

.sp-checkout__review-card .payment_box .neopay-extra-info p {
	margin: 0;
}

.sp-checkout__review-card .payment_box .neopay-payment-country-select {
	margin: 0 0 14px;
	width: 100%;
	padding: 10px 14px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	background: #fff;
	font-size: 14px;
	font-weight: 600;
	color: #1d1e20;
}

.sp-checkout__review-card .payment_box .country_bank_list {
	margin: 0;
}

.sp-checkout__review-card .payment_box .banks_grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.sp-checkout__review-card .payment_box .bank_item {
	width: auto;
	margin: 0;
	padding: 0;
	background: #fff;
	border: 1.5px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
	position: relative;
	overflow: hidden;
}

.sp-checkout__review-card .payment_box .bank_item:hover {
	border-color: rgba(0, 174, 239, 0.45);
	box-shadow: 0 6px 16px rgba(0, 174, 239, 0.08);
	transform: translateY(-1px);
}

.sp-checkout__review-card .payment_box .bank_item:has(input.radio:checked) {
	border-color: #00aeef;
	background: rgba(0, 174, 239, 0.05);
	box-shadow: 0 6px 18px rgba(0, 174, 239, 0.18);
}

.sp-checkout__review-card .payment_box .bank_item label {
	display: flex !important;
	align-items: center;
	justify-content: center;
	min-height: 64px;
	padding: 12px !important;
	margin: 0 !important;
	cursor: pointer;
}

.sp-checkout__review-card .payment_box .bank_item input.radio {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	margin: 0;
	pointer-events: none;
}

.sp-checkout__review-card .payment_box .bank_item:has(input.radio:checked)::after {
	content: '';
	position: absolute;
	top: 6px;
	right: 6px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #00aeef url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='2.5 6.5 5 9 9.5 3.5'/></svg>") center/10px 10px no-repeat;
	box-shadow: 0 2px 6px rgba(0, 174, 239, 0.35);
}

.sp-checkout__review-card .payment_box .bank_item .neopay-bank-img {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.sp-checkout__review-card .payment_box .bank_item .neopay-bank-img img {
	margin: 0;
	max-width: 100%;
	max-height: 36px;
	width: auto;
	height: auto;
	display: block;
	object-fit: contain;
	filter: grayscale(15%);
	opacity: 0.88;
	transition: filter 0.2s ease, opacity 0.2s ease;
}

.sp-checkout__review-card .payment_box .bank_item:hover .neopay-bank-img img,
.sp-checkout__review-card .payment_box .bank_item:has(input.radio:checked) .neopay-bank-img img {
	filter: grayscale(0);
	opacity: 1;
}

.sp-checkout__review-card .payment_box .bank_item .bank-name-text {
	font-size: 13px;
	font-weight: 700;
	color: #1d1e20;
	text-align: center;
	padding: 6px 4px;
}

@media (max-width: 768px) {
	.sp-checkout__review-card .payment_box .banks_grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 8px;
	}

	.sp-checkout__review-card .payment_box .bank_item label {
		min-height: 58px;
		padding: 10px !important;
	}

	.sp-checkout__review-card .payment_box .bank_item .neopay-bank-img img {
		max-height: 30px;
	}
}

@media (max-width: 460px) {
	.sp-checkout__review-card .payment_box .banks_grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Place order button */
.sp-checkout__review-card #place_order {
	display: block;
	width: 100%;
	padding: 20px 48px;
	background: #00aeef;
	color: #ffffff;
	border: none;
	border-radius: 100px;
	font-size: 16px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 10px 30px rgba(0, 174, 239, 0.3);
	position: relative;
	overflow: hidden;
}

.sp-checkout__review-card #place_order:hover {
	background: #0096ce;
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(0, 174, 239, 0.4);
}

.sp-checkout__review-card #place_order::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
	transform: skewX(-25deg);
	animation: sp-place-order-sweep 5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes sp-place-order-sweep {
	0% { left: -100%; }
	20% { left: 200%; }
	100% { left: 200%; }
}

/* Terms checkbox */
.sp-checkout__review-card .woocommerce-terms-and-conditions-wrapper {
	margin-bottom: 20px;
}

.sp-checkout__review-card .woocommerce-terms-and-conditions-wrapper label {
	font-size: 13px;
	color: rgba(29, 30, 32, 0.6);
}

.sp-checkout__review-card .woocommerce-terms-and-conditions-wrapper a {
	color: #00aeef;
	font-weight: 700;
}

/* Trust signals */
.sp-checkout__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.sp-checkout__trust-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	color: rgba(29, 30, 32, 0.45);
}

.sp-checkout__trust-item svg {
	color: #00aeef;
	flex-shrink: 0;
}

/* ---------- Checkout Responsive ---------- */
@media (max-width: 768px) {
	.sp-checkout.brave-luxury {
		padding: 40px 0 80px;
	}

	.sp-checkout__form .woocommerce-billing-fields__field-wrapper,
	.sp-checkout__form .woocommerce-shipping-fields__field-wrapper,
	.sp-checkout__form .woocommerce-additional-fields__field-wrapper {
		grid-template-columns: 1fr;
	}

	.sp-checkout__review-card {
		border-radius: 24px;
		padding: 24px;
	}

	.sp-checkout__section-header {
		margin-bottom: 20px;
	}
}

/* ==========================================================================
   NOTICES (Brave style)
   ========================================================================== */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-radius: 16px;
	padding: 16px 24px !important;
	margin-bottom: 24px !important;
	font-weight: 600;
}

.woocommerce-message {
	border-top-color: #00aeef !important;
	background: rgba(0, 174, 239, 0.05);
}

.woocommerce-error {
	border-top-color: #ef4444 !important;
}

/* ==========================================================================
   THANK YOU / ORDER CONFIRMATION — Brave & Luxurious
   ========================================================================== */
.sp-thankyou.brave-luxury {
	padding: 80px 0 120px;
	color: #1d1e20;
	background: #ffffff;
}

.sp-thankyou__success,
.sp-thankyou__failed {
	text-align: center;
	margin-bottom: 60px;
}

.sp-thankyou__icon {
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	margin: 0 auto 28px;
}

.sp-thankyou__icon--success {
	background: rgba(22, 163, 74, 0.08);
	color: #16a34a;
	animation: sp-thankyou-pop 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-thankyou__icon--failed {
	background: rgba(239, 68, 68, 0.08);
	color: #ef4444;
}

@keyframes sp-thankyou-pop {
	0% { transform: scale(0); opacity: 0; }
	60% { transform: scale(1.15); }
	100% { transform: scale(1); opacity: 1; }
}

.sp-thankyou__title {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 900;
	color: #1d1e20;
	letter-spacing: -0.03em;
	margin: 0 0 16px;
}

.sp-thankyou__text {
	font-size: 16px;
	color: rgba(29, 30, 32, 0.5);
	line-height: 1.6;
	max-width: 520px;
	margin: 0 auto;
}

.sp-thankyou__text strong {
	color: #00aeef;
	font-weight: 800;
}

/* Order details grid */
.sp-thankyou__details {
	background: #f8f9fb;
	border: 1px solid rgba(0, 0, 0, 0.04);
	border-radius: 32px;
	padding: 36px;
	margin-bottom: 48px;
}

.sp-thankyou__details-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 24px;
}

.sp-thankyou__detail-item {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.sp-thankyou__detail-label {
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(29, 30, 32, 0.4);
}

.sp-thankyou__detail-value {
	font-size: 16px;
	font-weight: 700;
	color: #1d1e20;
}

.sp-thankyou__detail-value--total {
	font-size: 20px;
	font-weight: 900;
	color: #00aeef;
}

/* Booking details card (rendered once per cleaning line item) */
.sp-thankyou__booking {
	margin-bottom: 32px;
	padding: 24px 28px;
	background: #fafafa;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 16px;
}

.sp-thankyou__booking .sp-thankyou__section-title {
	margin: 0 0 16px;
}

.sp-thankyou__booking-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	margin: 0;
}

.sp-thankyou__booking-row {
	display: grid;
	grid-template-columns: minmax(140px, 200px) 1fr;
	gap: 16px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sp-thankyou__booking-row:last-child {
	border-bottom: none;
}

.sp-thankyou__booking-label {
	font-size: 13px;
	color: #757575;
	font-weight: 500;
	margin: 0;
}

.sp-thankyou__booking-value {
	font-size: 14px;
	color: #1d1e20;
	font-weight: 500;
	margin: 0;
	word-break: break-word;
}

@media (max-width: 600px) {
	.sp-thankyou__booking {
		padding: 20px 18px;
	}
	.sp-thankyou__booking-row {
		grid-template-columns: 1fr;
		gap: 2px;
		padding: 10px 0;
	}
	.sp-thankyou__booking-label {
		font-size: 12px;
	}
}

/* Order items list */
.sp-thankyou__order-items {
	margin-bottom: 48px;
}

.sp-thankyou__section-title {
	font-size: 20px;
	font-weight: 900;
	color: #1d1e20;
	letter-spacing: -0.02em;
	margin: 0 0 24px;
}

.sp-thankyou__items-list {
	display: flex;
	flex-direction: column;
}

.sp-thankyou__order-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sp-thankyou__order-item:last-child {
	border-bottom: none;
}

.sp-thankyou__order-item-image {
	width: 64px;
	height: 64px;
	border-radius: 14px;
	overflow: hidden;
	background: #f8f9fb;
	flex-shrink: 0;
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.sp-thankyou__order-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sp-thankyou__order-item-info {
	flex: 1;
	min-width: 0;
}

.sp-thankyou__order-item-name {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: #1d1e20;
	margin-bottom: 4px;
}

.sp-thankyou__order-item-qty {
	font-size: 13px;
	font-weight: 600;
	color: rgba(29, 30, 32, 0.4);
}

.sp-thankyou__order-item-total {
	font-size: 16px;
	font-weight: 900;
	color: #1d1e20;
	flex-shrink: 0;
}

/* Actions */
.sp-thankyou__actions {
	text-align: center;
}

.sp-thankyou__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 18px 40px;
	border-radius: 100px;
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-decoration: none !important;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Matches the brand-blue pill used everywhere else (Apmokėti, hero CTA).
   `!important` on the color/text-decoration beats the generic
   `a { color: var(--checkout-blue); text-decoration: underline }`
   rule from the global stylesheet that was bleeding through. */
.sp-thankyou__btn--primary,
.sp-thankyou__btn--primary:visited {
	background: linear-gradient(135deg, #00aeef 0%, #008bbf 100%);
	color: #ffffff !important;
	box-shadow: 0 10px 30px rgba(0, 174, 239, 0.3);
}

.sp-thankyou__btn--primary:hover {
	background: linear-gradient(135deg, #0096ce 0%, #007aaf 100%);
	color: #ffffff !important;
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 174, 239, 0.4);
}

@media (max-width: 768px) {
	.sp-thankyou.brave-luxury {
		padding: 40px 0 80px;
	}

	.sp-thankyou__details {
		border-radius: 24px;
		padding: 24px;
	}

	.sp-thankyou__details-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 440px) {
	.sp-thankyou__details-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.sp-thankyou__details {
		padding: 20px;
	}
}

/* ==========================================================================
   SIDE CART DRAWER — Brave & Luxurious
   ========================================================================== */

/* Backdrop */
.sp-side-cart-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(29, 30, 32, 0);
	backdrop-filter: blur(0px);
	-webkit-backdrop-filter: blur(0px);
	z-index: 9998;
	pointer-events: none;
	transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
	            backdrop-filter 0.5s cubic-bezier(0.16, 1, 0.3, 1),
	            -webkit-backdrop-filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-side-cart-backdrop[aria-hidden="false"] {
	background: rgba(29, 30, 32, 0.3);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	pointer-events: auto;
}

/* Prevent body scroll when cart is open */
body.sp-side-cart-open {
	overflow: hidden;
}

/* Drawer panel */
.sp-side-cart {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 420px;
	max-width: 90vw;
	background: #ffffff;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	box-shadow: -30px 0 80px rgba(0, 0, 0, 0);
	transform: translateX(100%);
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
	            box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-side-cart[aria-hidden="false"] {
	transform: translateX(0);
	box-shadow: -30px 0 80px rgba(0, 0, 0, 0.15);
}

/* Loading overlay */
.sp-side-cart.is-loading::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.6);
	z-index: 100;
	pointer-events: none;
	animation: sp-cart-pulse 1s ease-in-out infinite;
}

@keyframes sp-cart-pulse {
	0%, 100% { opacity: 0.4; }
	50% { opacity: 0.8; }
}

/* ---------- Header ---------- */
.sp-side-cart__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 28px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	flex-shrink: 0;
}

.sp-side-cart__header-left {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #1d1e20;
}

.sp-side-cart__title {
	font-size: 18px;
	font-weight: 900;
	color: #1d1e20;
	margin: 0;
	letter-spacing: -0.02em;
}

.sp-side-cart__count {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 24px;
	padding: 0 6px;
	background: #00aeef;
	color: #ffffff;
	font-size: 12px;
	font-weight: 900;
	border-radius: 100px;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-side-cart__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: none;
	background: rgba(0, 0, 0, 0.04);
	border-radius: 12px;
	color: #1d1e20;
	cursor: pointer;
	transition: all 0.3s;
}

.sp-side-cart__close:hover {
	background: rgba(0, 0, 0, 0.08);
	transform: rotate(90deg);
}

/* ---------- Free Shipping Progress ---------- */
.sp-side-cart__shipping {
	padding: 16px 28px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	flex-shrink: 0;
}

.sp-side-cart__shipping-msg {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	color: rgba(29, 30, 32, 0.6);
	margin-bottom: 10px;
}

.sp-side-cart__shipping-msg svg {
	flex-shrink: 0;
	color: #00aeef;
}

.sp-side-cart__shipping-msg--free {
	color: #16a34a;
}

.sp-side-cart__shipping-msg--free svg {
	color: #16a34a;
}

.sp-side-cart__shipping-bar {
	height: 4px;
	background: rgba(0, 0, 0, 0.06);
	border-radius: 100px;
	overflow: hidden;
}

.sp-side-cart__shipping-fill {
	height: 100%;
	background: linear-gradient(90deg, #00aeef, #33bef2);
	border-radius: 100px;
	transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Cart Items ---------- */
.sp-side-cart__items {
	flex: 1;
	overflow-y: auto;
	padding: 8px 28px;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
}

.sp-side-cart__items::-webkit-scrollbar {
	width: 4px;
}

.sp-side-cart__items::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.1);
	border-radius: 4px;
}

/* Booking detail rows — used in side cart, cart page, and checkout */
.sp-booking-row {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(29, 30, 32, 0.6);
	line-height: 1.4;
}

.sp-booking-row__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	color: #00aeef;
}

.sp-booking-row__text {
	flex: 1;
	min-width: 0;
}

/* Cleaning item meta wrapper */
.sp-side-cart__item-meta {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin: 5px 0 10px;
	padding: 10px 12px;
	background: rgba(0, 174, 239, 0.05);
	border-radius: 10px;
	border-left: 3px solid rgba(0, 174, 239, 0.3);
}

/* Cleaning service icon badge */
.sp-side-cart__item-icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(135deg, #00aeef 0%, #0096ce 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	align-self: flex-start;
}

/* Cleaning item layout override */
.sp-side-cart__item--cleaning {
	align-items: flex-start;
}

.sp-side-cart__item--cleaning .sp-side-cart__item-name {
	font-size: 14px;
	font-weight: 800;
	color: #1d1e20;
	display: block;
	margin-bottom: 0;
	overflow: visible;
	white-space: normal;
	text-overflow: unset;
}

.sp-side-cart__item--cleaning .sp-side-cart__item-price {
	font-size: 16px;
	font-weight: 900;
	color: #00aeef;
	margin-top: 2px;
	margin-bottom: 0;
}

/* Individual item */
.sp-side-cart__item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	opacity: 0;
	transform: translateX(30px);
	transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-side-cart__item.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.sp-side-cart__item.is-removing {
	opacity: 0;
	transform: translateX(60px) scale(0.9);
	max-height: 0;
	padding: 0;
	margin: 0;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-side-cart__item:last-child {
	border-bottom: none;
}

/* Item image */
.sp-side-cart__item-image {
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	border-radius: 16px;
	overflow: hidden;
	background: #f8f9fb;
	border: 1px solid rgba(0, 0, 0, 0.04);
	transition: transform 0.3s;
}

.sp-side-cart__item-image:hover {
	transform: scale(1.05);
}

.sp-side-cart__item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Item info */
.sp-side-cart__item-info {
	flex: 1;
	min-width: 0;
}

.sp-side-cart__item-name {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #1d1e20;
	text-decoration: none;
	line-height: 1.3;
	margin-bottom: 4px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color 0.3s;
}

.sp-side-cart__item-name:hover {
	color: #00aeef;
}

.sp-side-cart__item-price {
	font-size: 15px;
	font-weight: 900;
	color: #00aeef;
	margin-bottom: 8px;
}

/* Quantity controls */
.sp-side-cart__item-qty {
	display: inline-flex;
	align-items: center;
	gap: 0;
	background: #f8f9fb;
	border-radius: 100px;
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.sp-side-cart__qty-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: none;
	background: transparent;
	color: #1d1e20;
	cursor: pointer;
	transition: all 0.2s;
	border-radius: 100px;
}

.sp-side-cart__qty-btn:hover {
	background: rgba(0, 174, 239, 0.1);
	color: #00aeef;
}

.sp-side-cart__qty-btn:active {
	transform: scale(0.9);
}

.sp-side-cart__qty-value {
	min-width: 28px;
	text-align: center;
	font-size: 14px;
	font-weight: 800;
	color: #1d1e20;
}

/* Remove button */
.sp-side-cart__item-remove {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: none;
	background: transparent;
	color: rgba(29, 30, 32, 0.3);
	cursor: pointer;
	border-radius: 10px;
	transition: all 0.3s;
}

.sp-side-cart__item-remove:hover {
	background: rgba(239, 68, 68, 0.08);
	color: #ef4444;
	transform: scale(1.1);
}

/* ---------- Empty State ---------- */
.sp-side-cart__empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 60px 20px;
	height: 100%;
}

.sp-side-cart__empty-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.03);
	border-radius: 24px;
	color: rgba(29, 30, 32, 0.2);
	margin-bottom: 24px;
	animation: sp-empty-float 3s ease-in-out infinite;
}

@keyframes sp-empty-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

.sp-side-cart__empty-text {
	font-size: 16px;
	font-weight: 700;
	color: rgba(29, 30, 32, 0.4);
	margin: 0 0 24px;
}

.sp-side-cart__empty-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: #1d1e20;
	color: #ffffff;
	text-decoration: none;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-side-cart__empty-btn:hover {
	background: #00aeef;
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 174, 239, 0.3);
}

/* ---------- Footer ---------- */
.sp-side-cart__footer {
	padding: 24px 28px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	background: #f8f9fb;
}

.sp-side-cart__subtotal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4px;
}

.sp-side-cart__subtotal-label {
	font-size: 14px;
	font-weight: 700;
	color: rgba(29, 30, 32, 0.5);
}

.sp-side-cart__subtotal-value {
	font-size: 24px;
	font-weight: 900;
	color: #1d1e20;
}

/* Cart buttons */
.sp-side-cart__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 24px;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-side-cart__btn--outline {
	background: transparent;
	color: #1d1e20;
	border: 2px solid rgba(0, 0, 0, 0.1);
}

.sp-side-cart__btn--outline:hover {
	border-color: #1d1e20;
	background: rgba(0, 0, 0, 0.03);
}

.sp-side-cart__btn--primary {
	background: #00aeef;
	color: #ffffff;
	border: none;
	box-shadow: 0 10px 30px rgba(0, 174, 239, 0.3);
	position: relative;
	overflow: hidden;
}

.sp-side-cart__btn--primary:hover {
	background: #0096ce;
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(0, 174, 239, 0.4);
}

/* CTA sweep animation on checkout button */
.sp-side-cart__btn--primary::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
	transform: skewX(-25deg);
	animation: sp-cart-btn-sweep 5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes sp-cart-btn-sweep {
	0% { left: -100%; }
	20% { left: 200%; }
	100% { left: 200%; }
}

/* ---------- Header cart count pulse ---------- */
.site-header__cart-count.is-pulse {
	animation: sp-count-pulse 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes sp-count-pulse {
	0% { transform: scale(1); }
	40% { transform: scale(1.4); }
	100% { transform: scale(1); }
}

/* ---------- Add-to-cart button states ---------- */
.sp-product__cart-form .single_add_to_cart_button.is-loading {
	opacity: 0.7;
	pointer-events: none;
}

.sp-product__cart-form .single_add_to_cart_button.is-success {
	background: #16a34a !important;
	box-shadow: 0 10px 30px rgba(22, 163, 74, 0.3) !important;
}

/* ---------- Side Cart Responsive ---------- */
@media (max-width: 480px) {
	.sp-side-cart {
		width: 100vw;
		max-width: 100vw;
	}

	.sp-side-cart__header,
	.sp-side-cart__shipping,
	.sp-side-cart__items,
	.sp-side-cart__footer {
		padding-left: 20px;
		padding-right: 20px;
	}

	.sp-side-cart__item-image {
		width: 60px;
		height: 60px;
		border-radius: 12px;
	}
}


/* ==========================================================================
   GLOBAL WOOCOMMERCE FORM ELEMENTS — Brave & Luxurious
   Styles for all WC-generated inputs, buttons, selects, notices, etc.
   ========================================================================== */

/* ---------- WooCommerce Border/Table Reset ----------
   Since we removed all default WooCommerce CSS, we must reset
   all borders on WC-generated tables, cells, and elements.
   ---------------------------------------------------------------- */
.woocommerce table,
.woocommerce table th,
.woocommerce table td {
	border: none;
}

.woocommerce table.shop_table,
.woocommerce table.shop_table th,
.woocommerce table.shop_table td,
.woocommerce table.shop_table thead,
.woocommerce table.shop_table tbody,
.woocommerce table.shop_table tfoot {
	border: none !important;
	background: transparent;
}

.woocommerce-cart-form,
.woocommerce-cart-form table,
.woocommerce-cart-form th,
.woocommerce-cart-form td {
	border: none !important;
}

/* Reset WC payment/shipping box borders */
.woocommerce #payment,
.woocommerce #payment ul.payment_methods,
.woocommerce #payment div.payment_box {
	border: none;
	background: transparent;
}

.woocommerce #payment div.payment_box::before {
	display: none;
}

/* Reset WC cart totals borders */
.woocommerce .cart_totals,
.woocommerce .cart_totals table,
.woocommerce .cart_totals th,
.woocommerce .cart_totals td {
	border: none !important;
}

/* ---------- Global Input / Textarea / Select ---------- */
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="number"],
.woocommerce input[type="password"],
.woocommerce input[type="url"],
.woocommerce input[type="search"],
.woocommerce .input-text,
.woocommerce textarea,
.woocommerce select {
	width: 100%;
	padding: 14px 20px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	font-size: 15px;
	font-weight: 500;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: #ffffff;
	color: #1d1e20;
	transition: border-color 0.3s, box-shadow 0.3s;
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	box-sizing: border-box;
}

.woocommerce input[type="text"]:focus,
.woocommerce input[type="email"]:focus,
.woocommerce input[type="tel"]:focus,
.woocommerce input[type="number"]:focus,
.woocommerce input[type="password"]:focus,
.woocommerce input[type="url"]:focus,
.woocommerce input[type="search"]:focus,
.woocommerce .input-text:focus,
.woocommerce textarea:focus,
.woocommerce select:focus {
	border-color: #00aeef;
	box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
	outline: none;
}

.woocommerce input::placeholder,
.woocommerce textarea::placeholder {
	color: rgba(29, 30, 32, 0.3);
}

.woocommerce textarea {
	min-height: 120px;
	resize: vertical;
	border-radius: 20px;
}

.woocommerce select {
	padding-right: 44px;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231d1e20' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 12px;
	cursor: pointer;
}

/* ---------- Global Labels ---------- */
.woocommerce form .form-row > label,
.woocommerce .woocommerce-form-row > label {
	display: block;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(29, 30, 32, 0.5);
	margin-bottom: 8px;
}

.woocommerce form .form-row .required {
	color: #00aeef;
}

/* ---------- Form Row Spacing ---------- */
.woocommerce form .form-row {
	margin-bottom: 16px;
	padding: 0;
}

/* ---------- Global WooCommerce Buttons ---------- */
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button,
.woocommerce #respond input#submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 32px;
	background: #1d1e20;
	color: #ffffff;
	border: none;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 800;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	overflow: hidden;
	line-height: 1.4;
	box-sizing: border-box;
	-webkit-appearance: none;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover,
.woocommerce #respond input#submit:hover {
	background: #00aeef;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 174, 239, 0.3);
}

/* Alt / Primary buttons */
.woocommerce .button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce a.button.alt,
.woocommerce .button.checkout,
.woocommerce a.checkout-button {
	background: #00aeef;
	color: #ffffff;
	padding: 18px 40px;
	font-size: 15px;
	box-shadow: 0 10px 30px rgba(0, 174, 239, 0.3);
}

.woocommerce .button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce .button.checkout:hover,
.woocommerce a.checkout-button:hover {
	background: #0096ce;
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 174, 239, 0.4);
}

/* Sweep animation on alt buttons */
.woocommerce .button.alt::after,
.woocommerce a.checkout-button::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
	transform: skewX(-25deg);
	animation: sp-btn-sweep 5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes sp-btn-sweep {
	0% { left: -100%; }
	20% { left: 200%; }
	100% { left: 200%; }
}

/* Disabled / loading buttons */
.woocommerce .button:disabled,
.woocommerce .button.disabled,
.woocommerce button.button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none !important;
	box-shadow: none !important;
}

/* ---------- Quantity Input (WC default .quantity) ---------- */
.woocommerce .quantity {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 14px;
	overflow: hidden;
	background: #f8f9fb;
}

.woocommerce .quantity .qty {
	width: 56px;
	padding: 10px 4px;
	text-align: center;
	border: none;
	border-radius: 0;
	font-size: 15px;
	font-weight: 800;
	color: #1d1e20;
	background: transparent;
	-moz-appearance: textfield;
	box-shadow: none;
}

.woocommerce .quantity .qty::-webkit-outer-spin-button,
.woocommerce .quantity .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.woocommerce .quantity .qty:focus {
	box-shadow: none;
	border: none;
}

/* ---------- Shipping Methods (Cart + Checkout unified) ----------
   WC renders: <ul.woocommerce-shipping-methods> > <li> > <input type=radio> + <label>
   MultiParcels injects an <img> (carrier logo) into the label via
   woocommerce_cart_shipping_method_full_label. We hide the native radio and turn
   each <li> into a full-width card where the <label> is the click target, with a
   custom radio dot + larger carrier logo + method name + price. */
.woocommerce .woocommerce-shipping-methods,
.sp-cart__totals-card .woocommerce-shipping-methods,
.sp-checkout__review-card .woocommerce-shipping-methods {
	list-style: none;
	padding: 0;
	margin: 8px 0 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.woocommerce .woocommerce-shipping-methods li {
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
}

.woocommerce .woocommerce-shipping-methods input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	margin: 0;
	pointer-events: none;
}

.woocommerce .woocommerce-shipping-methods li label {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px 14px 44px;
	margin: 0;
	border: 1.5px solid rgba(0, 0, 0, 0.08);
	border-radius: 14px;
	background: #fff;
	font-size: 14px;
	font-weight: 600;
	color: #1d1e20;
	cursor: pointer;
	transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
	position: relative;
	min-height: 68px;
	width: 100%;
	box-sizing: border-box;
}

/* Custom radio — single ::before draws ring + filled state via inset
   box-shadow so the inner dot is guaranteed concentric (no off-by-one
   between separate ::before/::after positions when one is at left:16 and
   the other at left:22). */
.woocommerce .woocommerce-shipping-methods li label::before {
	content: '';
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid rgba(0, 0, 0, 0.25);
	background: #fff;
	box-sizing: border-box;
	box-shadow: inset 0 0 0 0 #00aeef;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.woocommerce .woocommerce-shipping-methods li label:hover {
	border-color: rgba(0, 174, 239, 0.45);
	background: rgba(0, 174, 239, 0.03);
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(0, 174, 239, 0.08);
}

.woocommerce .woocommerce-shipping-methods li:has(input:checked) label {
	border-color: #00aeef;
	background: rgba(0, 174, 239, 0.06);
	box-shadow: 0 6px 18px rgba(0, 174, 239, 0.18);
}

.woocommerce .woocommerce-shipping-methods li:has(input:checked) label::before {
	border-color: #00aeef;
	/* Border-box content area is 14×14 px (18 minus 2×2 px border). Inset
	   shadow of 3 px on every edge leaves an 8 px-square dot rendered as a
	   circle by border-radius — guaranteed concentric with the ring. */
	box-shadow: inset 0 0 0 3px #00aeef;
}

/* Carrier logo injected by MultiParcels */
.woocommerce .woocommerce-shipping-methods li label img {
	max-height: 40px;
	max-width: 88px;
	width: auto;
	height: auto;
	object-fit: contain;
	flex-shrink: 0;
	margin: 0;
	vertical-align: middle;
}

/* Price bdi (rendered last inside the label) — push to the right */
.woocommerce .woocommerce-shipping-methods li label .woocommerce-Price-amount,
.woocommerce .woocommerce-shipping-methods li label bdi {
	margin-left: auto;
	font-weight: 800;
	color: #1d1e20;
	white-space: nowrap;
	font-size: 14px;
}

/* Free-shipping label */
.woocommerce .woocommerce-shipping-methods li label:has(.woocommerce-Price-amount:empty) {
	justify-content: space-between;
}

/* Tighten in-card copy so long method names wrap nicely */
.woocommerce .woocommerce-shipping-methods li label {
	line-height: 1.35;
}

@media (max-width: 600px) {
	.woocommerce .woocommerce-shipping-methods li label {
		padding: 12px 14px 12px 40px;
		gap: 10px;
		min-height: 60px;
	}

	.woocommerce .woocommerce-shipping-methods li label img {
		max-height: 32px;
		max-width: 72px;
	}
}

/* ---------- Coupon form (generic WC) ---------- */
.woocommerce .coupon {
	display: flex;
	gap: 10px;
	margin-bottom: 16px;
}

.woocommerce .coupon .input-text {
	flex: 1;
	min-width: 0;
}

.woocommerce .coupon .button {
	padding: 14px 24px;
	white-space: nowrap;
}

/* ---------- Cart Totals (generic WC table) ---------- */
.woocommerce .cart_totals table {
	width: 100%;
	border-collapse: collapse;
}

.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td {
	padding: 14px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	font-size: 14px;
	vertical-align: top;
}

.woocommerce .cart_totals table th {
	font-weight: 700;
	color: rgba(29, 30, 32, 0.6);
	text-align: left;
	padding-right: 16px;
}

.woocommerce .cart_totals table td {
	font-weight: 700;
	color: #1d1e20;
	text-align: right;
}

.woocommerce .cart_totals .order-total th {
	font-size: 16px;
	font-weight: 800;
	color: #1d1e20;
	border-top: 2px solid rgba(0, 0, 0, 0.08);
	border-bottom: none;
	padding-top: 20px;
}

.woocommerce .cart_totals .order-total td {
	border-top: 2px solid rgba(0, 0, 0, 0.08);
	border-bottom: none;
	padding-top: 20px;
}

.woocommerce .cart_totals .order-total .amount {
	font-size: 24px;
	font-weight: 900;
	color: #00aeef;
}

/* ---------- WC Notices (global) ---------- */
.woocommerce .woocommerce-notices-wrapper {
	margin-bottom: 24px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-radius: 20px !important;
	padding: 18px 28px !important;
	margin-bottom: 20px !important;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.6;
	border: none !important;
	position: relative;
	list-style: none;
}

.woocommerce-message {
	background: rgba(0, 174, 239, 0.06) !important;
	color: #1d1e20;
	border-left: 4px solid #00aeef !important;
}

.woocommerce-info {
	background: rgba(0, 174, 239, 0.06) !important;
	color: #1d1e20;
	border-left: 4px solid #00aeef !important;
}

.woocommerce-error {
	background: rgba(239, 68, 68, 0.06) !important;
	color: #1d1e20;
	border-left: 4px solid #ef4444 !important;
}

.woocommerce-error li {
	margin-bottom: 4px;
}

.woocommerce-message .button,
.woocommerce-info .button {
	float: right;
	padding: 8px 20px;
	font-size: 12px;
	margin-left: 16px;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
	display: none !important;
}

/* ---------- Checkout Payment Methods ---------- */
.woocommerce-checkout #payment {
	background: transparent;
	border-radius: 0;
}

.woocommerce-checkout #payment .payment_methods {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	border: none;
}

.woocommerce-checkout #payment .payment_methods li {
	margin-bottom: 10px;
}

.woocommerce-checkout #payment .payment_methods li label {
	display: flex !important;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 16px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	color: #1d1e20;
	background: #ffffff;
	transition: all 0.3s;
}

.woocommerce-checkout #payment .payment_methods li label:hover {
	border-color: rgba(0, 174, 239, 0.2);
	background: rgba(0, 174, 239, 0.03);
}

.woocommerce-checkout #payment .payment_methods li input[type="radio"] {
	accent-color: #00aeef;
	width: 18px;
	height: 18px;
}

.woocommerce-checkout #payment .payment_methods li input[type="radio"]:checked ~ label {
	border-color: #00aeef;
	background: rgba(0, 174, 239, 0.05);
}

.woocommerce-checkout #payment .payment_box {
	background: rgba(0, 0, 0, 0.02) !important;
	border: 1px solid rgba(0, 0, 0, 0.04);
	border-top: none;
	border-radius: 0 0 16px 16px;
	padding: 16px 20px;
	margin: -6px 0 10px;
	font-size: 13px;
	color: rgba(29, 30, 32, 0.6);
	line-height: 1.6;
}

.woocommerce-checkout #payment .payment_box::before {
	display: none !important;
}

/* Place order button (generic) */
.woocommerce-checkout #payment #place_order {
	display: block;
	width: 100%;
	padding: 20px 48px;
	background: #00aeef;
	color: #ffffff;
	border: none;
	border-radius: 100px;
	font-size: 16px;
	font-weight: 800;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 10px 30px rgba(0, 174, 239, 0.3);
	position: relative;
	overflow: hidden;
}

.woocommerce-checkout #payment #place_order:hover {
	background: #0096ce;
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(0, 174, 239, 0.4);
}

/* ---------- Checkbox Styling ---------- */
.woocommerce input[type="checkbox"] {
	width: 20px;
	height: 20px;
	accent-color: #00aeef;
	cursor: pointer;
	border-radius: 6px;
}

.woocommerce input[type="radio"] {
	accent-color: #00aeef;
	width: 18px;
	height: 18px;
	cursor: pointer;
}

/* ---------- Select2 Global Overrides ---------- */
.woocommerce .select2-container--default .select2-selection--single {
	height: auto;
	padding: 14px 20px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	background: #ffffff;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding: 0;
	line-height: 1.4;
	font-size: 15px;
	font-weight: 500;
	color: #1d1e20;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 100%;
	right: 16px;
	top: 0;
}

.woocommerce .select2-container--default.select2-container--focus .select2-selection--single,
.woocommerce .select2-container--default.select2-container--open .select2-selection--single {
	border-color: #00aeef;
	box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

.select2-dropdown {
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 16px !important;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.select2-search--dropdown .select2-search__field {
	padding: 12px 16px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	font-size: 14px;
	outline: none;
}

.select2-search--dropdown .select2-search__field:focus {
	border-color: #00aeef;
	box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

.select2-results__option {
	padding: 10px 16px;
	font-size: 14px;
	font-weight: 500;
	transition: background 0.2s;
}

.select2-results__option--highlighted {
	background-color: rgba(0, 174, 239, 0.08) !important;
	color: #1d1e20 !important;
}

.select2-results__option--selected {
	background-color: rgba(0, 174, 239, 0.15) !important;
	color: #00aeef !important;
	font-weight: 700;
}

/* ---------- WooCommerce Validation (inline errors) ---------- */
.woocommerce form .form-row.woocommerce-invalid .input-text,
.woocommerce form .form-row.woocommerce-invalid select,
.woocommerce form .form-row.woocommerce-invalid .select2-selection--single {
	border-color: #ef4444;
}

.woocommerce form .form-row.woocommerce-invalid .input-text:focus,
.woocommerce form .form-row.woocommerce-invalid select:focus {
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.woocommerce form .form-row.woocommerce-validated .input-text,
.woocommerce form .form-row.woocommerce-validated select,
.woocommerce form .form-row.woocommerce-validated .select2-selection--single {
	border-color: #16a34a;
}

/* ---------- Return to Shop / Continue / Link Buttons ---------- */
.woocommerce .return-to-shop .button,
.woocommerce .wc-proceed-to-checkout .checkout-button {
	display: block;
	width: 100%;
	text-align: center;
}

/* ---------- Cart Empty State (WC default) ---------- */
.woocommerce .cart-empty.woocommerce-info {
	text-align: center;
	padding: 40px 28px !important;
	border-radius: 24px !important;
	font-size: 16px;
	font-weight: 700;
}

/* ---------- Account / Login Forms ---------- */
.woocommerce form.login,
.woocommerce form.register,
.woocommerce-form-login,
.woocommerce-form-register {
	background: #f8f9fb;
	border: 1px solid rgba(0, 0, 0, 0.04);
	border-radius: 32px;
	padding: 36px;
	margin-bottom: 24px;
}

.woocommerce form.login .form-row,
.woocommerce form.register .form-row {
	margin-bottom: 16px;
}

/* Lost password link */
.woocommerce .woocommerce-LostPassword {
	margin-top: 12px;
}

.woocommerce .woocommerce-LostPassword a {
	color: #00aeef;
	font-weight: 700;
	font-size: 13px;
	text-decoration: none;
	transition: color 0.3s;
}

.woocommerce .woocommerce-LostPassword a:hover {
	color: #0096ce;
}

/* ---------- Empty Cart Page (Brave) ---------- */
.sp-cart-empty.brave-luxury {
	padding: 120px 0;
	color: #1d1e20;
	background: #ffffff;
	text-align: center;
}

.sp-cart-empty__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 460px;
	margin: 0 auto;
}

.sp-cart-empty__icon {
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.03);
	border-radius: 32px;
	color: rgba(29, 30, 32, 0.2);
	margin-bottom: 32px;
	animation: sp-empty-float 3s ease-in-out infinite;
}

.sp-cart-empty__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 900;
	color: #1d1e20;
	letter-spacing: -0.03em;
	margin: 0 0 16px;
}

.sp-cart-empty__text {
	font-size: 16px;
	color: rgba(29, 30, 32, 0.5);
	line-height: 1.6;
	margin: 0 0 32px;
}

.sp-cart-empty__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 18px 40px;
	background: #1d1e20;
	color: #ffffff;
	text-decoration: none;
	border-radius: 100px;
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	overflow: hidden;
}

.sp-cart-empty__btn:hover {
	background: #00aeef;
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 174, 239, 0.3);
	color: #ffffff;
}

/* ---------- WC Table (generic order tables etc.) ---------- */
.woocommerce table.shop_table {
	width: 100%;
	border-collapse: collapse;
	border: none;
	border-radius: 0;
}

.woocommerce table.shop_table th {
	padding: 14px 12px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(29, 30, 32, 0.4);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	text-align: left;
	background: transparent;
}

.woocommerce table.shop_table td {
	padding: 16px 12px;
	font-size: 14px;
	font-weight: 600;
	color: #1d1e20;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	vertical-align: middle;
}

.woocommerce table.shop_table .amount {
	font-weight: 800;
	color: #1d1e20;
}

.woocommerce table.shop_table .order-total .amount {
	font-size: 20px;
	font-weight: 900;
	color: #00aeef;
}

/* ---------- WC Links (scoped to WC content areas only, not body.woocommerce) ---------- */
.sp-wc-page a:not(.button):not(.btn):not(.checkout-button):not([class*="sp-"]):not([class*="wc-block"]),
.sp-single-product a:not(.button):not(.btn):not(.checkout-button):not([class*="sp-"]):not([class*="wc-block"]),
.sp-shop-page a:not(.button):not(.btn):not(.checkout-button):not([class*="sp-"]):not([class*="wc-block"]),
.sp-cart a:not(.button):not(.btn):not(.checkout-button):not([class*="sp-"]):not([class*="wc-block"]),
.sp-checkout a:not(.button):not(.btn):not(.checkout-button):not([class*="sp-"]):not([class*="wc-block"]),
.sp-thankyou a:not(.button):not(.btn):not(.checkout-button):not([class*="sp-"]):not([class*="wc-block"]) {
	color: #00aeef;
	transition: color 0.3s;
}

.sp-wc-page a:not(.button):not(.btn):not(.checkout-button):not([class*="sp-"]):not([class*="wc-block"]):hover,
.sp-single-product a:not(.button):not(.btn):not(.checkout-button):not([class*="sp-"]):not([class*="wc-block"]):hover,
.sp-shop-page a:not(.button):not(.btn):not(.checkout-button):not([class*="sp-"]):not([class*="wc-block"]):hover,
.sp-cart a:not(.button):not(.btn):not(.checkout-button):not([class*="sp-"]):not([class*="wc-block"]):hover,
.sp-checkout a:not(.button):not(.btn):not(.checkout-button):not([class*="sp-"]):not([class*="wc-block"]):hover,
.sp-thankyou a:not(.button):not(.btn):not(.checkout-button):not([class*="sp-"]):not([class*="wc-block"]):hover {
	color: #0096ce;
}

/* ---------- WC Price Amounts ---------- */
.woocommerce .amount {
	font-weight: 700;
}

.woocommerce del .amount {
	color: rgba(29, 30, 32, 0.4);
	font-weight: 500;
}

.woocommerce ins {
	text-decoration: none;
}

.woocommerce ins .amount {
	color: #00aeef;
	font-weight: 900;
}

/* ---------- Responsive Global ---------- */
@media (max-width: 768px) {
	.woocommerce .button,
	.woocommerce button.button,
	.woocommerce input.button,
	.woocommerce a.button {
		padding: 12px 24px;
		font-size: 13px;
	}

	.woocommerce .button.alt,
	.woocommerce a.checkout-button {
		padding: 16px 32px;
		font-size: 14px;
	}

	.woocommerce input[type="text"],
	.woocommerce input[type="email"],
	.woocommerce input[type="tel"],
	.woocommerce input[type="number"],
	.woocommerce input[type="password"],
	.woocommerce .input-text,
	.woocommerce select {
		padding: 12px 16px;
		font-size: 14px;
		border-radius: 14px;
	}

	.woocommerce form.login,
	.woocommerce form.register {
		border-radius: 24px;
		padding: 24px;
	}
}

/* ==========================================================================
   WC PAGE WRAPPER — ensures max-width for all WC pages
   ========================================================================== */
.sp-wc-page {
	padding: 60px 0 120px;
	color: #1d1e20;
	background: #ffffff;
}

/* Templates no longer have their own .container — page.php provides it.
   Remove template-level padding so .sp-wc-page handles it. */
.sp-cart.brave-luxury,
.sp-checkout.brave-luxury,
.sp-cart-empty.brave-luxury,
.sp-thankyou.brave-luxury {
	padding: 0;
}

/* ==========================================================================
   WOOCOMMERCE BLOCKS — Cart & Checkout (WC 8.3+)
   Targets block-based cart/checkout when classic shortcodes are not used.
   ========================================================================== */

/* ---------- Block Cart Page ---------- */
.wc-block-cart,
.wp-block-woocommerce-cart {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: #1d1e20;
}

/* Block page titles */
.sp-wc-page h1.wp-block-heading,
.sp-wc-page .wc-block-cart__heading,
.sp-wc-page .wc-block-checkout__heading {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 900;
	color: #1d1e20;
	letter-spacing: -0.03em;
	margin: 0 0 32px;
}

/* Block layout — two columns */
.wc-block-cart .wc-block-cart__main,
.wc-block-checkout .wc-block-checkout__main {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 48px;
	align-items: start;
}

@media (max-width: 1024px) {
	.wc-block-cart .wc-block-cart__main,
	.wc-block-checkout .wc-block-checkout__main {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* ---------- Block Sidebar / Totals ---------- */
.wc-block-cart__sidebar,
.wc-block-checkout__sidebar {
	background: #f8f9fb;
	border: 1px solid rgba(0, 0, 0, 0.04);
	border-radius: 32px;
	padding: 36px;
	position: sticky;
	top: 120px;
}

/* ---------- Block Inputs ---------- */
.wc-block-components-text-input input,
.wc-block-components-text-input textarea,
.wc-block-components-combobox input,
.wc-block-components-combobox .wc-block-components-combobox-control input,
.wc-block-components-textarea textarea,
.wc-block-components-select .wc-block-components-select-control select {
	width: 100% !important;
	padding: 14px 20px !important;
	border: 1px solid rgba(0, 0, 0, 0.08) !important;
	border-radius: 16px !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
	background: #ffffff !important;
	color: #1d1e20 !important;
	transition: border-color 0.3s, box-shadow 0.3s !important;
	outline: none !important;
	box-sizing: border-box !important;
	-webkit-appearance: none !important;
}

.wc-block-components-text-input input:focus,
.wc-block-components-text-input textarea:focus,
.wc-block-components-combobox input:focus,
.wc-block-components-select .wc-block-components-select-control select:focus {
	border-color: #00aeef !important;
	box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1) !important;
}

/* Block floating labels */
.wc-block-components-text-input label,
.wc-block-components-combobox label {
	font-size: 12px !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
	color: rgba(29, 30, 32, 0.5) !important;
}

/* ---------- Block Buttons ---------- */
.wc-block-components-button,
.wc-block-cart__submit-button,
.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button,
.wc-block-components-checkout-place-order-button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	padding: 18px 40px !important;
	background: #00aeef !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 100px !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
	text-transform: uppercase !important;
	letter-spacing: 0.05em !important;
	text-decoration: none !important;
	cursor: pointer !important;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
	box-shadow: 0 10px 30px rgba(0, 174, 239, 0.3) !important;
	position: relative !important;
	overflow: hidden !important;
	width: 100% !important;
}

.wc-block-components-button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover {
	background: #0096ce !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 15px 40px rgba(0, 174, 239, 0.4) !important;
}

/* Secondary / outline block buttons */
.wc-block-components-button.outlined,
.wc-block-components-button--outlined {
	background: transparent !important;
	color: #1d1e20 !important;
	border: 2px solid rgba(0, 0, 0, 0.1) !important;
	box-shadow: none !important;
}

.wc-block-components-button.outlined:hover,
.wc-block-components-button--outlined:hover {
	border-color: #1d1e20 !important;
	background: rgba(0, 0, 0, 0.03) !important;
	box-shadow: none !important;
}

/* ---------- Block Quantity Selector ---------- */
.wc-block-components-quantity-selector {
	display: inline-flex !important;
	align-items: center !important;
	border: 1px solid rgba(0, 0, 0, 0.08) !important;
	border-radius: 14px !important;
	overflow: hidden !important;
	background: #f8f9fb !important;
}

.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
	width: 48px !important;
	padding: 8px 4px !important;
	text-align: center !important;
	border: none !important;
	border-radius: 0 !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	color: #1d1e20 !important;
	background: transparent !important;
	-moz-appearance: textfield !important;
	box-shadow: none !important;
}

.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input::-webkit-outer-spin-button,
.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input::-webkit-inner-spin-button {
	-webkit-appearance: none !important;
	margin: 0 !important;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 36px !important;
	height: 36px !important;
	border: none !important;
	background: transparent !important;
	color: #1d1e20 !important;
	cursor: pointer !important;
	font-size: 18px !important;
	font-weight: 700 !important;
	transition: all 0.2s !important;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:hover {
	background: rgba(0, 174, 239, 0.1) !important;
	color: #00aeef !important;
}

/* ---------- Block Cart Item ---------- */
.wc-block-cart-items .wc-block-cart-items__row {
	padding: 24px 0 !important;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.wc-block-cart-items .wc-block-cart-items__row:first-child {
	border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.wc-block-cart-items .wc-block-components-product-name {
	font-size: 15px !important;
	font-weight: 700 !important;
	color: #1d1e20 !important;
	text-decoration: none !important;
	transition: color 0.3s !important;
}

.wc-block-cart-items .wc-block-components-product-name:hover {
	color: #00aeef !important;
}

.wc-block-cart-items .wc-block-cart-item__image img {
	border-radius: 16px !important;
	border: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.wc-block-cart-items .wc-block-components-product-price {
	font-weight: 800 !important;
	color: #1d1e20 !important;
}

/* Block remove item link */
.wc-block-cart-item__remove-link,
.wc-block-components-product-details .wc-block-components-product-details__remove-item {
	color: rgba(29, 30, 32, 0.4) !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	transition: color 0.3s !important;
}

.wc-block-cart-item__remove-link:hover {
	color: #ef4444 !important;
}

/* ---------- Block Totals ---------- */
.wc-block-components-totals-wrapper,
.wc-block-components-totals-item {
	border-color: rgba(0, 0, 0, 0.06) !important;
}

.wc-block-components-totals-item__label {
	font-size: 14px !important;
	font-weight: 600 !important;
	color: rgba(29, 30, 32, 0.6) !important;
}

.wc-block-components-totals-item__value {
	font-size: 14px !important;
	font-weight: 700 !important;
	color: #1d1e20 !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
	font-size: 16px !important;
	font-weight: 800 !important;
	color: #1d1e20 !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	font-size: 24px !important;
	font-weight: 900 !important;
	color: #00aeef !important;
}

/* ---------- Block Shipping Methods ---------- */
.wc-block-components-shipping-rates-control .wc-block-components-radio-control__option {
	padding: 14px 18px !important;
	border: 1px solid rgba(0, 0, 0, 0.06) !important;
	border-radius: 16px !important;
	margin-bottom: 8px !important;
	cursor: pointer !important;
	transition: all 0.3s !important;
}

.wc-block-components-shipping-rates-control .wc-block-components-radio-control__option:hover {
	border-color: rgba(0, 174, 239, 0.2) !important;
	background: rgba(0, 174, 239, 0.03) !important;
}

.wc-block-components-shipping-rates-control .wc-block-components-radio-control__option--checked {
	border-color: #00aeef !important;
	background: rgba(0, 174, 239, 0.05) !important;
}

.wc-block-components-radio-control__input {
	accent-color: #00aeef !important;
}

.wc-block-components-radio-control__label {
	font-weight: 700 !important;
	color: #1d1e20 !important;
}

/* ---------- Block Payment Methods ---------- */
.wc-block-components-payment-method-icons {
	margin-top: 8px !important;
}

.wc-block-checkout__payment-method .wc-block-components-radio-control__option {
	padding: 16px 20px !important;
	border: 1px solid rgba(0, 0, 0, 0.06) !important;
	border-radius: 16px !important;
	margin-bottom: 10px !important;
	transition: all 0.3s !important;
}

.wc-block-checkout__payment-method .wc-block-components-radio-control__option:hover {
	border-color: rgba(0, 174, 239, 0.2) !important;
}

.wc-block-checkout__payment-method .wc-block-components-radio-control__option--checked {
	border-color: #00aeef !important;
	background: rgba(0, 174, 239, 0.05) !important;
}

/* ---------- Block Coupon / Promo Code ---------- */
.wc-block-components-totals-coupon .wc-block-components-totals-coupon__form {
	display: flex !important;
	gap: 10px !important;
}

.wc-block-components-totals-coupon .wc-block-components-totals-coupon__form input {
	flex: 1 !important;
}

.wc-block-components-totals-coupon .wc-block-components-totals-coupon__form button {
	padding: 14px 24px !important;
	white-space: nowrap !important;
}

.wc-block-components-totals-coupon__content > a,
.wc-block-components-totals-coupon__button {
	color: #00aeef !important;
	font-weight: 700 !important;
	text-decoration: none !important;
}

/* ---------- Block Checkout Sections ---------- */
.wc-block-checkout__form .wc-block-components-checkout-step {
	margin-bottom: 32px !important;
	padding-bottom: 32px !important;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.wc-block-checkout__form .wc-block-components-checkout-step__heading {
	font-size: 18px !important;
	font-weight: 900 !important;
	color: #1d1e20 !important;
	letter-spacing: -0.02em !important;
}

.wc-block-checkout__form .wc-block-components-checkout-step__description {
	font-size: 14px !important;
	color: rgba(29, 30, 32, 0.5) !important;
}

/* Step number */
.wc-block-components-checkout-step__number {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 32px !important;
	height: 32px !important;
	border-radius: 100px !important;
	background: #1d1e20 !important;
	color: #ffffff !important;
	font-size: 13px !important;
	font-weight: 900 !important;
}

/* ---------- Block Checkboxes ---------- */
.wc-block-components-checkbox .wc-block-components-checkbox__input {
	accent-color: #00aeef !important;
	width: 20px !important;
	height: 20px !important;
}

.wc-block-components-checkbox .wc-block-components-checkbox__label {
	font-size: 14px !important;
	font-weight: 600 !important;
	color: #1d1e20 !important;
}

/* ---------- Block Notices ---------- */
.wc-block-components-notice-banner {
	border-radius: 20px !important;
	padding: 18px 28px !important;
	margin-bottom: 20px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
}

.wc-block-components-notice-banner.is-success {
	background: rgba(0, 174, 239, 0.06) !important;
	border-left: 4px solid #00aeef !important;
}

.wc-block-components-notice-banner.is-error {
	background: rgba(239, 68, 68, 0.06) !important;
	border-left: 4px solid #ef4444 !important;
}

.wc-block-components-notice-banner.is-info {
	background: rgba(0, 174, 239, 0.06) !important;
	border-left: 4px solid #00aeef !important;
}

/* ---------- Block Empty Cart ---------- */
.wc-block-cart__empty-cart__title {
	font-size: clamp(1.5rem, 3vw, 2rem) !important;
	font-weight: 900 !important;
	color: #1d1e20 !important;
	letter-spacing: -0.03em !important;
	text-align: center !important;
}

/* ---------- Block Order Summary (Checkout sidebar) ---------- */
.wc-block-components-order-summary {
	border: none !important;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item {
	padding: 16px 0 !important;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.wc-block-components-order-summary-item__image img {
	border-radius: 12px !important;
	border: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.wc-block-components-order-summary-item__description .wc-block-components-product-name {
	font-size: 14px !important;
	font-weight: 700 !important;
	color: #1d1e20 !important;
}

.wc-block-components-order-summary-item__total-price {
	font-weight: 800 !important;
	color: #1d1e20 !important;
}

/* ---------- Block Validation Errors ---------- */
.wc-block-components-validation-error {
	color: #ef4444 !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	margin-top: 6px !important;
}

.wc-block-components-text-input.has-error input {
	border-color: #ef4444 !important;
}

.wc-block-components-text-input.has-error input:focus {
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* ---------- Block Links ---------- */
.wc-block-cart a,
.wc-block-checkout a {
	color: #00aeef !important;
	transition: color 0.3s !important;
}

.wc-block-cart a:hover,
.wc-block-checkout a:hover {
	color: #0096ce !important;
}

/* ---------- Block Prices ---------- */
.wc-block-components-product-price__value {
	font-weight: 800 !important;
}

.wc-block-components-product-price__regular {
	color: rgba(29, 30, 32, 0.4) !important;
	text-decoration: line-through !important;
}

/* ---------- Block Responsive ---------- */
@media (max-width: 768px) {
	.sp-wc-page {
		padding: 40px 0 80px;
	}

	.wc-block-cart__sidebar,
	.wc-block-checkout__sidebar {
		border-radius: 24px;
		padding: 24px;
	}

	.wc-block-components-button,
	.wc-block-cart__submit-button,
	.wc-block-components-checkout-place-order-button {
		padding: 16px 32px !important;
		font-size: 14px !important;
	}
}

/* ===========================================================================
   Terms + privacy checkbox on /checkout
   ===========================================================================
   Hooked in via sp_wc_render_terms_checkbox() — these styles override the
   WC default form-row label rules (which apply text-transform: uppercase
   and small bold labels) so the checkbox blends with the rest of the brand
   design instead of looking like a field label.
   =========================================================================== */
/* `.sp-checkout__form .form-row { margin-bottom: 0 !important }` lives
   higher up in this file and would otherwise crush the gap below the
   terms row — override with matching !important so the Apmokėti button
   keeps breathing room. */
.sp-checkout__form .sp-terms-row.form-row,
.sp-terms-row.form-row {
	margin: 24px 0 32px !important;
	padding: 0 !important;
	background: transparent;
	border: none;
}

.sp-terms-row.form-row .woocommerce-form__label-for-checkbox,
.sp-terms-row.form-row label.checkbox {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	cursor: pointer;
	margin: 0;
	padding: 0;
	font-family: inherit;
	font-size: 15.5px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0;
	text-transform: none;
	color: #1d1e20;
}

/* Fully custom checkbox so the tick is GUARANTEED white-on-blue across
   every browser (Safari/Firefox don't always render accent-color the
   same as Chrome). Uses an inline SVG checkmark on :checked. */
.sp-terms-row.form-row .woocommerce-form__input-checkbox,
.sp-terms-row.form-row input[type="checkbox"] {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	margin: 0;
	border: 2px solid rgba(29, 30, 32, 0.25);
	border-radius: 6px;
	background: #ffffff;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: relative;
	transition:
		background 0.15s ease,
		border-color 0.15s ease;
}

.sp-terms-row.form-row input[type="checkbox"]:hover {
	border-color: #00aeef;
}

.sp-terms-row.form-row input[type="checkbox"]:focus-visible {
	outline: 3px solid rgba(0, 174, 239, 0.35);
	outline-offset: 1px;
}

.sp-terms-row.form-row input[type="checkbox"]:checked {
	background-color: #00aeef;
	border-color: #00aeef;
	/* White checkmark SVG, baked into a background-image so the tick
	   colour is locked regardless of OS accent settings. */
	background-image: url( "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>" );
	background-repeat: no-repeat;
	background-position: center;
	background-size: 14px 14px;
}

.sp-terms-row.form-row span {
	flex: 1;
}

.sp-terms-row.form-row a {
	color: #00aeef;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.sp-terms-row.form-row a:hover {
	text-decoration-thickness: 2px;
}

.sp-terms-row.form-row .required {
	color: #dc2626;
	font-weight: 700;
	text-decoration: none;
	border: none;
}
