/* ══════════════════════════════════════════════════════════════════════════════
   WPS Delivery Theme — gornica.cafe-inspired styles
   ══════════════════════════════════════════════════════════════════════════════ */

:root {
	--accent: rgb(191, 149, 110);
	--accent-light: rgba(191, 149, 110, 0.1);
	--accent-hover: rgb(170, 130, 90);
	--text: #333;
	--text-light: #888;
	--bg: #ffffff;
	--white: #fff;
	--border: #eee;
	--radius: 12px;
	--radius-sm: 8px;
	--shadow: 0 2px 12px rgba(0,0,0,0.06);
	--font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
	font-family: var(--font);
	font-size: 15px;
	color: var(--text);
	background: var(--bg);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* ─── Notice Bar ──────────────────────────────────────────────────────────── */

.wps-notice-bar {
	background: oklch(0.924 0.12 95.746);
	color: #5a4a00;
	padding: 12px 32px;
	font-size: 16px;
	font-weight: 500;
	border-bottom: 1px solid oklch(0.88 0.12 95);
}
.wps-notice-bar__icon { margin-right: 8px; vertical-align: middle; }

/* ─── Header ──────────────────────────────────────────────────────────────── */

.wps-header {
	background: var(--white);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 100;
}

.wps-header__inner {
	max-width: 100%;
	margin: 0;
	padding: 0 24px;
	height: 80px;
	display: flex;
	align-items: center;
	gap: 32px;
}

.wps-header__logo { flex-shrink: 0; display: flex; align-items: center; gap: 10px; }
.wps-header__logo img { height: 52px; width: auto; }
.wps-header__logo-icon { flex-shrink: 0; }
.wps-header__logo-icon svg { height: 48px; width: auto; }
.wps-header__logo-name { font-size: 26px; font-weight: 800; font-family: 'Manrope', sans-serif; letter-spacing: -0.5px; color: var(--text); }
.wps-header__logo-text { font-size: 22px; font-weight: 700; }

.wps-header__nav { flex: 1; display: flex; justify-content: center; }
.wps-header__menu { list-style: none; display: flex; gap: 28px; }
.wps-header__menu a { font-size: 15px; font-weight: 500; transition: color .2s; letter-spacing: 0.01em; }
.wps-header__menu a:hover { color: var(--accent); }

.wps-header__search { width: 280px; flex-shrink: 0; }
.wps-header__search form {
	position: relative;
	display: flex;
	align-items: center;
}
.wps-header__search-input {
	border: 1px solid #ddd;
	background: #fff;
	padding: 0 52px 0 18px;
	height: 44px;
	width: 100%;
	outline: none;
	font-size: 15px;
	font-family: 'Manrope', sans-serif;
	color: var(--text);
	border-radius: 24px;
	transition: border-color .2s;
}
.wps-header__search-input:focus { border-color: var(--accent); }
.wps-header__search-input::placeholder { color: #bbb; }
.wps-header__search-btn {
	position: absolute;
	right: 2px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent);
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	flex-shrink: 0;
	transition: background .2s;
}
.wps-header__search-btn:hover { background: var(--accent-hover); }

.wps-header__info {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}
.wps-header__icon { color: var(--accent); flex-shrink: 0; }
.wps-header__info small { display: block; color: var(--text-light); font-size: 12px; line-height: 1.3; font-weight: 400; }
.wps-header__info span { font-weight: 700; white-space: nowrap; font-size: 15px; color: var(--text); }

.wps-header__city {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 15px;
	font-weight: 500;
	flex-shrink: 0;
}
.wps-header__city .wps-header__icon { color: var(--accent); }

.wps-header__actions { flex-shrink: 0; }

.wps-header__btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	border: 1.5px solid #ccc;
	border-radius: 16px;
	font-size: 15px;
	font-weight: 500;
	color: var(--text);
	transition: border-color .2s;
}
.wps-header__btn:hover { border-color: var(--accent); }

/* ─── 3-Column Catalog Layout ─────────────────────────────────────────────── */

.wps-catalog {
	max-width: 100%;
	margin: 0;
	padding: 20px 20px 20px 24px;
	display: grid;
	grid-template-columns: 180px 1fr 340px;
	gap: 24px;
	min-height: calc(100vh - 120px);
}

