@font-face {
	font-family: "Manrope";
	src: url("../fonts/Manrope.ttf") format("truetype-variations"), url("../fonts/Manrope.ttf") format("truetype");
	font-weight: 200 800;
	font-style: normal;
	font-display: swap;
}

:root {
	--color-text: #14161f;
	--color-muted: #64687a;
	--color-bg: #ffffff;
	--color-bg-alt: #f6f6f8;
	--color-accent: #d9480f;
	--color-accent-dark: #b83e0c;
	--color-dark: #12131a;
	--color-border: #e6e6ea;
	--radius: 3px;
	--radius-lg: 4px;
	--max-width: 1400px;
	--font-sans: "Manrope", "Segoe UI Variable", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	-webkit-font-smoothing: antialiased;
}

body {
	margin: 0;
	color: var(--color-text);
	background: var(--color-bg);
	font-family: var(--font-sans);
	font-size: 15px;
	line-height: 1.55;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	display: block;
}

ul,
ol {
	margin: 0;
	padding: 0;
}
table {
	border-collapse: collapse;
}
button {
	font-family: inherit;
}

h1, h2, h3 {
	margin: 0 0 0.5em;
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -0.02em;
}

h2 {
	font-size: 24px;
}

.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 24px;
}

/* Sidecart */
.sidecart-overlay {
	position: fixed;
	inset: 0;
	background: rgba(18,19,26,0.5);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
	z-index: 100;
}
.sidecart-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}
.sidecart {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 420px;
	max-width: 92vw;
	background: #fff;
	z-index: 101;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.25s ease;
	box-shadow: -4px 0 24px rgba(0,0,0,0.08);
}
.sidecart.is-open {
	transform: translateX(0);
}
.sidecart__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid var(--color-border);
}
.sidecart__head h2 {
	margin: 0;
	font-size: 18px;
}
.sidecart__close {
	background: none;
	border: none;
	cursor: pointer;
	color: var(--color-text);
	display: flex;
	padding: 4px;
}
.sidecart__body {
	flex: 1;
	overflow-y: auto;
	padding: 20px 24px;
	display: flex;
	flex-direction: column;
}
.sidecart__loading {
	color: var(--color-muted);
	font-size: 14px;
}
.sidecart__items {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.sidecart__item {
	display: flex;
	align-items: center;
	gap: 14px;
}
.sidecart__item-image {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border: 1px solid var(--color-border);
	overflow: hidden;
}
.sidecart__item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sidecart__item-body {
	flex: 1;
	min-width: 0;
}
.sidecart__item-name {
	margin: 0 0 4px;
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.35;
}
.sidecart__item-meta {
	margin: 0;
	font-size: 12.5px;
	color: var(--color-muted);
}
.sidecart__item-remove {
	flex-shrink: 0;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--color-muted);
	padding: 6px;
}
.sidecart__item-remove:hover {
	color: var(--color-accent);
}
.sidecart__footer {
	margin-top: auto;
	padding-top: 20px;
	border-top: 1px solid var(--color-border);
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.sidecart__subtotal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 14.5px;
}
.sidecart__checkout {
	width: 100%;
	text-align: center;
}
.sidecart__view-cart {
	text-align: center;
	font-size: 13px;
	color: var(--color-muted);
}
.sidecart__view-cart:hover {
	color: var(--color-text);
}
.sidecart__empty {
	text-align: center;
	padding: 24px 0 32px;
}
.sidecart__empty-title {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 700;
}
.sidecart__empty-text {
	margin: 0;
	font-size: 13.5px;
	color: var(--color-muted);
}
.sidecart__suggestions {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.sidecart__suggestion {
	display: flex;
	align-items: center;
	gap: 14px;
	border: 1px solid var(--color-border);
	padding: 10px;
}
.sidecart__suggestion:hover {
	border-color: var(--color-text);
}
.sidecart__suggestion-image {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border: 1px solid var(--color-border);
	overflow: hidden;
}
.sidecart__suggestion-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sidecart__suggestion-name {
	margin: 0 0 4px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
}
.sidecart__suggestion-price {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	color: var(--color-accent);
}
body.sidecart-open {
	overflow: hidden;
}

/* Add-to-cart confirmation modal */
.atc-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(18,19,26,0.5);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
	z-index: 110;
}
.atc-modal-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}
.atc-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -48%);
	width: 380px;
	max-width: 90vw;
	background: #fff;
	border: 1px solid var(--color-border);
	padding: 32px;
	z-index: 111;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	text-align: center;
}
.atc-modal.is-open {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, -50%);
}
.atc-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--color-muted);
	padding: 4px;
}
.atc-modal__check {
	width: 48px;
	height: 48px;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-accent);
	color: #fff;
	border-radius: 50%;
}
.atc-modal__title {
	margin: 0 0 20px;
	font-size: 17px;
	font-weight: 700;
}
.atc-modal__product {
	display: flex;
	align-items: center;
	gap: 14px;
	text-align: left;
	border: 1px solid var(--color-border);
	padding: 12px;
	margin-bottom: 24px;
}
.atc-modal__product-image {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border: 1px solid var(--color-border);
	overflow: hidden;
}
.atc-modal__product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.atc-modal__product-name {
	margin: 0;
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.4;
}
.atc-modal__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.atc-modal__actions .btn {
	width: 100%;
}
.atc-modal__error {
	color: #c0392b;
	font-size: 13.5px;
	margin: 0 0 20px;
}

/* Topbar */
.topbar {
	background: var(--color-dark);
	color: rgba(255,255,255,0.85);
	text-align: center;
	font-size: 12.5px;
	padding: 7px 12px;
	letter-spacing: 0.01em;
}
.topbar p {
	margin: 0;
}

