/*
Theme Name: Hello Elementor Child
Theme URI: https://woofpoof.com/
Description: Child theme for WoofPoof. Adds the trade wholesale catalogue shop layout.
Author: Web2
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* ==========================================================================
   Design tokens
   ========================================================================== */
.wpb-root {
	--wpb-bg: #FFF9F4;
	--wpb-bg-alt: #F7EBE1;
	--wpb-ink: #171310;
	--wpb-body: #4A403A;
	--wpb-subtle: #6B5D54;
	--wpb-muted: #8A7B70;
	--wpb-line: #F0E1D5;
	--wpb-line-soft: #EFDFD3;
	--wpb-coral: #EE5A45;
	--wpb-coral-dark: #C8402C;
	--wpb-card: #ffffff;
	--wpb-display: "Bricolage Grotesque", sans-serif;
	--wpb-text: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
	--wpb-script: "Caveat", cursive;
	--wpb-max: 1240px;
}

/* ==========================================================================
   Root
   ========================================================================== */
.wpb-root,
.wpb-root * {
	box-sizing: border-box;
}

.wpb-root {
	background: var(--wpb-bg);
	color: var(--wpb-ink);
	font-family: var(--wpb-text);
	-webkit-font-smoothing: antialiased;
}

.wpb-root a {
	color: var(--wpb-coral);
	text-decoration: none;
}

.wpb-root a:hover {
	color: var(--wpb-coral-dark);
}

.wpb-root img,
.wpb-root video {
	max-width: 100%;
}

.wpb-root h1,
.wpb-root h2,
.wpb-root h3 {
	font-family: var(--wpb-display);
	margin: 0;
}

.wpb-root input {
	font-family: inherit;
}

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

.wpb-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.wpb-hero {
	background: var(--wpb-bg-alt);
	/* Clears the floating Elementor header, which overlaps by -98px. */
	padding-top: 98px;
}

.wpb-hero__inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	align-items: center;
}

.wpb-hero__copy {
	padding-block: 56px;
}

.wpb-hero__eyebrow {
	margin: 0 0 14px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--wpb-coral);
}

.wpb-root .wpb-hero__title {
	font-weight: 800;
	font-size: clamp(36px, 4.6vw, 58px);
	line-height: 1.02;
	letter-spacing: -.03em;
	max-width: 15ch;
	text-wrap: pretty;
}

.wpb-hero__lede {
	margin: 22px 0 0;
	font-size: 18px;
	line-height: 1.55;
	color: var(--wpb-body);
	max-width: 46ch;
	text-wrap: pretty;
}

.wpb-usps {
	margin-top: 36px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 20px;
	max-width: 620px;
	list-style: none;
	padding: 0;
}