/* ─── Left Sidebar: Categories ────────────────────────────────────────────── */

.wps-catalog__sidebar {
	position: sticky;
	top: 100px;
	align-self: start;
}

.wps-categories {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.wps-categories__item {
	display: block;
	padding: 10px 14px;
	font-size: 15px;
	font-weight: 600;
	color: var(--text);
	border-radius: var(--radius-sm);
	transition: all .2s;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}
.wps-categories__item:hover { background: var(--accent-light); color: var(--accent); }
.wps-categories__item.active {
	background: var(--accent);
	color: var(--white);
	font-weight: 700;
}

/* ─── Main Content ────────────────────────────────────────────────────────── */

.wps-catalog__banner {
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 24px;
}
.wps-catalog__banner img { width: 100%; height: auto; }

.wps-catalog__section { margin-bottom: 36px; }

.wps-catalog__section-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 16px;
}

.wps-catalog__section-title {
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
}

.wps-catalog__show-all {
	color: var(--accent);
	font-size: 14px;
	font-weight: 500;
}
.wps-catalog__show-all:hover { text-decoration: underline; }

.wps-catalog__title {
	font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 20px;
}

/* ─── Product Cards Grid & Carousel ───────────────────────────────────────── */

.wps-products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.wps-products-carousel {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.wps-product-card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	border: 1.5px solid #e8e8e8;
	transition: border-color .2s, box-shadow .2s;
	padding: 12px;
}
.wps-product-card:hover { border-color: var(--accent); box-shadow: 0 2px 12px rgba(0,0,0,0.04); }

.wps-product-card__image {
	display: block;
	aspect-ratio: 1;
	overflow: hidden;
	background: #f8f6f4;
	border-radius: 12px;
}
.wps-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s;
	border-radius: 12px;
}
.wps-product-card:hover .wps-product-card__image img {
	transform: scale(1.05);
}

.wps-product-card__no-image {
	width: 100%;
	aspect-ratio: 1;
	background: linear-gradient(135deg, #f5f0eb 0%, #ece5dd 100%);
	border-radius: 12px;
}

.wps-product-card__body { padding: 10px 2px 0; }

.wps-product-card__name {
	display: block;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 2px;
	line-height: 1.3;
	color: var(--text);
}

.wps-product-card__weight {
	font-size: 13px;
	color: var(--text-light);
	display: block;
	margin-bottom: 4px;
}

.wps-product-card__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 8px;
}

.wps-product-card__price {
	font-size: 18px;
	font-weight: 700;
	color: var(--text);
}
.wps-product-card__price .woocommerce-Price-currencySymbol { font-weight: 400; }

.wps-product-card__add {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 8px 16px;
	border: 1.5px solid var(--accent);
	color: var(--accent);
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	transition: all .2s;
	white-space: nowrap;
}
.wps-product-card__add:hover {
	background: var(--accent);
	color: var(--white);
}

/* ─── Right Sidebar: Cart ─────────────────────────────────────────────────── */

.wps-catalog__cart {
	position: sticky;
	top: 100px;
	align-self: start;
	max-height: calc(100vh - 120px);
	overflow-y: auto;
}

.wps-sidebar-cart {
	background: var(--white);
	border-radius: var(--radius);
	border: 1px solid var(--border);
	overflow: hidden;
	max-width: 100%;
	transition: all .3s;
}

/* Minimized cart — floating pill */
.wps-cart--minimized .wps-sidebar-cart { display: none; }
.wps-cart--minimized .wps-mini-cart-pill { display: inline-flex; }
.wps-cart--minimized { width: auto; position: sticky; top: 100px; align-self: start; }

/* Expand main content when cart minimized */
.wps-catalog:has(.wps-cart--minimized) {
	grid-template-columns: 180px 1fr auto;
}

.wps-mini-cart-pill {
	display: none;
	align-items: center;
	gap: 10px;
	background: rgba(191, 149, 110, 0.1);
	border: 1px solid rgba(191, 149, 110, 0.2);
	border-radius: 14px;
	padding: 12px 24px;
	cursor: pointer;
	transition: all .2s;
}
.wps-mini-cart-pill:hover { background: rgba(191, 149, 110, 0.2); }
.wps-mini-cart-pill__icon { color: var(--accent); flex-shrink: 0; opacity: 0.7; }
.wps-mini-cart-pill__info { text-align: left; }
.wps-mini-cart-pill__total { font-size: 16px; font-weight: 700; color: var(--accent); display: block; line-height: 1.2; }
.wps-mini-cart-pill__time { font-size: 11px; color: var(--text-light); }

