/**
 * Nova PDP (Product Detail Page) Styles -- Phase 05 Figma Rewrite
 *
 * @package nova-peptides
 * @since   2.0
 */

/* ---- Page Background ---- */

.nova-pdp-inner{
	max-width: var(--nova-max-page-width);
	margin: auto;
}

body.nova-pdp-page .site-content {
	background: var(--nova-bg-white);
}

body.nova-pdp-page .site-content .col-full {
	max-width: 100%;
	padding: 0;
}

/* ---- Breadcrumb ---- */
.nova-pdp-breadcrumb-bar {
	background: transparent;
	padding: 16px 56px;
}

body.nova-pdp-page .nova-breadcrumb {
	max-width: var(--nova-content-width);
	margin: 0 auto;
	padding: 0;
}

body.nova-pdp-page .nova-breadcrumb__link {
	color: #1a1a2e;
	opacity: 1;
	text-decoration: underline;
	text-underline-offset: 3px;
}

body.nova-pdp-page .nova-breadcrumb__link:hover {
	color: #1a1a2e;
	opacity: 0.7;
}

body.nova-pdp-page .nova-breadcrumb__sep {
	color: #1a1a2e;
	opacity: 0.5;
}

/* Last separator (immediately before product name) — gold */
body.nova-pdp-page .nova-breadcrumb__item:nth-last-child(2) .nova-breadcrumb__sep {
	color:var(--nova-accent);
	opacity: 1;
}

body.nova-pdp-page .nova-breadcrumb__current {
	color:var(--nova-accent);
	opacity: 1;
}

/* ---- PDP Wrapper ---- */
.nova-pdp-wrapper {
	max-width: var(--nova-max-page-width);
	margin: 0 auto;
	padding: 0 56px 64px;
}

/* ---- Two-Column Layout ---- */
.nova-pdp-columns {
	display: flex;
	gap: 16px;
	width: var(--nova-content-width);
	max-width: 100%;
}

.nova-pdp-left {
	display: flex;
	flex-direction: column;
	gap: 32px;
	flex: 0 0 656px;
}

