/*
 * Single Product page — Horizonte do Açaí
 *
 * Scoped to `body.single-product` + the `.hda-*` namespace so nothing here can
 * leak into the cart, checkout or account pages (those are styled by
 * woocommerce-style.css). Design tokens come from the Elementor Global Colors
 * kit, so editing a swatch in Site Settings still propagates here.
 */

body.single-product {
	--hda-purple-deep: var(--e-global-color-6597c5e, #261559);
	--hda-purple: var(--e-global-color-e02c158, #471ea7);
	--hda-purple-soft: #f1ecfb;
	--hda-green: var(--e-global-color-ac09bde, #1db954);
	/* Gold reserved for price/highlights. Darkened from a bright gold so the
	   price still clears WCAG contrast against white (4.2:1 — the price is
	   large text, where the AA threshold is 3:1). */
	--hda-gold: #8a7c14;
	--hda-page-bg: #f7f7f8;
	--hda-card-bg: #ffffff;
	--hda-ink: #2c2640;
	--hda-ink-soft: #6b6580;
	--hda-ink-faint: #9c98a6;
	--hda-line: rgba(60, 40, 100, 0.08);
	--hda-shadow: 0 8px 30px rgba(30, 20, 60, 0.06);
	--hda-radius-card: 16px;
	--hda-radius-input: 8px;
	--hda-radius-pill: 999px;
	--hda-font-head: var(--e-global-typography-primary-font-family, "Roboto"), sans-serif;
	--hda-font-body: var(--e-global-typography-text-font-family, "Roboto"), sans-serif;
	background: var(--hda-page-bg);
}

/* ---------------------------------------------------------------
   Row + card shell
   ---------------------------------------------------------------
   Elementor's column-gap rules target
   `.elementor-column-gap-* > .elementor-container > .elementor-column >
   .elementor-element-populated` (4 classes). The card padding below has to
   out-specify that, hence the long selector — not decoration.

   Columns are switched to flex-grow so the gap between cards is real spacing
   between elements rather than padding inside the card background. */

body.single-product .hda-row > .elementor-container {
	gap: 24px;
	align-items: stretch;
}

body.single-product .hda-row > .elementor-container > .elementor-column {
	max-width: none;
	flex-basis: 0;
}

body.single-product .hda-row > .elementor-container > .hda-col-a { flex-grow: 48; }
body.single-product .hda-row > .elementor-container > .hda-col-b { flex-grow: 52; }
body.single-product .hda-row--info > .elementor-container > .hda-col-a { flex-grow: 55; }
body.single-product .hda-row--info > .elementor-container > .hda-col-b { flex-grow: 45; }

body.single-product .elementor-column.hda-card > .elementor-widget-wrap.elementor-element-populated {
	background: var(--hda-card-bg);
	border: 1px solid var(--hda-line);
	border-radius: var(--hda-radius-card);
	box-shadow: var(--hda-shadow);
	padding: 32px;
}

/* ---------------------------------------------------------------
   Breadcrumb
   --------------------------------------------------------------- */

body.single-product .woocommerce-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	font-family: var(--hda-font-body);
	font-size: 13px;
	color: var(--hda-ink-faint);
}

/*
 * Icons below are data-URI SVG masks rather than an icon font. Elementor only
 * enqueues Font Awesome when one of its own icon widgets is on the page, so
 * font-based pseudo-elements rendered as empty boxes here. A mask keeps the
 * colour driven by `background-color`, so tokens still apply.
 */
body.single-product .woocommerce-breadcrumb::before {
	content: "";
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	background-color: var(--hda-ink-faint);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 9.6 12 3l8.5 6.6v9.6a1.8 1.8 0 0 1-1.8 1.8H5.3a1.8 1.8 0 0 1-1.8-1.8Z'/%3E%3Cpath d='M9.3 21.6v-8.4h5.4v8.4'/%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='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 9.6 12 3l8.5 6.6v9.6a1.8 1.8 0 0 1-1.8 1.8H5.3a1.8 1.8 0 0 1-1.8-1.8Z'/%3E%3Cpath d='M9.3 21.6v-8.4h5.4v8.4'/%3E%3C/svg%3E") center / contain no-repeat;
}

body.single-product .woocommerce-breadcrumb a {
	color: var(--hda-ink-soft);
	text-decoration: none;
}

body.single-product .woocommerce-breadcrumb a:hover {
	color: var(--hda-purple);
	text-decoration: underline;
}

/* ---------------------------------------------------------------
   Gallery card
   --------------------------------------------------------------- */

.hda-gallery-card > .elementor-widget-wrap {
	position: relative;
}

/* Thumbs sit after the main image in the DOM; row-reverse pulls them to the
   left column as in the reference, without reordering markup. When a product
   has no gallery images WooCommerce prints no thumb list at all and the main
   image simply fills the card. */
.hda-gallery-card .woocommerce-product-gallery {
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	gap: 18px;
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
}

.hda-gallery-card .woocommerce-product-gallery__wrapper {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
}

.hda-gallery-card .woocommerce-product-gallery__image img {
	border-radius: 12px;
	width: 100%;
	height: auto;
}

.hda-gallery-card .flex-control-thumbs {
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 0 0 82px;
	width: 82px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hda-gallery-card .flex-control-thumbs li {
	width: 100%;
	margin: 0;
	list-style: none;
}

.hda-gallery-card .flex-control-thumbs img {
	width: 100%;
	border: 2px solid transparent;
	border-radius: 10px;
	background: var(--hda-page-bg);
	opacity: 1;
	cursor: pointer;
	transition: border-color 0.18s ease;
}

.hda-gallery-card .flex-control-thumbs img.flex-active,
.hda-gallery-card .flex-control-thumbs img:hover {
	border-color: var(--hda-purple);
	background: #fff;
}

/* Lightbox trigger restyled as the bottom-right expand control */
.hda-gallery-card .woocommerce-product-gallery__trigger {
	position: absolute;
	right: 32px;
	bottom: 32px;
	top: auto;
	left: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #fff;
	border: 1px solid var(--hda-line);
	box-shadow: var(--hda-shadow);
	color: var(--hda-purple-deep);
	font-size: 0;
	z-index: 3;
}

.hda-gallery-card .woocommerce-product-gallery__trigger::before {
	content: "";
	width: 17px;
	height: 17px;
	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='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8.5 3.5H5.5a2 2 0 0 0-2 2v3M20.5 8.5v-3a2 2 0 0 0-2-2h-3M15.5 20.5h3a2 2 0 0 0 2-2v-3M3.5 15.5v3a2 2 0 0 0 2 2h3'/%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='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8.5 3.5H5.5a2 2 0 0 0-2 2v3M20.5 8.5v-3a2 2 0 0 0-2-2h-3M15.5 20.5h3a2 2 0 0 0 2-2v-3M3.5 15.5v3a2 2 0 0 0 2 2h3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hda-gallery-card .woocommerce-product-gallery__trigger img {
	display: none;
}

/* Weight/volume badge floating over the gallery */
.hda-spec-badge {
	position: absolute;
	top: 32px;
	right: 32px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	min-width: 58px;
	padding: 10px 14px;
	background: #fff;
	border: 1px solid var(--hda-line);
	border-radius: 12px;
	box-shadow: var(--hda-shadow);
	font-family: var(--hda-font-head);
	line-height: 1.15;
}

.hda-spec-badge__primary {
	font-size: 17px;
	font-weight: 700;
	color: var(--hda-purple-deep);
}

.hda-spec-badge__secondary {
	font-size: 12px;
	font-weight: 500;
	color: var(--hda-ink-faint);
}

/* ---------------------------------------------------------------
   Summary card
   --------------------------------------------------------------- */

.hda-summary-card .elementor-widget:not(:last-child) {
	margin-block-end: 0;
}

.hda-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 15px;
	border-radius: var(--hda-radius-pill);
	background: var(--hda-purple-soft);
	color: var(--hda-purple);
	font-family: var(--hda-font-body);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}

body.single-product .hda-summary-card .product_title {
	margin: 18px 0 0;
	font-family: var(--hda-font-head);
	font-size: clamp(26px, 2.6vw, 36px);
	font-weight: 700;
	line-height: 1.15;
	color: var(--hda-purple-deep);
}

body.single-product .hda-summary-card .price,
body.single-product .hda-summary-card p.price {
	display: block;
	margin: 14px 0 0;
	font-family: var(--hda-font-head);
	font-size: clamp(26px, 2.4vw, 32px);
	font-weight: 700;
	line-height: 1.2;
	color: var(--hda-gold);
}

/* Sale price: struck-through original stays muted and smaller */
body.single-product .hda-summary-card .price del {
	margin-right: 10px;
	font-size: 0.62em;
	font-weight: 500;
	color: var(--hda-ink-faint);
	opacity: 1;
}

body.single-product .hda-summary-card .price ins {
	text-decoration: none;
	background: transparent;
	color: var(--hda-gold);
}

body.single-product .hda-summary-card .woocommerce-product-details__short-description {
	margin: 20px 0 0;
	max-width: 54ch;
	font-family: var(--hda-font-body);
	font-size: 15.5px;
	line-height: 1.65;
	color: var(--hda-ink-soft);
}

body.single-product .hda-summary-card .woocommerce-product-details__short-description p:last-child {
	margin-bottom: 0;
}

/* Stock notice */
body.single-product .hda-summary-card .stock {
	margin: 14px 0 0;
	font-size: 14px;
	font-weight: 600;
}

body.single-product .hda-summary-card .stock.in-stock {
	color: #14793a;
}

body.single-product .hda-summary-card .stock.out-of-stock {
	color: #b3261e;
}

/* ---------------------------------------------------------------
   Benefits strip
   --------------------------------------------------------------- */

.hda-benefits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin: 26px 0 0;
	padding: 22px 0 0;
	border-top: 1px solid var(--hda-line);
}

.hda-benefit {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 0 18px;
	border-left: 1px solid var(--hda-line);
}

.hda-benefit:first-child {
	padding-left: 0;
	border-left: none;
}

.hda-benefit:last-child {
	padding-right: 0;
}

.hda-benefit__icon {
	flex-shrink: 0;
	margin-top: 1px;
	font-size: 17px;
	color: var(--hda-purple);
	line-height: 1;
}

.hda-benefit__text {
	font-family: var(--hda-font-body);
	font-size: 12.5px;
	line-height: 1.4;
	color: var(--hda-ink-soft);
}

/* ---------------------------------------------------------------
   Purchase area (quantity + add to cart)
   --------------------------------------------------------------- */

body.single-product .hda-summary-card form.cart {
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 16px;
	margin: 26px 0 0;
	padding: 26px 0 0;
	border-top: 1px solid var(--hda-line);
}

body.single-product .hda-summary-card form.cart::before,
body.single-product .hda-summary-card form.cart::after {
	content: none;
}

.hda-qty-group {
	display: flex;
	flex-direction: column;
	flex: 0 0 auto;
}

.hda-qty-label {
	display: block;
	margin-bottom: 8px;
	font-family: var(--hda-font-body);
	font-size: 13.5px;
	font-weight: 600;
	color: var(--hda-ink);
}

body.single-product .hda-summary-card .quantity {
	display: inline-flex;
	align-items: stretch;
	margin: 0;
	border: 1px solid var(--hda-line);
	border-radius: var(--hda-radius-input);
	background: #fff;
	overflow: hidden;
	height: 58px;
}

body.single-product .hda-summary-card .quantity .qty {
	width: 62px;
	height: 100%;
	border: none;
	border-radius: 0;
	background: transparent;
	text-align: center;
	font-family: var(--hda-font-head);
	font-size: 16px;
	font-weight: 600;
	color: var(--hda-ink);
	/* Hide the browser's native spinners — the ± buttons drive the field */
	-moz-appearance: textfield;
	appearance: textfield;
}

body.single-product .hda-summary-card .quantity .qty::-webkit-outer-spin-button,
body.single-product .hda-summary-card .quantity .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

body.single-product .hda-summary-card .quantity .qty:focus-visible {
	outline: 2px solid var(--hda-purple);
	outline-offset: -2px;
}

.horizonte-qty-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	border: none;
	background: transparent;
	color: var(--hda-purple-deep);
	font-size: 19px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.horizonte-qty-btn:hover {
	background: var(--hda-purple-soft);
	color: var(--hda-purple);
}

.horizonte-qty-btn:focus-visible {
	outline: 2px solid var(--hda-purple);
	outline-offset: -2px;
}

body.single-product .hda-summary-card .single_add_to_cart_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	flex: 1 1 260px;
	min-height: 58px;
	padding: 0 32px;
	border: none;
	border-radius: var(--hda-radius-input);
	background: linear-gradient(180deg, #5326bb 0%, var(--hda-purple) 100%);
	color: #fff;
	font-family: var(--hda-font-body);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.2px;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

body.single-product .hda-summary-card .single_add_to_cart_button::before {
	content: "";
	flex-shrink: 0;
	width: 19px;
	height: 19px;
	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='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='1.5'/%3E%3Ccircle cx='18' cy='20' r='1.5'/%3E%3Cpath d='M2.5 3h2.7l2.4 11.2a1.8 1.8 0 0 0 1.8 1.4h8.4a1.8 1.8 0 0 0 1.8-1.4l1.6-7.3H6'/%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='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='1.5'/%3E%3Ccircle cx='18' cy='20' r='1.5'/%3E%3Cpath d='M2.5 3h2.7l2.4 11.2a1.8 1.8 0 0 0 1.8 1.4h8.4a1.8 1.8 0 0 0 1.8-1.4l1.6-7.3H6'/%3E%3C/svg%3E") center / contain no-repeat;
}

body.single-product .hda-summary-card .single_add_to_cart_button:hover {
	background: linear-gradient(180deg, #47209f 0%, #3b1a86 100%);
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(71, 30, 167, 0.22);
}

body.single-product .hda-summary-card .single_add_to_cart_button:focus-visible {
	outline: 3px solid rgba(71, 30, 167, 0.4);
	outline-offset: 2px;
}

body.single-product .hda-summary-card .single_add_to_cart_button:disabled,
body.single-product .hda-summary-card .single_add_to_cart_button.disabled {
	background: #b8b2c7;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

/* Variable products: keep native variation selects, just restyle them */
body.single-product .hda-summary-card table.variations {
	width: 100%;
	margin: 0 0 18px;
	border: none;
}

body.single-product .hda-summary-card table.variations th,
body.single-product .hda-summary-card table.variations td {
	padding: 6px 0;
	border: none;
	background: transparent;
}

body.single-product .hda-summary-card table.variations label {
	font-family: var(--hda-font-body);
	font-size: 13.5px;
	font-weight: 600;
	color: var(--hda-ink);
}

body.single-product .hda-summary-card table.variations select {
	width: 100%;
	min-height: 48px;
	padding: 0 14px;
	border: 1px solid var(--hda-line);
	border-radius: var(--hda-radius-input);
	background: #fff;
	font-family: var(--hda-font-body);
	font-size: 15px;
	color: var(--hda-ink);
}

body.single-product .hda-summary-card .woocommerce-variation-price .price {
	margin-top: 0;
}

/* ---------------------------------------------------------------
   Secure-purchase line
   --------------------------------------------------------------- */

.hda-secure {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 20px 0 0;
	font-family: var(--hda-font-body);
	font-size: 13px;
	color: var(--hda-ink-soft);
}

.hda-secure__icon {
	flex-shrink: 0;
	color: var(--hda-purple);
	line-height: 0;
}

.hda-secure__title {
	font-weight: 700;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: var(--hda-ink);
	font-size: 12px;
}

/* ---------------------------------------------------------------
   Tabs card
   --------------------------------------------------------------- */

body.single-product .hda-tabs-card .woocommerce-tabs {
	margin: 0;
	padding: 0;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
}

body.single-product .hda-tabs-card ul.tabs.wc-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	margin: 0 0 26px;
	padding: 0 0 0;
	border-bottom: 1px solid var(--hda-line);
	list-style: none;
}

body.single-product .hda-tabs-card ul.tabs.wc-tabs::before,
body.single-product .hda-tabs-card ul.tabs.wc-tabs::after,
body.single-product .hda-tabs-card ul.tabs.wc-tabs li::before,
body.single-product .hda-tabs-card ul.tabs.wc-tabs li::after {
	content: none;
	display: none;
}

body.single-product .hda-tabs-card ul.tabs.wc-tabs li {
	margin: 0;
	padding: 0 0 14px;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

body.single-product .hda-tabs-card ul.tabs.wc-tabs li a {
	padding: 0;
	font-family: var(--hda-font-body);
	font-size: 14.5px;
	font-weight: 600;
	color: var(--hda-ink-faint);
	text-decoration: none;
	transition: color 0.15s ease;
}

body.single-product .hda-tabs-card ul.tabs.wc-tabs li a:hover {
	color: var(--hda-purple);
}

body.single-product .hda-tabs-card ul.tabs.wc-tabs li.active {
	box-shadow: inset 0 -2px 0 0 var(--hda-purple);
}

body.single-product .hda-tabs-card ul.tabs.wc-tabs li.active a {
	color: var(--hda-purple);
}

body.single-product .hda-tabs-card .woocommerce-Tabs-panel {
	font-family: var(--hda-font-body);
	font-size: 15px;
	line-height: 1.7;
	color: var(--hda-ink-soft);
}

/* The panel repeats the tab name as an h2; the tab strip already labels it */
body.single-product .hda-tabs-card .woocommerce-Tabs-panel > h2:first-child {
	display: none;
}

body.single-product .hda-tabs-card .woocommerce-Tabs-panel h2,
body.single-product .hda-tabs-card .woocommerce-Tabs-panel h3,
body.single-product .hda-tabs-card .woocommerce-Tabs-panel h4 {
	font-family: var(--hda-font-head);
	color: var(--hda-purple-deep);
	margin: 22px 0 10px;
}

body.single-product .hda-tabs-card .woocommerce-Tabs-panel h2 { font-size: 21px; }
body.single-product .hda-tabs-card .woocommerce-Tabs-panel h3 { font-size: 18px; }
body.single-product .hda-tabs-card .woocommerce-Tabs-panel h4 { font-size: 16px; }

body.single-product .hda-tabs-card .woocommerce-Tabs-panel p { margin: 0 0 14px; }
body.single-product .hda-tabs-card .woocommerce-Tabs-panel p:last-child { margin-bottom: 0; }

body.single-product .hda-tabs-card .woocommerce-Tabs-panel a {
	color: var(--hda-purple);
	text-decoration: underline;
}

body.single-product .hda-tabs-card .woocommerce-Tabs-panel img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

body.single-product .hda-tabs-card .woocommerce-Tabs-panel ul,
body.single-product .hda-tabs-card .woocommerce-Tabs-panel ol {
	margin: 0 0 14px;
	padding-left: 20px;
}

body.single-product .hda-tabs-card .woocommerce-Tabs-panel table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 14px;
}

body.single-product .hda-tabs-card .woocommerce-Tabs-panel table th,
body.single-product .hda-tabs-card .woocommerce-Tabs-panel table td {
	padding: 11px 14px;
	border: 1px solid var(--hda-line);
	text-align: left;
}

body.single-product .hda-tabs-card .woocommerce-Tabs-panel table th {
	background: var(--hda-page-bg);
	color: var(--hda-ink);
	font-weight: 600;
}

/* Checklist used by the description fallback */
.hda-checklist {
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
}

.hda-checklist li {
	position: relative;
	margin-bottom: 12px;
	padding-left: 30px;
	color: var(--hda-ink-soft);
}

.hda-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 17px;
	height: 17px;
	background-color: var(--hda-purple);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9.3'/%3E%3Cpath d='m8.4 12 2.4 2.4 4.8-4.8'/%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='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9.3'/%3E%3Cpath d='m8.4 12 2.4 2.4 4.8-4.8'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* FAQ accordion inside its tab */
.hda-faq__item {
	border-bottom: 1px solid var(--hda-line);
	padding: 15px 0;
}

.hda-faq__item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.hda-faq__item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	cursor: pointer;
	list-style: none;
	font-weight: 600;
	color: var(--hda-purple-deep);
}

.hda-faq__item summary::-webkit-details-marker {
	display: none;
}

/* Plain text glyphs — no icon font needed, and they read correctly to
   assistive tech as decoration on an already-labelled <summary>. */
.hda-faq__item summary::after {
	content: "+";
	flex-shrink: 0;
	font-size: 19px;
	line-height: 1;
	font-weight: 400;
	color: var(--hda-purple);
}

.hda-faq__item[open] summary::after {
	content: "\2212"; /* minus sign */
}

.hda-faq__item summary:focus-visible {
	outline: 2px solid var(--hda-purple);
	outline-offset: 3px;
	border-radius: 4px;
}

.hda-faq__item p {
	margin: 11px 0 0;
	font-size: 14.5px;
	color: var(--hda-ink-soft);
}

/* ---------------------------------------------------------------
   Additional-info card
   --------------------------------------------------------------- */

.hda-info__title {
	margin: 0 0 20px;
	font-family: var(--hda-font-head);
	font-size: 19px;
	font-weight: 700;
	color: var(--hda-purple-deep);
}

.hda-info__spec {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 15px 18px;
	margin-bottom: 22px;
	border: 1px solid var(--hda-line);
	border-radius: var(--hda-radius-input);
	background: var(--hda-page-bg);
	font-family: var(--hda-font-body);
	font-size: 14px;
}

.hda-info__spec-label {
	color: var(--hda-ink-soft);
}

.hda-info__spec-value {
	font-weight: 700;
	color: var(--hda-ink);
	/* Tabular figures keep numeric specs from shifting between products */
	font-variant-numeric: tabular-nums;
}

.hda-info__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.hda-info__item {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.hda-info__icon {
	font-size: 20px;
	color: var(--hda-purple);
	line-height: 1;
}

.hda-info__label {
	font-family: var(--hda-font-body);
	font-size: 13.5px;
	font-weight: 700;
	color: var(--hda-purple-deep);
}

.hda-info__value {
	font-family: var(--hda-font-body);
	font-size: 12.5px;
	line-height: 1.45;
	color: var(--hda-ink-soft);
}

/* Native attributes table, when a product actually has attributes */
.hda-info__attributes {
	width: 100%;
	margin: 22px 0 0;
	border-collapse: collapse;
	font-family: var(--hda-font-body);
	font-size: 13.5px;
}

.hda-info__attributes th,
.hda-info__attributes td {
	padding: 11px 14px;
	border: 1px solid var(--hda-line);
	text-align: left;
}

.hda-info__attributes th {
	width: 42%;
	background: var(--hda-page-bg);
	color: var(--hda-ink);
	font-weight: 600;
}

.hda-info__attributes td {
	color: var(--hda-ink-soft);
}

/* ---------------------------------------------------------------
   WhatsApp support card
   --------------------------------------------------------------- */

.hda-whatsapp {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
	padding: 26px 30px;
	border: 1px solid var(--hda-line);
	border-radius: var(--hda-radius-card);
	background: var(--hda-purple-soft);
}

.hda-whatsapp__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 58px;
	height: 58px;
	border-radius: 14px;
	background: var(--hda-purple);
	color: #fff;
	font-size: 26px;
}

.hda-whatsapp__body {
	flex: 1 1 320px;
	min-width: 0;
}

.hda-whatsapp__title {
	margin: 0 0 5px;
	font-family: var(--hda-font-head);
	font-size: 18px;
	font-weight: 700;
	color: var(--hda-purple-deep);
}

.hda-whatsapp__text {
	margin: 0;
	font-family: var(--hda-font-body);
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--hda-ink-soft);
}

.hda-whatsapp__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	min-height: 48px;
	padding: 0 26px;
	border: 2px solid var(--hda-purple);
	border-radius: var(--hda-radius-input);
	background: #fff;
	color: var(--hda-purple);
	font-family: var(--hda-font-body);
	font-size: 14.5px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.18s ease, color 0.18s ease, transform 0.15s ease;
}