.wps-sidebar-cart__mode {
	display: flex;
	gap: 0;
	border: 1.5px solid var(--border);
	border-radius: 24px;
	margin: 12px;
	overflow: hidden;
}
.wps-sidebar-cart__mode-btn {
	flex: 1;
	padding: 12px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	transition: all .2s;
	color: var(--text-light);
}
.wps-sidebar-cart__mode-btn.active {
	background: var(--accent);
	color: var(--white);
	border-radius: 22px;
}

.wps-sidebar-cart__address {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	padding: 14px 16px;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	font-size: 15px;
	font-weight: 500;
	text-align: left;
	cursor: pointer;
}
.wps-sidebar-cart__address span { flex: 1; }
.wps-sidebar-cart__address:hover { background: #fafafa; }

/* ─── Mini Cart ───────────────────────────────────────────────────────────── */

.wps-mini-cart__empty { padding: 40px 20px; text-align: center; color: var(--text-light); }

.wps-mini-cart__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 16px 8px;
}
.wps-mini-cart__header h3 { font-size: 18px; font-weight: 700; }
.wps-mini-cart__actions { display: flex; gap: 8px; }
.wps-mini-cart__actions a { color: var(--text-light); }
.wps-mini-cart__actions a:hover { color: var(--accent); }

.wps-mini-cart__items { padding: 0 16px; }

.wps-mini-cart__item {
	display: flex;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid #f0f0f0;
	align-items: flex-start;
}
.wps-mini-cart__item-img { width: 56px; height: 56px; border-radius: 10px; overflow: hidden; flex-shrink: 0; border: 1px solid #eee; }
.wps-mini-cart__item-img img { width: 100%; height: 100%; object-fit: cover; }
.wps-mini-cart__item-info { flex: 1; min-width: 0; }
.wps-mini-cart__item-name { font-size: 14px; font-weight: 600; display: block; margin-bottom: 6px; line-height: 1.3; }

.wps-mini-cart__item-qty {
	display: inline-flex;
	align-items: center;
	gap: 0;
}
.wps-qty-btn {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 400;
	color: var(--text);
	transition: background .2s;
}
.wps-qty-btn:hover { color: var(--accent); }
.wps-qty-val {
	width: 24px;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
}

.wps-mini-cart__item-price { font-size: 15px; font-weight: 600; margin-left: 4px; }

.wps-mini-cart__details { padding: 12px 16px; border-top: 1px solid var(--border); }
.wps-mini-cart__details h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.wps-mini-cart__row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 4px; }
.wps-mini-cart__row--total { font-weight: 700; font-size: 16px; margin-top: 6px; }

.wps-mini-cart__delivery-time {
	padding: 8px 16px;
	text-align: center;
	font-size: 13px;
	color: var(--text-light);
	border-top: 1px solid var(--border);
}

.wps-sidebar-cart .wps-mini-cart__checkout {
	display: flex !important;
	justify-content: center;
	gap: 12px;
	margin: 12px;
	border-radius: 24px;
	padding: 14px 16px;
	font-size: 15px;
	font-weight: 600;
	box-sizing: border-box;
	width: auto;
	overflow: hidden;
}

/* ─── Buttons ─────────────────────────────────────────────────────────────── */