/* Header */
.site-header {
	border-bottom: 1px solid var(--color-border);
}
.site-header__row {
	display: flex;
	align-items: center;
	gap: 28px;
	padding-top: 20px;
	padding-bottom: 20px;
}
.site-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--color-text);
}
.site-title__mark {
	flex-shrink: 0;
}
.site-title__accent {
	color: var(--color-accent);
}
.header-search {
	flex: 1;
	display: flex;
	align-items: center;
	background: var(--color-bg-alt);
	border: 1px solid var(--color-border);
	border-radius: 0;
	padding: 10px 16px;
	max-width: 440px;
}
.header-search input {
	flex: 1;
	border: 0;
	background: transparent;
	outline: none;
	font-size: 14px;
	font-family: inherit;
}
.header-search button {
	border: 0;
	background: none;
	cursor: pointer;
	color: var(--color-muted);
	display: flex;
}
.header-actions {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-left: auto;
}
.header-account {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
}
.header-cart {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.category-nav {
	background: #fff;
	border-bottom: 1px solid var(--color-border);
}
.category-nav ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
	margin: 0 auto;
	padding-top: 0;
	padding-bottom: 0;
}
.category-nav a {
	display: inline-block;
	padding: 12px 18px;
	font-size: 13.5px;
	font-weight: 500;
	color: var(--color-text);
}
.category-nav a:hover {
	background: var(--color-bg-alt);
}
.category-nav a.is-active {
	background: var(--color-accent);
	color: #fff;
	font-weight: 600;
}
/* Hero */
.hero {
	background: #fff;
}
.hero__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 0;
}
.hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 48px 0 0;
}
.hero__content h1 {
	font-size: clamp(32px, 3.4vw, 46px);
	font-weight: 800;
}
.hero__content p {
	color: var(--color-muted);
	max-width: 42ch;
	font-size: 15.5px;
}
.hero__actions {
	display: flex;
	gap: 12px;
	margin-top: 30px;
	flex-wrap: wrap;
}
.hero__media {
	border-radius: 0;
	border-left: 1px solid var(--color-border);
	overflow: hidden;
	background: var(--color-bg-alt);
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 5 / 4;
	max-height: 420px;
	width: 100%;
}
.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 28px;
	border-radius: 0;
	font-weight: 600;
	font-size: 13.5px;
	letter-spacing: 0.01em;
	cursor: pointer;
	border: 1.5px solid transparent;
	transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}
.btn--primary {
	background: var(--color-accent);
	color: #fff;
	border-color: var(--color-accent);
}
.btn--primary:hover {
	background: var(--color-accent-dark);
	border-color: var(--color-accent-dark);
}
.btn--outline {
	background: transparent;
	border-color: var(--color-text);
	color: var(--color-text);
}
.btn--outline:hover {
	background: var(--color-text);
	color: #fff;
}
.btn--sm {
	padding: 9px 16px;
	font-size: 12.5px;
}

/* Perks */
.perks {
	border-bottom: 1px solid var(--color-border);
}
.perks__row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding-top: 26px;
	padding-bottom: 26px;
}
.perks__item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 13.5px;
}
.perks__icon {
	display: flex;
	align-items: center;
	color: var(--color-accent);
	flex-shrink: 0;
}
.perks__item p {
	margin: 0;
	color: var(--color-muted);
}

/* Sections */
.categories,
.discounts,
.all-products {
	padding-top: 60px;
	padding-bottom: 60px;
}
.categories {
	background: var(--color-bg-alt);
}

.section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 22px;
}
.section-head a {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--color-accent);
}
.carousel-nav {
	display: flex;
	gap: 6px;
}
.carousel-nav__btn {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid var(--color-border);
	cursor: pointer;
	font-size: 15px;
	color: var(--color-text);
}
.carousel-nav__btn:hover {
	border-color: var(--color-text);
}

.carousel {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding-bottom: 2px;
}
.carousel::-webkit-scrollbar {
	display: none;
}
.carousel .product-card {
	flex: 0 0 260px;
	scroll-snap-align: start;
}

/* Category cards */
.categories__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.category-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1.5px solid var(--color-border);
	overflow: hidden;
	transition: border-color 0.12s ease;
}
.category-card:hover {
	border-color: var(--color-text);
}
.category-card__image {
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: var(--color-bg-alt);
}
.category-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.category-card__body {
	padding: 16px;
}
.category-card__body h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 6px;
	letter-spacing: normal;
}
.category-card__body p {
	margin: 0;
	font-size: 13px;
	color: var(--color-muted);
	display: flex;
	align-items: center;
	gap: 6px;
}
.category-card__arrow {
	color: var(--color-accent);
	font-weight: 700;
}

