/**
 * Paripoorn Components
 * Header, announcement bar, mega menu, mobile nav, footer, product card.
 * These are theme-owned (not Elementor) per project architecture.
 */

/* ---------- Announcement bar ---------- */
.pp-announcement {
	background: var(--pp-announcement-bg, var(--pp-secondary));
	color: var(--pp-announcement-text, var(--pp-light-text));
	text-align: center;
	font-family: var(--pp-font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.7px;
	padding: 12px var(--pp-gutter);
	/* No overflow:hidden — it clipped wrapped offer text on narrow
	   screens instead of letting the bar grow. The ticker's slides are
	   stacked in a grid cell (below) rather than escaping the box, so
	   nothing needs clipping here. */
	line-height: 1.4;
}

.pp-announcement a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Per-offer highlighted phrase (Theme Settings → Header → Announcement
   Bar Offers → Highlight). Accent color + heavier weight, no layout
   shift since it's inline within the same line. */
.pp-announcement__highlight {
	color: var(--pp-announcement-highlight, #C58C2B);
	font-weight: 800;
}

/* Rotating offers: a vertical ticker. Slides are stacked via display,
   JS swaps [hidden] and toggles the transient .is-leaving/.is-entering
   classes for a smooth translateY + fade — no scale, no layout shift
   while a slide transitions.

   Grid rather than position:absolute for the stack. Absolutely-positioned
   slides are removed from flow, so the track could never grow past its
   min-height and a wrapped offer was clipped by the bar's overflow:hidden
   on narrow screens. Placing every slide in the SAME grid cell keeps them
   stacked for the crossfade while the track still sizes to the tallest
   one, so a two-line offer gets two lines of room. */
.pp-announcement--rotating .pp-announcement__track {
	display: grid;
	grid-template-columns: 1fr;
	min-height: 1.4em;
}

.pp-announcement--rotating .pp-announcement__slide {
	grid-area: 1 / 1;
}

.pp-announcement__slide {
	transition: opacity 500ms cubic-bezier(.2,.65,.3,1), transform 500ms cubic-bezier(.2,.65,.3,1);
}

.pp-announcement--rotating .pp-announcement__slide {
	opacity: 1;
	transform: translateY(0);
}

.pp-announcement--rotating .pp-announcement__slide[hidden] {
	display: block;
	opacity: 0;
	pointer-events: none;
}

/* Entering slide starts just below the line and rises into place. */
.pp-announcement--rotating .pp-announcement__slide.is-entering-start {
	transform: translateY(12px);
	opacity: 0;
	transition: none;
}

.pp-announcement--rotating .pp-announcement__slide.is-entering {
	transform: translateY(0);
	opacity: 1;
}

/* Leaving slide rises out and fades above the line. */
.pp-announcement--rotating .pp-announcement__slide.is-leaving {
	transform: translateY(-12px);
	opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
	.pp-announcement__slide {
		transition: none;
	}
}

/* ---------- Header ---------- */
.pp-header {
	background: var(--pp-header-bg, var(--pp-bg));
	border-bottom: 1px solid var(--pp-border);
	position: relative;
	z-index: 100;
}

.pp-header.is-sticky {
	position: sticky;
	top: 0;
}

.pp-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--pp-space-6);
	min-height: var(--pp-header-height);
}

.pp-header__logo img {
	height: auto;
	max-height: calc(var(--pp-header-height) - 32px);
	width: auto;
	max-width: var(--pp-logo-width-desktop, 160px);
}

@media (max-width: 1023px) {
	.pp-header__logo img {
		max-width: var(--pp-logo-width-tablet, 140px);
	}
}

@media (max-width: 767px) {
	.pp-header__logo img {
		max-width: var(--pp-logo-width-mobile, 120px);
	}
}

.pp-header__logo-text {
	font-family: var(--pp-font-heading);
	font-size: 1.5rem;
	color: var(--pp-heading);
}

.pp-header__nav {
	display: none;
}

@media (min-width: 1024px) {
	.pp-header__nav {
		display: flex;
		align-items: center;
		gap: var(--pp-space-8);
	}
}

.pp-header__nav ul {
	display: flex;
	align-items: center;
	gap: var(--pp-space-8);
	list-style: none;
	margin: 0;
	padding: 0;
}

.pp-header__nav .menu-item {
	position: relative;
	list-style: none;
}