.wps-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: var(--radius-sm);
	font-size: 15px;
	font-weight: 600;
	transition: all .2s;
	border: none;
	cursor: pointer;
}
.wps-btn--accent { background: var(--accent); color: var(--white); }
.wps-btn--accent:hover { background: var(--accent-hover); }
.wps-btn--full { width: 100%; }
.wps-btn--telegram { background: #2AABEE; color: var(--white); }
.wps-btn--telegram:hover { background: #229ED9; }

/* ─── Single Product ──────────────────────────────────────────────────────── */

.wps-breadcrumbs {
	font-size: 15px;
	color: var(--text-light);
	margin-bottom: 8px;
}
.wps-breadcrumbs a { color: var(--text-light); }
.wps-breadcrumbs a:hover { color: var(--accent); }
.wps-breadcrumbs span { margin: 0 6px; }

.wps-back-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	color: var(--text);
	margin-bottom: 16px;
}
.wps-back-link:hover { color: var(--accent); }

.wps-single-product {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
	margin-top: 16px;
}

.wps-single-product__image {
	border-radius: 16px;
	overflow: hidden;
	background: #f5f0eb;
	aspect-ratio: 4/3;
}
.wps-single-product__image img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.wps-single-product__image .wps-product-card__no-image--large { aspect-ratio: 4/3; background: linear-gradient(135deg, #f5f0eb 0%, #ece5dd 100%); border-radius: 16px; }

.wps-single-product__title { font-size: 32px; font-weight: 700; margin-bottom: 6px; }
.wps-single-product__weight { font-size: 15px; color: var(--text-light); display: block; margin-bottom: 16px; }
.wps-single-product__desc { margin: 12px 0; font-size: 14px; color: var(--text-light); }

.wps-single-product__nutrition {
	display: flex;
	gap: 16px;
	font-size: 13px;
	color: var(--text-light);
	margin: 12px 0;
}

.wps-single-product__add {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 8px;
}

.wps-single-product__add .wps-btn--add {
	padding: 16px 48px;
	border-radius: 28px;
	font-size: 17px;
	font-weight: 600;
	text-align: center;
	justify-content: center;
	white-space: nowrap;
}

.wps-qty-control {
	display: inline-flex;
	align-items: center;
	border: 2px solid #ccc;
	border-radius: 28px;
	overflow: hidden;
}
.wps-qty-control .wps-qty-btn { width: 48px; height: 48px; font-size: 24px; font-weight: 500; color: var(--text); }
.wps-qty-input {
	width: 40px;
	text-align: center;
	border: none;
	outline: none;
	background: transparent;
	font-size: 16px;
	font-weight: 600;
	-moz-appearance: textfield;
}
.wps-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.wps-btn--add { flex: 1; font-size: 16px; padding: 12px 20px; }

/* ─── Modals ──────────────────────────────────────────────────────────────── */

.wps-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}
.wps-modal.open { opacity: 1; pointer-events: all; }

.wps-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.4);
}

.wps-modal__content {
	position: relative;
	background: var(--white);
	border-radius: var(--radius);
	max-height: 90vh;
	overflow-y: auto;
	z-index: 1;
	animation: modalSlide .3s ease;
}
.wps-modal__content--small { width: 420px; padding: 32px; }
.wps-modal__content--wide { width: 800px; }

@keyframes modalSlide {
	from { transform: translateY(20px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

.wps-modal__close {
	position: absolute;
	top: 12px;
	right: 16px;
	font-size: 28px;
	color: var(--text-light);
	z-index: 2;
}

/* ─── Delivery Modal ──────────────────────────────────────────────────────── */

.wps-delivery-modal { display: grid; grid-template-columns: 1fr 1fr; min-height: 450px; }
.wps-delivery-modal__left { padding: 24px; }
.wps-delivery-modal__right { position: relative; }
.wps-delivery-modal__map { width: 100%; height: 100%; min-height: 400px; border-radius: 0 var(--radius) var(--radius) 0; }

.wps-delivery-tabs { display: flex; gap: 4px; margin-bottom: 20px; background: #f5f5f5; border-radius: 10px; padding: 4px; }
.wps-delivery-tabs__btn {
	flex: 1;
	padding: 10px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-light);
	transition: all .2s;
}
.wps-delivery-tabs__btn.active { background: var(--white); color: var(--text); box-shadow: 0 1px 4px rgba(0,0,0,0.1); }

.wps-delivery-tab { display: none; }
.wps-delivery-tab.active { display: block; }

.wps-delivery-modal__label { font-weight: 600; margin-bottom: 8px; }

.wps-delivery-modal__field { position: relative; margin-bottom: 12px; }
.wps-delivery-modal__field input {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--border);
	border-radius: 8px;
	font-size: 14px;
	outline: none;
}
.wps-delivery-modal__field input:focus { border-color: var(--accent); }

.wps-delivery-modal__row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.wps-delivery-modal__row input {
	padding: 10px 14px;
	border: 1px solid var(--border);
	border-radius: 8px;
	font-size: 14px;
	outline: none;
}

.wps-delivery-modal__checkbox { display: flex; align-items: center; gap: 8px; font-size: 14px; margin-bottom: 12px; }

.wps-delivery-modal textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--border);
	border-radius: 8px;
	font-size: 14px;
	outline: none;
	resize: none;
	margin-bottom: 16px;
}

