/**
 * Fama Collection storefront
 *
 * Design goals: search first, calm visual hierarchy, generous touch targets,
 * stable product cards, no autoplay or hover-only visitor actions.
 */

:root {
	--fama-accent: #ce1d76;
	--fama-accent-hover: #a9165f;
	--fama-ink: #211b21;
	--fama-text: #403840;
	--fama-muted: #756b74;
	--fama-line: #eadfe5;
	--fama-blush: #fff1f7;
	--fama-cream: #faf7f4;
	--fama-paper: #ffffff;
	--fama-success: #18766e;
	--fama-radius-sm: 10px;
	--fama-radius: 18px;
	--fama-radius-lg: 28px;
	--fama-shadow-sm: 0 8px 28px rgba(54, 31, 44, 0.07);
	--fama-shadow: 0 18px 50px rgba(54, 31, 44, 0.11);
	--fama-font: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Arial, sans-serif;
}

html {
	scroll-padding-top: 24px;
}

body.fama-storefront,
.fama-storefront button,
.fama-storefront input,
.fama-storefront select,
.fama-storefront textarea {
	font-family: var(--fama-font);
}

body.fama-storefront {
	color: var(--fama-text);
	background: var(--fama-paper);
	font-size: 15px;
	line-height: 1.65;
}

.fama-storefront h1,
.fama-storefront h2,
.fama-storefront h3,
.fama-storefront h4,
.fama-storefront h5,
.fama-storefront h6 {
	color: var(--fama-ink);
	font-family: var(--fama-font);
	font-weight: 750;
	letter-spacing: -0.025em;
}

.fama-storefront a {
	color: var(--fama-accent);
	text-underline-offset: 0.18em;
	transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.fama-storefront a:hover {
	color: var(--fama-accent-hover);
}

.fama-storefront :where(a, button, input, select, textarea, [tabindex]):focus-visible {
	outline: 3px solid rgba(206, 29, 118, 0.42);
	outline: 3px solid color-mix(in srgb, var(--fama-accent) 42%, white);
	outline-offset: 3px;
}

.fama-storefront ::selection {
	color: var(--fama-ink);
	background: #f6d2e4;
	background: color-mix(in srgb, var(--fama-accent) 22%, white);
}

.fama-storefront .container {
	width: min(calc(100% - 32px), 1240px);
	max-width: 1240px;
}

/* Announcement */

.fama-announcement {
	color: #fff;
	background: var(--fama-accent);
	font-size: 13px;
	font-weight: 650;
	letter-spacing: 0.01em;
}

.fama-announcement__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 38px;
	gap: 24px;
}

.fama-announcement__message {
	margin: 0;
}

.fama-announcement__links {
	display: flex;
	align-items: center;
	gap: 20px;
	white-space: nowrap;
}

.fama-announcement__links a {
	color: #fff;
	text-decoration: none;
}

.fama-announcement__links a:hover {
	color: #fff;
	text-decoration: underline;
}

/* Search-first Electro v12 header */

.fama-storefront .site-header.header-v12 {
	position: relative;
	z-index: 50;
	border-bottom: 1px solid var(--fama-line);
	background: rgba(255, 255, 255, 0.98);
}

.fama-storefront .header-v12 .stick-this,
.fama-storefront .header-v12 .stick-this.stuck {
	padding: 0;
	background: #fff;
	box-shadow: none;
}

.fama-storefront .header-v12 .masthead {
	display: flex;
	flex-wrap: wrap;
	gap: 0 24px;
	padding: 18px 0 0;
}

.fama-storefront .header-v12 .masthead .header-logo-area {
	flex: 0 0 190px;
	max-width: 190px;
	min-width: 0;
	order: 1;
}

.fama-storefront .header-v12 .header-logo-area img,
.fama-storefront .header-v12 .header-logo-area .header-site-branding img {
	display: block;
	width: auto;
	max-width: 180px;
	height: auto;
	max-height: 64px;
	object-fit: contain;
}

.fama-storefront .header-v12 .masthead > .col-auto {
	display: block !important;
	flex: 1 1 360px;
	order: 2;
	max-width: none !important;
	padding: 0;
}

.fama-storefront .header-v12 .navbar-search {
	width: 100%;
	max-width: none;
	padding: 0;
}