/* Product grid */
.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.product-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1.5px solid var(--color-border);
	border-radius: 0;
	overflow: hidden;
	transition: border-color 0.12s ease;
}
.product-card:hover {
	border-color: var(--color-text);
}
.product-card__image {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--color-bg-alt);
}
.product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--color-accent);
	color: #fff;
	font-size: 11.5px;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 4px;
}
.product-card__link {
	display: flex;
	flex-direction: column;
	flex: 1;
	color: inherit;
}
.product-card__body {
	padding: 14px 14px 0;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.product-card__body h3 {
	font-size: 13.5px;
	font-weight: 600;
	margin-bottom: 8px;
	flex: 1;
	letter-spacing: normal;
	line-height: 1.35;
}
.product-card__price {
	display: flex;
	align-items: baseline;
	gap: 8px;
}
.product-card__footer {
	padding: 10px 14px 14px;
}
.product-card__footer .btn {
	width: 100%;
}
.price--old {
	text-decoration: line-through;
	color: var(--color-muted);
	font-size: 12.5px;
}
.price--current {
	font-size: 16.5px;
	font-weight: 800;
	color: var(--color-accent);
}

/* Info + FAQ (kas yra likvidacinės prekės + dažni klausimai) */
.info-faq {
	background: var(--color-bg-alt);
	padding-top: 64px;
	padding-bottom: 64px;
}
.info-faq__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}
.about-liquidation__media {
	margin-bottom: 24px;
}
.about-liquidation__media img {
	border: 1px solid var(--color-border);
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}
.info-faq__about p {
	color: var(--color-muted);
	font-size: 14.5px;
	line-height: 1.6;
}
.about-liquidation__list {
	list-style: none;
	margin: 20px 0 28px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.about-liquidation__list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 13.5px;
	color: var(--color-muted);
}
.about-liquidation__icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid var(--color-border);
	color: var(--color-accent);
}
.about-liquidation__list strong {
	color: var(--color-text);
}

.info-faq__faq h2 {
	margin-bottom: 20px;
}
.faq__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.faq__item {
	background: #fff;
	border: 1px solid var(--color-border);
	padding: 14px 18px;
}
.faq__item summary {
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
}
.faq__item p {
	margin: 10px 0 0;
	color: var(--color-muted);
	font-size: 13.5px;
}

@media (max-width: 960px) {
	.info-faq__row {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

/* Generic page header + content */
.page-header {
	background: var(--color-bg-alt);
	padding: 36px 0 32px;
	border-bottom: 1px solid var(--color-border);
}
.page-header__breadcrumb {
	margin: 0 0 10px;
	font-size: 12.5px;
	color: var(--color-muted);
}
.page-header__breadcrumb a {
	color: var(--color-muted);
}
.page-header__breadcrumb a:hover {
	color: var(--color-text);
}
.page-header h1 {
	margin: 0;
	font-size: 30px;
}
.page-header__desc {
	margin: 12px 0 0;
	font-size: 14.5px;
	color: var(--color-muted);
	max-width: 70ch;
}
.page-content {
	padding: 48px 0 64px;
}
.page-content .container {
	max-width: 760px;
	margin: 0 auto;
	padding: 0 24px;
}
.page-content h2 {
	margin-top: 1.4em;
}
.page-content p,
.page-content li {
	font-size: 15px;
	color: var(--color-muted);
	line-height: 1.65;
}
.page-content ul,
.page-content ol {
	padding-left: 20px;
}

/* Legal pages (privatumo politika, pirkimo taisyklės) */
.legal-section {
	padding: 48px 0 72px;
}
.legal-section__row {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 56px;
	align-items: start;
}
.legal-toc {
	position: sticky;
	top: 24px;
	border: 1px solid var(--color-border);
	padding: 20px;
}
.legal-toc__title {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-muted);
}
.legal-toc ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.legal-toc a {
	font-size: 13px;
	color: var(--color-text);
	line-height: 1.4;
}
.legal-toc a:hover {
	color: var(--color-accent);
}
.legal-content {
	max-width: 78ch;
}
.legal-content h2 {
	font-size: 18px;
	margin-top: 2em;
	scroll-margin-top: 24px;
}
.legal-content h2:first-child {
	margin-top: 0;
}
.legal-content p {
	font-size: 14.5px;
	color: var(--color-muted);
	line-height: 1.7;
}

@media (max-width: 800px) {
	.legal-section__row {
		grid-template-columns: 1fr;
	}
	.legal-toc {
		position: static;
	}
}

/* Cart page */
.cart-page {
	padding: 48px 0 72px;
}
.cart-page .woocommerce {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}
.cart-page .woocommerce-notices-wrapper {
	grid-column: 1 / -1;
}
.cart-page .woocommerce-notices-wrapper:empty {
	display: none;
}
.woocommerce-cart-form {
	min-width: 0;
}
table.cart,
table.shop_table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13.5px;
	table-layout: fixed;
}
table.cart .product-thumbnail {
	width: 80px;
}
table.cart .product-price,
table.cart .product-subtotal {
	width: 100px;
}
table.cart .product-quantity {
	width: 110px;
}
table.cart th {
	text-align: left;
	padding: 12px;
	border-bottom: 1.5px solid var(--color-text);
	font-weight: 700;
	font-size: 11.5px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--color-muted);
}
table.cart td {
	padding: 16px 12px;
	border-bottom: 1px solid var(--color-border);
	vertical-align: middle;
}
table.cart .product-thumbnail img {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border: 1px solid var(--color-border);
}
table.cart .product-name a {
	font-weight: 600;
	color: var(--color-text);
}
table.cart .product-name .variation {
	margin-top: 4px;
	font-size: 12.5px;
	color: var(--color-muted);
}
table.cart .product-price,
table.cart .product-subtotal {
	font-weight: 600;
	white-space: nowrap;
}
table.cart .product-remove {
	width: 32px;
}
table.cart .product-remove a.remove {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 1px solid var(--color-border);
	color: var(--color-muted);
	font-size: 16px;
	line-height: 1;
	text-decoration: none;
}
table.cart .product-remove a.remove:hover {
	border-color: #c0392b;
	color: #c0392b;
	background: transparent;
}
table.cart .quantity {
	display: inline-flex;
}
table.cart .qty {
	width: 64px;
	height: 42px;
	padding: 0 10px;
	text-align: center;
	border: 1px solid var(--color-border);
	background: #fff;
	font-family: inherit;
	font-size: 14px;
	box-sizing: border-box;
}
table.cart td.actions {
	padding-top: 20px;
}
.coupon {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
}
.coupon .input-text {
	padding: 11px 14px;
	border: 1px solid var(--color-border);
	font-family: inherit;
	font-size: 14px;
	min-width: 180px;
}
table.cart td.actions .button {
	float: right;
}