.hda-whatsapp__cta:hover {
	background: var(--hda-purple);
	color: #fff;
	transform: translateY(-1px);
}

.hda-whatsapp__cta:focus-visible {
	outline: 3px solid rgba(71, 30, 167, 0.4);
	outline-offset: 2px;
}

/* ---------------------------------------------------------------
   Related products
   --------------------------------------------------------------- */

.hda-related__title {
	margin: 0 0 20px;
	font-family: var(--hda-font-head);
	font-size: 23px;
	font-weight: 700;
	color: var(--hda-purple-deep);
}

/* ---------------------------------------------------------------
   Responsive
   --------------------------------------------------------------- */

@media (max-width: 1024px) {
	body.single-product .elementor-column.hda-card > .elementor-widget-wrap.elementor-element-populated {
		padding: 26px;
	}

	/*
	 * Stack from tablet down. At 768–1024 the 48/52 split left the gallery too
	 * small to judge the product and squeezed the benefits strip into three
	 * cramped columns, so both rows go single-column here rather than at 767.
	 */
	body.single-product .hda-row > .elementor-container {
		flex-direction: column;
		gap: 20px;
	}

	body.single-product .hda-row > .elementor-container > .elementor-column {
		width: 100%;
		flex-basis: auto;
	}

	.hda-benefits {
		grid-template-columns: repeat(3, 1fr);
	}

	.hda-gallery-card .woocommerce-product-gallery__trigger,
	.hda-spec-badge {
		right: 26px;
	}

	.hda-spec-badge {
		top: 26px;
	}

	.hda-gallery-card .woocommerce-product-gallery__trigger {
		bottom: 26px;
	}

	.hda-info__grid {
		gap: 18px;
	}
}