.fama-storefront .header-v12 .navbar-search .input-group {
	overflow: hidden;
	min-height: 50px;
	border: 1px solid var(--fama-line);
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 4px 16px rgba(47, 28, 39, 0.04);
}

.fama-storefront .header-v12 .navbar-search .input-search-field {
	flex: 1 1 auto;
}

.fama-storefront .header-v12 .navbar-search input[type="text"],
.fama-storefront .header-v12 .navbar-search input[type="search"] {
	width: 100%;
	height: 48px;
	padding: 0 20px;
	border: 0 !important;
	color: var(--fama-ink);
	background: transparent;
	font-size: 14px;
}

.fama-storefront .header-v12 .navbar-search input::placeholder {
	color: #8b8189;
	opacity: 1;
}

.fama-storefront .header-v12 .navbar-search .input-group-btn {
	display: flex;
}

.fama-storefront .header-v12 .navbar-search button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	min-width: 54px;
	height: 50px;
	padding: 0;
	border: 0;
	border-radius: 0;
	color: #fff;
	background: var(--fama-accent);
}

.fama-storefront .header-v12 .navbar-search button:hover,
.fama-storefront .header-v12 .navbar-search button:focus {
	color: #fff;
	background: var(--fama-accent-hover);
}

.fama-storefront .header-v12 .header-icons {
	flex: 0 0 auto;
	order: 3;
	gap: 10px;
	padding: 0;
}

.fama-storefront .header-v12 .header-icon {
	margin: 0;
}

.fama-storefront .header-v12 .header-icon:first-child {
	margin: 0;
}

.fama-storefront .header-v12 .header-icon > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--fama-line);
	border-radius: 50%;
	color: var(--fama-ink);
	background: #fff;
	text-decoration: none;
}

.fama-storefront .header-v12 .header-icon > a:hover {
	border-color: color-mix(in srgb, var(--fama-accent) 45%, white);
	color: var(--fama-accent);
	background: var(--fama-blush);
}

.fama-storefront .header-v12 .header-icon > a > i {
	font-size: 20px;
}

.fama-storefront .header-icon-counter,
.fama-storefront .navbar-mini-cart .cart-items-count {
	color: #fff !important;
	background: var(--fama-accent) !important;
}

.fama-storefront .header-v12 .cart-items-total-price {
	display: none;
}

.fama-storefront .header-v12 .primary-nav-menu {
	flex: 0 0 calc(100% + 32px);
	order: 4;
	width: calc(100% + 32px);
	max-width: calc(100% + 32px);
	margin: 16px -16px 0;
	padding: 0 16px;
	border-top: 1px solid var(--fama-line);
}

.fama-storefront .header-v12 .primary-nav-menu .nav-inline {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2px;
}