.cart-collaterals {
	min-width: 0;
}
.cart_totals {
	width: 100%;
	border: 1px solid var(--color-border);
	padding: 24px;
}
.cart_totals h2 {
	margin: 0 0 16px;
	font-size: 17px;
}
.cart_totals table {
	width: 100%;
	font-size: 13.5px;
}
.cart_totals table th,
.cart_totals table td {
	padding: 10px 0;
	border-bottom: 1px solid var(--color-border);
	text-align: left;
	font-weight: 500;
}
.cart_totals table td {
	text-align: right;
	font-weight: 600;
}
.cart_totals .order-total th,
.cart_totals .order-total td {
	border-bottom: none;
	padding-top: 14px;
	font-size: 16px;
	font-weight: 800;
	color: var(--color-accent);
}
.wc-proceed-to-checkout {
	margin-top: 20px;
}
.wc-proceed-to-checkout .checkout-button {
	display: flex;
	width: 100%;
	text-align: center;
	justify-content: center;
}

@media (max-width: 800px) {
	table.cart thead {
		display: none;
	}
	table.cart,
	table.cart tbody,
	table.cart tr,
	table.cart td {
		display: block;
		width: 100%;
	}
	table.cart tr {
		position: relative;
		padding: 16px 0;
	}
	table.cart td {
		border-bottom: none;
		padding: 4px 0 4px 40%;
		position: relative;
		min-height: 24px;
	}
	table.cart td::before {
		content: attr(data-title);
		position: absolute;
		left: 0;
		width: 35%;
		font-size: 11.5px;
		font-weight: 700;
		color: var(--color-muted);
		text-transform: uppercase;
	}
	table.cart .product-remove {
		position: absolute;
		top: 16px;
		right: 0;
		padding: 0;
	}
	table.cart .product-remove::before {
		content: none;
	}
	.cart-page .woocommerce {
		grid-template-columns: 1fr;
	}
	.cart_totals {
		max-width: none;
	}
}

/* Cart page — WooCommerce Blocks (Cart block) markup */
.wc-block-components-sidebar-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}
.wc-block-components-main,
.wc-block-components-sidebar {
	min-width: 0;
}
.wc-block-cart-items {
	table-layout: fixed;
}
.wc-block-cart-items__header-image,
.wc-block-cart-items__image {
	width: 90px;
}
.wc-block-cart-items__header-total,
.wc-block-cart-item__total {
	width: 110px;
}
	width: 100%;
	border-collapse: collapse;
	font-size: 13.5px;
}
.wc-block-cart-items__header th {
	text-align: left;
	padding: 12px;
	border-bottom: 1.5px solid var(--color-text);
	font-weight: 700;
	font-size: 11.5px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--color-muted);
}
.wc-block-cart-items__row td {
	padding: 16px 12px;
	border-bottom: 1px solid var(--color-border);
	vertical-align: top;
}
.wc-block-cart-item__image img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border: 1px solid var(--color-border);
}
.wc-block-components-product-name {
	display: block;
	font-weight: 600;
	color: var(--color-text);
	font-size: 13.5px;
	margin-bottom: 6px;
}
.wc-block-cart-item__prices .price {
	font-size: 13px;
}
.wc-block-components-product-price del {
	color: var(--color-muted);
	text-decoration: line-through;
	margin-right: 6px;
}
.wc-block-components-product-price ins {
	text-decoration: none;
	font-weight: 700;
	color: var(--color-accent);
}
.wc-block-components-product-metadata__description {
	display: none;
}
.wc-block-cart-item__quantity {
	margin-top: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.wc-block-components-quantity-selector {
	display: flex;
	align-items: stretch;
	border: 1px solid var(--color-border);
	height: 38px;
}
.wc-block-components-quantity-selector__button {
	width: 34px;
	background: var(--color-bg-alt);
	border: none;
	color: var(--color-text);
	font-size: 15px;
	cursor: pointer;
}
.wc-block-components-quantity-selector__button:hover {
	background: var(--color-border);
}
.wc-block-components-quantity-selector__button:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}
.wc-block-components-quantity-selector__input {
	width: 42px;
	border: none;
	border-left: 1px solid var(--color-border);
	border-right: 1px solid var(--color-border);
	text-align: center;
	font-family: inherit;
	font-size: 13.5px;
}
.wc-block-cart-item__remove-link {
	background: none;
	border: none;
	padding: 4px;
	cursor: pointer;
	color: var(--color-muted);
}
.wc-block-cart-item__remove-link:hover {
	color: #c0392b;
}
.wc-block-cart-item__remove-link svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}
.wc-block-cart-item__total {
	text-align: right;
	white-space: nowrap;
}
.wc-block-cart-item__total .price {
	font-weight: 700;
	font-size: 14px;
}
.wc-block-components-sale-badge {
	display: inline-block;
	margin-top: 6px;
	font-size: 11px;
	font-weight: 600;
	color: var(--color-accent);
	background: none;
	border: none;
	padding: 0;
}