.wpb-usp {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wpb-usp__label {
	font-weight: 700;
	font-size: 15px;
}

.wpb-usp__note {
	font-size: 13px;
	color: var(--wpb-muted);
}

.wpb-hero__media {
	position: relative;
	min-height: 380px;
	align-self: stretch;
	background: var(--wpb-line);
	display: flex;
	align-items: flex-end;
	padding: 24px;
}

.wpb-hero__media img {
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	object-fit: cover;
}

.wpb-hero__scribble {
	position: absolute;
	left: 18px;
	top: 46px;
	pointer-events: none;
	font-family: var(--wpb-script);
	font-size: 34px;
	line-height: 1.12;
	color: var(--wpb-ink);
	transform: rotate(-6deg);
	text-shadow: 0 1px 0 rgba(255, 249, 244, .8);
}

/* ==========================================================================
   Catalogue header + controls
   ========================================================================== */
.wpb-catalog {
	padding: 64px 24px 72px;
	max-width: var(--wpb-max);
	margin: 0 auto;
}

.wpb-catalog__bar {
	display: flex;
	gap: 24px;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 34px;
}

.wpb-root .wpb-catalog__title {
	font-weight: 800;
	font-size: clamp(28px, 3vw, 38px);
	letter-spacing: -.02em;
}

.wpb-catalog__count {
	margin: 10px 0 0;
	font-size: 16px;
	color: var(--wpb-subtle);
}

.wpb-controls {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.wpb-field {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--wpb-card);
	border: 1px solid var(--wpb-line-soft);
	border-radius: 999px;
	padding: 11px 18px;
}

.wpb-field--search {
	min-width: 230px;
}

.wpb-field input[type="search"] {
	border: none;
	outline: none;
	background: transparent;
	font-size: 15px;
	color: var(--wpb-ink);
	width: 100%;
}

.wpb-field select {
	border: none;
	outline: none;
	background: transparent;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	color: var(--wpb-body);
	appearance: none;
	padding-right: 4px;
	cursor: pointer;
}

.wpb-field svg {
	flex: 0 0 auto;
}

/* ==========================================================================
   Grid + cards
   ========================================================================== */
.wpb-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.wpb-grid {
	row-gap: 44px;
}

.wpb-card {
	background: transparent;
	border: 0;
	display: flex;
	flex-direction: column;
	text-align: center;
	margin: 0;
}

.wpb-card[hidden] {
	display: none;
}

.wpb-card__media {
	position: relative;
	aspect-ratio: 1 / 1;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	/* Flex items default to min-height:auto, which lets a tall video override
	   the aspect-ratio box. Zero it so the ratio alone sets the height. */
	min-height: 0;
	flex: 0 0 auto;
	transition: aspect-ratio .25s ease;
}

/* Vertical video gets its full 9:16 frame only once it is playing. */
.wpb-card__media.is-playing {
	aspect-ratio: 9 / 16;
}

.wpb-card__media video,
.wpb-card__media img,
.wpb-card__media a {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	background: #fff;
}

.wpb-card__media video {
	object-fit: cover;
}

.wpb-card__media img {
	object-fit: contain;
	padding: 6%;
	transition: transform .3s ease;
}

.wpb-card:hover .wpb-card__media img {
	transform: scale(1.04);
}

.wpb-card__body {
	padding: 16px 8px 0;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.wpb-card__info {
	padding-bottom: 16px;
}

.wpb-root .wpb-card__sku {
	margin: 0 0 4px;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: .02em;
	color: var(--wpb-ink);
}

.wpb-root .wpb-card__title {
	font-size: 20px;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: .01em;
	text-transform: uppercase;
	text-wrap: balance;
}

.wpb-root .wpb-card__title a {
	color: var(--wpb-ink);
}

.wpb-root .wpb-card__title a:hover {
	color: var(--wpb-coral-dark);
}

.wpb-root .wpb-card__variants {
	margin: 6px 0 0;
	font-size: 12px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--wpb-muted);
}

.wpb-root .wpb-btn {
	display: block;
	text-align: center;
	background: var(--wpb-coral);
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	padding: 12px;
	border-radius: 12px;
	transition: background .15s ease, color .15s ease;
}

.wpb-root .wpb-btn:hover,
.wpb-root .wpb-btn:focus-visible {
	background: var(--wpb-ink);
	color: #fff;
}

.wpb-empty {
	grid-column: 1 / -1;
	padding: 48px 0;
	text-align: center;
	font-size: 16px;
	color: var(--wpb-subtle);
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.wpb-catalog .woocommerce-pagination {
	margin-top: 40px;
	text-align: center;
}

.wpb-catalog .woocommerce-pagination ul {
	display: inline-flex;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
	border: 0;
}

.wpb-catalog .woocommerce-pagination li {
	border: 0;
}

.wpb-catalog .woocommerce-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid var(--wpb-line-soft);
	background: var(--wpb-card);
	color: var(--wpb-body);
	font-weight: 600;
}

.wpb-catalog .woocommerce-pagination .page-numbers.current {
	background: var(--wpb-ink);
	border-color: var(--wpb-ink);
	color: #fff;
}

/* ==========================================================================
   Partner CTA
   ========================================================================== */
.wpb-partner {
	background: var(--wpb-ink);
	color: var(--wpb-bg);
}

.wpb-partner__inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
	align-items: center;
	padding-block: 44px;
}