.pp-header__nav a {
	font-family: var(--pp-font-nav);
	font-weight: 600;
	font-size: 14px;
	color: var(--pp-heading);
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: var(--pp-space-3) 0;
	border-bottom: 2px solid transparent;
	transition: color var(--pp-transition), border-color var(--pp-transition);
}

.pp-header__nav a:hover,
.pp-header__nav .menu-item.current-menu-item > a {
	color: var(--pp-primary);
	border-color: var(--pp-primary);
}

.pp-header__actions {
	display: flex;
	align-items: center;
	gap: var(--pp-space-4);
}

.pp-header__actions .pp-header__icon-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--pp-heading);
	background-color: transparent;
	border-radius: var(--pp-radius-sm);
	padding: 0;
	transition: color var(--pp-transition), background-color var(--pp-transition);
}

.pp-header__actions .pp-header__icon-btn:hover {
	color: var(--pp-primary);
	background-color: var(--pp-bg-soft);
}

.pp-header__icon-btn svg {
	width: 26px;
	height: 26px;
}

.pp-header__cart-count {
	position: absolute;
	top: 0;
	right: 0;
	min-width: 16px;
	height: 16px;
	padding: 0 3px;
	border-radius: 8px;
	background: #C58C2B;
	color: var(--pp-light-text);
	font-size: 10px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.pp-header__search {
	display: flex;
	align-items: center;
	position: relative;
}

.pp-header__search-form {
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	background: var(--pp-bg);
	border: 1px solid var(--pp-border);
	border-radius: var(--pp-radius-sm);
	box-shadow: var(--pp-shadow-md);
	padding: var(--pp-space-3);
	width: 280px;
	opacity: 0;
	transform: translateY(-6px);
	pointer-events: none;
	transition: opacity var(--pp-transition), transform var(--pp-transition);
}

.pp-header__search-form.is-open {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

/*
 * Hamburger: the three bars must stack vertically. inline-flex alone laid
 * them out in a ROW (flex default direction), which collapsed the icon
 * into what looked like a single line.
 */
.pp-header__mobile-toggle {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

@media (min-width: 1024px) {
	.pp-header__actions .pp-header__mobile-toggle {
		display: none;
	}
}

.pp-header__mobile-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	border-radius: 2px;
	background: var(--pp-heading);
	/* Spacing comes from the flex gap above; a margin here would add to
	   it and make the icon taller than the 40px button. */
	margin: 0;
	transition: transform var(--pp-transition), opacity var(--pp-transition);
}

/* Account icon lives in the slide-out menu on mobile, with a text label. */
@media (max-width: 1023px) {
	.pp-header__actions .pp-header__account {
		display: none;
	}
}

/* ---------- Mega menu ---------- */
.pp-mega-menu__panel {
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--pp-bg);
	border: 1px solid var(--pp-border);
	border-radius: var(--pp-radius-md);
	box-shadow: var(--pp-shadow-lg);
	padding: var(--pp-space-8);
	display: grid;
	grid-template-columns: repeat(3, minmax(160px, 1fr)) minmax(220px, 280px);
	gap: var(--pp-space-8);
	min-width: 720px;
	z-index: 200;
}

.pp-mega-menu__col-title {
	font-family: var(--pp-font-body);
	font-size: var(--pp-fs-small);
	font-weight: var(--pp-weight-label);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--pp-muted);
	margin-bottom: var(--pp-space-4);
}

.pp-mega-menu__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pp-mega-menu__col ul li {
	margin-bottom: var(--pp-space-2);
}

.pp-mega-menu__col ul a {
	font-family: var(--pp-font-nav);
	font-size: 0.9375rem;
	color: var(--pp-heading);
	transition: color var(--pp-transition);
}

.pp-mega-menu__col ul a:hover {
	color: var(--pp-primary);
}

.pp-mega-menu__featured {
	border-radius: var(--pp-radius-md);
	overflow: hidden;
	background: var(--pp-bg-soft);
	display: flex;
	flex-direction: column;
}

.pp-mega-menu__featured-image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.pp-mega-menu__featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pp-mega-menu__featured-body {
	padding: var(--pp-space-4);
}

.pp-mega-menu__featured-title {
	font-family: var(--pp-font-heading);
	font-size: 1.0625rem;
	margin-bottom: var(--pp-space-1);
}

.pp-mega-menu__featured-desc {
	font-size: var(--pp-fs-small);
	color: var(--pp-text);
	margin-bottom: var(--pp-space-3);
}