/* Cart / checkout sidebar totals */
.wc-block-components-sidebar {
	border: 1px solid var(--color-border);
	padding: 24px;
}
.wc-block-cart__totals-title {
	margin: 0 0 16px;
	font-size: 17px;
}
.wc-block-components-panel__button {
	display: flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: none;
	border-top: 1px solid var(--color-border);
	padding: 14px 0;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--color-text);
	cursor: pointer;
	width: 100%;
	text-align: left;
}
.wc-block-components-panel__button-icon {
	width: 16px;
	height: 16px;
	fill: currentColor;
}
.wc-block-components-totals-item {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid var(--color-border);
	font-size: 13.5px;
}
.wc-block-components-totals-item__label {
	color: var(--color-muted);
}
.wc-block-components-totals-item__value {
	font-weight: 600;
}
.wc-block-components-totals-footer-item {
	border-bottom: none;
	padding-top: 14px;
	font-size: 16px;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	font-weight: 800;
	color: var(--color-accent);
}
.wc-block-cart__submit-button,
.wc-block-components-button {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	padding: 13px 28px;
	background: var(--color-accent);
	color: #fff;
	border: 1.5px solid var(--color-accent);
	font-size: 13.5px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	margin-top: 20px;
	border-radius: 0;
}
.wc-block-cart__submit-button:hover,
.wc-block-components-button:hover {
	background: var(--color-accent-dark);
	border-color: var(--color-accent-dark);
	color: #fff;
}
.wc-block-components-totals-coupon__content .wc-block-components-text-input input {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid var(--color-border);
	font-family: inherit;
	font-size: 14px;
	box-sizing: border-box;
}

@media (max-width: 900px) {
	.wc-block-components-sidebar-layout {
		grid-template-columns: 1fr;
	}
}

/* Select2 (šalis / valstija laukai) — suvienodinta su kitais input/select */
.select2-container {
	width: 100% !important;
}
.select2-container .select2-selection--single {
	height: 46px;
	border: 1px solid var(--color-border);
	border-radius: 0;
	display: flex;
	align-items: center;
	padding: 0 14px;
	background: #fff;
}
.select2-container .select2-selection__rendered {
	padding: 0;
	line-height: normal;
	font-size: 14px;
	color: var(--color-text);
}
.select2-container .select2-selection__arrow {
	height: 44px;
	right: 10px;
}
.select2-dropdown {
	border: 1px solid var(--color-border);
	border-radius: 0;
	font-size: 14px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background: var(--color-accent);
}
.select2-search--dropdown .select2-search__field {
	border: 1px solid var(--color-border);
	padding: 8px;
	font-family: inherit;
}

/* Checkout page */
.checkout-page {
	padding: 48px 0 72px;
}
.checkout-page .woocommerce-notices-wrapper:empty {
	display: none;
}

/* "Have a coupon?" toggle */
.checkout-page .woocommerce-form-coupon-toggle {
	margin-bottom: 24px;
}
.checkout-page .woocommerce-info {
	background: var(--color-bg-alt);
	border: 1px solid var(--color-border);
	padding: 14px 18px;
	font-size: 13.5px;
	list-style: none;
}
.checkout-page .showcoupon {
	color: var(--color-accent);
	font-weight: 600;
	text-decoration: underline;
}
.checkout_coupon {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
	background: var(--color-bg-alt);
	border: 1px solid var(--color-border);
	padding: 18px;
	margin-bottom: 24px;
}
.checkout_coupon .form-row {
	margin-bottom: 0 !important;
	flex: 1;
	min-width: 180px;
}

/* Two-column layout: billing/shipping | order review */
form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}
#customer_details {
	min-width: 0;
}
.checkout-order-summary {
	min-width: 0;
}
#order_review_heading {
	margin: 0 0 16px;
	font-size: 18px;
}

.col2-set {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}
.col2-set h3 {
	font-size: 16px;
	margin: 0 0 18px;
}
.woocommerce-billing-fields__field-wrapper .form-row,
.woocommerce-shipping-fields__field-wrapper .form-row,
.woocommerce-additional-fields .form-row {
	margin-bottom: 16px;
}
.form-row-first,
.form-row-last {
	display: inline-block;
	width: 48%;
}
.form-row-first {
	margin-right: 4%;
}
#ship-to-different-address {
	list-style: none;
	margin: 8px 0 20px;
}
#ship-to-different-address label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
}
.woocommerce-additional-fields {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--color-border);
}

/* Order review table */
.woocommerce-checkout-review-order-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13.5px;
	margin-bottom: 20px;
}
.woocommerce-checkout-review-order-table thead th {
	text-align: left;
	padding: 10px 0;
	border-bottom: 1.5px solid var(--color-text);
	font-weight: 700;
	font-size: 11.5px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--color-muted);
}
.woocommerce-checkout-review-order-table td,
.woocommerce-checkout-review-order-table th {
	padding: 10px 0;
	border-bottom: 1px solid var(--color-border);
}
.woocommerce-checkout-review-order-table .product-name {
	font-weight: 600;
}
.woocommerce-checkout-review-order-table .product-total {
	text-align: right;
	white-space: nowrap;
}
.woocommerce-checkout-review-order-table tfoot th {
	font-weight: 600;
	text-align: left;
}
.woocommerce-checkout-review-order-table tfoot td {
	text-align: right;
}
.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
	border-bottom: none;
	padding-top: 14px;
	font-size: 16px;
	font-weight: 800;
	color: var(--color-accent);
}

/* Shipping methods */
#shipping_method {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}
#shipping_method li {
	padding: 4px 0;
	font-size: 13.5px;
}

/* Payment methods */
ul.wc_payment_methods {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 1px solid var(--color-border);
}
ul.wc_payment_methods li.wc_payment_method {
	border-bottom: 1px solid var(--color-border);
	padding: 14px 16px;
}
ul.wc_payment_methods li.wc_payment_method:last-child {
	border-bottom: none;
}
ul.wc_payment_methods label {
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
}
ul.wc_payment_methods .payment_box {
	margin-top: 12px;
	padding: 14px;
	background: var(--color-bg-alt);
	font-size: 13px;
	color: var(--color-muted);
}
ul.wc_payment_methods .payment_box p {
	margin: 0;
}