.wpb-root .wpb-partner__title {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -.01em;
}

.wpb-partner__text {
	margin: 8px 0 0;
	font-size: 15px;
	color: #C9BCB2;
}

.wpb-partner__action {
	display: flex;
	justify-content: center;
}

.wpb-root .wpb-cta-coral {
	background: var(--wpb-coral);
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	padding: 15px 26px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: background .15s ease, color .15s ease;
}

.wpb-root .wpb-cta-coral:hover,
.wpb-root .wpb-cta-coral:focus-visible {
	background: var(--wpb-bg);
	color: var(--wpb-ink);
}

.wpb-badges {
	display: flex;
	gap: 34px;
	justify-content: flex-end;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.wpb-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #EFE4DB;
	text-align: center;
}

/* ==========================================================================
   Single product additions
   ========================================================================== */
.wpb-single-specs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 16px;
	margin: 22px 0;
	padding: 18px;
	background: var(--wpb-bg-alt);
	border-radius: 16px;
	list-style: none;
}

.wpb-single-specs__label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--wpb-muted);
}

.wpb-single-specs__value {
	font-family: var(--wpb-display);
	font-size: 20px;
	font-weight: 700;
	color: var(--wpb-ink);
}

.wpb-single-video {
	margin: 0 0 24px;
	max-width: 340px;
	aspect-ratio: 9 / 16;
	border-radius: 20px;
	overflow: hidden;
	background: var(--wpb-bg-alt);
}

.wpb-single-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 640px) {
	.wpb-badges {
		justify-content: flex-start;
	}

	.wpb-hero__copy {
		padding-block: 40px;
	}
}

/* ==========================================================================
   Single product
   ========================================================================== */
.wpb-single {
	padding-top: 98px;
}

.wpb-crumbs {
	padding-top: 20px;
	font-size: 13px;
	color: var(--wpb-muted);
}

.wpb-crumbs a {
	color: var(--wpb-muted);
}

.wpb-crumbs__sep {
	margin: 0 8px;
}

.wpb-single__top {
	padding-block: 24px 64px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 52px;
	align-items: start;
}

/* --- Gallery --- */
.wpb-gallery {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.wpb-gallery__frame {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--wpb-bg-alt);
	border: 1px solid var(--wpb-line);
	border-radius: 24px;
	overflow: hidden;
	min-height: 0;
}

.wpb-gallery__item {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
}

.wpb-gallery__item.is-active {
	opacity: 1;
	visibility: visible;
}

.wpb-gallery__item video,
.wpb-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.wpb-gallery__badge {
	position: absolute;
	left: 16px;
	top: 16px;
	z-index: 2;
	background: var(--wpb-coral);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 7px 12px;
	border-radius: 999px;
}

.wpb-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.wpb-gallery__thumb {
	aspect-ratio: 1 / 1;
	border: 1px solid var(--wpb-line);
	border-radius: 14px;
	overflow: hidden;
	background: var(--wpb-bg-alt);
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--wpb-muted);
}

.wpb-gallery__thumb.is-active {
	border: 2px solid var(--wpb-coral);
}

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

/* --- Summary --- */
.wpb-summary__eyebrow {
	margin: 0 0 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--wpb-coral);
}

.wpb-root .wpb-summary__title {
	font-weight: 800;
	font-size: clamp(26px, 3vw, 36px);
	line-height: 1.04;
	letter-spacing: -.03em;
}

.wpb-root .wpb-summary__subtitle {
	margin: 8px 0 0;
	font-size: 19px;
	color: var(--wpb-subtle);
}