.nova-pdp-right {
	width: 656px;
	padding-left: 40px;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

/* ---- Right Column Grouping (Figma: Main Info gap-32px, Accordion gap-32px) ---- */
.nova-pdp-main-info {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.nova-pdp-accordion-group {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

/* ---- Gallery ---- */
.nova-pdp-gallery-main {
	width: 656px;
	height: 656px;
	background: var(--nova-border-light);
	border-radius: 20px;
	overflow: hidden;
}

.nova-pdp-gallery-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.nova-pdp-gallery-thumbs {
	display: flex;
	gap: 16px;
	margin-top: 16px;
}

.nova-pdp-gallery-thumb {
	width: 152px;
	height: 152px;
	background: var(--nova-border-light);
	border-radius: 16px;
	object-fit: cover;
	cursor: pointer;
	border: 2px solid transparent;
	transition: border-color 0.2s;
}

.nova-pdp-gallery-thumb:hover {
	border-color: rgba(62, 30, 109, 0.3);
}

.nova-pdp-gallery-thumb.is-active {
	border-color: var(--nova-bg-primary);
}

/* ---- Current Certificate of Analysis (Figma 548:3131) ---- */
.nova-pdp-current-coa {
	border: 1px solid var(--nova-border-light);
	border-radius: 12px;
	overflow: hidden;
}

.nova-pdp-current-coa__header {
	background: var(--nova-surface-light);
	border-bottom: 1px solid var(--nova-border-light);
	padding: 24px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

/* Typography via .nova-heading-sm utility */
.nova-pdp-current-coa__title {
	margin: 0;
}

.nova-pdp-current-coa__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--nova-bg-white);
	border: 1px solid var(--nova-border-light);
	border-radius: 88px;
	padding: 4px 16px;
	font-family: var(--nova-font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: #2a2c31;
	flex-shrink: 0;
}

.nova-pdp-current-coa__data-row {
	border-bottom: 1px solid var(--nova-border-light);
	padding: 24px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	position: relative;
}

/* ── Loading skeleton ────────────────────────────────────────────── */
.nova-pdp-current-coa.is-loading .nova-pdp-current-coa__batch-val,
.nova-pdp-current-coa.is-loading .nova-pdp-current-coa__date-val {
	display: inline-block;
	min-width: 80px;
	height: 14px;
	border-radius: 4px;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.06) 0%,
		rgba(0, 0, 0, 0.12) 50%,
		rgba(0, 0, 0, 0.06) 100%
	);
	background-size: 200% 100%;
	animation: nova-coa-shimmer 1.2s linear infinite;
	color: transparent;
}

.nova-pdp-current-coa.is-loading .nova-pdp-current-coa__date-val {
	min-width: 100px;
}

.nova-pdp-current-coa.is-loading .nova-pdp-current-coa__download {
	pointer-events: none;
	opacity: 0.4;
}

@keyframes nova-coa-shimmer {
	0%   { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
	.nova-pdp-current-coa.is-loading .nova-pdp-current-coa__batch-val,
	.nova-pdp-current-coa.is-loading .nova-pdp-current-coa__date-val {
		animation: none;
	}
}

.nova-pdp-current-coa__batch-group {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--nova-text-dark);
	white-space: nowrap;
}

.nova-pdp-current-coa__batch-lbl {
	font-family: var(--nova-font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.nova-pdp-current-coa__batch-val {
	font-family: var(--nova-font-body);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
}

.nova-pdp-current-coa__date-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #e5ffd9;
	border-radius: 88px;
	padding: 4px 16px;
	color: var(--nova-text-dark);
	white-space: nowrap;
}

.nova-pdp-current-coa__date-lbl {
	font-family: var(--nova-font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.nova-pdp-current-coa__date-val {
	font-family: var(--nova-font-body);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
}

.nova-pdp-current-coa__download {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--nova-font-body);
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	color: var(--nova-accent);
	text-decoration: underline;
	white-space: nowrap;
}

.nova-pdp-current-coa__download:hover {
	color: #733ce6;
}

.nova-pdp-current-coa__lib-row {
	padding: 24px 32px;
	display: flex;
	align-items: center;
}

.nova-pdp-current-coa__lib-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--nova-font-body);
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	color: var(--nova-accent);
	text-decoration: underline;
}

.nova-pdp-current-coa__lib-link:hover {
	color: #733ce6;
}

/* ---- Analysis Results (Figma 548:3156) ---- */
.nova-pdp-analysis-results {
	border: 1px solid var(--nova-border-light);
	border-radius: 12px;
	overflow: hidden;
}

.nova-pdp-analysis-results__header {
	background: var(--nova-surface-light);
	border-bottom: 1px solid var(--nova-border-light);
	padding: 24px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

/* Typography via .nova-heading-sm utility; overflow handling kept here */
.nova-pdp-analysis-results__title {
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
}

.nova-pdp-analysis-results__date {
	font-family: var(--nova-font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--nova-text-dark);
	flex-shrink: 0;
	white-space: nowrap;
}

.nova-pdp-analysis-results__body {
	padding: 24px 32px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.nova-pdp-ar-row {
	display: flex;
	align-items: center;
	gap: 16px;
	font-family: var(--nova-font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: var(--nova-text-dark);
}

.nova-pdp-ar-row__label {
	width: 168px;
	flex-shrink: 0;
	opacity: 0.5;
}

.nova-pdp-ar-row__value {
	flex: 1;
	min-width: 0;
}

/* ── kept for any legacy references ── */
.nova-pdp-analysis__row {
	display: flex;
	align-items: center;
	padding: 16px 32px;
	border-bottom: 1px solid var(--nova-border-light);
	font-family: var(--nova-font-body);
	font-size: 14px;
}

.nova-pdp-analysis__row:last-child {
	border-bottom: none;
}

.nova-pdp-analysis__label {
	width: 168px;
	color: var(--nova-text-dark);
	opacity: 0.5;
	flex-shrink: 0;
}

.nova-pdp-analysis__value {
	flex: 1;
	color: var(--nova-text-dark);
}

/* COA CTA Card (Figma 548:3189) */
.nova-pdp-coa-cta {
	position: relative;
	background: var(--nova-gradient-cta);
	border: 1px solid var(--nova-border-light);
	border-radius: 12px;
	padding: 24px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	overflow: hidden;
}

/* Subtle noise texture overlay */
.nova-pdp-coa-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E");
	opacity: 0.15;
	mix-blend-mode: luminosity;
	pointer-events: none;
}

/* Text: "Not sure how to read a COA?" */
.nova-pdp-coa-cta__text {
	position: relative;
	font-family: var(--nova-font-heading);
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	color: var(--nova-text-primary);
	margin: 0;
	max-width: 311px;
}

/* Button: white bg, purple text, backdrop blur */
.nova-pdp-coa-cta__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--nova-bg-white);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: var(--nova-accent);
	border-radius: 40px;
	padding: 12px 28px;
	font-family: var(--nova-font-body);
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
}

.nova-pdp-coa-cta__btn:hover {
	background: rgba(255, 255, 255, 0.9);
	color: var(--nova-accent);
}

/* ---- Title Block ---- */
.nova-pdp-title-block {
	margin-bottom: 0;
}

.nova-pdp-title {
	font-family: var(--nova-font-heading);
	font-size: 40px;
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -0.8px;
	color: var(--nova-text-dark);
	margin: 0;
}

/* Typography via .nova-body utility; only margin kept here */
.nova-pdp-tagline {
	margin: 8px 0 0;
}

/* ---- Body Container ---- */
/* ---- Product Info & Body Container ---- */
.nova-pdp-info-wrapper {
    position: relative;
    margin-bottom: 32px;
    border: 1px solid var(--nova-border-light);
    border-radius: 12px;
    background-color: var(--nova-bg-white);
    padding: 32px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.nova-pdp-info-card {
    position: relative;
    overflow: hidden;
    max-height: none; /* JS sets the constraint after measuring content */
    transition: max-height 0.35s ease;
}

/* Fading gradient effect for clamped text */
/* .nova-pdp-info-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--nova-bg-white));
    pointer-events: none;
    transition: opacity 0.3s ease;
} */

.nova-pdp-info-card.is-expanded::after {
    opacity: 0;
}

/* Content wrapper inside the card */
.nova-pdp-body-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

/* Paragraph text inside the body container */
.nova-pdp-body-container p {
    font-family: var(--nova-font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--nova-text-dark);
    opacity: 0.7;
    margin: 0;
}

/* Legacy short description ul lists */
.nova-pdp-body-container ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nova-pdp-body-container ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--nova-font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--nova-text-dark);
    opacity: 0.7;
}