.woocommerce-terms-and-conditions-wrapper {
	margin: 20px 0;
	font-size: 13px;
}
.woocommerce-form__label-for-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

#place_order {
	width: 100%;
	margin-top: 8px;
	padding: 15px 28px !important;
	font-size: 14px !important;
}

.checkout-order-summary {
	background: var(--color-bg-alt);
	border: 1px solid var(--color-border);
	padding: 24px;
}
#payment {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--color-border);
}

@media (max-width: 900px) {
	form.checkout {
		grid-template-columns: 1fr;
	}
	.form-row-first,
	.form-row-last {
		width: 100%;
		margin-right: 0;
	}
}

/* My Account page */
.myaccount-page {
	padding: 48px 0 72px;
}
.myaccount-page .woocommerce {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 48px;
	align-items: start;
}
.woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 1px solid var(--color-border);
}
.woocommerce-MyAccount-navigation li {
	border-bottom: 1px solid var(--color-border);
}
.woocommerce-MyAccount-navigation li:last-child {
	border-bottom: none;
}
.woocommerce-MyAccount-navigation li a {
	display: block;
	padding: 12px 16px;
	font-size: 13.5px;
	color: var(--color-text);
}
.woocommerce-MyAccount-navigation li a:hover {
	background: var(--color-bg-alt);
}
.woocommerce-MyAccount-navigation li.is-active a {
	background: var(--color-accent);
	color: #fff;
	font-weight: 600;
}
.woocommerce-MyAccount-content {
	min-width: 0;
}
.woocommerce-MyAccount-content > p:first-child {
	margin-top: 0;
	color: var(--color-muted);
	font-size: 14.5px;
}
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
	margin-top: 0;
}

/* Login / register forms */
.woocommerce-form-login,
.woocommerce-form-register {
	max-width: 420px;
	border: 1px solid var(--color-border);
	background: var(--color-bg-alt);
	padding: 28px;
}
.u-columns.woocommerce-Addresses,
.woocommerce-form-login-toggle,
.woocommerce-form-register-toggle {
	max-width: 680px;
}
.woocommerce form .form-row label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid var(--color-border);
	font-family: inherit;
	font-size: 14px;
	background: #fff;
	box-sizing: border-box;
}
.woocommerce form .form-row {
	margin-bottom: 16px;
}
.woocommerce-form__label-for-checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 400;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce button.woocommerce-Button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 28px;
	background: var(--color-accent);
	color: #fff !important;
	border: 1.5px solid var(--color-accent);
	font-size: 13.5px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce button.woocommerce-Button:hover,
.woocommerce input.button:hover {
	background: var(--color-accent-dark);
	border-color: var(--color-accent-dark);
}

/* Orders table */
table.woocommerce-orders-table,
table.shop_table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13.5px;
}
table.woocommerce-orders-table th,
table.shop_table th {
	text-align: left;
	padding: 10px 12px;
	border-bottom: 1.5px solid var(--color-text);
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
table.woocommerce-orders-table td,
table.shop_table td {
	padding: 12px;
	border-bottom: 1px solid var(--color-border);
}
.woocommerce-orders-table__cell-order-status mark {
	background: none;
	color: var(--color-accent);
	font-weight: 600;
}

/* Addresses */
.woocommerce-Addresses {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.woocommerce-Address {
	border: 1px solid var(--color-border);
	padding: 20px;
}
.woocommerce-Address-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}
.woocommerce-Address-title h3 {
	margin: 0;
	font-size: 15px;
}
.woocommerce-Address-title a {
	font-size: 12.5px;
	color: var(--color-accent);
}
.woocommerce-Address address {
	font-style: normal;
	font-size: 13.5px;
	color: var(--color-muted);
	line-height: 1.6;
}

/* Edit account / address forms */
.woocommerce-EditAccountForm fieldset,
.woocommerce-address-fields fieldset {
	border: 1px solid var(--color-border);
	padding: 20px;
	margin-top: 20px;
}
.woocommerce-EditAccountForm legend {
	padding: 0 8px;
	font-weight: 600;
	font-size: 13px;
}

/* Notices */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info,
.woocommerce-notice {
	list-style: none;
	background: #fff;
	border: 1px solid var(--color-accent);
	color: var(--color-text);
	padding: 14px 18px;
	font-size: 13.5px;
	margin: 0 0 20px;
}
.woocommerce-error {
	border-color: #c0392b;
}

@media (max-width: 800px) {
	.myaccount-page .woocommerce {
		grid-template-columns: 1fr;
	}
	.woocommerce-Addresses {
		grid-template-columns: 1fr;
	}
}

/* Contact page */
.contact-section {
	padding: 48px 0 72px;
}
.contact-section__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}
.contact-info p {
	color: var(--color-muted);
	font-size: 14.5px;
	line-height: 1.6;
}
.contact-info__list {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.contact-info__list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	font-size: 14px;
}
.contact-info__list a {
	color: var(--color-accent);
}
.contact-info__icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-bg-alt);
	border: 1px solid var(--color-border);
	color: var(--color-accent);
}
.contact-wholesale {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--color-border);
}
.contact-wholesale h3 {
	margin: 0 0 10px;
	font-size: 15px;
}
.contact-wholesale p {
	margin: 0;
	font-size: 13.5px;
	color: var(--color-muted);
	line-height: 1.6;
}