.wpb-root .wpb-summary__variants {
	margin: 14px 0 0;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--wpb-muted);
}

.wpb-summary__desc {
	margin-top: 20px;
	font-size: 17px;
	line-height: 1.6;
	color: var(--wpb-body);
	max-width: 52ch;
	text-wrap: pretty;
}

.wpb-summary__desc p {
	margin: 0 0 12px;
}

.wpb-root .wpb-summary__desc ul,
.wpb-root .wpb-summary__desc ol {
	margin: 0 0 14px;
	padding-left: 20px;
}

.wpb-root .wpb-summary__desc li {
	margin-bottom: 7px;
	font-size: 16px;
	line-height: 1.55;
}

.wpb-root .wpb-summary__desc h2,
.wpb-root .wpb-summary__desc h3,
.wpb-root .wpb-summary__desc h4 {
	font-size: 19px;
	margin: 18px 0 8px;
}

.wpb-stats {
	margin-top: 28px;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.wpb-stat {
	flex: 1 1 150px;
	background: var(--wpb-card);
	border: 1px solid var(--wpb-line);
	border-radius: 16px;
	padding: 16px 18px;
}

.wpb-stat__value {
	font-family: var(--wpb-display);
	font-size: 30px;
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.1;
}

.wpb-stat__value .amount,
.wpb-stat__value bdi,
.wpb-stat__value del,
.wpb-stat__value ins {
	font: inherit;
	color: inherit;
	text-decoration: none;
}

.wpb-stat__label {
	margin-top: 2px;
	font-size: 12px;
	color: var(--wpb-muted);
}

/* --- Order row --- */
.wpb-order {
	margin-top: 30px;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
}

.wpb-qty {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #E4D3C6;
	background: var(--wpb-card);
	border-radius: 999px;
	padding: 8px 14px;
}

.wpb-qty__btn {
	border: 0;
	background: none;
	font-size: 20px;
	font-weight: 700;
	color: var(--wpb-muted);
	cursor: pointer;
	line-height: 1;
	padding: 4px 8px;
}

.wpb-qty__btn:hover {
	color: var(--wpb-ink);
}

.wpb-qty__input {
	width: 68px;
	border: 0;
	background: none;
	text-align: center;
	font-family: var(--wpb-display);
	font-size: 18px;
	font-weight: 700;
	color: var(--wpb-ink);
	-moz-appearance: textfield;
}

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

.wpb-root .wpb-btn--pill {
	flex: 1 1 200px;
	border-radius: 999px;
	padding: 16px 26px;
	font-size: 16px;
	margin-top: 0;
}

.wpb-root .wpb-btn-outline {
	display: inline-block;
	text-align: center;
	border: 1.5px solid var(--wpb-ink);
	color: var(--wpb-ink);
	font-weight: 700;
	font-size: 16px;
	padding: 15px 24px;
	border-radius: 999px;
	transition: background .15s ease, color .15s ease;
}

.wpb-root .wpb-btn-outline:hover,
.wpb-root .wpb-btn-outline:focus-visible {
	background: var(--wpb-ink);
	color: var(--wpb-bg);
}

/* Native add-to-cart, when the site is in cart mode. */
.wpb-order form.cart {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
	margin: 0;
	width: 100%;
}

.wpb-order form.cart .button {
	background: var(--wpb-coral);
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	padding: 16px 26px;
	border-radius: 999px;
	border: 0;
}

.wpb-order form.cart .button:hover {
	background: var(--wpb-ink);
	color: #fff;
}

.wpb-order .quantity input {
	border: 1px solid #E4D3C6;
	background: var(--wpb-card);
	border-radius: 999px;
	padding: 14px 12px;
	text-align: center;
	font-weight: 700;
}

/* --- Trade notes --- */
.wpb-trade-notes {
	margin: 26px 0 0;
	padding-top: 24px;
	border-top: 1px solid var(--wpb-line);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 16px;
	list-style: none;
}

.wpb-trade-note {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.wpb-trade-note svg {
	flex: 0 0 auto;
	margin-top: 2px;
}

.wpb-trade-note__label {
	font-size: 14px;
	font-weight: 700;
}

.wpb-trade-note__value {
	font-size: 12.5px;
	color: var(--wpb-muted);
}

/* --- Band: selling points + specs --- */
.wpb-band {
	background: var(--wpb-bg-alt);
}

.wpb-band__inner {
	padding-block: 60px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 48px;
}

.wpb-root .wpb-band__title {
	margin: 0 0 20px;
	font-size: 26px;
	font-weight: 800;
	letter-spacing: -.02em;
}

.wpb-points {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.wpb-points li {
	display: flex;
	gap: 12px;
	font-size: 16px;
	line-height: 1.5;
	color: var(--wpb-body);
}

.wpb-points li span {
	color: var(--wpb-coral);
	font-weight: 800;
}

.wpb-prose {
	font-size: 16px;
	line-height: 1.6;
	color: var(--wpb-body);
}

.wpb-specs {
	display: flex;
	flex-direction: column;
}

.wpb-spec {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 13px 0;
	border-bottom: 1px solid #E7D6C8;
	font-size: 15px;
}

.wpb-spec:last-child {
	border-bottom: 0;
}

.wpb-spec__label {
	color: var(--wpb-muted);
}

.wpb-spec__value {
	font-weight: 600;
	text-align: right;
}

/* --- Related --- */
.wpb-related {
	padding-block: 64px;
}

.wpb-related__bar {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}

.wpb-related__bar .wpb-band__title {
	margin: 0;
	font-size: 30px;
}

.wpb-related__link {
	font-size: 15px;
	font-weight: 700;
}

.wpb-partner__inner--single {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.wpb-partner__inner--single .wpb-partner__action {
	justify-content: flex-end;
}

@media (max-width: 640px) {
	.wpb-order {
		flex-direction: column;
		align-items: stretch;
	}

	.wpb-root .wpb-btn--pill {
		flex: 0 0 auto;
		width: 100%;
		padding: 13px 24px;
		font-size: 15px;
	}

	.wpb-partner__inner--single .wpb-partner__action {
		justify-content: flex-start;
	}
}
/* ==========================================================================
   Shortcodes: grid + slider
   ========================================================================== */
.wpb-shortcode {
	background: transparent;
}

.wpb-grid--fixed {
	grid-template-columns: repeat(var(--wpb-cols, 4), minmax(0, 1fr));
}

@media (max-width: 1024px) {
	.wpb-grid--fixed {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 780px) {
	.wpb-grid--fixed {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.wpb-grid--fixed {
		grid-template-columns: minmax(0, 1fr);
	}
}

.wpb-slider {
	position: relative;
}

.wpb-slider__track {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding: 4px 2px 8px;
}

.wpb-slider__track::-webkit-scrollbar {
	display: none;
}

.wpb-slider__track .wpb-card {
	flex: 0 0 268px;
	scroll-snap-align: start;
}

.wpb-root .wpb-slider__nav {
	position: absolute;
	top: 50%;
	z-index: 3;
	width: 44px;
	height: 44px;
	margin-top: -22px;
	border: 1px solid var(--wpb-line);
	border-radius: 999px;
	background: var(--wpb-card);
	color: var(--wpb-ink);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	box-shadow: 0 8px 22px rgba(23, 19, 16, .12);
	transition: background .15s ease, color .15s ease, opacity .15s ease;
}

.wpb-root .wpb-slider__nav:hover:not(:disabled) {
	background: var(--wpb-coral);
	color: #fff;
}

.wpb-root .wpb-slider__nav:disabled {
	opacity: 0;
	pointer-events: none;
}

.wpb-slider__nav--prev {
	left: -14px;
}

.wpb-slider__nav--next {
	right: -14px;
}

.wpb-slider__nav--prev svg {
	transform: rotate(90deg);
}

.wpb-slider__nav--next svg {
	transform: rotate(-90deg);
}

@media (max-width: 560px) {
	.wpb-slider__track .wpb-card {
		flex: 0 0 78%;
	}

	.wpb-slider__nav--prev {
		left: 2px;
	}

	.wpb-slider__nav--next {
		right: 2px;
	}
}
/* ==========================================================================
   Search results
   ========================================================================== */
.wpb-catalogue-page.is-search {
	padding-top: 98px;
}

.wpb-root .wpb-results {
	margin: 32px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.wpb-result {
	background: var(--wpb-card);
	border: 1px solid var(--wpb-line);
	border-radius: 16px;
	padding: 18px 20px;
}

.wpb-root .wpb-result__title {
	font-family: var(--wpb-display);
	font-size: 18px;
	font-weight: 700;
	color: var(--wpb-ink);
	letter-spacing: -.01em;
}

.wpb-root .wpb-result__title:hover {
	color: var(--wpb-coral);
}

.wpb-result__text {
	margin: 6px 0 0;
	font-size: 14.5px;
	line-height: 1.5;
	color: var(--wpb-body);
}

.wpb-pagination {
	margin-top: 40px;
	text-align: center;
}

.wpb-pagination .nav-links {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.wpb-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid var(--wpb-line-soft);
	background: var(--wpb-card);
	color: var(--wpb-body);
	font-weight: 600;
}

.wpb-pagination .page-numbers.current {
	background: var(--wpb-ink);
	border-color: var(--wpb-ink);
	color: #fff;
}

.wpb-pagination .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}
/* ==========================================================================
   Card badge + marketplace data
   ========================================================================== */
.wpb-card__badge {
	position: absolute;
	left: 12px;
	top: 12px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	padding: 5px 11px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
	color: #fff;
	line-height: 1.3;
}

.wpb-card__badge--hot {
	background: var(--wpb-coral);
}

.wpb-card__badge--cool {
	background: #2F9E6B;
}

.wpb-card__badge--new {
	left: auto;
	right: 12px;
	width: 62px;
	height: 62px;
	padding: 0;
	justify-content: center;
	border-radius: 50%;
	background: #FDE9DF;
	color: var(--wpb-coral-dark);
	font-family: var(--wpb-script);
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0;
	transform: rotate(-8deg);
}

/* ==========================================================================
   Card actions + on-demand video
   ========================================================================== */
.wpb-card__actions {
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid var(--wpb-line);
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 20px;
}

.wpb-root .wpb-card__details {
	display: inline-block;
	font-size: 19px;
	line-height: 1.2;
	color: var(--wpb-coral-dark);
	border-bottom: 2px solid #F5B82E;
	padding-bottom: 1px;
	transition: color .15s ease, border-color .15s ease;
}

.wpb-root .wpb-card__details:hover,
.wpb-root .wpb-card__details:focus-visible {
	color: var(--wpb-ink);
	border-color: var(--wpb-coral);
}

.wpb-root .wpb-card__video-link {
	border: 0;
	background: none;
	padding: 0;
	font-family: inherit;
	font-size: 15px;
	line-height: 1.2;
	color: var(--wpb-muted);
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}

.wpb-root .wpb-card__video-link:hover,
.wpb-root .wpb-card__video-link:focus-visible {
	color: var(--wpb-ink);
}

.wpb-card__video {
	position: absolute;
	inset: 0;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	background: var(--wpb-ink);
}

.wpb-card__media.is-playing .wpb-card__video {
	opacity: 1;
	visibility: visible;
}

.wpb-card__video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ==========================================================================
   Trade login (display only)
   ========================================================================== */
.wpb-login {
	/* Clears the floating Elementor header, which overlaps by -98px. */
	padding: 98px 0 0;
	background: var(--wpb-bg-alt);
}

.wpb-login__inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 56px;
	align-items: center;
	padding-block: 64px 80px;
}

.wpb-root .wpb-login__title {
	font-weight: 800;
	font-size: clamp(32px, 4vw, 50px);
	line-height: 1.04;
	letter-spacing: -.03em;
	max-width: 14ch;
	text-wrap: balance;
}

.wpb-login__lede {
	margin: 18px 0 0;
	font-size: 18px;
	line-height: 1.55;
	color: var(--wpb-body);
	max-width: 40ch;
}

.wpb-root .wpb-login__points {
	margin: 34px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.wpb-login__points li {
	display: flex;
	gap: 14px;
	align-items: center;
}

.wpb-login__icon {
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: var(--wpb-card);
	color: var(--wpb-coral);
	display: flex;
	align-items: center;
	justify-content: center;
}

.wpb-login__points strong {
	display: block;
	font-size: 16px;
}

.wpb-login__points small {
	font-size: 14px;
	color: var(--wpb-muted);
}

.wpb-login__card {
	background: var(--wpb-card);
	border: 1px solid var(--wpb-line);
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 24px 60px rgba(23, 19, 16, .08);
	width: 100%;
	max-width: 480px;
	justify-self: end;
}

.wpb-root .wpb-login__card-title {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -.01em;
	margin-bottom: 26px;
}

.wpb-login__form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.wpb-login__field label {
	display: block;
	margin-bottom: 7px;
	font-size: 14px;
	font-weight: 600;
	color: var(--wpb-ink);
}

.wpb-root .wpb-login__field input {
	width: 100%;
	border: 1px solid #E4D3C6;
	border-radius: 12px;
	background: var(--wpb-bg);
	padding: 14px 16px;
	font-size: 16px;
	color: var(--wpb-ink);
	outline: none;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.wpb-root .wpb-login__field input:focus {
	border-color: var(--wpb-coral);
	box-shadow: 0 0 0 3px rgba(238, 90, 69, .15);
	background: #fff;
}

.wpb-login__pass {
	position: relative;
}

.wpb-root .wpb-login__pass input {
	padding-right: 70px;
}

.wpb-root .wpb-login__toggle {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	border: 0;
	background: none;
	padding: 6px 10px;
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	color: var(--wpb-subtle);
	cursor: pointer;
}

.wpb-root .wpb-login__toggle:hover {
	color: var(--wpb-ink);
	background: none;
}

.wpb-login__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	font-size: 14px;
}

.wpb-login__check {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--wpb-body);
	cursor: pointer;
}

.wpb-login__check input {
	width: 17px;
	height: 17px;
	accent-color: var(--wpb-coral);
}

.wpb-root .wpb-login__forgot {
	font-weight: 600;
}

.wpb-root .wpb-login__submit {
	width: 100%;
	border: 0;
	cursor: pointer;
	font-family: inherit;
	padding: 15px;
	font-size: 16px;
	margin-top: 4px;
}

.wpb-login__notice {
	padding: 12px 14px;
	border-radius: 12px;
	background: #FDE9DF;
	color: var(--wpb-coral-dark);
	font-size: 14px;
	line-height: 1.5;
}

.wpb-login__notice[hidden] {
	display: none;
}

.wpb-root .wpb-login__notice a {
	font-weight: 700;
	text-decoration: underline;
}

.wpb-login__apply {
	margin: 26px 0 0;
	padding-top: 22px;
	border-top: 1px solid var(--wpb-line);
	text-align: center;
	font-size: 15px;
	color: var(--wpb-body);
}

.wpb-root .wpb-login__apply a {
	font-weight: 700;
}

@media (max-width: 760px) {
	.wpb-login__inner {
		gap: 32px;
		padding-block: 36px 56px;
	}

	.wpb-login__card {
		justify-self: stretch;
		max-width: none;
		padding: 28px 22px;
	}
}