/* ---------- Mobile nav (offcanvas) ---------- */
.pp-mobile-nav {
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	width: min(360px, 88vw);
	background: var(--pp-bg);
	z-index: 1000;
	overflow-y: auto;
	padding: var(--pp-space-6);
	box-shadow: var(--pp-shadow-lg);
}

.pp-mobile-nav__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: var(--pp-space-6);
}

/*
 * Close button: icon only, top-right, no chrome.
 *
 * !important is deliberate and narrow. The Elementor Kit stylesheet
 * (uploads/elementor/css/post-*.css) styles EVERY bare <button> with a
 * background, padding and pill radius, and loads after theme CSS — which
 * is what rendered this control as a filled red circle. Scoped to this
 * one selector.
 */
.pp-mobile-nav__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	padding: 0 !important;
	margin: 0;
	background: none !important;
	background-color: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: var(--pp-heading);
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	transition: color var(--pp-transition);
}

.pp-mobile-nav__close:hover {
	background: none !important;
	color: var(--pp-primary);
}

.pp-mobile-nav__close:focus-visible {
	outline: 2px solid var(--pp-primary);
	outline-offset: 2px;
}

.pp-mobile-nav__close svg {
	width: 24px;
	height: 24px;
	display: block;
}

/* Account link — mirrors the header icon that is hidden on mobile, but
   with a visible label since there is room for one here. No border here:
   the last menu item above already ends the list visually (see its
   :last-child rule below), so a second rule just above this block read as
   a stray line with nothing to separate. Spacing now comes from margin
   alone. */
.pp-mobile-nav__account {
	margin-top: var(--pp-space-6);
}

.pp-mobile-nav__account-link {
	display: flex;
	align-items: center;
	gap: var(--pp-space-3);
	font-family: var(--pp-font-nav);
	font-size: var(--pp-fs-body);
	color: var(--pp-heading);
	text-decoration: none;
	padding: var(--pp-space-2) 0;
	transition: color var(--pp-transition);
}

.pp-mobile-nav__account-link:hover {
	color: var(--pp-primary);
}

.pp-mobile-nav__account-link svg {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

.pp-mobile-nav__list,
.pp-mobile-nav__submenu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Every item gets a bottom rule EXCEPT the last one — the account block
   directly below already opens with its own border-top, so the last menu
   item kept a border-bottom right above it, reading as one doubled line
   (see the screenshot: two 1px rules a few pixels apart under "About us"). */
.pp-mobile-nav__list .menu-item {
	border-bottom: 1px solid var(--pp-border);
}

.pp-mobile-nav__list > .menu-item:last-child {
	border-bottom: 0;
}

.pp-mobile-nav__list > li > a,
.pp-mobile-nav__list .pp-accordion-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: var(--pp-space-4) 0;
	font-family: var(--pp-font-nav);
	font-weight: var(--pp-weight-nav);
	font-size: 1rem;
	color: var(--pp-heading);
}

.pp-mobile-nav__submenu {
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--pp-transition);
	padding-left: var(--pp-space-4);
}

.pp-mobile-nav__submenu.is-open {
	max-height: 1000px;
}

.pp-mobile-nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(20, 20, 20, 0.4);
	z-index: 999;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--pp-transition);
}

.pp-mobile-nav-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}

/* ---------- Footer ---------- */
.pp-footer {
	background: var(--pp-footer-bg, var(--pp-bg-soft));
	padding-block: var(--pp-space-10) var(--pp-space-4);
}

.pp-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 0.65fr 0.65fr 0.65fr 1.8fr;
	gap: var(--pp-space-8);
	margin-bottom: var(--pp-space-12);
	align-items: start;
}

.pp-footer__col--newsletter {
	padding-left: 90px;
}

.pp-footer__col {
	margin: 0;
}

.pp-footer__col-title,
.pp-footer__logo {
	margin-top: 0;
}

@media (max-width: 1023px) {
	.pp-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: var(--pp-space-8);
	}

	.pp-footer__col--newsletter {
		padding-left: 0;
	}
}

@media (max-width: 599px) {
	.pp-footer__grid {
		grid-template-columns: 1fr;
	}
}

.pp-footer__logo img {
	height: 40px;
	width: auto;
	margin-bottom: var(--pp-space-4);
}

.pp-footer__desc {
	font-family: var(--pp-font-body);
	color: #212121;
	font-size: 0.9rem;
	margin-bottom: var(--pp-space-5);
	max-width: 280px;
}

.pp-footer__col--newsletter .pp-footer__desc {
	max-width: none;
}