.nova-pdp-body-container ul li::before {
    content: '';
    display: inline-flex;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: var(--nova-accent);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 12.5l3 3 7-7' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
}

/* New custom Feature List styling */
.nova-pdp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nova-pdp-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--nova-font-body);
    font-size: 16px;
    color: var(--nova-text-dark);
    opacity: 0.8;
    line-height: 1.5;
}

.nova-pdp-feature-list li svg {
    flex-shrink: 0;
    margin-top: 4px;
}

/* See More Button */
.nova-see-more-btn {
    background: none;
    border: none;
    border-top: 1px solid var(--nova-border-light);
    color: var(--nova-accent);
    font-family: var(--nova-font-body);
    font-weight: 600;
    cursor: pointer;
    padding: 16px 0 0 0;
    margin-top: 16px;
    width: 100%;
    text-align: left;
    font-size: 16px;
    display: block;
    transition: color 0.2s;
}

.nova-see-more-btn:hover {
    color: var(--nova-accent);
    text-decoration: underline;
}

/* ---- Price (Figma 445:1867) ---- */
.nova-pdp-price {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

/* Strikethrough regular price (shown when on sale) */
.nova-pdp-price__was {
	font-family: var(--nova-font-heading);
	font-size: 20px;
	font-weight: 300;
	line-height: 24px;
	text-decoration: line-through;
	color: var(--nova-text-dark);
	opacity: 0.6;
}

.nova-pdp-price__was del,
.nova-pdp-price__was .woocommerce-Price-amount {
	text-decoration: inherit;
	color: inherit;
}

/* Sale / current price group */
.nova-pdp-price__group {
	display: flex;
	align-items: flex-end;
	gap: 4px;
}

.nova-pdp-price__current {
	font-family: var(--nova-font-heading);
	font-size: 28px;
	font-weight: 500;
	line-height: 32px;
	color: var(--nova-accent);
}

.nova-pdp-price__current .woocommerce-Price-amount {
	color: inherit;
}

.nova-pdp-price__current.is-discounted {
	color: var(--nova-badge-sale);
}

.nova-pdp-price__unit {
	font-family: var(--nova-font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: var(--nova-text-dark);
	opacity: 0.7;
}

/* ---- Bulk Discounts ---- */
.nova-pdp-bulk {
	border: 1px solid var(--nova-border-light);
	border-radius: 8px;
	overflow: hidden;
}

.nova-pdp-bulk__header {
	background: var(--nova-surface-light);
	border-bottom: 1px solid var(--nova-border-light);
	padding: 8px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.nova-pdp-bulk__title {
	font-family: var(--nova-font-body);
	font-size: 16px;
	font-weight: 600;
	color: var(--nova-text-dark);
}

.nova-pdp-bulk__caret {
	transition: transform 0.2s;
	flex-shrink: 0;
	color: var(--nova-text-dark);
}

/* Caret points up = expanded (default open) */
.nova-pdp-bulk.is-collapsed .nova-pdp-bulk__caret {
	transform: rotate(180deg);
}

.nova-pdp-bulk__body {
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.nova-pdp-bulk.is-collapsed .nova-pdp-bulk__body {
	max-height: 0;
}

.nova-pdp-bulk__row {
	display: flex;
	align-items: center;
	padding: 12px 16px;
	border-bottom: 1px solid var(--nova-border-light);
	font-family: var(--nova-font-body);
	font-size: 14px;
	color: var(--nova-text-dark);
	gap: 12px;
}

.nova-pdp-bulk__range {
	flex: 1;
	min-width: 0;
}

.nova-pdp-bulk__row:last-child {
	border-bottom: none;
}

.nova-pdp-bulk__badge {
	flex-shrink: 0;
	background: #e5ffd9;
	color: #2b8000;
	border-radius: 88px;
	padding: 4px 16px;
	font-size: 14px;
	font-weight: 500;
}

.nova-pdp-bulk__price {
	flex-shrink: 0;
	margin-left: auto;
	font-family: var(--nova-font-heading);
	font-size: 20px;
	font-weight: 500;
	color: var(--nova-accent);
	display: flex;
	align-items: baseline;
	gap: 4px;
	white-space: nowrap;
}

.nova-pdp-bulk__per {
	font-family: var(--nova-font-body);
	font-size: 14px;
	font-weight: 400;
	color: var(--nova-text-dark);
	opacity: 0.5;
}

/* ---- Qty + ATC Row (Nuclear Option) ---- */

/* 1. Stock Status Message */
body.nova-pdp-page .nova-pdp-cart .stock {
	font-family: var(--nova-font-body);
	font-size: 14px;
	font-weight: 500;
	margin: 8px 0 0;
	padding: 0;
	line-height: 1.4;
}

body.nova-pdp-page .nova-pdp-cart .stock.in-stock {
	color: #2b8000;
}

body.nova-pdp-page .nova-pdp-cart .stock.out-of-stock {
	color: #B30000;
}

/* 2a. Variable product outer form — stacks variations above qty+ATC */
body.nova-pdp-page .nova-pdp-cart form.variations_form {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 2b. Simple product form — single row (qty + ATC).
   Excludes .bundle_form — bundles have their own vertical layout
   defined in nova-bundles.css (bundled-items list above, qty + ATC
   row below). Without the :not() the bundle form's children would
   flatten into one row alongside the bundled items. */
body.nova-pdp-page .nova-pdp-cart form.cart:not(.variations_form):not(.bundle_form) {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 2c. The qty + ATC row inside variable product form */
body.nova-pdp-page .nova-pdp-cart .woocommerce-variation-add-to-cart {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 3. The Pill Wrapper — white bg, border, rounded-88px, 64px tall, 152px wide (Figma 445:1754) */
body.nova-pdp-page .nova-pdp-cart .quantity {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: var(--nova-bg-white) !important;
    border: 1px solid var(--nova-border-light) !important;
    border-radius: 88px !important;
    height: 64px !important;
    width: 152px !important;
    min-width: 152px !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
}

/* 4. Strip borders/box-shadows from all inner elements */
body.nova-pdp-page .nova-pdp-cart .quantity * {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    margin: 0 !important;
}

/* 4b. nova-pdp-qty inner flex row fills the pill */
/* body.nova-pdp-page .nova-pdp-cart .quantity .nova-pdp-qty {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
} */

/* 5. Number input — centered, no arrows */
/* body.nova-pdp-page .nova-pdp-cart .quantity input[type="number"],
body.nova-pdp-page .nova-pdp-cart .quantity input.qty {
    flex: 1 !important;
    width: 24px !important;
    min-width: 0 !important;
    color: var(--nova-text-dark) !important;
    font-family: var(--nova-font-body) !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 32px !important;
    text-align: center !important;
    padding: 0 !important;
    -moz-appearance: textfield !important;
} */
/* 
body.nova-pdp-page .nova-pdp-cart .quantity input[type="number"]::-webkit-inner-spin-button,
body.nova-pdp-page .nova-pdp-cart .quantity input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
} */

/* 6. +/- buttons — 64×64px areas with centred SVG icon (Figma: p-[20px] size-[64px]) */
/* body.nova-pdp-page .nova-pdp-cart .quantity .nova-qty__minus,
body.nova-pdp-page .nova-pdp-cart .quantity .nova-qty__plus {
    flex-shrink: 0 !important;
    width: 64px !important;
    height: 64px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    color: var(--nova-text-dark) !important;
    transition: color 0.15s !important;
    background: transparent !important;
} */
/* 
body.nova-pdp-page .nova-pdp-cart .quantity .nova-qty__minus:hover,
body.nova-pdp-page .nova-pdp-cart .quantity .nova-qty__plus:hover {
    color: var(--nova-accent) !important;
} */
/* 
body.nova-pdp-page .nova-pdp-cart .quantity .nova-qty__btn svg {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
} */

/* Fallback for Shoptimizer-injected .plus/.minus spans (not used on PDP but kept safe) */
/* body.nova-pdp-page .nova-pdp-cart .quantity .minus,
body.nova-pdp-page .nova-pdp-cart .quantity .plus {
    display: none !important;
} */

/* 7. The ATC Button (Working perfectly, kept intact) */
body.nova-pdp-page .nova-pdp-cart .single_add_to_cart_button {
    flex: 1 !important;
    background: var(--nova-accent) !important;
    color: var(--nova-text-primary) !important;
    border: none !important;
    border-radius: 40px !important;
    padding: 0 32px !important;
    font-family: var(--nova-font-body) !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    text-align: center !important;
    text-transform: capitalize !important;
    cursor: pointer !important;
    height: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    width: auto !important;
    max-width: none !important;
    float: none !important;
    line-height: normal !important;
    transition: background 0.2s;
}

body.nova-pdp-page .nova-pdp-cart .single_add_to_cart_button:hover {
    background: var(--nova-accent-hover) !important;
}

body.nova-pdp-page .nova-pdp-cart .single_add_to_cart_button:disabled,
body.nova-pdp-page .nova-pdp-cart .single_add_to_cart_button.disabled {
	background: #999999 !important;
	color: var(--nova-text-primary) !important;
	cursor: not-allowed !important;
	opacity: 0.7;
}

body.nova-pdp-page .nova-pdp-cart .single_add_to_cart_button:disabled:hover,
body.nova-pdp-page .nova-pdp-cart .single_add_to_cart_button.disabled:hover {
	background: #999999 !important;
}

/* AJAX loading spinner — matches product card pattern */
body.nova-pdp-page .nova-pdp-cart .single_add_to_cart_button.loading {
	font-size: 0 !important;
	pointer-events: none;
	position: relative;
}

body.nova-pdp-page .nova-pdp-cart .single_add_to_cart_button.loading::after {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-top-color: var(--nova-text-primary);
	border-radius: 50%;
	animation: nova-spin 0.6s linear infinite;
}

body.nova-pdp-page .nova-pdp-cart .single_add_to_cart_button.added {
	background: #6b3fd4 !important;
}

/* ---- WooCommerce Variation Selector ---- */
body.nova-pdp-page .variations {
    width: 100%;
    border: none;
    border-collapse: collapse;
    margin-bottom: 16px;
}

body.nova-pdp-page .variations tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

body.nova-pdp-page .variations td {
    padding: 0;
}

body.nova-pdp-page .variations td.label label {
    font-family: var(--nova-font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--nova-text-dark);
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 10px;
}

/* Hidden fallback select — JS pill buttons take over; keep accessible */
body.nova-pdp-page .variations td.value select.nova-variant-select-hidden {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Pill button variant selector */
body.nova-pdp-page .nova-variant-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body.nova-pdp-page .nova-variant-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    border: 1.5px solid var(--nova-border-light);
    border-radius: 88px;
    background: var(--nova-bg-white);
    color: var(--nova-text-dark);
    font-family: var(--nova-font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    white-space: nowrap;
}

body.nova-pdp-page .nova-variant-pill:hover {
    border-color: var(--nova-accent);
    color: var(--nova-accent);
}

body.nova-pdp-page .nova-variant-pill.is-active {
    background: var(--nova-accent);
    border-color: var(--nova-accent);
    color: var(--nova-text-primary);
}

body.nova-pdp-page .nova-variant-pill:disabled,
body.nova-pdp-page .nova-variant-pill.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Hide WooCommerce default variation price (we show our own price block) */
body.nova-pdp-page .nova-pdp-cart .woocommerce-variation-price {
    display: none !important;
}

/* Reset link */
body.nova-pdp-page .variations td.value .reset_variations {
    font-family: var(--nova-font-body);
    font-size: 12px;
    color: var(--nova-accent);
    margin-top: 8px;
    display: inline-block;
    text-decoration: none;
    opacity: 0.8;
}

body.nova-pdp-page .variations td.value .reset_variations:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ---- Batch Analysis Table ---- */
.nova-pdp-batch-table {
    border: 1px solid var(--nova-border-light);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 16px;
}

.nova-pdp-batch-table__header {
    background: var(--nova-surface-light);
    border-bottom: 1px solid var(--nova-border-light);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Typography via .nova-heading-sm utility */
.nova-pdp-batch-table__title {
    margin: 0;
}

.nova-pdp-batch-table__body {
    overflow-x: auto;
}

.nova-pdp-batch-table table {
    width: 100%;
    border-collapse: collapse;
}

.nova-pdp-batch-table thead th {
    text-align: left;
    padding: 12px 32px;
    font-family: var(--nova-font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--nova-text-dark);
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e4e6f2;
}

.nova-pdp-batch-table tbody td {
    padding: 16px 32px;
    font-family: var(--nova-font-body);
    font-size: 14px;
    color: var(--nova-text-dark);
    border-bottom: 1px solid var(--nova-border-light);
}

.nova-pdp-batch-table tbody tr:last-child td {
    border-bottom: none;
}

.nova-batch-dl-link {
    color: var(--nova-accent);
    text-decoration: underline;
    font-weight: 500;
}

.nova-batch-dl-link:hover {
    color: #733ce6;
}

/* ---- Description Accordion ---- */
.nova-pdp-accordion {
	border: 1px solid var(--nova-border-light);
	border-radius: 12px;
	overflow: hidden;
}

.nova-pdp-accordion__header {
	background: var(--nova-surface-light);
	border-bottom: 1px solid var(--nova-border-light);
	padding: 24px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	user-select: none;
}

/* Typography via .nova-heading-sm utility */
.nova-pdp-accordion__title {
}

.nova-pdp-accordion__caret {
	transition: transform 0.2s;
	flex-shrink: 0;
	color: var(--nova-text-dark);
}

.nova-pdp-accordion.is-open .nova-pdp-accordion__caret {
	transform: rotate(-180deg);
}

.nova-pdp-accordion__body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding: 0 32px;
}

.nova-pdp-accordion.is-open .nova-pdp-accordion__body {
	max-height: 999px;
	padding: 24px 32px;
}

/* ---- Long description inside accordion ---- */
.nova-pdp-long-desc {
	font-family: var(--nova-font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: var(--nova-text-dark);
	opacity: 0.7;
	margin-bottom: 24px;
}

.nova-pdp-long-desc p {
	margin: 0 0 12px;
}

.nova-pdp-long-desc p:last-child {
	margin-bottom: 0;
}

/* When long desc is immediately followed by the attribute table */
.nova-pdp-long-desc + .nova-pdp-desc-table {
	border-top: 1px solid var(--nova-border-light);
	padding-top: 24px;
}

/* Desc key-value table */
.nova-pdp-desc-table {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.nova-pdp-desc-table__row {
	display: flex;
	gap: 16px;
	font-family: var(--nova-font-body);
	font-size: 14px;
}

.nova-pdp-desc-table__label {
	width: 168px;
	flex-shrink: 0;
	color: var(--nova-text-dark);
	opacity: 0.5;
}

.nova-pdp-desc-table__value {
	flex: 1;
	color: var(--nova-text-dark);
}

/* ---- Disclaimer ---- */
.nova-pdp-disclaimer {
	border: 1px solid #f2d5d5;
	border-radius: 12px;
	overflow: hidden;
}

.nova-pdp-disclaimer__header {
	background: #fce8e8;
	border-bottom: 1px solid #f2cece;
	padding: 24px 32px;
	display: flex;
	align-items: center;
	gap: 12px;
}

/* Typography via .nova-heading-sm utility */
.nova-pdp-disclaimer__heading {
}

.nova-pdp-disclaimer__body {
	padding: 24px 32px;
}

/* Base text similar to .nova-body-sm; custom line-height kept */
.nova-pdp-disclaimer__body p {
	font-family: var(--nova-font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--nova-text-dark);
	opacity: 0.7;
	margin: 0;
}

/* ---- Related Products ---- */
/* Layout via .nova-section utility; bg override + custom padding kept here */
.nova-pdp-related {
	background: var(--nova-bg-white);
	padding: 64px 56px;
}

/* Typography via .nova-heading-xl utility; only margin kept here */
.nova-pdp-related__heading {
	margin: 0 0 40px;
}

.nova-pdp-related__grid {
	display: flex;
	gap: 16px;
	list-style: none;
	padding: 0;
	margin: 0;
}

/* ---- Override Shoptimizer PDP defaults ---- */
body.nova-pdp-page .woocommerce-tabs,
body.nova-pdp-page .related.products,
body.nova-pdp-page .up-sells.upsells {
	display: none;
}

body.nova-pdp-page .summary.entry-summary {
	display: none;
}

body.nova-pdp-page .woocommerce-product-gallery {
	display: none;
}

@media (max-width: 1024px) {

	/* Wrapper + columns */
	.nova-pdp-wrapper {
		padding: 0 32px 48px;
	}

	.nova-pdp-columns {
		flex-direction: column;
		width: 100%;
	}

	/*
	 * display:contents makes .nova-pdp-left transparent so its children
	 * participate directly in the flex column, enabling order-based resequencing.
	 *
	 * Mobile reading order:
	 *   1. Gallery          (product images — above the fold)
	 *   2. Right column     (title, price, ATC — core purchase info)
	 *   3. Current COA      (batch/date/download)
	 *   4. Analysis results (purity data)
	 *   5. COA CTA          (learn how to read a COA)
	 */
	.nova-pdp-left {
		display: contents;
	}

	.nova-pdp-gallery {
		order: 1;
		width: 100%;
	}

	/* Unwrap the right column and main info groups so we can reorder individual pieces */
    .nova-pdp-right,
    .nova-pdp-main-info {
        display: contents;
    }

    /* 1. Move the Title Block above everything */
    .nova-pdp-title-block {
        order: -1;
        width: 100%;
        margin-bottom: 24px;
    }

    /* 2. Gallery stays at order: 1 (already declared above in your CSS) */

    /* 3. Force the rest of the right-column info to sit below the gallery.
       The kit-card joins this group so it lands directly under the bulk
       discount table (DOM order is bulk → kit, so order:2 keeps that). */
    .nova-pdp-info-wrapper,
    .nova-pdp-price,
    .nova-pdp-bulk,
    .nova-pdp-kit-card,
    .nova-pdp-cart,
    .nova-pdp-accordion-group {
        order: 2;
        width: 100%;
        margin-bottom: 24px; /* Restores the vertical spacing between sections */
    }

    /* Loyalty earn-points pill — sit directly below the description accordion
       (order:2). Bump the COA blocks below so loyalty lands at the natural
       reading position right after the description, not at the end of the page. */
    .nova-loyalty-pdp-pill {
        order: 3;
        width: 100%;
        margin-bottom: 24px;
    }

	/* COA sections pushed below right-column content (orders 4-6 to leave
	   room for the loyalty pill at order:3 right after the description). */
	.nova-pdp-current-coa {
		order: 4;
		width: 100%;
	}

	.nova-pdp-analysis-results {
		order: 5;
		width: 100%;
	}

	.nova-pdp-coa-cta {
		order: 6;
		width: 100%;
	}
	/* Gallery */
	.nova-pdp-gallery-main {
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
	}

	.nova-pdp-gallery-thumb {
		width: 120px;
		height: 120px;
	}

	/* Title */
	.nova-pdp-title {
		font-size: 32px;
	}

	/* Body container */
	.nova-pdp-info-wrapper {
        padding: 24px;
    }

	.nova-pdp-body-desc {
		font-size: 18px;
	}

	.nova-pdp-feature span {
		font-size: 18px;
	}

	/* Price */
	.nova-pdp-price__current {
		font-size: 24px;
	}

	/* COA sections */
	.nova-pdp-coa__header {
		padding: 20px 24px;
	}

	.nova-pdp-coa__row {
		padding: 20px 24px;
	}

	.nova-pdp-analysis__row {
		padding: 12px 24px;
	}

	.nova-pdp-coa-cta {
		padding: 20px 24px;
	}

	/* Accordion */
	.nova-pdp-accordion__header {
		padding: 20px 24px;
	}

	.nova-pdp-accordion.is-open .nova-pdp-accordion__body {
		padding: 20px 24px;
	}

	/* Disclaimer */
	.nova-pdp-disclaimer__header {
		padding: 20px 24px;
	}

	.nova-pdp-disclaimer__body {
		padding: 20px 24px;
	}

	/* Related products */
	.nova-pdp-related {
		padding: 48px 32px;
	}

	/* font-size: 40px now handled by .nova-heading-xl responsive in nova-global.css */

	.nova-pdp-related__grid {
		flex-wrap: wrap;
	}

	.nova-pdp-related__grid .nova-product-card {
		width: calc(50% - 8px);
		flex-shrink: 0;
	}
}

/* ============================================================
   RESPONSIVE — Mobile (max-width: 767px)
   ============================================================ */
@media (max-width: 767px) {

	/* Wrapper + columns */
	.nova-pdp-wrapper {
		padding: 0 16px 32px;
	}

	.nova-pdp-columns {
		gap: 24px;
	}

	/* Gallery */
	.nova-pdp-gallery-main {
		border-radius: 12px;
	}

	.nova-pdp-gallery-thumbs {
		gap: 8px;
		overflow-x: auto;
		flex-wrap: nowrap;
	}

	.nova-pdp-gallery-thumb {
		width: 80px;
		height: 80px;
		border-radius: 8px;
		flex-shrink: 0;
	}

	/* Breadcrumb bar */
	.nova-pdp-breadcrumb-bar {
		padding: 12px 24px;
	}

	body.nova-pdp-page .nova-breadcrumb__link,
	body.nova-pdp-page .nova-breadcrumb__current,
	body.nova-pdp-page .nova-breadcrumb__sep {
		font-size: 12px;
	}

	/* Title */
	.nova-pdp-title {
		font-size: 28px;
		line-height: 1.1;
		letter-spacing: -0.5px;
	}

	.nova-pdp-tagline {
		font-size: 14px;
	}

	.nova-pdp-title-block {
		margin-bottom: 0;
	}

	/* Price */
	.nova-pdp-price__current {
		font-size: 24px;
	}

	/* Variant pills — touch target tuning */
	body.nova-pdp-page .nova-variant-pill {
		min-height: 40px;
		font-size: 13px;
		padding: 8px 14px;
	}

	/* Accordion summary — tappable */
	.nova-pdp-accordion__header {
		padding: 14px 16px;
		font-size: 15px;
	}

	.nova-pdp-accordion.is-open .nova-pdp-accordion__body {
		padding: 14px 16px;
	}

	/* Batch table — horizontal scroll wrapper to avoid overflow at 320px */
	.nova-pdp-batch-table {
		margin-top: 12px;
	}

	.nova-pdp-batch-table__body {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.nova-pdp-batch-table table {
		min-width: 480px;
	}

	/* COA section padding */
	.nova-pdp-current-coa__header,
	.nova-pdp-current-coa__data-row,
	.nova-pdp-current-coa__lib-row,
	.nova-pdp-analysis-results__header,
	.nova-pdp-analysis-results__body {
		padding: 24px 16px;
	}

	.nova-pdp-current-coa__data-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.nova-pdp-ar-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.nova-pdp-ar-row__label {
		width: auto;
	}

	/* Body container */
	/* Body container */
    .nova-pdp-info-wrapper {
        padding: 20px;
    }

    .nova-pdp-body-desc {
        font-size: 16px;
    }

    .nova-pdp-feature-list li {
        font-size: 14px;
    }

	/* Price */
	.nova-pdp-price__current {
		font-size: 22px;
	}

	/* Bulk discounts */
	.nova-pdp-bulk__price {
		font-size: 16px;
	}

    /* Qty + ATC row (Mobile) */
    body.nova-pdp-page .nova-pdp-cart form.cart:not(.variations_form) {
        gap: 12px !important;
    }

    body.nova-pdp-page .nova-pdp-cart .woocommerce-variation-add-to-cart {
        gap: 12px !important;
    }

    body.nova-pdp-page .nova-pdp-cart .quantity {
        height: 56px !important;
        width: 130px !important;
        min-width: 130px !important;
        max-width: 130px !important;
        padding: 0 4px !important;
    }

    body.nova-pdp-page .nova-pdp-cart .quantity input.qty,
    body.nova-pdp-page .nova-pdp-cart .quantity input.input-text {
        font-size: 16px !important;
    }

    body.nova-pdp-page .nova-pdp-cart .single_add_to_cart_button,
    body.nova-pdp-page .nova-pdp-cart button.button {
        height: 56px !important;
        font-size: 16px !important;
        padding: 0 20px !important;
    }

	/* Variation selector */
	body.nova-pdp-page .variations td.value select {
		width: 100%;
	}

	/* Batch analysis table */
	.nova-pdp-batch-table__header {
		padding: 16px 20px;
	}

	.nova-pdp-batch-table thead th,
	.nova-pdp-batch-table tbody td {
		padding: 12px 20px;
	}

	/* COA sections */
	.nova-pdp-coa__header {
		padding: 16px 20px;
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.nova-pdp-coa__row {
		padding: 16px 20px;
		flex-wrap: wrap;
		gap: 8px;
	}

	.nova-pdp-analysis__row {
		padding: 12px 20px;
	}

	.nova-pdp-analysis__label {
		width: 120px;
	}

	.nova-pdp-coa-cta {
		padding: 20px;
		flex-direction: column;
		text-align: center;
		align-items: center;
		gap: 16px;
	}

	/* Accordion */
	.nova-pdp-accordion__header {
		padding: 16px 20px;
	}

	.nova-pdp-accordion.is-open .nova-pdp-accordion__body {
		padding: 16px 20px;
	}

	.nova-pdp-desc-table__row {
		flex-direction: column;
		gap: 4px;
	}

	.nova-pdp-desc-table__label {
		width: auto;
	}

	/* Disclaimer */
	.nova-pdp-disclaimer__header {
		padding: 16px 20px;
	}

	.nova-pdp-disclaimer__body {
		padding: 16px 20px;
	}

	/* Related products */
	.nova-pdp-related {
		padding: 32px 16px;
	}

	.nova-pdp-related__heading {
		font-size: 28px;
		letter-spacing: -0.84px;
		margin-bottom: 24px;
	}

	.nova-pdp-related__grid .nova-product-card {
		width: 100%;
	}
}

/* ============================================================
   RESPONSIVE — Small phones (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {

	/* Wrapper */
	.nova-pdp-wrapper {
		padding: 0 12px 24px;
	}

	/* Breadcrumb */
	.nova-pdp-breadcrumb-bar {
		padding: 8px 12px;
	}

	/* Gallery */
	.nova-pdp-gallery-thumb {
		width: 64px;
		height: 64px;
		border-radius: 6px;
	}

	/* Title */
	.nova-pdp-title {
		font-size: 24px;
	}

	/* Price */
	.nova-pdp-price__current {
		font-size: 22px;
	}

	.nova-pdp-price__was {
		font-size: 16px;
	}

	/* Variant pills — tighter on small phones */
	body.nova-pdp-page .nova-variant-pill {
		min-height: 36px;
		font-size: 12px;
		padding: 6px 12px;
	}

	/* Accordion */
	.nova-pdp-accordion__header {
		padding: 12px 14px;
		font-size: 14px;
	}

	.nova-pdp-accordion.is-open .nova-pdp-accordion__body {
		padding: 12px 14px;
	}

	/* Body container */
	.nova-pdp-info-wrapper {
		padding: 16px;
	}

	.nova-pdp-body-container p,
	.nova-pdp-body-container ul li {
		font-size: 14px;
	}

	/* Bulk discounts compact */
	.nova-pdp-bulk__row {
		padding: 10px 12px;
		font-size: 13px;
	}

	.nova-pdp-bulk__price {
		font-size: 15px;
	}

	/* COA padding tighter */
	.nova-pdp-current-coa__header,
	.nova-pdp-current-coa__data-row,
	.nova-pdp-current-coa__lib-row,
	.nova-pdp-analysis-results__header,
	.nova-pdp-analysis-results__body {
		padding: 16px 14px;
	}

	.nova-pdp-coa-cta {
		padding: 16px 14px;
	}

	.nova-pdp-coa-cta__text {
		font-size: 17px;
		line-height: 22px;
	}

	.nova-pdp-coa-cta__btn {
		padding: 10px 22px;
		font-size: 14px;
	}

	/* Tabs nav (if rendered) — horizontal scroll */
	.nova-pdp-tabs-nav,
	.nova-pdp__tabs-nav {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		white-space: nowrap;
		flex-wrap: nowrap;
	}

	.nova-pdp-tabs-nav::-webkit-scrollbar,
	.nova-pdp__tabs-nav::-webkit-scrollbar {
		display: none;
	}

	/* Batch table compact */
	.nova-pdp-batch-table thead th,
	.nova-pdp-batch-table tbody td {
		padding: 10px 14px;
		font-size: 12px;
	}

	/* Hide decorative ornaments where they crowd */
	.nova-pdp-coa-cta::before {
		opacity: 0.08;
	}

	/* Related products heading */
	.nova-pdp-related__heading {
		font-size: 24px;
		margin-bottom: 16px;
	}

	.nova-pdp-related {
		padding: 24px 12px;
	}

	/* Qty + ATC compact for small phones */
	body.nova-pdp-page .nova-pdp-cart .quantity {
		height: 52px !important;
		width: 120px !important;
		min-width: 120px !important;
		max-width: 120px !important;
	}

	body.nova-pdp-page .nova-pdp-cart .single_add_to_cart_button,
	body.nova-pdp-page .nova-pdp-cart button.button {
		height: 52px !important;
		font-size: 15px !important;
		padding: 0 16px !important;
	}
}

/* ── Kit of 10 promo card ──
   Compact secondary surface — soft accent tint, icon tile + title +
   muted tier line + chevron. Replaces the previous full-width solid
   button + floating tier paragraph, which competed with Add to Cart
   and read as two equally important CTAs. Mirrors the loyalty pill
   aesthetic for visual consistency across the buy box. */
.nova-pdp-kit-card {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	margin-top: 12px;
	padding: 12px 14px 12px 16px;
	background: rgba(138, 79, 255, 0.06);
	border: 1px solid rgba(138, 79, 255, 0.22);
	border-radius: 14px;
	color: var(--nova-text-dark, #0a0a0e);
	font-family: var(--nova-font-body);
	text-align: left;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.nova-pdp-kit-card:hover {
	background: rgba(138, 79, 255, 0.1);
	border-color: rgba(138, 79, 255, 0.35);
	transform: translateY(-1px);
}

.nova-pdp-kit-card:focus-visible {
	outline: 2px solid var(--nova-accent);
	outline-offset: 2px;
}

.nova-pdp-kit-card__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: rgba(138, 79, 255, 0.14);
	color: var(--nova-accent, #8a4fff);
	border-radius: 10px;
}

.nova-pdp-kit-card__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.nova-pdp-kit-card__title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--nova-text-dark);
}

.nova-pdp-kit-card__tier {
	font-size: 12px;
	line-height: 1.4;
	color: var(--nova-text-dark-muted, rgba(10, 10, 14, 0.6));
}

.nova-pdp-kit-card__arrow {
	flex-shrink: 0;
	color: var(--nova-accent, #8a4fff);
	opacity: 0.7;
	transition: transform 0.15s ease, opacity 0.15s ease;
}

.nova-pdp-kit-card:hover .nova-pdp-kit-card__arrow {
	transform: translateX(2px);
	opacity: 1;
}

/* ─────────────────────────────────────────────────────────────────────────
   Disclaimer slot — moves under the gallery on desktop when no COA exists,
   so the left column matches the right column's height. Mobile/tablet keep
   the disclaimer in the right column (default reading order).
   ───────────────────────────────────────────────────────────────────────── */
.nova-pdp-disclaimer-slot--left {
	display: none;
}

@media (min-width: 1025px) {
	.nova-pdp-columns--no-coa .nova-pdp-disclaimer-slot--left {
		display: block;
		margin-top: 24px;
	}
	.nova-pdp-columns--no-coa .nova-pdp-disclaimer-slot--right {
		display: none;
	}
}