@media (max-width: 767px) {
	body.single-product .elementor-column.hda-card > .elementor-widget-wrap.elementor-element-populated {
		padding: 20px;
	}

	/* Single column: gallery, then summary, then info — matching the mobile
	   reading order in the brief. */
	body.single-product .hda-row > .elementor-container {
		flex-direction: column;
		gap: 18px;
	}

	/* Thumbs move under the main image as a horizontal strip */
	.hda-gallery-card .woocommerce-product-gallery {
		flex-direction: column;
		gap: 14px;
	}

	.hda-gallery-card .flex-control-thumbs {
		flex-direction: row;
		flex-wrap: wrap;
		width: 100%;
		flex-basis: auto;
	}

	.hda-gallery-card .flex-control-thumbs li {
		width: 72px;
	}

	.hda-gallery-card .woocommerce-product-gallery__trigger,
	.hda-spec-badge {
		right: 20px;
	}

	.hda-spec-badge {
		top: 20px;
	}

	.hda-gallery-card .woocommerce-product-gallery__trigger {
		bottom: 20px;
	}

	body.single-product .hda-summary-card .product_title {
		font-size: 26px;
	}

	body.single-product .hda-summary-card .price,
	body.single-product .hda-summary-card p.price {
		font-size: 26px;
	}

	/* Stacked so each benefit reads as a full line instead of a cramped column */
	.hda-benefits {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.hda-benefit {
		align-items: center;
		padding: 0;
		border-left: none;
	}

	.hda-benefit__text {
		font-size: 13.5px;
	}

	body.single-product .hda-summary-card form.cart {
		flex-direction: column;
		align-items: stretch;
	}

	.hda-qty-group {
		width: 100%;
	}

	body.single-product .hda-summary-card .quantity {
		width: 100%;
	}

	body.single-product .hda-summary-card .quantity .qty {
		flex: 1 1 auto;
		width: auto;
	}

	body.single-product .hda-summary-card .single_add_to_cart_button {
		width: 100%;
		flex: 1 1 auto;
	}

	body.single-product .hda-tabs-card ul.tabs.wc-tabs {
		gap: 18px;
		/* Tab strip scrolls rather than wrapping into a tall stack */
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	body.single-product .hda-tabs-card ul.tabs.wc-tabs li {
		flex-shrink: 0;
	}

	.hda-info__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.hda-info__item {
		flex-direction: row;
		align-items: flex-start;
		gap: 12px;
	}

	.hda-whatsapp {
		padding: 22px;
	}

	.hda-whatsapp__cta {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.hda-spec-badge {
		min-width: 50px;
		padding: 8px 11px;
	}

	.hda-spec-badge__primary {
		font-size: 15px;
	}
}

/* Honour reduced-motion for every transition declared above */
@media (prefers-reduced-motion: reduce) {
	body.single-product .hda-summary-card .single_add_to_cart_button,
	.hda-whatsapp__cta,
	.horizonte-qty-btn,
	.hda-gallery-card .flex-control-thumbs img {
		transition: none;
	}

	body.single-product .hda-summary-card .single_add_to_cart_button:hover,
	.hda-whatsapp__cta:hover {
		transform: none;
	}
}