.fama-storefront .header-v12 .primary-nav-menu .nav-inline > .menu-item > a {
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 12px 16px;
	color: var(--fama-ink);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.fama-storefront .header-v12 .primary-nav-menu .nav-inline > .menu-item > a:hover,
.fama-storefront .header-v12 .primary-nav-menu .nav-inline > .current-menu-item > a {
	color: var(--fama-accent);
}

.fama-storefront .dropdown-menu {
	border: 1px solid var(--fama-line);
	border-top: 3px solid var(--fama-accent);
	border-radius: 0 0 var(--fama-radius-sm) var(--fama-radius-sm);
	box-shadow: var(--fama-shadow-sm);
}

/* Mobile header */

.fama-storefront .handheld-header-v2,
.fama-storefront .handheld-header-v2.light,
.fama-storefront .handheld-header-v2.stuck {
	min-height: 66px;
	padding: 9px 0;
	border-bottom: 1px solid var(--fama-line);
	background: #fff;
	box-shadow: none;
}

.fama-storefront .handheld-header-v2 .site-dark-logo {
	display: none !important;
}

.fama-storefront .fama-mobile-logo,
.fama-storefront .handheld-header-v2 .header-logo {
	flex: 1 1 auto;
	margin: 0;
}

.fama-storefront .fama-mobile-logo img,
.fama-storefront .handheld-header-v2 .header-logo img {
	display: block;
	width: auto;
	max-width: 138px;
	height: auto;
	max-height: 48px;
	object-fit: contain;
}

.fama-storefront .fama-text-logo {
	color: var(--fama-ink);
	font-size: 19px;
	font-weight: 800;
	text-decoration: none;
}

.fama-storefront .handheld-header-v2 .off-canvas-navigation-wrapper {
	flex: 0 0 52px;
	max-width: 52px;
}

.fama-storefront .handheld-header-v2 .off-canvas-navigation-wrapper button,
.fama-storefront .handheld-header-v2 .handheld-header-links > ul li > a {
	color: var(--fama-ink);
}

.fama-storefront .handheld-header-v2 .site-search .widget_product_search form {
	border: 1px solid var(--fama-line);
	border-radius: 999px;
}

.fama-storefront .handheld-navigation {
	border-right: 0;
	background: #fff;
	box-shadow: var(--fama-shadow);
}

.fama-storefront .handheld-navigation .nav > li > a {
	min-height: 46px;
	color: var(--fama-ink);
	font-weight: 650;
}

/* Smart homepage */

.fama-smart-home .woocommerce-breadcrumb,
.fama-smart-home .electro-breadcrumb {
	display: none;
}

.fama-smart-home .site-content {
	padding-top: 28px;
}

.fama-smart-home .site-content-inner {
	display: block;
	margin: 0;
}

.fama-home-content {
	width: 100%;
	max-width: 100%;
	padding: 0;
}

.fama-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
	align-items: center;
	min-height: 548px;
	overflow: hidden;
	border: 1px solid #f1dfe8;
	border-radius: var(--fama-radius-lg);
	background:
		radial-gradient(circle at 7% 12%, rgba(255, 255, 255, 0.9) 0 5%, transparent 24%),
		linear-gradient(125deg, #fff8fb 0%, #fff0f7 56%, #f8e8ef 100%);
	box-shadow: 0 24px 70px rgba(93, 46, 68, 0.08);
}

.fama-hero::after {
	position: absolute;
	inset: auto -90px -110px auto;
	width: 320px;
	height: 320px;
	border: 46px solid rgba(206, 29, 118, 0.07);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.fama-hero__content {
	position: relative;
	z-index: 2;
	padding: 64px 0 64px 64px;
}

.fama-hero__eyebrow,
.fama-section__eyebrow {
	margin: 0 0 10px;
	color: var(--fama-accent);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.15em;
	line-height: 1.4;
	text-transform: uppercase;
}

.fama-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.fama-hero__eyebrow svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.fama-hero h1 {
	max-width: 650px;
	margin: 0 0 20px;
	font-size: clamp(40px, 4.6vw, 68px);
	font-weight: 800;
	line-height: 0.99;
	letter-spacing: -0.055em;
}

.fama-hero__text {
	max-width: 590px;
	margin: 0 0 30px;
	color: #62565f;
	font-size: 17px;
	line-height: 1.75;
}

.fama-hero__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.fama-button,
.fama-storefront .button,
.fama-storefront button.button,
.fama-storefront input.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 11px 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
}

.fama-button--primary {
	color: #fff !important;
	background: var(--fama-accent);
	box-shadow: 0 10px 24px color-mix(in srgb, var(--fama-accent) 23%, transparent);
}

.fama-button--primary:hover {
	color: #fff !important;
	background: var(--fama-accent-hover);
	transform: translateY(-1px);
}

.fama-button--secondary {
	border-color: #dcc8d2;
	color: var(--fama-ink) !important;
	background: rgba(255, 255, 255, 0.7);
}

.fama-button--secondary:hover {
	border-color: var(--fama-accent);
	color: var(--fama-accent) !important;
	background: #fff;
}

.fama-button--dark {
	flex: 0 0 auto;
	color: var(--fama-ink) !important;
	background: #fff;
}

.fama-button--dark:hover {
	color: #fff !important;
	background: var(--fama-accent);
}

.fama-hero__note {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 24px 0 0;
	color: var(--fama-muted);
	font-size: 13px;
	font-weight: 650;
}

.fama-hero__note span {
	display: inline-grid;
	place-items: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	color: #fff;
	background: var(--fama-success);
	font-size: 11px;
}

.fama-hero__visual {
	position: relative;
	z-index: 1;
	align-self: stretch;
	min-height: 500px;
}

.fama-hero__image-wrap {
	position: absolute;
	inset: 28px 18px 24px 10px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.fama-hero__image {
	display: block;
	width: 100%;
	max-width: 620px;
	height: 100%;
	max-height: 500px;
	object-fit: contain;
	object-position: center bottom;
	filter: drop-shadow(0 24px 30px rgba(69, 34, 50, 0.12));
}

.fama-hero__badge {
	position: absolute;
	z-index: 3;
	right: 32px;
	bottom: 36px;
	display: grid;
	place-items: center;
	width: 112px;
	height: 112px;
	border: 5px solid rgba(255, 255, 255, 0.75);
	border-radius: 50%;
	color: #fff;
	background: var(--fama-ink);
	box-shadow: var(--fama-shadow-sm);
	font-size: 12px;
	line-height: 1.15;
	text-align: center;
	transform: rotate(5deg);
}

.fama-hero__badge strong {
	display: block;
	font-size: 14px;
}

.fama-trust {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 24px 0 0;
	overflow: hidden;
	border: 1px solid var(--fama-line);
	border-radius: var(--fama-radius);
	background: #fff;
	box-shadow: var(--fama-shadow-sm);
}

.fama-trust__item {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	padding: 20px;
}

.fama-trust__item + .fama-trust__item {
	border-left: 1px solid var(--fama-line);
}

.fama-trust__icon {
	display: inline-grid;
	flex: 0 0 42px;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	color: var(--fama-accent);
	background: var(--fama-blush);
}

.fama-trust__icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.fama-trust__item strong,
.fama-trust__item small {
	display: block;
}

.fama-trust__item strong {
	color: var(--fama-ink);
	font-size: 13px;
	line-height: 1.3;
}

.fama-trust__item small {
	margin-top: 3px;
	color: var(--fama-muted);
	font-size: 11px;
	line-height: 1.35;
}

.fama-section {
	margin-top: 76px;
}

.fama-section__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 26px;
}

.fama-section__header h2,
.fama-support-callout h2 {
	margin: 0;
	font-size: clamp(27px, 3vw, 39px);
	line-height: 1.08;
}

.fama-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 0;
	color: var(--fama-ink) !important;
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
	white-space: nowrap;
}