.pp-footer__col-title {
	font-family: var(--pp-font-body);
	font-weight: 700;
	font-size: 16px;
	margin-bottom: var(--pp-space-2);
}

.pp-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pp-footer__col ul li {
	margin-bottom: var(--pp-space-1);
}

.pp-footer__col ul a {
	color: #212121;
	font-size: 0.8125rem;
	transition: color var(--pp-transition);
}

.pp-footer__col ul a:hover {
	color: var(--pp-primary);
}

.pp-footer__social {
	display: flex;
	gap: var(--pp-space-3);
	margin-top: var(--pp-space-5);
}

.pp-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(242, 13, 22, 0.08);
	color: var(--pp-primary);
	transition: color var(--pp-transition), background-color var(--pp-transition);
}

.pp-footer__social a:hover {
	color: var(--pp-light-text);
	background: var(--pp-primary);
}

.pp-footer__social svg {
	width: 16px;
	height: 16px;
}

.pp-footer__newsletter-form {
	display: flex;
	flex-wrap: wrap;
	max-width: 340px;
	margin-top: var(--pp-space-5);
}

.pp-footer__newsletter-form .pp-newsletter-fields {
	display: flex;
	width: 100%;
	height: 42px;
	border-radius: 999px;
	overflow: hidden;
}

.pp-footer__newsletter-form input[type="email"] {
	flex: 1;
	min-width: 0;
	height: 100%;
	border: 0;
	background: var(--pp-bg-card);
	padding-left: var(--pp-space-4);
	border-radius: 0;
	font-size: 0.8125rem;
}

.pp-footer__newsletter-form input[type="email"]::placeholder {
	color: #212121;
}

.pp-footer__newsletter-form input[type="email"]:focus {
	box-shadow: none;
}

.pp-footer__newsletter-form .pp-button {
	height: 100%;
	padding-inline: var(--pp-space-5);
	font-size: 0.8125rem;
	border-radius: 0;
	white-space: nowrap;
	flex-shrink: 0;
}

.pp-footer__col--newsletter .pp-footer__col-title {
	font-family: var(--pp-font-heading);
	font-weight: 400;
	font-size: 1.75rem;
	color: #212121;
	line-height: 1;
	margin-top: 4px;
	margin-bottom: var(--pp-space-3);
}

.pp-footer__bottom {
	border-top: 1px solid rgba(27, 28, 28, 0.3);
	padding-top: var(--pp-space-6);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--pp-space-3);
	font-size: var(--pp-fs-small);
	color: var(--pp-muted);
}

.pp-footer__legal {
	margin: 0;
	font-size: 11px;
	color: #212121;
}

.pp-footer__payments {
	display: flex;
	gap: var(--pp-space-2);
}

.pp-footer__payment-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 24px;
	padding: 0 8px;
	border: 1px solid var(--pp-border);
	border-radius: var(--pp-radius-sm);
	background: var(--pp-bg);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--pp-muted);
}

/* ---------- Product card (shared, used by theme WooCommerce templates
   and by Elementor product widgets once built) ---------- */
.pp-product-card {
	position: relative;
	background: var(--pp-bg-card);
	border-radius: 24px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: var(--pp-space-5);
}

.pp-product-card__badge {
	position: absolute;
	top: var(--pp-space-4);
	left: var(--pp-space-4);
	z-index: 2;
	background: var(--pp-sale);
	color: var(--pp-light-text);
	font-size: 0.6875rem;
	font-weight: var(--pp-weight-label);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
}

.pp-product-card__badge--outofstock {
	background: var(--pp-out-of-stock);
}

.pp-product-card__wishlist {
	position: absolute;
	top: var(--pp-space-4);
	right: var(--pp-space-4);
	z-index: 2;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--pp-bg);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--pp-heading);
	transition: color var(--pp-transition), background-color var(--pp-transition);
}

.pp-product-card__wishlist:hover {
	color: var(--pp-primary);
}

.pp-product-card__image {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--pp-bg-soft);
	border-radius: 20px;
	margin-bottom: var(--pp-space-4);
}

.pp-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity var(--pp-transition);
}

.pp-animations-on .pp-product-card:hover .pp-product-card__image img {
	opacity: 0.9;
}

.pp-product-card__body {
	display: flex;
	flex-direction: column;
	gap: var(--pp-space-2);
	flex: 1;
}

.pp-product-card__rating {
	display: flex;
	align-items: center;
	gap: 4px;
	color: var(--pp-accent);
	font-size: var(--pp-fs-small);
}