.contact-form {
	background: var(--color-bg-alt);
	border: 1px solid var(--color-border);
	padding: 32px;
}
.contact-form__notice {
	background: #fff;
	border: 1px solid var(--color-accent);
	color: var(--color-accent);
	padding: 12px 16px;
	font-size: 13.5px;
	font-weight: 600;
	margin: 0 0 20px;
}
.contact-form__notice--error {
	border-color: #c0392b;
	color: #c0392b;
}
.contact-form h2 {
	margin-top: 0;
}
.contact-form__row {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 18px;
}
.contact-form__row label {
	font-size: 13px;
	font-weight: 600;
}
.contact-form__row input,
.contact-form__row textarea {
	font-family: inherit;
	font-size: 14px;
	padding: 11px 14px;
	border: 1px solid var(--color-border);
	background: #fff;
	resize: vertical;
}
.contact-form__row input:focus,
.contact-form__row textarea:focus {
	outline: 2px solid var(--color-accent);
	outline-offset: -1px;
}

@media (max-width: 800px) {
	.contact-section__row {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

/* Single product page */
.product-page {
	padding: 40px 0 0;
}
.product-page__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
}

.product-gallery__main {
	border: 1px solid var(--color-border);
	aspect-ratio: 1 / 1;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-bg-alt);
}
.product-gallery__main img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.product-gallery__main--placeholder {
	aspect-ratio: 1 / 1;
}
.product-gallery__thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}
.product-gallery__thumb {
	width: 68px;
	height: 68px;
	padding: 0;
	border: 1px solid var(--color-border);
	background: #fff;
	cursor: pointer;
	overflow: hidden;
}
.product-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.product-gallery__thumb.is-active {
	border-color: var(--color-accent);
}

.product-summary__cat {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: 10px;
}
.product-summary__title {
	margin: 0 0 16px;
	font-size: 28px;
	line-height: 1.2;
}
.product-summary__price {
	font-size: 26px;
	font-weight: 800;
	color: var(--color-accent);
	margin-bottom: 18px;
}
.product-summary__price ins {
	text-decoration: none;
}
.product-summary__price del {
	color: var(--color-muted);
	font-size: 17px;
	font-weight: 500;
	margin-right: 8px;
}
.product-summary__excerpt {
	font-size: 14.5px;
	color: var(--color-muted);
	line-height: 1.65;
	margin-bottom: 24px;
}
.product-summary__excerpt p:first-child {
	margin-top: 0;
}

.product-summary__cart {
	background: var(--color-bg-alt);
	border: 1px solid var(--color-border);
	padding: 24px;
	margin-bottom: 24px;
}
.product-summary__cart .cart {
	display: flex;
	align-items: stretch;
	gap: 12px;
	margin: 0;
}
.product-summary__cart .quantity {
	display: flex;
}
.product-summary__cart .qty {
	width: 64px;
	height: 46px;
	padding: 0 10px;
	text-align: center;
	border: 1px solid var(--color-border);
	background: #fff;
	font-family: inherit;
	font-size: 14px;
	box-sizing: border-box;
}
.product-summary__cart .single_add_to_cart_button {
	flex: 1;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 28px;
	background: var(--color-accent);
	color: #fff;
	border: 1.5px solid var(--color-accent);
	font-size: 13.5px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.12s ease;
	box-sizing: border-box;
}
.product-summary__cart .single_add_to_cart_button:hover {
	background: var(--color-accent-dark);
}
.product-summary__cart .single_add_to_cart_button.disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
.product-summary__cart .stock {
	display: block;
	font-size: 13px;
	color: var(--color-muted);
	margin: 12px 0 0;
}
.product-summary__cart .variations {
	width: 100%;
	margin-bottom: 16px;
	border-collapse: collapse;
}
.product-summary__cart .variations tr + tr {
	margin-top: 8px;
}
.product-summary__cart .variations td {
	padding: 6px 0;
	font-size: 13.5px;
	vertical-align: middle;
}
.product-summary__cart .variations td.label {
	width: 90px;
	font-weight: 600;
}
.product-summary__cart select {
	font-family: inherit;
	font-size: 13.5px;
	height: 42px;
	padding: 0 14px;
	border: 1px solid var(--color-border);
	background: #fff;
	width: 100%;
	box-sizing: border-box;
}
.product-summary__cart .reset_variations {
	display: inline-block;
	margin-top: 8px;
	font-size: 12.5px;
	color: var(--color-muted);
}
.product-summary__cart .woocommerce-variation-price,
.product-summary__cart .woocommerce-variation-availability {
	margin-top: 12px;
}

.product-summary__meta {
	list-style: none;
	margin: 0;
	padding: 20px 0 0;
	border-top: 1px solid var(--color-border);
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.product-summary__meta li {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
}
.product-summary__meta span {
	color: var(--color-muted);
}

.product-description {
	margin-top: 56px;
	padding-top: 40px;
	border-top: 1px solid var(--color-border);
}
.product-description__body {
	max-width: 90ch;
}
.product-description h2 {
	margin-bottom: 16px;
}
.product-description__body {
	font-size: 14.5px;
	color: var(--color-muted);
	line-height: 1.7;
}
.product-description__body ul {
	padding-left: 20px;
}

.related-products {
	padding: 56px 0 72px;
	margin-top: 40px;
	background: var(--color-bg-alt);
}
.related-products h2 {
	margin-bottom: 24px;
}

@media (max-width: 900px) {
	.product-page__row {
		grid-template-columns: 1fr;
	}
}

/* Shop archive */
.shop-archive {
	padding: 40px 0 72px;
}
.shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--color-border);
}
.shop-toolbar__count {
	margin: 0;
	font-size: 13.5px;
	color: var(--color-muted);
}
.shop-toolbar__sort select,
.woocommerce-ordering select {
	font-family: inherit;
	font-size: 13.5px;
	padding: 10px 40px 10px 16px;
	border: 1px solid var(--color-border);
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%2364687a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
	background-size: 14px;
	color: var(--color-text);
	appearance: none;
	-webkit-appearance: none;
	min-width: 200px;
	cursor: pointer;
}
.shop-toolbar__sort select:focus,
.woocommerce-ordering select:focus {
	outline: 2px solid var(--color-accent);
	outline-offset: -1px;
}
.shop-pagination {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}
.shop-pagination .page-numbers {
	display: inline-flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 6px;
}
.shop-pagination .page-numbers li {
	display: flex;
}
.shop-pagination a.page-numbers,
.shop-pagination span.page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border: 1px solid var(--color-border);
	font-size: 13.5px;
	color: var(--color-text);
}
.shop-pagination span.page-numbers.current {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: #fff;
	font-weight: 600;
}
.shop-pagination a.page-numbers:hover {
	border-color: var(--color-text);
}
.shop-empty {
	text-align: center;
	padding: 64px 0;
}
.shop-empty p {
	margin: 0 0 20px;
	color: var(--color-muted);
	font-size: 15px;
}