.wps-delivery-modal__zone-msg { margin-top: 8px; font-size: 13px; text-align: center; }

.wps-delivery-modal__pickup-point {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px;
	background: #fafafa;
	border-radius: 8px;
	margin-bottom: 16px;
	font-size: 14px;
}
.wps-delivery-modal__pickup-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--accent);
	flex-shrink: 0;
}

/* DaData dropdown */
.wps-dadata-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--white);
	border: 1px solid var(--border);
	border-top: none;
	border-radius: 0 0 8px 8px;
	max-height: 200px;
	overflow-y: auto;
	z-index: 10;
	display: none;
}
.wps-dadata-dropdown.open { display: block; }
.wps-dadata-dropdown__item { padding: 8px 14px; cursor: pointer; font-size: 14px; }
.wps-dadata-dropdown__item:hover { background: #f5f5f5; }

/* ─── Login Modal ─────────────────────────────────────────────────────────── */

.wps-login-modal { text-align: center; }
.wps-login-modal__logo { margin-bottom: 16px; }
.wps-login-modal__logo img { height: 60px; margin: 0 auto; }
.wps-login-modal__title { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.wps-login-modal__consent { display: block; font-size: 12px; color: var(--text-light); text-align: left; margin-bottom: 20px; line-height: 1.4; }
.wps-login-modal__consent a { color: var(--accent); }
.wps-login-modal__wp-form { margin-top: 16px; }
.wps-login-modal__wp-form > p { font-size: 14px; }
.wps-login-modal__wp-form a { color: var(--accent); }

/* ─── Footer ──────────────────────────────────────────────────────────────── */

.wps-footer {
	background: var(--white);
	border-top: 1px solid var(--border);
	margin-top: 40px;
	padding: 24px 0;
}

.wps-footer__inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}

.wps-footer__logo img { height: 36px; }
.wps-footer__social { display: flex; gap: 12px; }
.wps-footer__social-link {
	padding: 6px 12px;
	background: #f5f5f5;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 500;
}
.wps-footer__social-link:hover { background: var(--accent-light); color: var(--accent); }
.wps-footer__legal a { font-size: 13px; color: var(--text-light); }
.wps-footer__legal a:hover { color: var(--accent); }
.wps-footer__copy { font-size: 13px; color: var(--text-light); }

/* ─── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
	.wps-catalog { grid-template-columns: 1fr 280px; }
	.wps-catalog__sidebar { display: none; }
}

@media (max-width: 768px) {
	.wps-header__inner { gap: 10px; }
	.wps-header__search,
	.wps-header__info { display: none; }

	.wps-catalog {
		grid-template-columns: 1fr;
		padding: 12px;
	}
	.wps-catalog__cart { display: none; }

	.wps-products-grid,
	.wps-products-carousel {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.wps-single-product { grid-template-columns: 1fr; gap: 16px; }

	.wps-delivery-modal { grid-template-columns: 1fr; }
	.wps-delivery-modal__right { min-height: 250px; }
	.wps-delivery-modal__map { border-radius: 0 0 var(--radius) var(--radius); }

	.wps-modal__content--wide { width: 95vw; }
	.wps-modal__content--small { width: 90vw; }

	/* Mobile cart button (fixed bottom) */
	.wps-mobile-cart-btn {
		display: flex !important;
	}
}

/* Mobile cart bottom button */
.wps-mobile-cart-btn {
	display: none;
	position: fixed;
	bottom: 16px;
	left: 16px;
	right: 16px;
	z-index: 99;
	background: var(--accent);
	color: var(--white);
	padding: 14px 20px;
	border-radius: 14px;
	font-size: 16px;
	font-weight: 600;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* ─── WooCommerce overrides ───────────────────────────────────────────────── */

.woocommerce-notices-wrapper { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	padding: 12px 16px;
	border-radius: var(--radius-sm);
	margin-bottom: 12px;
}