.fama-text-link:hover {
	color: var(--fama-accent) !important;
}

.fama-text-link span {
	font-size: 18px;
	transition: transform 160ms ease;
}

.fama-text-link:hover span {
	transform: translateX(3px);
}

.fama-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.fama-category-card {
	display: grid;
	grid-template-columns: 70px minmax(0, 1fr);
	grid-template-rows: auto auto;
	align-items: center;
	min-width: 0;
	padding: 14px;
	border: 1px solid var(--fama-line);
	border-radius: var(--fama-radius);
	color: var(--fama-ink) !important;
	background: #fff;
	box-shadow: 0 6px 22px rgba(54, 31, 44, 0.04);
	text-decoration: none;
}

.fama-category-card:hover {
	border-color: color-mix(in srgb, var(--fama-accent) 40%, white);
	box-shadow: var(--fama-shadow-sm);
	transform: translateY(-2px);
}

.fama-category-card__visual {
	grid-row: 1 / 3;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	overflow: hidden;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--fama-blush), #f6e4ec);
}

.fama-category-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fama-category-card__initial {
	color: var(--fama-accent);
	font-size: 24px;
	font-weight: 800;
}

.fama-category-card__name {
	overflow: hidden;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.3;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fama-category-card__count {
	margin-top: 4px;
	color: var(--fama-muted);
	font-size: 11px;
}

/* Stable product cards */

.fama-storefront ul.products > li.product::after,
.fama-storefront .owl-item > .product::after {
	display: none !important;
}

.fama-storefront ul.products > li.product,
.fama-storefront .owl-item > .product {
	border: 0;
	background: transparent;
}

.fama-storefront ul.products > li.product .product-outer,
.fama-storefront ul.products > li.product .product-inner,
.fama-storefront .owl-item > .product .product-outer,
.fama-storefront .owl-item > .product .product-inner {
	height: 100%;
}

.fama-storefront ul.products > li.product .product-inner,
.fama-storefront .owl-item > .product .product-inner,
.fama-storefront ul.products > li.product:hover .product-inner,
.fama-storefront .owl-item > .product:hover .product-inner {
	position: relative !important;
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100%;
	padding: 16px;
	overflow: hidden;
	border: 1px solid var(--fama-line);
	border-radius: var(--fama-radius);
	background: #fff;
	box-shadow: 0 5px 18px rgba(54, 31, 44, 0.035);
}

.fama-storefront ul.products > li.product:hover .product-inner,
.fama-storefront .owl-item > .product:hover .product-inner {
	border-color: color-mix(in srgb, var(--fama-accent) 28%, white);
	box-shadow: var(--fama-shadow-sm);
	transform: translateY(-2px);
}

.fama-storefront ul.products > li.product .hover-area,
.fama-storefront .owl-item > .product .hover-area,
.fama-storefront .add-to-compare-link {
	display: none !important;
}

.fama-storefront ul.products > li.product .product-thumbnail,
.fama-storefront .owl-item > .product .product-thumbnail {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	margin: 0 0 14px;
	overflow: hidden;
	border-radius: 13px;
	background: #fbf9fa;
}

.fama-storefront ul.products > li.product .product-thumbnail img,
.fama-storefront ul.products > li.product .wp-post-image,
.fama-storefront .owl-item > .product .product-thumbnail img,
.fama-storefront .owl-item > .product .wp-post-image {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	margin: 0;
	object-fit: contain;
	transition: transform 220ms ease;
}

.fama-storefront ul.products > li.product:hover .product-thumbnail img,
.fama-storefront .owl-item > .product:hover .product-thumbnail img {
	transform: scale(1.025);
}

.fama-storefront .woocommerce-loop-product__title {
	display: -webkit-box;
	height: 2.8em;
	margin: 0;
	overflow: hidden;
	color: var(--fama-ink);
	font-size: 14px;
	font-weight: 720;
	line-height: 1.4;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.fama-storefront .loop-product-categories {
	height: auto;
	min-height: 1.4em;
	margin-bottom: 7px;
	color: var(--fama-muted);
	font-size: 11px;
	line-height: 1.4;
}

.fama-storefront .loop-product-categories a {
	color: var(--fama-muted);
}

.fama-storefront .product-loop-footer {
	margin-top: auto;
}

.fama-storefront .products > .product .price-add-to-cart,
.fama-storefront .owl-item > .product .price-add-to-cart {
	align-items: center;
	flex-wrap: wrap;
	height: auto;
	min-height: 46px;
	margin: 12px 0 0;
	gap: 8px;
}

.fama-storefront .products > .product .price,
.fama-storefront .owl-item > .product .price {
	margin: 0 auto 0 0;
	color: var(--fama-accent);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.35;
}

.fama-storefront .products > .product .price del,
.fama-storefront .owl-item > .product .price del {
	color: var(--fama-muted);
	font-size: 12px;
	font-weight: 500;
	opacity: 0.82;
}

.fama-storefront .products.show-btn > li.product .button,
.fama-storefront .products.show-btn > li.product .added_to_cart,
.fama-storefront .fama-products__loop .products > li.product .button {
	width: auto;
	min-height: 39px;
	margin: 0;
	padding: 9px 14px;
	border-radius: 999px;
	color: #fff;
	background: var(--fama-accent);
	font-size: 11px;
	font-weight: 750;
	text-indent: 0;
	white-space: nowrap;
}

.fama-storefront .products.show-btn > li.product .button::before,
.fama-storefront .products.show-btn > li.product .added_to_cart::before,
.fama-storefront .fama-products__loop .products > li.product .button::before {
	display: none;
	content: none;
}

.fama-storefront .products.show-btn > li.product .button:hover,
.fama-storefront .products.show-btn > li.product .added_to_cart:hover,
.fama-storefront .fama-products__loop .products > li.product .button:hover {
	color: #fff;
	background: var(--fama-accent-hover);
}

.fama-storefront .products > .product .onsale,
.fama-storefront .owl-item > .product .onsale {
	top: 10px;
	right: auto;
	bottom: auto;
	left: 10px;
	min-width: 0;
	padding: 4px 9px;
	border-radius: 999px;
	color: #fff;
	background: var(--fama-accent);
	font-size: 10px;
	font-weight: 800;
	line-height: 1.4;
}

.fama-storefront .star-rating {
	color: #b66a00;
}

.fama-products__loop ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.fama-products__loop ul.products > li.product {
	flex: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Support and brands */

.fama-support-callout {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	margin-top: 76px;
	overflow: hidden;
	padding: 34px 38px;
	border-radius: var(--fama-radius-lg);
	color: #e9e2e7;
	background:
		radial-gradient(circle at 92% -30%, rgba(206, 29, 118, 0.48), transparent 43%),
		var(--fama-ink);
}

.fama-support-callout::after {
	position: absolute;
	top: -80px;
	right: 13%;
	width: 220px;
	height: 220px;
	border: 28px solid rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	content: "";
}

.fama-support-callout__icon {
	position: relative;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	color: #fff;
	background: var(--fama-accent);
}

.fama-support-callout__icon svg {
	width: 30px;
	height: 30px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.6;
}

.fama-support-callout__content,
.fama-support-callout .fama-button {
	position: relative;
	z-index: 2;
}

.fama-support-callout h2 {
	max-width: 650px;
	color: #fff;
	font-size: clamp(24px, 3vw, 34px);
}

.fama-support-callout p:last-child {
	margin: 10px 0 0;
	color: #cfc3ca;
}

.fama-brand-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.fama-brand-list a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 9px 17px;
	border: 1px solid var(--fama-line);
	border-radius: 999px;
	color: var(--fama-ink);
	background: #fff;
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
}

.fama-brand-list a:hover {
	border-color: var(--fama-accent);
	color: var(--fama-accent);
	background: var(--fama-blush);
}

/* Shop, product and account surfaces */

.fama-storefront .page-header,
.fama-storefront .woocommerce-products-header {
	margin-bottom: 24px;
}

.fama-storefront .page-title,
.fama-storefront .woocommerce-products-header__title {
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 800;
}

.fama-storefront .shop-control-bar {
	align-items: center;
	min-height: 62px;
	margin-bottom: 24px;
	padding: 10px 14px;
	border: 1px solid var(--fama-line);
	border-radius: var(--fama-radius-sm);
	background: #fff;
	box-shadow: 0 4px 16px rgba(54, 31, 44, 0.035);
}

.fama-storefront .shop-view-switcher .nav-link.active {
	color: #fff;
	background: var(--fama-accent);
}

.fama-storefront #sidebar .widget,
.fama-storefront .shop-sidebar .widget {
	margin-bottom: 18px;
	padding: 18px;
	border: 1px solid var(--fama-line);
	border-radius: var(--fama-radius);
	background: #fff;
}

.fama-storefront .widget-title {
	color: var(--fama-ink);
	font-weight: 750;
}

.fama-storefront .widget-title::after {
	border-color: var(--fama-accent);
}

.fama-storefront .woocommerce-pagination ul.page-numbers,
.fama-storefront .pagination ul.page-numbers {
	display: flex;
	justify-content: center;
	gap: 7px;
	border: 0;
}

.fama-storefront .woocommerce-pagination ul.page-numbers > li,
.fama-storefront .pagination ul.page-numbers > li {
	border: 0;
}

.fama-storefront .woocommerce-pagination .page-numbers a,
.fama-storefront .woocommerce-pagination .page-numbers span {
	display: grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	border: 1px solid var(--fama-line);
	border-radius: 50%;
}

.fama-storefront .single-product-wrapper,
.fama-storefront .woocommerce-product-gallery {
	border-radius: var(--fama-radius);
}

.fama-storefront .single-product .product_title {
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 800;
	line-height: 1.12;
}

.fama-storefront .single-product .summary > .price {
	color: var(--fama-accent);
	font-size: 25px;
	font-weight: 800;
}

.fama-storefront .single-product .single_add_to_cart_button {
	min-height: 48px;
	border: 0;
	color: #fff;
	background: var(--fama-accent);
}

.fama-storefront .single-product .single_add_to_cart_button:hover {
	color: #fff;
	background: var(--fama-accent-hover);
}

.fama-storefront .quantity .qty {
	min-height: 46px;
	border-color: var(--fama-line);
	border-radius: var(--fama-radius-sm);
}

.fama-storefront .wc-tabs,
.fama-storefront .ec-tabs {
	border-bottom-color: var(--fama-line);
}

.fama-storefront .wc-tabs > li.active a::before,
.fama-storefront .ec-tabs > li.active a::before {
	background: var(--fama-accent);
}

.fama-storefront table.shop_table,
.fama-storefront .woocommerce-checkout-review-order,
.fama-storefront .woocommerce-form-login,
.fama-storefront .woocommerce-form-register,
.fama-storefront .woocommerce-MyAccount-content {
	overflow: hidden;
	border: 1px solid var(--fama-line);
	border-radius: var(--fama-radius);
	background: #fff;
}

.fama-storefront .woocommerce-form-login,
.fama-storefront .woocommerce-form-register,
.fama-storefront .woocommerce-MyAccount-content {
	padding: 24px;
}

.fama-storefront input.input-text,
.fama-storefront textarea.input-text,
.fama-storefront select {
	min-height: 46px;
	border: 1px solid var(--fama-line);
	border-radius: var(--fama-radius-sm);
	background: #fff;
}

.fama-storefront textarea.input-text {
	min-height: 120px;
}

.fama-storefront .woocommerce-message,
.fama-storefront .woocommerce-info,
.fama-storefront .woocommerce-error,
.fama-storefront .woocommerce-noreviews {
	border: 1px solid var(--fama-line);
	border-left: 4px solid var(--fama-accent);
	border-radius: var(--fama-radius-sm);
	color: var(--fama-text);
	background: #fff;
}

/* Footer */

.fama-storefront .site-footer.footer-v2 {
	margin-top: 84px;
	color: #cfc4cb;
	background: var(--fama-ink);
}

.fama-storefront .footer-v2 .desktop-footer {
	padding-top: 52px;
}

.fama-storefront .footer-v2 .footer-bottom-widgets {
	padding: 0 0 42px;
}

.fama-storefront .footer-v2 .footer-contact {
	padding-right: 40px;
}

.fama-storefront .footer-v2 .footer-logo img {
	width: auto;
	max-width: 190px;
	height: auto;
	max-height: 72px;
	object-fit: contain;
}

.fama-storefront .footer-v2 .call-us-text,
.fama-storefront .footer-v2 .footer-address-title {
	color: #b9abb4;
}

.fama-storefront .footer-v2 .call-us-number {
	color: #fff;
	font-weight: 750;
}

.fama-storefront .footer-v2 .widget-title {
	color: #fff;
	font-size: 14px;
	letter-spacing: 0;
}

.fama-storefront .footer-v2 a {
	color: #d7ccd2;
}

.fama-storefront .footer-v2 a:hover {
	color: #fff;
}

.fama-storefront .footer-v2 .copyright-bar {
	padding: 18px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.11);
	color: #a99ca4;
	background: transparent;
}

.fama-storefront .handheld-footer.light {
	border-top: 1px solid var(--fama-line);
	color: var(--fama-text);
	background: #fff;
}

.fama-storefront .handheld-footer.light a,
.fama-storefront .handheld-footer.light .call-us-number {
	color: var(--fama-ink);
}

.fama-storefront .handheld-footer.light .widget-title {
	color: var(--fama-ink);
}

/* WhatsApp */

.fama-whatsapp {
	position: fixed;
	z-index: 999;
	right: 22px;
	bottom: 22px;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 50px;
	padding: 8px 16px 8px 9px;
	border: 3px solid #fff;
	border-radius: 999px;
	color: #fff !important;
	background: #168c63;
	box-shadow: 0 12px 32px rgba(24, 89, 66, 0.26);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.fama-whatsapp:hover {
	color: #fff !important;
	background: #117551;
	transform: translateY(-2px);
}

.fama-whatsapp svg {
	width: 28px;
	height: 28px;
	fill: currentColor;
}

/* Responsive */

@media (max-width: 1199.98px) {
	.fama-announcement__inner {
		min-height: 36px;
	}

	.fama-smart-home .site-content {
		padding-top: 20px;
	}

	.fama-hero {
		grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
		min-height: 500px;
	}

	.fama-hero__content {
		padding: 48px 0 48px 44px;
	}

	.fama-hero__visual {
		min-height: 460px;
	}

	.fama-hero__badge {
		right: 18px;
		bottom: 24px;
		width: 96px;
		height: 96px;
	}

	.fama-trust {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fama-trust__item:nth-child(3) {
		border-left: 0;
		border-top: 1px solid var(--fama-line);
	}

	.fama-trust__item:nth-child(4) {
		border-top: 1px solid var(--fama-line);
	}
}

@media (max-width: 991.98px) {
	.fama-hero {
		grid-template-columns: 1fr;
	}

	.fama-hero__content {
		padding: 52px 48px 20px;
	}

	.fama-hero__visual {
		min-height: 390px;
	}

	.fama-hero__image-wrap {
		inset: 0 28px 0;
	}

	.fama-hero__image {
		max-height: 390px;
	}

	.fama-category-grid,
	.fama-products__loop ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fama-support-callout {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.fama-support-callout .fama-button {
		grid-column: 2;
		justify-self: start;
	}
}

@media (max-width: 767.98px) {
	.fama-storefront .container {
		width: min(calc(100% - 24px), 1240px);
	}

	.fama-announcement__inner {
		justify-content: center;
		text-align: center;
	}

	.fama-announcement__links {
		display: none;
	}

	.fama-smart-home .site-content {
		padding-top: 12px;
	}

	.fama-hero {
		border-radius: 20px;
	}

	.fama-hero__content {
		padding: 38px 26px 14px;
	}

	.fama-hero h1 {
		font-size: clamp(38px, 12vw, 54px);
	}

	.fama-hero__text {
		font-size: 15px;
	}

	.fama-hero__visual {
		min-height: 310px;
	}

	.fama-hero__image-wrap {
		inset: 0 10px;
	}

	.fama-hero__image {
		max-height: 310px;
	}

	.fama-hero__badge {
		right: 12px;
		bottom: 18px;
		width: 82px;
		height: 82px;
		border-width: 3px;
		font-size: 10px;
	}

	.fama-hero__badge strong {
		font-size: 12px;
	}

	.fama-trust__item {
		padding: 16px;
	}

	.fama-section,
	.fama-support-callout {
		margin-top: 56px;
	}

	.fama-section__header {
		align-items: flex-start;
		margin-bottom: 20px;
	}

	.fama-section__header h2 {
		font-size: 28px;
	}

	.fama-support-callout {
		padding: 28px;
		border-radius: 20px;
	}

	.fama-storefront .site-footer.footer-v2 {
		margin-top: 62px;
	}

	.fama-whatsapp {
		right: 12px;
		bottom: 76px;
		min-width: 50px;
		padding: 8px;
	}

	.fama-whatsapp span {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		white-space: nowrap;
	}
}

@media (max-width: 575.98px) {
	.fama-hero__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.fama-hero__actions .fama-button {
		width: 100%;
	}

	.fama-trust {
		grid-template-columns: 1fr;
	}

	.fama-trust__item + .fama-trust__item,
	.fama-trust__item:nth-child(3),
	.fama-trust__item:nth-child(4) {
		border-top: 1px solid var(--fama-line);
		border-left: 0;
	}

	.fama-category-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.fama-products__loop ul.products {
		gap: 10px;
	}

	.fama-storefront ul.products > li.product .product-inner,
	.fama-storefront .owl-item > .product .product-inner {
		padding: 10px;
		border-radius: 13px;
	}

	.fama-storefront .woocommerce-loop-product__title {
		font-size: 12px;
	}

	.fama-storefront .products > .product .price,
	.fama-storefront .owl-item > .product .price {
		flex: 0 0 100%;
		font-size: 14px;
	}

	.fama-storefront .products.show-btn > li.product .button,
	.fama-storefront .products.show-btn > li.product .added_to_cart,
	.fama-storefront .fama-products__loop .products > li.product .button {
		width: 100%;
		min-height: 38px;
		padding: 8px;
		font-size: 10px;
	}

	.fama-support-callout {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.fama-support-callout__icon {
		width: 54px;
		height: 54px;
	}

	.fama-support-callout .fama-button {
		grid-column: auto;
		width: 100%;
	}

	.fama-section__header {
		flex-direction: column;
		gap: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fama-storefront *,
	.fama-storefront *::before,
	.fama-storefront *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media print {
	.fama-announcement,
	.fama-whatsapp,
	.fama-storefront .site-header,
	.fama-storefront .site-footer,
	.fama-hero__actions {
		display: none !important;
	}

	.fama-storefront {
		color: #000;
		background: #fff;
	}
}