.pp-product-card__title {
	font-family: var(--pp-font-product);
	font-size: 1.0625rem;
	color: var(--pp-heading);
}

.pp-product-card__title a {
	color: inherit;
}

.pp-product-card__title a:hover {
	color: var(--pp-primary);
}

/*
 * Product short description on shop cards.
 *
 * Clamped to two lines so uneven copy can't change card height — the
 * price already uses margin-top:auto to stay bottom-aligned, and the clamp
 * keeps the text block itself from pushing rows out of rhythm. The
 * word-count trim in content-product.php handles browsers without
 * -webkit-line-clamp support, so nothing is ever cut mid-flow.
 */
.pp-product-card__excerpt {
	font-family: var(--pp-font-body);
	font-size: var(--pp-fs-small);
	line-height: 1.55;
	color: var(--pp-text, #555555);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/*
 * Product-card price in the serif display face, matching the card title.
 *
 * Set here rather than only in the plugin's product-grid.css because the
 * shop archive, related products and up-sells all render this card from
 * the theme's own content-product.php and never load that file. The
 * element carries both .pp-product-card__price and .pp-price, and
 * typography.css sets font-family on .pp-price — so the inner elements
 * are listed explicitly to beat that rule rather than relying on
 * inheritance, which never reaches them.
 */
.pp-product-card__price,
.pp-product-card__price .woocommerce-Price-amount,
.pp-product-card__price bdi,
.pp-product-card__price ins,
.pp-product-card__price del {
	font-family: var(--pp-font-heading);
}

.pp-product-card__price {
	margin-top: auto;
}

.pp-product-card__actions {
	margin-top: var(--pp-space-3);
	display: flex;
	flex-direction: column;
	gap: var(--pp-space-2);
}

.pp-product-card__actions .pp-button {
	width: 100%;
	border-radius: 999px;
}

/*
 * WooCommerce's own add-to-cart.js (not our code) toggles ".loading"
 * on the button during the AJAX request and ".added" once it succeeds
 * — it never removes ".added" again, so this is a permanent "in cart"
 * confirmation state for this card until the page reloads, not a timed
 * animation. It also injects a sibling <a class="added_to_cart
 * wc-forward"> ("View cart") right after the button; both were
 * previously unstyled default WooCommerce markup, which is why they
 * looked like plain browser text against the card's premium styling.
 */
.pp-product-card__actions .pp-button.loading {
	opacity: 0.7;
	pointer-events: none;
}

/* Hides the original "Add to Cart" text node (font-size: 0) and
   substitutes a fixed label via ::after — avoids needing JS or a PHP
   string change just to reflect the already-added state WooCommerce's
   own script sets. The ::before checkmark icon below uses fixed px
   sizing so it's unaffected by this button's own font-size: 0. */
.pp-product-card__actions .pp-button.added {
	background: var(--pp-success);
	border-color: var(--pp-success);
	color: var(--pp-light-text);
	font-size: 0;
}

.pp-product-card__actions .pp-button.added:hover,
.pp-product-card__actions .pp-button.added:focus-visible {
	background: var(--pp-success);
	border-color: var(--pp-success);
}

.pp-product-card__actions .pp-button.added::after {
	content: "Added to Cart";
	font-size: var(--pp-fs-small);
}

.pp-product-card__actions .pp-button.added::before {
	content: "";
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pp-product-card__actions .added_to_cart.wc-forward {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	font-family: var(--pp-font-button);
	font-size: var(--pp-fs-small);
	font-weight: var(--pp-weight-button);
	letter-spacing: 0.02em;
	color: var(--pp-heading);
	text-decoration: none;
	border: 1px solid var(--pp-border);
	border-radius: 999px;
	padding: var(--pp-btn-padding-y, 14px) var(--pp-btn-padding-x, 32px);
	transition: border-color var(--pp-transition), color var(--pp-transition);
}

.pp-product-card__actions .added_to_cart.wc-forward:hover,
.pp-product-card__actions .added_to_cart.wc-forward:focus-visible {
	border-color: var(--pp-heading);
	color: var(--pp-primary);
}

.pp-animations-on .pp-product-card {
	transition: transform var(--pp-transition), box-shadow var(--pp-transition);
}

.pp-animations-on .pp-product-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--pp-shadow-md);
}

.pp-product-card--outofstock .pp-product-card__image img {
	opacity: 0.6;
}