/* DUK page */
.duk-section {
	padding: 48px 0 72px;
}
.duk-section__inner {
	max-width: 980px;
	margin: 0 auto;
}
.duk-section .faq__list {
	max-width: none;
}

/* Pristatymas/grąžinimas page */
.delivery-section {
	padding: 48px 0 72px;
}
.delivery-section__heading {
	margin-top: 0;
	margin-bottom: 24px;
}
.delivery-section__heading:not(:first-child) {
	margin-top: 56px;
}
.delivery-section__intro {
	font-size: 14.5px;
	color: var(--color-muted);
	line-height: 1.65;
	margin: 0 0 28px;
}
.delivery-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.delivery-step {
	border: 1px solid var(--color-border);
	padding: 24px;
}
.delivery-step__num {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: var(--color-accent);
	margin-bottom: 12px;
}
.delivery-step h3 {
	margin: 0 0 8px;
	font-size: 15px;
}
.delivery-step p {
	margin: 0;
	font-size: 13.5px;
	color: var(--color-muted);
	line-height: 1.6;
}
.delivery-cta {
	margin-top: 56px;
	padding-top: 32px;
	border-top: 1px solid var(--color-border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}
.delivery-cta p {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
}

/* Apie mus page */
.about-section {
	padding: 48px 0 72px;
}
.about-section__content {
	max-width: 78ch;
}
.about-section__lead {
	font-size: 18px;
	color: var(--color-text);
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 1.2em;
}
.about-stats {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.about-stat {
	border: 1px solid var(--color-border);
	padding: 16px 20px;
}
.about-stat__num {
	display: block;
	font-size: 28px;
	font-weight: 800;
	color: var(--color-accent);
	letter-spacing: -0.02em;
}
.about-stat__label {
	display: block;
	font-size: 12.5px;
	color: var(--color-muted);
	margin-top: 4px;
}

@media (max-width: 800px) {
	.delivery-steps {
		grid-template-columns: 1fr;
	}
	.about-stats {
		grid-template-columns: 1fr;
	}
}

/* CTA bulk discount */
.cta-bulk {
	background: var(--color-accent);
	color: #fff;
}
.cta-bulk__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
	padding-top: 44px;
	padding-bottom: 44px;
}
.cta-bulk__left {
	display: flex;
	align-items: center;
	gap: 24px;
}
.cta-bulk__icon {
	flex-shrink: 0;
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.15);
	color: #fff;
}
.cta-bulk__eyebrow {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.8);
	margin-bottom: 8px;
}
.cta-bulk h2 {
	margin: 0 0 6px;
	font-size: 24px;
	font-weight: 800;
	color: #fff;
}
.cta-bulk p {
	margin: 0;
	font-size: 14.5px;
	color: rgba(255,255,255,0.85);
	max-width: 60ch;
}
.cta-bulk__btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 30px;
	background: var(--color-dark);
	color: #fff;
	font-size: 13.5px;
	font-weight: 700;
	border: 1.5px solid var(--color-dark);
	white-space: nowrap;
}
.cta-bulk__btn:hover {
	background: #000;
}

/* Footer */
.site-footer {
	background: var(--color-dark);
	color: #a9abb8;
}
.footer-top {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1fr;
	gap: 40px;
	padding-top: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
}
.footer-brand span {
	color: #fff;
	font-size: 17px;
	font-weight: 800;
}
.footer-col--brand p {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.6;
	max-width: 32ch;
}
.footer-col h4 {
	color: #fff;
	font-size: 12.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0 0 16px;
}
.footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 13.5px;
}
.footer-contact li {
	display: flex;
	align-items: center;
	gap: 10px;
}
.footer-bottom {
	padding-top: 18px;
	padding-bottom: 22px;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.footer-bottom__links {
	display: flex;
	gap: 20px;
}
.footer-bottom__links a:hover {
	color: #fff;
}

/* Responsive */
@media (max-width: 960px) {
	.hero__row,
	.about-liquidation__row {
		grid-template-columns: 1fr;
		max-height: none;
	}
	.hero__media {
		min-height: 260px;
	}
	.perks__row {
		grid-template-columns: repeat(2, 1fr);
	}
	.categories__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-top {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 600px) {
	.site-header__row {
		flex-wrap: wrap;
	}
	.header-search {
		order: 3;
		max-width: 100%;
	}
	.perks__row {
		grid-template-columns: 1fr;
	}
	.product-grid {
		grid-template-columns: 1fr;
	}
}
