@charset "UTF-8";

/*
Theme Name: Pharmacy
Theme URI: https://github.com/proventheory/Pharmacy
Author: Miguel Lozano
Author URI: https://github.com/proventheory
Description: A clean WordPress theme for pharmacy ecommerce sites with WooCommerce support.
Version: 1.0.0
Text Domain: pharmacy-theme
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: e-commerce, woocommerce, pharmacy, responsive, accessibility-ready
*/

/* ==========================================================================
   CSS Variables (Design System)
   ========================================================================== */

:root {
	/* Colors - PHARMACY TIME Blue Palette */
	--color-primary: #0066cc;
	--color-primary-dark: #0052a3;
	--color-primary-light: #42a5f5;
	--color-primary-lighter: #90caf9;
	--color-primary-lightest: #e3f2fd;
	--color-primary-pastel: #bbdefb;
	--color-text: #1a1a1a;
	--color-text-light: #666666;
	--color-bg: #ffffff;
	--color-bg-light: #f8f9fa;
	--color-bg-blue: #e3f2fd;
	--color-border: #e0e0e0;
	--color-accent-yellow: #fff9c4;
	--color-accent-orange: #ffe0b2;
	--color-accent-pink: #fce4ec;
	--color-accent-light-blue: #b3e5fc;
	
	/* Program Hero Blue Palette */
	--blue-050: #C2E0FF;
	--blue-400: #47A3FF;
	--blue-500: #1F8FFF;
	--blue-800: #0053A4;
	--blue-950: #002952;
	
	/* Spacing */
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 2rem;
	--spacing-lg: 3rem;
	--spacing-xl: 4rem;
	
	/* Typography */
	--font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	--font-aventa: 'Aventa', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--font-bebas: 'Bebas Neue', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--font-size-base: 16px;
	--font-size-xs: 0.75rem;
	--font-size-sm: 0.875rem;
	--font-size-lg: 1.125rem;
	--font-size-xl: 1.25rem;
	--font-size-2xl: 1.5rem;
	--font-size-3xl: 2rem;
	--font-size-4xl: 2.5rem;
	--font-size-5xl: 3.5rem;
	
	/* Layout */
	--container-max-width: 1200px;
	--container-padding: 32px;
	--border-radius: 4px;
	--border-radius-lg: 8px;
	--border-radius-xl: 1.5rem; /* 24px for rounded-3xl */
	--container-max-width-eden: 72rem; /* 1152px - max-w-6xl */
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	font-family: var(--font-base);
	font-size: var(--font-size-base);
	line-height: 1.6;
	color: var(--color-text);
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

.skip-link {
	position: absolute;
	left: -9999px;
	z-index: 999999;
}

.skip-link:focus {
	left: 6px;
	top: 7px;
	width: auto;
	height: auto;
	padding: 8px 16px;
	background-color: #000;
	color: #fff;
	text-decoration: none;
	border-radius: 3px;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	clip: auto !important;
	height: auto;
	width: auto;
	padding: 8px 16px;
	background-color: #000;
	color: #fff;
	text-decoration: none;
	border-radius: 3px;
	z-index: 100000;
}

*:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

/* ==========================================================================
   Layout Utilities
   ========================================================================== */

.container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

/* ==========================================================================
   Default Page Template (Readable margins)
   ========================================================================== */

/* Constrain default page content so long-form text isn't edge-to-edge */
.page .page-content-container.container {
	max-width: 900px;
	padding-top: var(--spacing-xl);
	padding-bottom: var(--spacing-xl);
}

.page .entry-title {
	margin-top: 0;
}

.page .entry-content > *:last-child {
	margin-bottom: 0;
}

/* Improve typography rhythm on long-form pages (privacy/terms/hipaa, etc) */
.page .entry-content h2,
.page .entry-content h3,
.page .entry-content h4 {
	margin-top: var(--spacing-lg);
}

.page .entry-content h2:first-child,
.page .entry-content h3:first-child,
.page .entry-content h4:first-child {
	margin-top: 0;
}

.page .entry-content ul,
.page .entry-content ol {
	margin: var(--spacing-sm) 0 var(--spacing-md);
	padding-left: 1.5rem;
}

.page .entry-content li {
	margin-bottom: 0.5rem;
}

.page .entry-content hr {
	border: 0;
	border-top: 1px solid var(--color-border);
	margin: var(--spacing-lg) 0;
}

.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

#primary {
	flex: 1;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: var(--spacing-sm);
	color: var(--color-text);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
	margin-bottom: var(--spacing-sm);
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover,
a:focus {
	color: var(--color-primary-dark);
	text-decoration: underline;
}

/* ==========================================================================
   Blog post (single) - responsive + TOC
   ========================================================================== */

body.single-post #primary.content-area {
	max-width: 980px;
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

@media (max-width: 768px) {
	body.single-post #primary.content-area {
		padding: 0 20px;
	}
}

body.single-post .entry-header {
	margin: 2.25rem 0 1.25rem;
}

body.single-post .entry-title {
	font-family: var(--font-aventa);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.05;
}

@media (max-width: 768px) {
	body.single-post .entry-title {
		font-size: 2.25rem;
	}
}

body.single-post .entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	color: var(--color-text-light);
	font-size: 0.95rem;
	margin-top: 0.75rem;
}

body.single-post .post-thumbnail img,
body.single-post .entry-content img {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 24px;
}

body.single-post .entry-content {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: #2b2b2b;
}

@media (min-width: 961px) {
	body.single-post .entry-content {
		font-size: 1.125rem;
	}
}

body.single-post .entry-content h2 {
	margin-top: 2.25rem;
	font-size: 1.75rem;
	letter-spacing: -0.01em;
}

body.single-post .entry-content h3 {
	margin-top: 1.75rem;
	font-size: 1.25rem;
	letter-spacing: -0.01em;
}

body.single-post .entry-content ul,
body.single-post .entry-content ol {
	padding-left: 1.25rem;
}

.pt-toc-wrap {
	margin: 1.25rem 0 1.75rem;
}

.pt-toc {
	border: 1px solid var(--color-border);
	background: #fff;
	border-radius: 20px;
	padding: 1.25rem 1.25rem;
}

.pt-toc__summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.pt-toc__summary::-webkit-details-marker {
	display: none;
}

.pt-toc__summary::after {
	content: "▾";
	color: var(--color-text-light);
	font-size: 0.95rem;
	transform: rotate(0deg);
	transition: transform 0.15s ease;
}

.pt-toc[open] .pt-toc__summary::after {
	transform: rotate(180deg);
}

.pt-toc__title {
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: var(--color-text);
}

.pt-toc__summary .pt-toc__title {
	margin-bottom: 0;
}

.pt-toc__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.35rem;
}

.pt-toc__item--h3 .pt-toc__link {
	padding-left: 0.75rem;
}

.pt-toc__link {
	display: inline-block;
	padding: 0.25rem 0;
	color: var(--color-primary);
	text-decoration: none;
}

.pt-toc__link:hover {
	text-decoration: underline;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.button,
button.button,
input[type="submit"],
input[type="button"] {
	display: inline-block;
	padding: 12px 24px;
	font-size: var(--font-size-base);
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	border: none;
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: all 0.3s ease;
}

.button-primary,
button.button-primary {
	background-color: var(--color-primary);
	color: #fff;
}

.button-primary:hover,
button.button-primary:hover {
	background-color: var(--color-primary-dark);
	color: #fff;
	text-decoration: none;
}

.button-secondary,
button.button-secondary {
	background-color: transparent;
	color: var(--color-primary);
	border: 2px solid var(--color-primary);
}

.button-secondary:hover,
button.button-secondary:hover {
	background-color: var(--color-primary);
	color: #fff;
	text-decoration: none;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
	background-color: var(--color-bg);
	border-bottom: 1px solid var(--color-border);
}

/* Utility Bar */
.utility-bar {
	background-color: var(--color-primary-dark);
	color: #fff;
	border-bottom: 1px solid var(--color-border);
	padding: 10px 0;
	font-size: var(--font-size-sm);
	text-align: center;
}

.utility-bar-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
	display: flex;
	justify-content: center;
	align-items: center;
}

.utility-bar-message {
	color: #fff;
	font-weight: 500;
}

.utility-bar-left ul {
	list-style: none;
	display: flex;
	gap: var(--spacing-md);
	margin: 0;
	padding: 0;
}

.utility-bar-left a {
	color: var(--color-text-light);
	text-decoration: none;
}

.utility-bar-left a:hover {
	color: var(--color-text);
}

.utility-bar-right {
	display: flex;
	gap: var(--spacing-sm);
	align-items: center;
}

.utility-link {
	color: var(--color-text);
	text-decoration: none;
	font-size: var(--font-size-sm);
	padding: 4px 8px;
}

.utility-link:hover {
	color: var(--color-primary);
	text-decoration: none;
}

.utility-link-primary {
	background-color: var(--color-primary);
	color: #fff;
	border-radius: var(--border-radius);
	padding: 6px 16px;
}

.utility-link-primary:hover {
	background-color: var(--color-primary-dark);
	color: #fff;
}

/* Header Main */
.header-main {
	padding: calc(var(--spacing-md) * 0.7) 0; /* 30% reduction: 2rem * 0.7 = 1.4rem */
	background-color: var(--color-bg);
	border-bottom: 1px solid var(--color-border);
}

.header-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
	display: grid;
	grid-template-columns: auto auto 1fr auto;
	gap: var(--spacing-lg);
	align-items: center;
}

.header-location {
	display: flex;
	align-items: center;
	gap: 4px;
	cursor: pointer;
	color: var(--color-text);
	font-weight: 500;
}

.header-location:hover {
	color: var(--color-primary);
}

.location-icon {
	font-size: 0.75rem;
}

.header-search {
	flex: 1;
	max-width: 600px;
	margin: 0 auto;
}

.header-search .search-form {
	display: flex;
	width: 100%;
}

.header-search .search-field {
	flex: 1;
	padding: 10px 16px;
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius);
	font-size: var(--font-size-base);
}

.header-search .search-field:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

.header-search .search-submit {
	padding: 10px 20px;
	background-color: var(--color-primary);
	color: #fff;
	border: none;
	border-radius: 0 var(--border-radius) var(--border-radius) 0;
	cursor: pointer;
	margin-left: -1px;
}

.header-search .search-submit:hover {
	background-color: var(--color-primary-dark);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
}

.header-action-link {
	color: var(--color-text);
	text-decoration: none;
	font-weight: 500;
	font-size: var(--font-size-base);
	padding: 8px 0;
	transition: color 0.3s ease;
}

.header-action-link:hover {
	color: var(--color-primary);
	text-decoration: none;
}

.site-branding {
	flex-shrink: 0;
}

/* Fix logo container alignment */
.header-logo-left {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 100%;
}

.site-title {
	margin: 0;
	font-size: var(--font-size-2xl);
	font-weight: 600;
}

.site-title a {
	color: var(--color-text);
	text-decoration: none;
}

.site-title a:hover {
	text-decoration: none;
}

.custom-logo-link {
	display: block;
}

.custom-logo {
	max-height: 60px;
	width: auto;
}

/* Navigation */
.main-navigation {
	flex: 1;
	display: flex;
	justify-content: center;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: var(--spacing-md);
	align-items: center;
}

.main-navigation a {
	color: var(--color-text);
	text-decoration: none;
	font-weight: 500;
	font-size: var(--font-size-base);
	padding: 8px 0;
	transition: color 0.3s ease;
}

.main-navigation a:hover,
.main-navigation a:focus {
	color: var(--color-primary);
	text-decoration: none;
}

/* Products Mega Menu */
.products-mega-menu {
	position: relative;
}

.products-menu-toggle {
	background: none;
	border: none;
	color: var(--color-text);
	font-weight: 500;
	font-size: var(--font-size-base);
	cursor: pointer;
	padding: 8px 0;
	display: flex;
	align-items: center;
	gap: 4px;
}

.products-menu-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	padding: var(--spacing-sm);
	min-width: 250px;
	z-index: 1000;
	margin-top: 8px;
}

.products-mega-menu:hover .products-menu-dropdown,
.products-menu-toggle[aria-expanded="true"] + .products-menu-dropdown {
	display: block;
}

.products-menu-dropdown ul {
	flex-direction: column;
	gap: 0;
}

.products-menu-dropdown li {
	border-bottom: 1px solid var(--color-border);
}

.products-menu-dropdown li:last-child {
	border-bottom: none;
}

.products-menu-dropdown a {
	display: block;
	padding: 12px 16px;
}

/* Header Actions */
.header-actions {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
}

.search-form {
	display: flex;
	align-items: center;
}

.search-form input[type="search"] {
	padding: 8px 12px;
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius);
	font-size: var(--font-size-sm);
}

.header-cart {
	position: relative;
}

.cart-contents {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background-color: var(--color-primary);
	color: #fff;
	border-radius: var(--border-radius);
	text-decoration: none;
}

.cart-contents:hover {
	background-color: var(--color-primary-dark);
	text-decoration: none;
}

.cart-count {
	background-color: #fff;
	color: var(--color-primary);
	padding: 2px 8px;
	border-radius: 12px;
	font-size: var(--font-size-sm);
	font-weight: 600;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

/* ==========================================================================
   Homepage Sections
   ========================================================================== */

/* Hero Section */
.home-hero {
	padding: var(--spacing-xl) 0;
	background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.hero-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.hero-headline {
	font-size: var(--font-size-5xl);
	font-weight: 700;
	margin-bottom: var(--spacing-md);
	color: var(--color-text);
	line-height: 1.1;
}

.hero-subhead {
	font-size: var(--font-size-xl);
	color: var(--color-text-light);
	margin-bottom: var(--spacing-lg);
}

.hero-actions {
	display: flex;
	gap: var(--spacing-sm);
	flex-wrap: wrap;
}

/* Features Section */
.home-features {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-bg);
}

.features-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: var(--spacing-lg);
}

.feature-tile {
	text-align: center;
	padding: var(--spacing-md);
}

.feature-icon {
	margin-bottom: var(--spacing-sm);
	font-size: var(--font-size-4xl);
}

.feature-title {
	font-size: var(--font-size-xl);
	font-weight: 600;
	margin-bottom: var(--spacing-xs);
}

.feature-description {
	color: var(--color-text-light);
	margin-bottom: var(--spacing-sm);
}

.feature-link {
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 500;
}

.feature-link:hover {
	text-decoration: underline;
}

/* Value Strip */
.home-value-strip {
	padding: var(--spacing-lg) 0;
	background-color: #1a1a1a;
	color: #fff;
}

.value-strip-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.value-intro {
	font-size: var(--font-size-lg);
	margin-bottom: var(--spacing-sm);
	text-align: center;
}

.value-items {
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: var(--spacing-md);
	margin: 0;
	padding: 0;
}

.value-items li {
	position: relative;
	padding-left: 20px;
}

.value-items li::before {
	content: "▼";
	position: absolute;
	left: 0;
	color: #fff;
}

/* Products Section */
.home-products {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-bg);
}

.products-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.products-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--spacing-lg);
}

.products-title {
	font-size: var(--font-size-4xl);
	font-weight: 700;
	margin: 0;
}

.products-categories {
	display: flex;
	flex-wrap: wrap;
	gap: var(--spacing-xs);
	margin-bottom: var(--spacing-lg);
}

.category-pill {
	display: inline-block;
	padding: 8px 16px;
	background-color: var(--color-bg-light);
	color: var(--color-text);
	border-radius: 20px;
	text-decoration: none;
	font-size: var(--font-size-sm);
	font-weight: 500;
	transition: all 0.3s ease;
}

.category-pill:hover {
	background-color: var(--color-primary);
	color: #fff;
	text-decoration: none;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: var(--spacing-lg);
	list-style: none;
	margin: 0;
	padding: 0;
}

.product-item {
	background-color: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-item img {
	width: 100%;
	height: auto;
	display: block;
}

.product-item .product-title {
	font-size: var(--font-size-lg);
	margin: var(--spacing-sm);
}

.product-meta {
	margin: 0 var(--spacing-sm) var(--spacing-sm);
	font-size: var(--font-size-sm);
	color: var(--color-text-light);
}

.product-strength,
.product-form {
	display: inline-block;
	margin-right: var(--spacing-xs);
}

/* Quality Section */
.home-quality {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-bg-light);
}

.quality-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
	text-align: center;
}

.quality-title {
	font-size: var(--font-size-4xl);
	font-weight: 700;
	margin-bottom: var(--spacing-md);
}

.quality-description {
	font-size: var(--font-size-lg);
	color: var(--color-text-light);
	margin-bottom: var(--spacing-lg);
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.quality-stat {
	font-size: var(--font-size-xl);
	font-weight: 600;
	margin-top: var(--spacing-md);
	color: var(--color-text-light);
}

/* Differentiators Section */
.home-differentiators {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-bg);
}

.differentiators-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.differentiators-title {
	font-size: var(--font-size-4xl);
	font-weight: 700;
	margin-bottom: var(--spacing-xl);
	text-align: center;
}

.differentiators-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--spacing-lg);
}

.differentiator-card {
	padding: var(--spacing-md);
}

.diff-number {
	display: block;
	font-size: var(--font-size-2xl);
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: var(--spacing-xs);
}

.diff-title {
	font-size: var(--font-size-xl);
	font-weight: 600;
	margin-bottom: var(--spacing-sm);
}

.diff-description {
	color: var(--color-text-light);
	line-height: 1.6;
}

/* Testimonial Section */
.home-testimonial {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-primary);
	color: #fff;
}

.testimonial-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
	text-align: center;
}

.testimonial-quote {
	font-size: var(--font-size-2xl);
	font-style: italic;
	margin-bottom: var(--spacing-lg);
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.testimonial-author {
	margin-top: var(--spacing-md);
}

.testimonial-name {
	font-size: var(--font-size-xl);
	font-weight: 600;
	font-style: normal;
	display: block;
	margin-bottom: var(--spacing-xs);
}

.testimonial-meta {
	font-size: var(--font-size-base);
	opacity: 0.9;
}

.testimonial-title,
.testimonial-org,
.testimonial-location {
	display: inline-block;
	margin: 0 var(--spacing-xs);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
	background-color: #1a1a1a;
	color: #fff;
	padding: 4rem 0 2rem;
	margin-top: 0;
}

.footer-container {
	max-width: var(--container-max-width-eden);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.footer-main {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-branding {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-site-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin: 0;
	color: #fff;
}

.footer-site-title .logo-pharmacy {
	color: #fff;
}

.footer-site-title .logo-time {
	color: #2b65c5;
	font-weight: 300;
}

.footer-tagline {
	font-size: var(--font-size-base);
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

.footer-email-signup {
	display: flex;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.footer-email-input {
	flex: 1;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 0.5rem;
	background-color: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: var(--font-size-base);
}

.footer-email-input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.footer-email-input:focus {
	outline: none;
	border-color: var(--color-primary);
	background-color: rgba(255, 255, 255, 0.15);
}

.footer-email-submit {
	padding: 0.75rem 1.5rem;
	background-color: #fff;
	color: #000;
	border: none;
	border-radius: 0.5rem;
	font-weight: 600;
	font-size: var(--font-size-base);
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.footer-email-submit:hover {
	background-color: rgba(255, 255, 255, 0.9);
}

.footer-email-disclaimer {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.5;
	margin: 0.5rem 0 0;
}

.footer-email-disclaimer a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: underline;
}

.footer-email-disclaimer a:hover {
	color: #fff;
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-column-title {
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #fff;
	margin: 0 0 0.5rem;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-links li {
	margin: 0;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: var(--font-size-base);
	transition: color 0.2s ease;
}

.footer-links a:hover {
	color: #fff;
}

.footer-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-navigation a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	display: block;
	padding: 4px 0;
}

.footer-navigation a:hover {
	color: #fff;
	text-decoration: none;
}

.footer-contact {
	font-size: var(--font-size-sm);
}

.footer-contact strong {
	display: block;
	margin-bottom: var(--spacing-xs);
	color: #fff;
}

.footer-contact p {
	margin-bottom: var(--spacing-sm);
	color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
	color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
	color: #fff;
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.footer-social {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.footer-social-link {
	color: rgba(255, 255, 255, 0.7);
	transition: color 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
}

.footer-social-link:hover {
	color: #fff;
}

.footer-social-link svg,
.footer-social-icon {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.social-link {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	padding: 8px;
}

.social-link:hover {
	color: #fff;
	text-decoration: none;
}

.footer-badges {
	display: flex;
	gap: 1.5rem;
	align-items: center;
	flex-wrap: wrap;
}

.footer-badge {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 0.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	min-height: 56px; /* keep badges visually consistent height */
	box-sizing: border-box;
}

.footer-badge-legitscript {
	background-color: rgba(0, 102, 204, 0.1);
	border-color: rgba(0, 102, 204, 0.3);
}

.footer-badge-legitscript svg {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.footer-badge-legitscript span {
	font-size: 0.875rem;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
	line-height: 1.2;
}

.footer-badge-usa {
	background-color: rgba(255, 255, 255, 0.05);
}

.footer-badge-usa svg {
	width: 32px;
	height: 20px;
	flex-shrink: 0;
}

.footer-badge-text {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.2;
}

.footer-badge-text span:first-child {
	font-weight: 600;
}

.footer-copyright {
	text-align: center;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}

/* ==========================================================================
   WooCommerce Shop Page
   ========================================================================== */

.shop-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: var(--spacing-md) var(--container-padding);
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: var(--spacing-lg);
}

.shop-sidebar {
	position: sticky;
	top: 20px;
	height: fit-content;
}

.shop-filters {
	background-color: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius-xl); /* Match homepage cards - 1.5rem (24px) */
	padding: var(--spacing-md);
}

.filter-search-wrapper {
	position: relative;
	margin-top: var(--spacing-md); /* Add space above search bar (below FILTERS toggle) */
	margin-bottom: var(--spacing-md);
}

.filter-search {
	width: 100%;
	padding: 0.75rem 2.5rem 0.75rem 1rem;
	border: 1px solid var(--color-border);
	border-radius: 9999px; /* Fully rounded to match homepage inputs */
	font-size: var(--font-size-sm);
	color: var(--color-text);
	background-color: #fff;
}

.filter-search:focus {
	outline: none;
	border-color: var(--color-primary);
}

.filter-search-icon {
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--color-text-light);
	pointer-events: none;
}

.filter-results-count {
	font-size: var(--font-size-sm);
	color: var(--color-text-light);
	margin-bottom: var(--spacing-md);
	font-weight: 500;
}

.filters-title {
	font-size: var(--font-size-xl);
	font-weight: 700;
	margin: 0 0 var(--spacing-md) 0;
	color: var(--color-text);
}

.filter-section {
	margin-bottom: var(--spacing-md);
	padding-bottom: var(--spacing-md);
	border-bottom: 1px solid var(--color-border);
}

.filter-section:last-of-type {
	border-bottom: none;
}

.filter-section-title {
	font-size: var(--font-size-sm);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 0 0 var(--spacing-sm) 0;
	color: var(--color-text);
}

.filter-list {
	list-style: none;
	margin: 0;
	padding: 0;
	/* Limit to 4 visible items, rest scrollable */
	max-height: calc(4 * (1.5rem + var(--spacing-xs))); /* 4 items + spacing */
	overflow-x: hidden;
	position: relative;
	/* Smooth scrolling */
	scroll-behavior: smooth;
	/* Custom scrollbar styling - make it always visible */
	scrollbar-width: thin;
	scrollbar-color: #64748b #e2e8f0; /* Darker thumb, visible track - always visible */
	/* Force scrollbar to always be visible (not auto-hide) */
	overflow-y: scroll !important; /* Use 'scroll' instead of 'auto' to always show scrollbar */
}

/* Webkit scrollbar styling - make it always visible */
.filter-list::-webkit-scrollbar {
	width: 10px !important; /* Wider for better visibility */
	-webkit-appearance: none !important; /* Remove default styling */
	display: block !important; /* Force display */
}

.filter-list::-webkit-scrollbar-track {
	background: #e2e8f0 !important; /* Light gray track - always visible */
	border-radius: 5px;
	border: 1px solid #cbd5e1 !important; /* Border for better definition */
	display: block !important; /* Force display */
}

.filter-list::-webkit-scrollbar-thumb {
	background-color: #64748b !important; /* Darker gray thumb - always visible */
	border-radius: 5px;
	border: 1px solid #475569 !important; /* Darker border for definition */
	min-height: 20px !important; /* Minimum thumb size */
	display: block !important; /* Force display */
}

.filter-list::-webkit-scrollbar-thumb:hover {
	background-color: #475569 !important; /* Even darker on hover */
}

/* Ensure scrollbar is always visible on all filter lists */
.filter-section .filter-list {
	overflow-y: scroll !important;
}

/* Add fade gradient at bottom to indicate more items */
.filter-list::after {
	content: '';
	position: sticky;
	bottom: 0;
	left: 0;
	right: 0;
	height: 20px;
	background: linear-gradient(to bottom, transparent, var(--color-bg));
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s ease;
}

/* Show fade when list is scrollable */
.filter-list:not(:hover)::after {
	opacity: 1;
}

.filter-list li {
	margin-bottom: var(--spacing-xs);
	line-height: 1.5;
}

.filter-list label {
	display: flex;
	align-items: center;
	gap: var(--spacing-xs);
	font-size: var(--font-size-sm);
	color: var(--color-text);
	cursor: pointer;
}

.filter-checkbox {
	margin: 0;
	cursor: pointer;
}

.filter-checkbox:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.filter-list li.filter-option-disabled,
.filter-list label.filter-option-disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.filter-list label:has(input:disabled) {
	color: var(--color-text-light);
	cursor: not-allowed;
}

.clear-filters {
	width: 100%;
	padding: 0.75rem 1.25rem;
	background-color: var(--color-text);
	color: #fff;
	border: none;
	border-radius: 9999px; /* Fully rounded to match homepage buttons */
	font-size: var(--font-size-sm);
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
	margin-top: var(--spacing-md);
	min-height: 2.5rem; /* Better touch target */
}

.clear-filters:hover {
	background-color: var(--color-primary);
}

.shop-main {
	min-width: 0; /* Prevents grid overflow */
	width: 100%;
	overflow: hidden; /* Prevent horizontal overflow */
}

.woocommerce-products-header {
	margin-bottom: var(--spacing-lg);
}

.woocommerce-products-header__title {
	font-size: var(--font-size-4xl);
	font-weight: 700;
	margin: 0 0 var(--spacing-sm) 0;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.page-title-icon {
	flex-shrink: 0;
	color: var(--color-primary);
}

.page-title-icon-img {
	width: 1.89rem;
	height: 1.89rem;
	object-fit: contain;
	opacity: 0.95;
}

/* Match the menu's per-category icon sizing tweaks */
.term-sexual-wellness .page-title-icon-img { width: 1.45rem; height: 1.45rem; }
.term-injectable-supplies .page-title-icon-img { width: 2.02rem; height: 2.02rem; }
.term-vitality .page-title-icon-img { width: 2.17rem; height: 2.17rem; }

.shop-results-count {
	font-size: var(--font-size-base);
	color: var(--color-text-light);
	margin-bottom: var(--spacing-md);
}

/* Custom results bar with count and sorting side-by-side */
.shop-results-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.shop-results-text {
	font-size: 0.875rem;
	color: var(--color-text-light);
	font-weight: 400;
}

/* Improved ordering dropdown styling to match homepage aesthetic */
.woocommerce-ordering {
	margin: 0;
}

.woocommerce-ordering select.orderby {
	padding: 0.625rem 2.5rem 0.625rem 1rem;
	font-size: 0.875rem;
	font-weight: 500;
	border: 1px solid #e4e4e7;
	border-radius: 9999px;
	background-color: #fff;
	color: var(--color-text);
	cursor: pointer;
	transition: all 0.2s ease;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%23374151' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 12px 12px;
	min-height: 2.5rem; /* Larger touch target */
	min-width: 160px;
}

.woocommerce-ordering select.orderby:hover {
	border-color: #c084fc;
	background-color: #fafafa;
}

.woocommerce-ordering select.orderby:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* Product grid: 3 columns by default */
.woocommerce .products-grid,
.woocommerce ul.products,
.woocommerce ul.products.columns-3,
.woocommerce ul.products.columns-4 {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: var(--spacing-lg) !important;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	box-sizing: border-box;
	/* Ensure grid items start at column 1 */
	grid-auto-flow: row !important;
}

/* Force first product item to start at column 1 */
.woocommerce ul.products > li:first-child,
.woocommerce ul.products > li.product:first-child,
.woocommerce ul.products > li.product-item:first-child {
	grid-column-start: 1 !important;
	grid-column-end: auto !important;
}

/* Override WooCommerce default column classes */
.woocommerce ul.products.columns-1 {
	grid-template-columns: 1fr !important;
}

.woocommerce ul.products.columns-2 {
	grid-template-columns: repeat(2, 1fr) !important;
}

.woocommerce ul.products.columns-3 {
	grid-template-columns: repeat(3, 1fr) !important;
}

.woocommerce ul.products.columns-4 {
	grid-template-columns: repeat(3, 1fr) !important; /* Force 3 even if WC says 4 */
}

.woocommerce ul.products.columns-5,
.woocommerce ul.products.columns-6 {
	grid-template-columns: repeat(3, 1fr) !important; /* Force 3 even if WC says 5 or 6 */
}

/* Responsive: 2 columns on tablets (only below 968px) */
@media (max-width: 967px) {
	.woocommerce .products-grid,
	.woocommerce ul.products,
	.woocommerce ul.products.columns-3,
	.woocommerce ul.products.columns-4 {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

/* Responsive: 2 columns on mobile */
@media (max-width: 640px) {
	.woocommerce .products-grid,
	.woocommerce ul.products,
	.woocommerce ul.products.columns-3,
	.woocommerce ul.products.columns-4 {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 1rem !important; /* Increased gap for better spacing between cards */
		row-gap: 1.5rem !important; /* Extra vertical spacing between rows */
	}
}

.woocommerce .product,
.woocommerce ul.products li.product,
.woocommerce ul.products li.product-item {
	background-color: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius-xl); /* Match homepage cards - 1.5rem (24px) */
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	/* Force grid item behavior - override WooCommerce float layout */
	display: flex !important;
	flex-direction: column !important;
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: var(--spacing-md);
	box-sizing: border-box;
	/* Ensure no grid column offset */
	grid-column: auto !important;
	grid-row: auto !important;
}

/* Mobile: Adjust product card padding for better spacing */
@media (max-width: 640px) {
	.woocommerce .product,
	.woocommerce ul.products li.product,
	.woocommerce ul.products li.product-item {
		padding: 1rem; /* Consistent padding on mobile */
	}
}

/* Hide any invisible or empty first elements */
.woocommerce ul.products > li:empty,
.woocommerce ul.products > li[style*="display: none"],
.woocommerce ul.products > li.hidden {
	display: none !important;
}

.woocommerce .product:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.woocommerce .product img {
	width: 100%;
	height: auto;
	display: block;
	margin-bottom: var(--spacing-sm);
	border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0; /* Match card border-radius */
}

.woocommerce .product .woocommerce-loop-product__title {
	font-size: 0.8125rem; /* Reduced to 13px - smaller title size */
	font-weight: 700; /* Bold as requested */
	margin: 0.5rem 0 0.375rem 0; /* Reduced margins for less space */
	color: var(--color-text);
	line-height: 1.3; /* Tighter line height */
	/* Removed min-height to allow natural sizing */
}

.woocommerce .product .woocommerce-loop-product__title a {
	color: var(--color-text);
	text-decoration: none;
	transition: color 0.2s ease;
}

.woocommerce .product .woocommerce-loop-product__title a:hover {
	color: var(--color-primary);
}

.woocommerce .product .price {
	margin: var(--spacing-xs) 0 var(--spacing-sm) 0;
	font-size: var(--font-size-lg);
	font-weight: 700;
	color: #000;
	line-height: 1.2;
}

.woocommerce .product .price bdi {
	color: #000;
}

/* Product Badges */
.product-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.375rem; /* Reduced gap for tighter alignment */
	margin: 0 0 0.5rem 0; /* Reduced bottom margin */
	padding: 0;
}

.product-badge {
	display: inline-block;
	padding: 0.1875rem 0.625rem; /* Slightly smaller padding */
	border-radius: 1rem;
	font-size: 0.625rem; /* Reduced from 0.75rem to 10px - smaller than title */
	font-weight: 400; /* Not bold as requested */
	text-transform: uppercase;
	letter-spacing: 0.025em;
	line-height: 1.3; /* Tighter line height */
}

.product-badge-form {
	background-color: #e0e7ff;
	color: #3730a3;
}

.product-badge-strength {
	background-color: #fef3c7;
	color: #92400e;
}

.product-badge-size {
	background-color: #dbeafe;
	color: #1e40af;
}

.product-badge-stock {
	font-weight: 500; /* Reduced from 700 to 500 for consistency (still slightly heavier but not bold) */
}

.product-badge-stock--in {
	background-color: #d1fae5;
	color: #065f46;
}

.product-badge-stock--out {
	background-color: #fee2e2;
	color: #991b1b;
}

/* Product action buttons container */
.product-actions {
	display: flex;
	flex-direction: column;
	gap: 0.0625rem; /* Very tight spacing - 1px gap to bring buttons much closer together */
	margin-top: var(--spacing-sm);
}

/* Product buttons - Start intake and View product */
.product-button,
.woocommerce .product .product-button {
	display: block;
	width: 100%;
	padding: 0.875rem 1.25rem;
	border: none;
	border-radius: 9999px; /* Fully rounded to match homepage buttons */
	font-size: var(--font-size-sm);
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	transition: background-color 0.3s ease, transform 0.2s ease, color 0.2s ease;
	cursor: pointer;
	box-sizing: border-box;
}

/* Start intake button - primary action (blue) */
.woocommerce .product .product-button-intake,
.woocommerce ul.products .product-button-intake,
.product-button.product-button-intake,
a.product-button.product-button-intake {
	background-color: #0066cc !important;
	color: #fff !important;
	border: 1px solid #0066cc !important;
}

.woocommerce .product .product-button-intake:hover,
.woocommerce ul.products .product-button-intake:hover,
.product-button.product-button-intake:hover,
a.product-button.product-button-intake:hover {
	background-color: #0052a3 !important;
	color: #fff !important;
	border-color: #0052a3 !important;
	text-decoration: none !important;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* View product button - secondary action (black) */
.woocommerce .product .product-button-view,
.woocommerce ul.products .product-button-view,
.product-button.product-button-view,
a.product-button.product-button-view {
	background-color: #000 !important;
	color: #fff !important;
	border: 1px solid #000 !important;
}

.woocommerce .product .product-button-view:hover,
.woocommerce ul.products .product-button-view:hover,
.product-button.product-button-view:hover,
a.product-button.product-button-view:hover {
	background-color: #333 !important;
	color: #fff !important;
	border-color: #333 !important;
	text-decoration: none !important;
	transform: translateY(-1px);
}

/* Hide WooCommerce default add to cart buttons */
.woocommerce .product .add_to_cart_button,
.woocommerce .product .button.add_to_cart_button {
	display: none !important;
}

/* ==========================================================================
   WooCommerce Pagination Spacing
   ========================================================================== */

.woocommerce-pagination,
.woocommerce nav.woocommerce-pagination {
	margin-top: var(--spacing-lg);
	padding-top: var(--spacing-md);
}

/* Reduce spacing on mobile */
@media (max-width: 768px) {
	.woocommerce-pagination,
	.woocommerce nav.woocommerce-pagination {
		margin-top: var(--spacing-md);
		padding-top: var(--spacing-sm);
	}
}

/* ==========================================================================
   Product Attributes Panel
   ========================================================================== */

.product-attributes-panel {
	background-color: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius-lg);
	padding: var(--spacing-md);
	margin: var(--spacing-lg) 0;
}

.attributes-title {
	font-size: var(--font-size-2xl);
	font-weight: 700;
	margin: 0 0 var(--spacing-md) 0;
	color: var(--color-text);
}

.attributes-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: var(--spacing-sm);
	margin-bottom: var(--spacing-md);
}

.attribute-item {
	display: flex;
	align-items: center;
	gap: var(--spacing-xs);
	padding: var(--spacing-xs) 0;
	border-bottom: 1px solid var(--color-border);
}

.attribute-item:last-child {
	border-bottom: none;
}

.attribute-label {
	font-weight: 600;
	color: var(--color-text);
	min-width: 150px;
}

.attribute-value {
	color: var(--color-text-light);
	background-color: var(--color-bg-light);
	padding: 4px 12px;
	border-radius: var(--border-radius);
	font-size: var(--font-size-sm);
}

.attribute-section {
	margin-top: var(--spacing-md);
	padding-top: var(--spacing-md);
	border-top: 2px solid var(--color-border);
}

.attribute-section-title {
	font-size: var(--font-size-lg);
	font-weight: 600;
	margin: 0 0 var(--spacing-xs) 0;
	color: var(--color-text);
}

.attribute-section-content {
	margin: 0;
	color: var(--color-text-light);
	line-height: 1.6;
}

.attribute-section-content p {
	margin-bottom: var(--spacing-xs);
}

@media (max-width: 968px) {
	.shop-container {
		display: flex;
		flex-direction: column;
		grid-template-columns: none;
		padding: 1rem var(--container-padding); /* Reduced from var(--spacing-md) */
		gap: 0; /* Remove gap between flex items */
	}
	
	/* Make shop-main use contents display so its children can be reordered */
	.shop-main {
		display: contents;
		order: 1;
	}
	
	/* Title header comes first */
	.shop-main .woocommerce-products-header {
		order: 1;
		width: 100%;
		margin-top: 1.5rem; /* Add spacing from site header */
		margin-bottom: 0.75rem !important; /* Reduced from var(--spacing-lg) */
	}
	
	.woocommerce-products-header__title {
		margin-bottom: 0.5rem !important; /* Reduced spacing */
	}
	
	/* Filters come second, right after title */
	.shop-sidebar {
		position: static;
		order: 2;
		width: 100%;
		margin-bottom: 0.75rem; /* Add small gap after filters */
	}
	
	.shop-filters {
		padding: 0.75rem !important; /* Reduced from var(--spacing-md) */
	}
	
	.filter-search-wrapper {
		margin-top: 0.75rem !important; /* Space below FILTERS toggle */
		margin-bottom: 0.75rem !important; /* Reduced from var(--spacing-md) */
	}
	
	.filter-results-count {
		margin-bottom: 0.5rem !important; /* Reduced spacing */
	}
	
	.filter-section {
		margin-bottom: 0.75rem !important; /* Reduced from var(--spacing-md) */
		padding-bottom: 0.75rem !important; /* Reduced from var(--spacing-md) */
	}
	
	.filter-list {
		max-height: calc(4 * (1.5rem + 0.25rem)); /* 4 items on mobile */
	}
	
	.shop-results-bar {
		margin-bottom: 0.75rem !important; /* Reduced spacing */
		gap: 0.75rem;
	}
	
	.shop-results-text {
		font-size: 0.8125rem; /* Slightly smaller on mobile */
	}
	
	.woocommerce-ordering select.orderby {
		min-height: 2.75rem; /* Larger touch target on mobile */
		font-size: 0.875rem;
		padding: 0.75rem 2.5rem 0.75rem 1rem;
	}
	
	/* Products come third, after filters */
	.shop-main .woocommerce-products-header ~ *,
	.shop-main > *:not(.woocommerce-products-header) {
		order: 3;
		width: 100%;
	}
	
	.attributes-grid {
		grid-template-columns: 1fr;
	}
	
	.attribute-label {
		min-width: 120px;
	}
}

/* Mobile-first: Hide toggle button by default, collapsed filter content */
.shop-filters__toggle {
	display: none;
}

.shop-filters__content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}

/* Mobile + Tablet: Show toggle and make filter collapsible */
@media (max-width: 1024px) {
	.shop-filters {
		border: 1px solid var(--color-border);
		border-radius: var(--border-radius-xl); /* Match homepage cards */
		overflow: hidden;
	}
	
	.shop-filters__toggle {
		display: flex; /* Show toggle on mobile */
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 0.625rem 1rem; /* Reduced from 1rem to make it more compact */
		background-color: var(--color-bg);
		border: none;
		border-bottom: 1px solid var(--color-border);
		cursor: pointer;
		font-size: 0.875rem; /* Reduced from base size */
		font-weight: 600;
		text-transform: uppercase;
		color: var(--color-text);
		transition: background-color 0.2s ease;
		min-height: 44px; /* Ensure touch target is adequate */
	}
	
	.shop-filters__toggle:hover {
		background-color: var(--color-bg-light);
	}
	
	.shop-filters__toggle-icon {
		transition: transform 0.3s ease;
		width: 20px;
		height: 20px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.shop-filters__toggle-icon svg {
		width: 100%;
		height: 100%;
	}
	
	.shop-filters--expanded .shop-filters__toggle-icon {
		transform: rotate(180deg);
	}
	
	.shop-filters--expanded .shop-filters__content {
		max-height: 2000px; /* Large enough to accommodate all filters */
		transition: max-height 0.5s ease-in;
	}
}

/* Desktop (large): Always show filter content, hide toggle */
@media (min-width: 1025px) {
	.shop-filters__toggle {
		display: none !important;
	}
	
	.shop-filters__content {
		max-height: none !important;
		overflow: visible !important;
	}
	
	/* Force expanded state on desktop */
	.shop-filters.shop-filters--expanded .shop-filters__content,
	.shop-filters .shop-filters__content {
		max-height: none !important;
		overflow: visible !important;
	}
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
	:root {
		--font-size-5xl: 2.5rem;
		--font-size-4xl: 2rem;
		--font-size-3xl: 1.75rem;
		--container-padding: 32px;
	}
	
	.utility-bar-container {
		flex-direction: column;
		gap: var(--spacing-xs);
		text-align: center;
	}
	
	.utility-bar-message {
		font-size: 0.7rem; /* Smaller font size for mobile to fit on one line */
		line-height: 1.3;
	}
	
	.header-container {
		flex-wrap: wrap;
	}
	
	.main-navigation {
		order: 3;
		width: 100%;
		margin-top: var(--spacing-sm);
	}
	
	.main-navigation ul {
		flex-direction: column;
		width: 100%;
		gap: 0;
	}
	
	.main-navigation li {
		width: 100%;
		border-bottom: 1px solid var(--color-border);
	}
	
	.main-navigation a {
		display: block;
		padding: var(--spacing-sm);
	}
	
	.menu-toggle {
		display: block;
	}
	
	.hero-headline {
		font-size: var(--font-size-3xl);
	}
	
	.features-grid,
	.differentiators-grid {
		grid-template-columns: 1fr;
	}
	
	.products-header {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--spacing-sm);
	}
	
	.footer-main {
		grid-template-columns: 1fr;
		gap: 2rem;
		margin-bottom: 2rem;
		padding-bottom: 2rem;
	}
	
	.footer-bottom-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
	}
	
	.footer-social {
		order: 1;
	}
	
	.footer-badges {
		order: 2;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}
	
	.footer-badge {
		width: 100%;
		justify-content: flex-start;
	}
	
	.footer-copyright {
		order: 3;
		text-align: left;
	}
}

/* ==========================================================================
   New Homepage Sections - PHARMACY TIME
   ========================================================================== */

/* Section Title */
.section-title {
	font-size: var(--font-size-3xl);
	font-weight: 700;
	margin-bottom: var(--spacing-lg);
	color: var(--color-text);
}

/* Hero Pharmacy Section */
.home-hero-pharmacy {
	padding: var(--spacing-xl) 0;
	background: linear-gradient(to bottom, #e8f5e9 0%, #ffffff 100%) !important;
	background-color: #e8f5e9;
}

.hero-pharmacy-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.hero-pharmacy-content {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: var(--spacing-xl);
	align-items: center;
	min-height: 500px;
}

.hero-pharmacy-left,
.hero-pharmacy-center,
.hero-pharmacy-right {
	display: flex;
	flex-direction: column;
}

.hero-pharmacy-left {
	justify-content: center;
}

.hero-pharmacy-center {
	justify-content: center;
	align-items: center;
}

.hero-pharmacy-right {
	justify-content: center;
	align-items: center;
}

.hero-pharmacy-title {
	font-size: 5rem;
	font-weight: 700;
	color: #2e7d32;
	margin-bottom: var(--spacing-md);
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.hero-pharmacy-description {
	font-size: var(--font-size-base);
	color: var(--color-text);
	margin-bottom: var(--spacing-md);
	line-height: 1.6;
	max-width: 500px;
}

.hero-pharmacy-badges {
	display: flex;
	gap: var(--spacing-md);
	flex-wrap: wrap;
}

.hero-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	background-color: var(--color-primary-lightest);
	padding: 8px 16px;
	border-radius: var(--border-radius);
}

.badge-icon {
	color: var(--color-primary);
	font-weight: bold;
}

.hero-pharmacist-image,
.hero-pharmacist-placeholder {
	width: 280px;
	height: 380px;
	object-fit: cover;
	border-radius: var(--border-radius-lg);
	box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.hero-pharmacist-placeholder {
	background-color: var(--color-bg-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-text-light);
}

.hero-prescription-card {
	background-color: #fff;
	border: 2px dashed var(--color-primary);
	border-radius: var(--border-radius-lg);
	padding: var(--spacing-lg);
	text-align: center;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	max-width: 300px;
	width: 100%;
}

.prescription-card-icon {
	font-size: 3rem;
	margin-bottom: var(--spacing-sm);
}

.prescription-card-title {
	font-size: var(--font-size-xl);
	font-weight: 600;
	margin-bottom: var(--spacing-xs);
	color: var(--color-text);
}

.prescription-card-text {
	font-size: var(--font-size-sm);
	color: var(--color-text-light);
	margin-bottom: var(--spacing-md);
}

/* Health Conditions Section */
.home-health-conditions {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-bg);
	margin-top: var(--spacing-lg);
}

.health-conditions-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.health-conditions-carousel-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
}

.health-conditions-carousel {
	overflow: hidden;
	width: 100%;
	position: relative;
}

.health-conditions-track {
	display: flex;
	gap: var(--spacing-md);
	transition: transform 0.3s ease;
	will-change: transform;
}

.carousel-btn {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	flex-shrink: 0;
	color: var(--color-text);
}

.carousel-btn:hover {
	background: var(--color-primary);
	color: #fff;
	border-color: var(--color-primary);
}

.carousel-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.carousel-btn svg {
	width: 20px;
	height: 20px;
}

.health-condition-card {
	flex: 0 0 180px;
	background-color: var(--color-bg-light);
	border-radius: var(--border-radius-lg);
	padding: var(--spacing-lg);
	text-align: center;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--spacing-sm);
	min-width: 180px;
	max-width: 180px;
}

.health-condition-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 16px rgba(0,0,0,0.1);
	text-decoration: none;
}

.condition-icon {
	font-size: 3rem;
}

.condition-name {
	font-size: var(--font-size-base);
	font-weight: 600;
	color: var(--color-text);
	margin: 0;
}

/* Today's Deals Section */
.home-todays-deals {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-bg-light);
}

.deals-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.deals-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--spacing-lg);
}

.deals-see-all {
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 600;
}

.deals-see-all:hover {
	text-decoration: underline;
}

.deals-products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: var(--spacing-md);
}

.deal-product-card {
	background-color: #fff;
	border-radius: var(--border-radius-lg);
	padding: var(--spacing-md);
	position: relative;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.deal-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.deal-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: var(--color-primary);
	color: #fff;
	padding: 4px 8px;
	border-radius: var(--border-radius);
	font-size: var(--font-size-sm);
	font-weight: 600;
}

.deal-product-image {
	display: block;
	margin-bottom: var(--spacing-sm);
	width: 100%;
	height: auto;
}

.deal-product-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: var(--border-radius);
}

.deal-product-name {
	font-size: var(--font-size-base);
	font-weight: 600;
	margin-bottom: var(--spacing-xs);
}

.deal-product-name a {
	color: var(--color-text);
	text-decoration: none;
}

.deal-product-price {
	font-size: var(--font-size-lg);
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: var(--spacing-sm);
	flex-grow: 1;
}

.deal-product-card .button {
	margin-top: auto;
	width: 100%;
	text-align: center;
}

/* Prescription Consultation Section */
.home-prescription-consultation {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-bg);
}

.prescription-consultation-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-lg);
}

.prescription-card-large,
.consultation-card-large {
	border-radius: var(--border-radius-lg);
	padding: var(--spacing-lg);
	text-align: center;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.prescription-card-large {
	background-color: var(--color-accent-yellow);
	border: 2px solid var(--color-primary-light);
}

.consultation-card-large {
	background-color: var(--color-accent-orange);
	border: 2px solid var(--color-primary-light);
}

.prescription-card-icon-large {
	font-size: 4rem;
	margin-bottom: var(--spacing-sm);
}

.prescription-card-title-large {
	font-size: var(--font-size-2xl);
	font-weight: 700;
	margin-bottom: var(--spacing-sm);
	color: var(--color-text);
}

.prescription-card-text-large {
	font-size: var(--font-size-base);
	color: var(--color-text);
	margin-bottom: var(--spacing-md);
}

.prescription-card-actions {
	display: flex;
	gap: var(--spacing-sm);
	justify-content: center;
	flex-wrap: wrap;
}

.consultation-image img,
.consultation-placeholder {
	width: 200px;
	height: 200px;
	object-fit: cover;
	border-radius: var(--border-radius);
	margin-bottom: var(--spacing-md);
}

.consultation-placeholder {
	background-color: rgba(255,255,255,0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
}

.consultation-title {
	font-size: var(--font-size-2xl);
	font-weight: 700;
	margin-bottom: var(--spacing-sm);
	color: var(--color-text);
}

.consultation-text {
	font-size: var(--font-size-base);
	color: var(--color-text);
	margin-bottom: var(--spacing-md);
}

/* Featured Brands Section */
.home-featured-brands {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-bg);
}

.brands-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.brands-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--spacing-lg);
}

.brands-see-all {
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 600;
}

.brands-grid {
	display: flex;
	gap: var(--spacing-lg);
	overflow-x: auto;
	justify-content: center;
	flex-wrap: wrap;
}

.brand-logo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background-color: var(--color-bg-light);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--spacing-sm);
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.brand-logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.brand-name {
	font-size: var(--font-size-sm);
	font-weight: 600;
	color: var(--color-text);
	text-align: center;
}

/* Trending Products Section */
.home-trending-products {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-bg-light);
}

.trending-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.trending-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--spacing-lg);
}

.trending-see-all {
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 600;
}

.trending-category-tabs {
	display: flex;
	gap: var(--spacing-sm);
	margin-bottom: var(--spacing-lg);
	flex-wrap: wrap;
	overflow-x: auto;
}

.trending-tab {
	padding: 10px 20px;
	background-color: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius);
	text-decoration: none;
	color: var(--color-text);
	font-weight: 500;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.trending-tab:hover,
.trending-tab.active {
	background-color: var(--color-primary);
	color: #fff;
	border-color: var(--color-primary);
	text-decoration: none;
}

.trending-products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: var(--spacing-md);
}

.trending-product-card {
	background-color: #fff;
	border-radius: var(--border-radius-lg);
	padding: var(--spacing-md);
	position: relative;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.trending-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: var(--color-primary);
	color: #fff;
	padding: 4px 8px;
	border-radius: var(--border-radius);
	font-size: var(--font-size-sm);
	font-weight: 600;
}

.trending-product-name {
	font-size: var(--font-size-base);
	font-weight: 600;
	margin-bottom: var(--spacing-xs);
}

.trending-product-name a {
	color: var(--color-text);
	text-decoration: none;
}

.trending-product-price {
	font-size: var(--font-size-lg);
	font-weight: 700;
	color: var(--color-primary);
}

/* Thematic Health Section */
.home-thematic-health {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-bg);
}

.thematic-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--spacing-lg);
}

.thematic-card {
	border-radius: var(--border-radius-lg);
	padding: var(--spacing-lg);
	text-align: center;
	position: relative;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.thematic-pink {
	background-color: var(--color-accent-pink);
}

.thematic-blue {
	background-color: var(--color-accent-light-blue);
}

.thematic-yellow {
	background-color: var(--color-accent-yellow);
}

.thematic-icon {
	font-size: 4rem;
	margin-bottom: var(--spacing-sm);
}

.thematic-title {
	font-size: var(--font-size-xl);
	font-weight: 700;
	margin-bottom: var(--spacing-sm);
	color: var(--color-text);
}

.thematic-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background-color: var(--color-primary);
	color: #fff;
	padding: 6px 12px;
	border-radius: var(--border-radius);
	font-size: var(--font-size-sm);
	font-weight: 600;
}

.thematic-link {
	margin-top: var(--spacing-md);
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 600;
}

.thematic-link:hover {
	text-decoration: underline;
}

/* Cereal Feature Section */
.home-cereal-feature {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-primary-lightest);
}

.cereal-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-xl);
	align-items: center;
}

.cereal-title {
	font-size: var(--font-size-3xl);
	font-weight: 700;
	margin-bottom: var(--spacing-md);
	color: var(--color-text);
}

.cereal-text {
	font-size: var(--font-size-lg);
	color: var(--color-text);
	margin-bottom: var(--spacing-md);
	line-height: 1.6;
}

.cereal-bullets {
	list-style: none;
	margin: 0 0 var(--spacing-md) 0;
	padding: 0;
}

.cereal-bullets li {
	padding: var(--spacing-xs) 0;
	color: var(--color-text);
	position: relative;
	padding-left: 24px;
}

.cereal-bullets li:before {
	content: "✓" !important;
	position: absolute;
	left: 0;
	color: var(--color-primary);
	font-weight: bold;
}

.cereal-button {
	margin-top: var(--spacing-md);
}

.cereal-image img,
.cereal-placeholder {
	width: 100%;
	max-width: 400px;
	border-radius: var(--border-radius-lg);
}

.cereal-placeholder {
	background-color: var(--color-bg-light);
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 6rem;
}

/* Testimonials Section */
.home-testimonials {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-bg);
}

.testimonials-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.testimonials-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--spacing-lg);
	flex-wrap: wrap;
	gap: var(--spacing-md);
}

.testimonials-rating {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
}

.rating-stars {
	color: var(--color-primary);
	font-size: var(--font-size-xl);
}

.rating-text {
	color: var(--color-text-light);
	font-size: var(--font-size-base);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: var(--spacing-md);
}

.testimonial-card {
	background-color: var(--color-bg-light);
	border-radius: var(--border-radius-lg);
	padding: var(--spacing-md);
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.testimonial-stars {
	color: var(--color-primary);
	margin-bottom: var(--spacing-sm);
}

.star {
	font-size: var(--font-size-lg);
}

.testimonial-text {
	font-size: var(--font-size-base);
	color: var(--color-text);
	margin-bottom: var(--spacing-sm);
	line-height: 1.6;
	font-style: italic;
}

.testimonial-author {
	font-size: var(--font-size-sm);
	color: var(--color-text-light);
	font-weight: 600;
}

/* Promotional Banners Section */
.home-promotional-banners {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-bg-light);
}

.promotional-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-lg);
}

.promotional-card {
	border-radius: var(--border-radius-lg);
	padding: var(--spacing-lg);
	text-align: center;
	position: relative;
	min-height: 250px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.promotional-delivery {
	background-color: var(--color-accent-yellow);
}

.promotional-health-card {
	background-color: var(--color-primary-lightest);
}

.promotional-image img,
.promotional-placeholder {
	width: 150px;
	height: 150px;
	object-fit: cover;
	border-radius: var(--border-radius);
	margin-bottom: var(--spacing-md);
}

.promotional-placeholder {
	background-color: rgba(255,255,255,0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
}

.promotional-title {
	font-size: var(--font-size-xl);
	font-weight: 700;
	margin-bottom: var(--spacing-md);
	color: var(--color-text);
}

.promotional-link {
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 600;
	font-size: var(--font-size-lg);
}

.promotional-link:hover {
	text-decoration: underline;
}

/* FAQ Section - Removed duplicate rule, using the one at line 6694 with grey background */

.faq-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-sm);
}

.faq-item {
	background-color: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius);
	overflow: hidden;
}

.faq-question {
	width: 100%;
	padding: var(--spacing-md);
	background: none;
	border: none;
	text-align: left;
	font-size: var(--font-size-lg);
	font-weight: 600;
	color: var(--color-text);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s ease;
}

.faq-question:hover {
	background-color: var(--color-bg-light);
}

.faq-question[aria-expanded="true"] {
	background-color: var(--color-primary-lightest);
}

.faq-icon {
	font-size: var(--font-size-xl);
	color: var(--color-primary);
	transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
	max-height: 500px;
	padding: 0 var(--spacing-md) var(--spacing-md);
	background-color: var(--color-primary-lightest);
}

.faq-answer p {
	margin: 0;
	color: var(--color-text);
	line-height: 1.6;
}

/* App Download Section */
.home-app-download {
	padding: var(--spacing-xl) 0;
	background-color: var(--color-primary-lightest);
}

.app-download-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-xl);
	align-items: center;
}

.app-download-title {
	font-size: var(--font-size-3xl);
	font-weight: 700;
	margin-bottom: var(--spacing-md);
	color: var(--color-text);
}

.app-download-text {
	font-size: var(--font-size-lg);
	color: var(--color-text);
	margin-bottom: var(--spacing-lg);
	line-height: 1.6;
}

.app-download-buttons {
	display: flex;
	gap: var(--spacing-md);
	flex-wrap: wrap;
}

.app-button {
	display: flex;
	flex-direction: column;
	padding: 12px 24px;
	background-color: var(--color-text);
	color: #fff;
	border-radius: var(--border-radius);
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.app-button:hover {
	background-color: var(--color-primary-dark);
	text-decoration: none;
	color: #fff;
}

.app-button-text {
	font-size: var(--font-size-xs);
	text-transform: uppercase;
}

.app-button-store {
	font-size: var(--font-size-lg);
	font-weight: 600;
}

.app-download-image img,
.app-placeholder {
	width: 100%;
	max-width: 300px;
	border-radius: var(--border-radius-lg);
}

.app-placeholder {
	background-color: var(--color-bg-light);
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 8rem;
}

/* ==========================================================================
   Eden/Hims Style Header
   ========================================================================== */

.header-eden-style .header-eden-container {
	max-width: var(--container-max-width-eden);
	margin: 0 auto;
	padding: 0 var(--container-padding);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--spacing-md);
	min-height: 42px; /* 30% reduction: 60px * 0.7 = 42px */
}

.header-logo-left .site-title-aventa {
	font-family: var(--font-aventa);
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.2;
	text-transform: lowercase;
}

.header-logo-left .site-title-brand {
	font-family: var(--font-aventa);
	font-size: 1.75rem;
	letter-spacing: -0.01em;
	line-height: 1;
	text-transform: lowercase;
	margin: 0;
	padding: 0;
}

.header-logo-left .site-title-brand .logo-pharmacy {
	font-weight: 700;
}

.header-logo-left .site-title-brand .logo-time {
	font-weight: 300;
}

.header-logo-left .site-title-aventa a,
.header-logo-left .site-title-brand a {
	color: var(--color-text);
	text-decoration: none;
	transition: opacity 0.2s ease;
	display: flex;
	align-items: center;
	line-height: 1;
}

.header-logo-left .site-title-aventa a:hover,
.header-logo-left .site-title-brand a:hover {
	opacity: 0.8;
}

.site-logo-link {
	display: flex;
	align-items: center;
	line-height: 1;
	text-decoration: none;
}

.site-logo-image {
	height: auto;
	max-height: 45px;
	width: auto;
	display: block;
	object-fit: contain;
}

/* WordPress custom logo styling */
.custom-logo-link {
	display: inline-block;
	line-height: 1;
	text-decoration: none;
}

.custom-logo {
	height: auto;
	max-height: 45px;
	width: auto;
	display: block;
	object-fit: contain;
}

/* Hide WordPress primary menu if it's somehow being displayed */
#primary-menu,
.main-navigation:not(.header-nav-center),
nav.main-navigation:not(.header-nav-center),
.menu-primary-container,
.menu-primary {
	display: none !important;
}

/* Hide any "Treatments" link that might be showing */
.header-nav-links a[href*="treatments"],
.header-nav-links a[href*="Treatments"] {
	display: none !important;
}

.header-nav-center {
	flex: 1;
	display: none !important; /* Hide by default - will show on desktop */
	justify-content: center;
}

/* Hide desktop nav links on mobile only */
.header-nav-links,
.header-nav-links li,
.header-nav-links .nav-link,
.header-nav-links a {
	display: none !important;
}

/* Hide desktop nav on mobile by default (redundant but ensures it stays hidden) */
@media (max-width: 768px) {
	.header-nav-center,
	.header-nav-links,
	.header-nav-links li,
	.header-nav-links .nav-link,
	.header-nav-links a {
		display: none !important;
	}
}

.header-nav-links {
	display: none !important; /* Force hide - overrides any other rules */
	align-items: center;
	gap: 1.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-nav-links li {
	margin: 0;
}

.header-nav-links a {
	font-size: 0.875rem;
	color: #525252;
	text-decoration: none;
	transition: color 0.2s ease;
	font-weight: 400;
}

.header-nav-links a:hover {
	color: var(--color-text);
}

.header-actions-right {
	display: flex;
	align-items: center;
	justify-content: flex-end; /* Right-align all items including hamburger */
	gap: 0.75rem;
	flex: 0 0 auto; /* Prevent flex expansion - don't grow or shrink */
	flex-shrink: 0; /* Prevent shrinking */
	flex-grow: 0; /* Prevent growing */
}

/* Desktop: show nav and CTAs - high specificity to override global hide rules */
@media (min-width: 1024px) {
	.header-eden-container .header-nav-center,
	.header-container .header-nav-center,
	.header-nav-center {
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
		pointer-events: auto !important;
		height: auto !important;
		min-height: 60px !important;
	}

	.header-eden-container .header-nav-links,
	.header-container .header-nav-links,
	.header-nav-links {
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
		pointer-events: auto !important;
	}

	.header-eden-container .header-nav-links li,
	.header-container .header-nav-links li,
	.header-nav-links li {
		display: list-item !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.header-eden-container .header-nav-links .nav-link,
	.header-container .header-nav-links .nav-link,
	.header-nav-links .nav-link {
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.header-eden-container .header-actions-right .btn,
	.header-container .header-actions-right .btn,
	.header-actions-right .btn,
	.header-eden-container .header-actions-right a:not(.mobile-menu-toggle),
	.header-container .header-actions-right a:not(.mobile-menu-toggle),
	.header-actions-right a:not(.mobile-menu-toggle),
	.header-eden-container .header-actions-right button,
	.header-container .header-actions-right button,
	.header-actions-right button {
		display: inline-flex !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
}

@media (min-width: 769px) {
	.header-cta-button {
		display: none !important;
	}
}

.header-cta-button {
	padding: 0.625rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 9999px;
	text-decoration: none;
	transition: all 0.2s ease;
	border: 1px solid transparent;
	display: inline-block;
}

.header-cta-primary {
	background-color: #18181b;
	color: #fff;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.header-cta-primary:hover {
	background-color: #27272a;
	color: #fff;
	text-decoration: none;
}

.header-cta-secondary {
	border-color: #d4b5ff;
	color: var(--color-text);
	background-color: #fff;
}

.header-cta-secondary:hover {
	background-color: #fafafa;
	color: var(--color-text);
	text-decoration: none;
	border-color: #c084fc;
}

/* Header mobile menu button - see mobile menu section below */

/* ==========================================================================
   Eden/Hims Style Hero Section
   ========================================================================== */

.home-hero-eden {
	padding: 5rem 0;
	background-color: #fff;
}

.hero-eden-container {
	max-width: var(--container-max-width-eden);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.hero-eden-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 2.5rem;
	align-items: start;
}

.hero-eden-grid-aligned {
	align-items: start;
}

.hero-eden-left {
	padding-top: 1.25rem;
}

.hero-eden-title {
	font-size: 3.5rem;
	font-weight: 600;
	line-height: 0.92;
	letter-spacing: -0.02em;
	color: var(--color-text);
	margin: 0;
}

.hero-rotate {
	display: inline-block;
	color: var(--color-primary);
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	position: relative;
	white-space: nowrap;
}

.hero-rotate::after {
	content: '|';
	color: var(--color-primary);
	animation: blink-caret 1s step-end infinite;
	margin-left: 2px;
}

@keyframes blink-caret {
	0%, 50% {
		opacity: 1;
	}
	51%, 100% {
		opacity: 0;
	}
}

.hero-rotate.typing::after {
	opacity: 1;
	animation: blink-caret 0.8s step-end infinite;
}

.hero-title-break {
	display: block;
}

.hero-eden-subhead {
	margin-top: 1.25rem;
	max-width: 36rem;
	font-size: 1.125rem;
	line-height: 1.6;
	color: #525252;
}

.hero-eden-cta-buttons {
	margin-top: 1.75rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.hero-cta-button {
	height: 2.75rem;
	padding: 0 1.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 9999px;
	text-decoration: none;
	transition: all 0.2s ease-out;
	border: 1px solid transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.hero-cta-primary {
	background-color: var(--color-primary);
	color: #fff;
}

.hero-cta-primary:hover {
	background-color: var(--color-primary-dark);
	color: #fff;
	text-decoration: none;
}

.hero-cta-secondary {
	border-color: #d4b5ff;
	color: var(--color-text);
	background-color: #fff;
}

.hero-cta-secondary:hover {
	background-color: #fafafa;
	color: var(--color-text);
	text-decoration: none;
	border-color: #c084fc;
}

.hero-cta-pink {
	background-color: #ec4899;
	border-color: #ec4899;
	color: #fff;
}

.hero-cta-pink:hover {
	background-color: #db2777;
	border-color: #db2777;
	color: #fff;
	text-decoration: none;
}

.hero-eden-right {
	padding-top: 1.25rem;
}

.hero-trust-card {
	border-radius: 1rem;
	border: 1px solid #f4f4f5;
	background-color: #fff;
	padding: 1.25rem;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.hero-trust-card-aligned {
	margin-top: 0.5rem;
}

.hero-trust-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.hero-trust-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: #525252;
}

.trust-icon-wrapper {
	width: 2.25rem;
	height: 2.25rem;
	display: grid;
	place-items: center;
	border-radius: 0.75rem;
	background-color: rgba(0, 102, 204, 0.14);
	color: var(--color-primary);
	flex-shrink: 0;
}

.trust-icon {
	width: 1.25rem;
	height: 1.25rem;
}

/* ==========================================================================
   Category Grid Section
   ========================================================================== */

.category-grid-section {
	padding: 5rem 0;
	background-color: #fff;
}

@media (max-width: 768px) {
	.home-hero-eden {
		padding: 2.5rem 0;
	}
	
	.category-grid-section {
		padding: 2.5rem 0;
	}
}

.category-grid-container {
	max-width: var(--container-max-width-eden);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.category-grid-large {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-bottom: 1.5rem;
}

.category-card-large {
	position: relative;
	min-height: 220px;
	overflow: hidden;
	border-radius: var(--border-radius-xl);
	padding: 1.75rem;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.category-card-large:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	text-decoration: none;
}

.category-card-gradient {
	color: #fff;
}

.category-card-gradient.category-card-weight-management {
	background: linear-gradient(to bottom right, #3068b2, #3068b2);
}

.category-card-gradient.category-card-hormone-replacement {
	background: linear-gradient(to bottom right, #d4c5b1, #d4c5b1);
}

/* IV Therapy & Supplements - Primary Blue Gradient */
.category-card-gradient[data-card-category="IV Therapy & Supplements"],
.category-card-gradient.category-card-iv-therapy-supplements {
	background: linear-gradient(to bottom right, #ef9e66, #ef9e66) !important;
	background-color: #ef9e66 !important;
	color: #fff !important;
}

.category-card-gradient[data-card-category="IV Therapy & Supplements"] *,
.category-card-gradient.category-card-iv-therapy-supplements * {
	color: #fff !important;
}

.category-card-content {
	position: relative;
	z-index: 10;
	max-width: 62%;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.category-card-title {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 0.5rem;
	color: #fff;
}

.category-card-subtitle {
	font-size: 0.875rem;
	line-height: 1.5;
	margin: 0.5rem 0 0;
	color: rgba(255, 255, 255, 0.9);
}

.category-card-cta {
	margin-top: 2.5rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.95);
	letter-spacing: 0.05em;
}

.category-card-cta-arrow {
	width: 1.75rem;
	height: 1.75rem;
	display: grid;
	place-items: center;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	transition: border-color 0.2s ease;
}

.category-card-large:hover .category-card-cta-arrow {
	border-color: rgba(255, 255, 255, 0.6);
}

.category-card-image-wrapper {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: auto;
	width: 56%; /* image column width */
	opacity: 0.95;
	display: flex;
	align-items: flex-end; /* keep vial low */
	justify-content: flex-end;
	padding: 1.25rem 1.25rem 0.75rem 1.25rem; /* keep inside rounded corners */
	pointer-events: none;
}

.category-card-image-overlay {
	display: none; /* remove “shadow block” behind vial images */
}

.category-card-image {
	width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: contain;
	object-position: right bottom;
	padding: 0; /* wrapper handles padding now */
}

.category-grid-small {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
}

.category-card-small {
	position: relative;
	overflow: hidden;
	border-radius: var(--border-radius-xl);
	border: 1px solid #f4f4f5;
	background-color: #fff;
	padding: 1.25rem;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.category-card-small:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	text-decoration: none;
}

.category-card-small-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0;
}

.category-card-small-actions {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
}

.category-card-small-text {
	flex: 1;
}

.category-card-small-title {
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 0.25rem;
	color: var(--color-text);
}

.category-card-small-subtitle {
	font-size: 0.875rem;
	color: #525252;
	margin: 0;
}

.category-card-arrow-button {
	width: 2.25rem;
	height: 2.25rem;
	display: grid;
	place-items: center;
	border-radius: 9999px;
	border: 1px solid #e4e4e7;
	background-color: #fff;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
	cursor: pointer;
	flex-shrink: 0;
}

.category-card-small:hover .category-card-arrow-button {
	transform: translateY(-2px);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	border-color: #d4d4d8;
}

.arrow-button-icon {
	color: #18181b;
	font-size: 1rem;
	line-height: 1;
}

.category-card-small-image {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.category-card-small-image img {
	height: 3.15rem; /* Reduced by 10% from 3.5rem (3.5 * 0.9 = 3.15) */
	width: 3.15rem; /* Reduced by 10% from 3.5rem (3.5 * 0.9 = 3.15) */
	object-fit: contain;
	opacity: 0.95;
	transition: opacity 0.2s ease;
}

/* Sexual Wellness: Additional 10% reduction (80.75% of original size) */
.category-card-small[data-card-category="Sexual Wellness"] .category-card-small-image img {
	height: 2.83rem; /* Additional 5% reduction: 2.975 * 0.95 = 2.82625, rounded to 2.83 */
	width: 2.83rem; /* Additional 5% reduction: 2.975 * 0.95 = 2.82625, rounded to 2.83 */
}

/* Injectable Supplies: 7% larger than standard (107% of 3.15rem) */
.category-card-small[data-card-category="Injectable Supplies"] .category-card-small-image img {
	height: 3.37rem; /* 7% larger: 3.15 * 1.07 = 3.3705, rounded to 3.37 */
	width: 3.37rem; /* 7% larger: 3.15 * 1.07 = 3.3705, rounded to 3.37 */
}

/* Vitality: 15% larger than standard (115% of 3.15rem) */
.category-card-small[data-card-category="Vitality"] .category-card-small-image img {
	height: 3.62rem; /* 15% larger: 3.15 * 1.15 = 3.6225, rounded to 3.62 */
	width: 3.62rem; /* 15% larger: 3.15 * 1.15 = 3.6225, rounded to 3.62 */
}

.category-card-small:hover .category-card-small-image img {
	opacity: 1;
}

/* Responsive Styles for New Sections */
@media (max-width: 1024px) {
	.hero-pharmacy-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: var(--spacing-xl);
		min-height: auto;
	}
	
	.hero-pharmacy-left,
	.hero-pharmacy-center,
	.hero-pharmacy-right {
		width: 100%;
	}
	
	.hero-pharmacy-center {
		order: -1; /* Image first on mobile */
	}
	
	.hero-pharmacy-title {
		font-size: 3.5rem;
	}
	
	.hero-pharmacist-image,
	.hero-pharmacist-placeholder {
		width: 100%;
		max-width: 300px;
		height: auto;
	}
	
	.hero-pharmacy-description {
		max-width: 100%;
	}
	
	.prescription-consultation-container,
	.promotional-container,
	.app-download-container,
	.cereal-container {
		grid-template-columns: 1fr;
	}
	
	.trending-category-tabs {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	
	.deals-products,
	.trending-products-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	}
}

@media (max-width: 1024px) {
	.hero-eden-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.hero-eden-title {
		font-size: 2.5rem;
	}
	
	.hero-eden-title .hero-rotate {
		white-space: nowrap;
	}
	
	.category-grid-large {
		grid-template-columns: 1fr;
	}
	
	.category-card-large {
		min-height: 260px;
	}

	/* Large category card image tuning for stacked layout (prevents vial cropping) */
	.category-card-image-wrapper {
		width: 52%;
		padding: 1.25rem 1.25rem 0.75rem 1.25rem;
	}

	.category-card-image {
		padding: 1rem;
	}
	
	.category-grid-small {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Tablet spacing: reduce the big gap between the trust bullets and the first category card */
/* (Only applies 769–1024px so mobile keeps its tighter padding rules below.) */
@media (min-width: 769px) and (max-width: 1024px) {
	.home-hero-eden {
		padding-bottom: 1.25rem;
	}

	.category-grid-section {
		padding-top: 1.25rem;
	}
}

@media (max-width: 768px) {
	/* Make header sticky/floating on mobile scroll */
	.site-header {
		position: sticky;
		top: 0;
		z-index: 1000;
		background-color: var(--color-bg);
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	}
	
	.header-main {
		padding: calc(var(--spacing-md) * 0.7) 0; /* 30% reduction */
	}
	
	/* The container that holds logo + nav + actions */
	.header-eden-container {
		min-height: 42px !important; /* 30% reduction */
		flex-wrap: nowrap !important; /* STOP WRAP - this is the key fix */
		align-items: center !important; /* TRUE vertical centering */
		gap: 12px !important; /* smaller gap so it fits */
		justify-content: space-between !important; /* Logo left, hamburger right */
	}
	
	/* Hide nav cleanly */
	.header-nav-center {
		display: none !important; /* Hide nav on mobile, show in mobile menu - force with !important */
		order: 3;
		width: 100%;
	}
	
	.header-nav-links,
	.header-nav-links li,
	.header-nav-links .nav-link {
		display: none !important; /* Ensure nav links are hidden on mobile - hide all nested elements */
	}
	
	.header-nav-center.mobile-open {
		display: block;
	}
	
	/* Keep logo tight */
	.header-logo-left {
		flex: 0 0 auto !important;
		display: flex !important;
		align-items: center !important;
	}
	
	/* This is the key: actions should NOT be 468px wide */
	.header-actions-right {
		flex: 0 0 auto !important;
		width: auto !important;
		max-width: none !important;
		margin-left: auto !important; /* push it right */
		display: flex !important;
		align-items: center !important;
		justify-content: flex-end !important;
		gap: 0 !important; /* Remove gap since CTA buttons are hidden */
	}
	
	/* Remove any weird margin pushing the button */
	#mobile-menu-toggle,
	.mobile-menu-toggle,
	.header-mobile-menu,
	.menu-toggle {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	
	.header-mobile-menu {
		display: grid !important;
		margin-left: 0; /* No extra margin - parent handles alignment */
		margin-right: 0; /* No extra margin */
	}
	
	/* Reduce logo size on mobile */
	.site-logo-image {
		max-height: 32px !important; /* Reduced from 45px */
	}
	
	.header-logo-left .site-title-brand {
		font-size: 1.4rem !important; /* Reduced from 1.75rem */
	}
	
	.header-cta-button {
		display: none !important;
	}
	
	.header-cta-button.header-cta-primary {
		display: none !important;
	}
	
	.header-container {
		grid-template-columns: auto 1fr;
		gap: var(--spacing-sm);
	}
	
	.header-location,
	.header-search,
	.main-navigation {
		display: none;
	}
	
	.hero-eden-title {
		font-size: 2.25rem;
	}
	
	.hero-eden-title .hero-rotate {
		white-space: nowrap;
	}
	
	.hero-eden-title::after {
		content: '';
		display: block;
	}
	
	.hero-eden-right {
		display: none;
	}
	
	.hero-title-break {
		display: block;
	}
	
	.category-grid-small {
		grid-template-columns: 1fr;
	}

	/* Large category card image tuning for mobile (prevents vial cropping) */
	.category-card-image-wrapper {
		width: 58%;
		padding: 1rem 1rem 0.5rem 1rem;
	}

	.category-card-image {
		padding: 0.8rem;
	}
	
	.hero-pharmacy-title {
		font-size: 2.5rem;
	}
	
	.health-conditions-carousel-wrapper {
		gap: var(--spacing-sm);
		flex-wrap: nowrap;
	}
	
	.health-condition-card {
		flex: 0 0 150px;
		min-width: 150px;
		max-width: 150px;
	}
	
	.carousel-btn {
		width: 35px;
		height: 35px;
		flex-shrink: 0;
	}
	
	.thematic-container {
		grid-template-columns: 1fr;
	}
	
	.testimonials-header {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ==========================================================================
   Mobile Menu (Slide-over)
   ========================================================================== */

.mobile-menu-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999; /* Higher than hamburger (9998) to ensure menu is above */
	display: none;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-menu-overlay[aria-hidden="false"] {
	display: block;
	visibility: visible;
	opacity: 1;
}

.mobile-menu-overlay[aria-hidden="true"] {
	display: none;
	visibility: hidden;
	opacity: 0;
}

.mobile-menu-overlay-bg {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.4);
	border: none;
	cursor: pointer;
	padding: 0;
	width: 100%;
	height: 100%;
	z-index: 1; /* Ensure overlay is above page content but below panel */
}

.mobile-menu-panel {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 92%;
	max-width: 420px;
	background-color: #fff;
	box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	will-change: transform; /* Hypothesis F: Optimize for animation */
	z-index: 2; /* Ensure panel is above overlay background */
}

.mobile-menu-overlay[aria-hidden="false"] .mobile-menu-panel {
	transform: translateX(0) !important; /* Hypothesis F: Force override */
}

.mobile-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #f4f4f5;
	padding: 1.25rem 1.25rem;
}

.mobile-menu-title {
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--color-text);
}

.mobile-menu-header-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.mobile-menu-icon-button {
	display: grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 9999px;
	border: 1px solid #e4e4e7;
	background-color: #fff;
	color: var(--color-text);
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.mobile-menu-icon-button:hover {
	background-color: #fafafa;
}

.mobile-menu-icon-button svg {
	width: 1.25rem;
	height: 1.25rem;
}

.mobile-menu-content {
	padding: 1.5rem 1.25rem;
	flex: 1;
}

.mobile-menu-section-label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #71717a;
	margin-bottom: 1rem;
}

.mobile-menu-categories {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-bottom: 2rem;
}

.mobile-menu-category-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 1rem;
	padding: 0.75rem;
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--color-text);
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.mobile-menu-category-link:hover {
	background-color: #fafafa;
}

.mobile-menu-arrow {
	color: #a1a1aa;
	font-size: 1.25rem;
}

.mobile-menu-forms {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
	margin-bottom: 2.5rem;
}

.mobile-menu-form-link {
	border-radius: 1rem;
	border: 1px solid #f4f4f5;
	background-color: #fff;
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--color-text);
	text-decoration: none;
	transition: background-color 0.2s ease;
	text-align: center;
}

.mobile-menu-form-link:hover {
	background-color: #fafafa;
}

.mobile-menu-links {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-bottom: 2rem;
}

.mobile-menu-link {
	display: block;
	border-radius: 1rem;
	padding: 0.75rem;
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--color-text);
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.mobile-menu-link:hover {
	background-color: #fafafa;
}

.mobile-menu-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 3rem;
	border-radius: 9999px;
	background-color: #18181b;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.mobile-menu-cta:hover {
	background-color: #27272a;
	color: #fff;
}

.header-mobile-menu {
	display: inline-flex !important; /* Use flexbox for proper centering */
	align-items: center !important; /* Vertical centering */
	justify-content: center !important; /* Horizontal centering */
	background: none;
	border: none; /* Removed circle border */
	border-radius: 0; /* Removed circle border-radius */
	cursor: pointer;
	padding: 0 !important; /* Remove default button padding */
	margin: 0; /* Remove any default margins - parent handles alignment */
	width: auto; /* Auto width since no circle */
	height: auto; /* Auto height since no circle */
	line-height: 0 !important; /* Kills baseline/line-height offsets */
	transition: background-color 0.2s ease;
	position: relative;
	z-index: 9998; /* Lower than menu overlay (9999) so it doesn't overlap */
	pointer-events: auto !important; /* Hypothesis I: Force clickability */
	flex-shrink: 0; /* Prevent shrinking */
}

.header-mobile-menu .menu-icon {
	width: 1.75rem; /* Increased from 1.25rem - 40% bigger */
	height: 1.75rem; /* Increased from 1.25rem - 40% bigger */
	display: block !important; /* Prevents inline SVG baseline drop */
	line-height: 1; /* Keeps glyph sane */
	margin: 0;
}

/* Hide hamburger button when menu is open */
#mobile-menu-toggle[aria-expanded="true"],
.mobile-menu-overlay[aria-hidden="false"] ~ * #mobile-menu-toggle,
.mobile-menu-overlay[aria-hidden="false"] + * #mobile-menu-toggle {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.header-mobile-menu:hover {
	background-color: #fafafa;
}

/* ==========================================================================
   Category & Form Pages
   ========================================================================== */

.category-page,
.form-page {
	padding: 2.5rem 0;
	background-color: #fff;
}

.category-page-container,
.form-page-container {
	max-width: 48rem;
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.category-page-title,
.form-page-title {
	font-size: 3rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--color-text);
	margin: 0 0 2.5rem;
}

.category-section {
	margin-bottom: 3rem;
}

.category-section-label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #71717a;
	margin-bottom: 1rem;
}

.category-section-list {
	border-top: 1px solid #f4f4f5;
}

.category-row-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 0;
	border-bottom: 1px solid #f4f4f5;
	font-size: 1.875rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--color-text);
	text-decoration: none;
	transition: color 0.2s ease;
}

.category-row-link:hover {
	color: var(--color-primary);
}

.category-row-link-content {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.category-badge {
	border-radius: 9999px;
	border: 1px solid #e4e4e7;
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 500;
	color: #525252;
}

.category-row-arrow {
	color: #a1a1aa;
	font-size: 1.5rem;
}

.category-cta-card {
	border-radius: 1.5rem;
	background-color: #fafafa;
	padding: 1.5rem;
	margin-top: 3.5rem;
}

.category-cta-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 0.5rem;
}

.category-cta-text {
	font-size: 0.875rem;
	color: #525252;
	margin-bottom: 1.25rem;
}

.category-cta-button {
	display: inline-flex;
	align-items: center;
	height: 2.75rem;
	padding: 0 1.5rem;
	border-radius: 9999px;
	background-color: #18181b;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.category-cta-button:hover {
	background-color: #27272a;
	color: #fff;
}

.form-products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.form-empty {
	padding: 3rem 0;
	text-align: center;
	color: #71717a;
}

/* ========================================
   DESKTOP DROPDOWN MENUS
   ======================================== */

.header-nav-links {
	display: none !important; /* Force hide - overrides any other rules */
	align-items: center;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-nav-links .nav-link {
	display: none !important; /* Force hide - overrides any other rules */
	align-items: center;
	gap: 0.5rem;
	color: var(--color-text);
	text-decoration: none;
	font-size: 0.9375rem;
	font-weight: 500;
	transition: color 0.2s ease;
	position: relative;
}

.header-nav-links .nav-link:hover {
	color: var(--color-primary);
}

.nav-arrow {
	transition: transform 0.2s ease;
}

.nav-item-has-dropdown:hover .nav-arrow,
.nav-item-has-dropdown[aria-expanded="true"] .nav-arrow {
	transform: rotate(180deg);
}

.nav-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border-radius: 0.75rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	padding: 1.5rem;
	min-width: 280px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
	z-index: 1000;
	margin-top: 0.5rem;
}

.nav-item-has-dropdown:hover .nav-dropdown,
.nav-item-has-dropdown[aria-expanded="true"] .nav-dropdown {
	opacity: 1 !important; /* Hypothesis H: Force full opacity */
	visibility: visible !important;
	transform: translateY(0);
}

.nav-dropdown-container {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.nav-dropdown-section {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.nav-dropdown-title {
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #71717a;
	margin: 0 0 0.5rem 0;
}

.nav-dropdown-category-link {
	color: var(--color-text);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
}

.nav-dropdown-category-link:hover {
	color: var(--color-primary);
}

.nav-dropdown-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.nav-dropdown-link {
	color: var(--color-text);
	text-decoration: none;
	font-size: 0.9375rem;
	transition: color 0.2s ease;
	display: block;
	padding: 0.25rem 0;
}

.nav-dropdown-link:hover {
	color: var(--color-primary);
}

.nav-dropdown-link-all {
	font-weight: 600;
	padding-top: 1rem;
	border-top: 1px solid #f4f4f5;
}

.nav-dropdown-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
}

.nav-dropdown-form-link {
	color: var(--color-text);
	text-decoration: none;
	font-size: 0.9375rem;
	padding: 0.5rem;
	border-radius: 0.5rem;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-dropdown-form-link:hover {
	background-color: #fafafa;
	color: var(--color-primary);
}

/* ========================================
   MOBILE MENU DRILL-DOWN SCREENS
   ======================================== */

.mobile-menu-screen {
	display: none;
	width: 100%;
	height: 100%;
	flex-direction: column;
}

.mobile-menu-screen[data-screen="main"] {
	display: flex;
}

.mobile-menu-screen.active {
	display: flex;
}

.mobile-menu-screen:not(.active) {
	display: none;
}

.mobile-menu-task-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1rem 0;
	border: none;
	background: none;
	color: var(--color-text);
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
	text-align: left;
	cursor: pointer;
	border-bottom: 1px solid #f4f4f5;
	transition: color 0.2s ease;
}

.mobile-menu-task-link:hover,
.mobile-menu-task-link:focus {
	color: var(--color-primary);
	outline: none;
}

.mobile-menu-task-primary {
	background-color: #18181b;
	color: #fff;
	border-radius: 0.75rem;
	padding: 1rem 1.5rem;
	margin-bottom: 1rem;
	justify-content: center;
	border: none;
}

.mobile-menu-task-primary:hover {
	background-color: #27272a;
	color: #fff;
}

.mobile-menu-arrow-icon {
	transition: transform 0.2s ease;
}

.mobile-menu-back {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	border: none;
	background: none;
	color: var(--color-text);
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	padding: 0.5rem 0;
	transition: color 0.2s ease;
}

.mobile-menu-back:hover {
	color: var(--color-primary);
}

.mobile-menu-drill-group {
	margin-bottom: 1.5rem;
}

.mobile-menu-drill-group-title {
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #71717a;
	margin-bottom: 0.75rem;
	padding-top: 1rem;
	border-top: 1px solid #f4f4f5;
}

.mobile-menu-drill-group:first-child .mobile-menu-drill-group-title {
	border-top: none;
	padding-top: 0;
}

.mobile-menu-drill-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 0;
	color: var(--color-text);
	text-decoration: none;
	font-size: 0.9375rem;
	border-bottom: 1px solid #f4f4f5;
	transition: color 0.2s ease;
}

.mobile-menu-drill-link:hover {
	color: var(--color-primary);
}

.mobile-menu-drill-link-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.mobile-menu-drill-link-icon img {
	height: 1.89rem; /* Standard size reduced by 40%: 3.15 * 0.6 = 1.89 */
	width: 1.89rem; /* Standard size reduced by 40%: 3.15 * 0.6 = 1.89 */
	object-fit: contain;
	opacity: 0.95;
	transition: opacity 0.2s ease;
}

/* Sexual Wellness: Reduced by 40% from 2.41rem */
.mobile-menu-drill-link[data-menu-category="Sexual Wellness"] .mobile-menu-drill-link-icon img {
	height: 1.45rem; /* 40% reduction: 2.41 * 0.6 = 1.446, rounded to 1.45 */
	width: 1.45rem; /* 40% reduction: 2.41 * 0.6 = 1.446, rounded to 1.45 */
}

/* Injectable Supplies: Reduced by 40% from 3.37rem */
.mobile-menu-drill-link[data-menu-category="Injectable Supplies"] .mobile-menu-drill-link-icon img {
	height: 2.02rem; /* 40% reduction: 3.37 * 0.6 = 2.022, rounded to 2.02 */
	width: 2.02rem; /* 40% reduction: 3.37 * 0.6 = 2.022, rounded to 2.02 */
}

/* Vitality: Reduced by 40% from 3.62rem */
.mobile-menu-drill-link[data-menu-category="Vitality"] .mobile-menu-drill-link-icon img {
	height: 2.17rem; /* 40% reduction: 3.62 * 0.6 = 2.172, rounded to 2.17 */
	width: 2.17rem; /* 40% reduction: 3.62 * 0.6 = 2.172, rounded to 2.17 */
}

.mobile-menu-drill-link:hover .mobile-menu-drill-link-icon img {
	opacity: 1;
}

.mobile-menu-drill-link-text {
	flex: 1;
}

.mobile-menu-drill-link-sublink {
	padding-left: 2.75rem;
}

.mobile-menu-drill-link-all {
	font-weight: 600;
	padding-top: 1rem;
	margin-top: 1rem;
	border-top: 2px solid #e4e4e7;
}

.mobile-menu-category-group {
	margin-bottom: 0.5rem;
}

.mobile-menu-submenu {
	list-style: none;
	margin: 0;
	padding: 0;
	padding-left: 2.5rem;
	margin-top: 0.25rem;
	margin-bottom: 0.5rem;
}

.mobile-menu-submenu li {
	margin: 0;
	padding: 0;
}

.mobile-menu-submenu-link {
	display: block;
	padding: 0.5rem 0;
	color: #71717a;
	text-decoration: none;
	font-size: 0.875rem;
	transition: color 0.2s ease;
}

.mobile-menu-submenu-link:hover {
	color: var(--color-primary);
}

/* ========================================
   TREATMENTS PAGES
   ======================================== */

.treatments-page-container,
.treatment-category-page-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1.5rem;
}

.treatments-page-title,
.treatment-category-page-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--color-text);
}

.treatments-page-description,
.treatment-category-page-description {
	font-size: 1.125rem;
	color: #71717a;
	margin-bottom: 3rem;
}

.treatments-section {
	margin-bottom: 3rem;
}

.treatments-section-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--color-text);
}

.treatments-section-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.treatments-section-link {
	color: var(--color-text);
	text-decoration: none;
	font-size: 1rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid #f4f4f5;
	transition: color 0.2s ease;
}

.treatments-section-link:hover {
	color: var(--color-primary);
}

.treatments-section-link-all {
	font-weight: 600;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 2px solid #e4e4e7;
}

.treatment-products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.treatment-product-card,
.category-product-card,
.form-product-card {
	border-radius: 0.75rem;
	border: 1px solid #e4e4e7;
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.treatment-product-card:hover,
.category-product-card:hover,
.form-product-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.treatment-product-image,
.category-product-image,
.form-product-image {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.treatment-product-content,
.category-product-content,
.form-product-content {
	padding: 1rem;
}

.treatment-product-title,
.category-product-title,
.form-product-title {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.treatment-product-title a,
.category-product-title a,
.form-product-title a {
	color: var(--color-text);
	text-decoration: none;
	transition: color 0.2s ease;
}

.treatment-product-title a:hover,
.category-product-title a:hover,
.form-product-title a:hover {
	color: var(--color-primary);
}

.treatment-product-price,
.category-product-price,
.form-product-price {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 0.75rem;
}

.treatment-product-link,
.category-product-link,
.form-product-link {
	display: inline-block;
	color: var(--color-primary);
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	transition: color 0.2s ease;
}

.treatment-product-link:hover,
.category-product-link:hover,
.form-product-link:hover {
	color: var(--color-text);
}

.treatment-category-page-empty,
.category-page-empty {
	padding: 3rem 0;
	text-align: center;
	color: #71717a;
}

/* ========================================
   HOW IT WORKS PAGE
   ======================================== */

.how-it-works-page-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 2rem 1.5rem;
}

.how-it-works-page-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--color-text);
}

.how-it-works-page-intro {
	font-size: 1.125rem;
	color: #71717a;
	margin-bottom: 3rem;
}

.how-it-works-nav {
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #e4e4e7;
}

.how-it-works-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.how-it-works-nav-link {
	color: var(--color-text);
	text-decoration: none;
	font-size: 0.9375rem;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	border: 1px solid #e4e4e7;
	transition: all 0.2s ease;
}

.how-it-works-nav-link:hover {
	background-color: #fafafa;
	color: var(--color-primary);
	border-color: var(--color-primary);
}

.how-it-works-sections {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	margin-bottom: 3rem;
}

.how-it-works-section {
	position: relative;
	padding-left: 4rem;
}

.how-it-works-section-number {
	position: absolute;
	left: 0;
	top: 0;
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: var(--color-primary);
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
}

.how-it-works-section-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: var(--color-text);
}

.how-it-works-section-description {
	font-size: 1rem;
	color: #71717a;
	line-height: 1.6;
}

.how-it-works-cta {
	text-align: center;
	padding-top: 3rem;
	border-top: 1px solid #e4e4e7;
}

.how-it-works-cta-button {
	display: inline-flex;
	align-items: center;
	height: 2.75rem;
	padding: 0 1.5rem;
	border-radius: 9999px;
	background-color: #18181b;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.how-it-works-cta-button:hover {
	background-color: #27272a;
	color: #fff;
}

/* ========================================
   FAQ PAGE
   ======================================== */

.faq-page-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 2rem 1.5rem;
}

.faq-page-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--color-text);
}

.faq-page-intro {
	font-size: 1.125rem;
	color: #71717a;
	margin-bottom: 3rem;
}

.faq-nav {
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #e4e4e7;
}

.faq-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.faq-nav-link {
	color: var(--color-text);
	text-decoration: none;
	font-size: 0.9375rem;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	border: 1px solid #e4e4e7;
	transition: all 0.2s ease;
}

.faq-nav-link:hover {
	background-color: #fafafa;
	color: var(--color-primary);
	border-color: var(--color-primary);
}

.faq-sections {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	margin-bottom: 3rem;
}

.faq-section-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: var(--color-text);
}

.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.faq-item {
	border: 1px solid #e4e4e7;
	border-radius: 0.75rem;
	overflow: hidden;
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.5rem;
	border: none;
	background: none;
	text-align: left;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.faq-question:hover {
	background-color: #fafafa;
}

.faq-question[aria-expanded="true"] .faq-icon {
	transform: rotate(180deg);
}

.faq-question-text {
	font-size: 1rem;
	font-weight: 500;
	color: var(--color-text);
	flex: 1;
}

.faq-icon {
	transition: transform 0.2s ease;
	color: #71717a;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-answer[aria-hidden="false"] {
	max-height: 500px;
}

.faq-answer-content {
	padding: 0 1.5rem 1.5rem 1.5rem;
	color: #71717a;
	line-height: 1.6;
}

.faq-cta {
	text-align: center;
	padding-top: 3rem;
	border-top: 1px solid #e4e4e7;
}

.faq-cta-text {
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 1rem;
	color: var(--color-text);
}

.faq-cta-button {
	display: inline-flex;
	align-items: center;
	height: 2.75rem;
	padding: 0 1.5rem;
	border-radius: 9999px;
	background-color: #18181b;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.faq-cta-button:hover {
	background-color: #27272a;
	color: #fff;
}

@media (max-width: 768px) {
	.category-page-title,
	.form-page-title,
	.treatments-page-title,
	.treatment-category-page-title,
	.how-it-works-page-title,
	.faq-page-title {
		font-size: 2rem;
	}
	
	.category-row-link {
		font-size: 1.5rem;
	}
	
	.mobile-menu-forms {
		grid-template-columns: 1fr;
	}

	.nav-dropdown {
		position: fixed;
		left: 1rem;
		right: 1rem;
		width: auto;
		max-width: calc(100% - 2rem);
	}

	.treatment-products-grid,
	.category-products-grid,
	.form-products-grid {
		grid-template-columns: 1fr;
	}

	.how-it-works-section {
		padding-left: 3rem;
	}

	.how-it-works-section-number {
		width: 2.5rem;
		height: 2.5rem;
		font-size: 1.25rem;
	}
}


/* ==========================================================================
   HARD OVERRIDE: mobile header single-row lock (Maximum specificity)
   ========================================================================== */
@media (max-width: 768px) {
  .header-container.header-eden-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }

  .header-container.header-eden-container .header-logo-left {
    flex: 0 0 auto !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .header-container.header-eden-container .header-actions-right {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: 56px !important;
    margin-left: auto !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: flex-end !important;
  }

  .header-container.header-eden-container #mobile-menu-toggle,
  .header-container.header-eden-container .mobile-menu-toggle {
    margin: 0 !important;
  }
}

/* ==========================================================================
   Program Hero Section (scoped with .pt- prefix)
   ========================================================================== */

.pt-container {
	max-width: var(--container-max-width-eden);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.pt-program-hero {
	position: relative;
	padding: 5rem 0;
	background: #f5f5f5;
	overflow: hidden;
}

/* Scoped reset so theme/WP styles don't wreck this section */
.pt-program-hero,
.pt-program-hero * {
	box-sizing: border-box;
}

.pt-program-hero h2,
.pt-program-hero p,
.pt-program-hero ul {
	margin: 0;
}

.pt-program-hero ul {
	padding: 0;
	list-style: none;
}

/* Grid layout */
.pt-program-hero__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 2.5rem;
	align-items: stretch !important; /* Lock to prevent responsive overrides */
}

/* Content wrapper - flex column for predictable spacing */
.pt-program-hero__content {
	display: flex;
	flex-direction: column;
	gap: 0; /* We'll control spacing per element, but gap prevents margin collapse */
}

/* Content - smaller than hero-eden H1, not bold, all black */
.pt-program-hero__title {
	font-size: 2.75rem;
	font-weight: 400 !important;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--color-text);
	margin: 0;
}

.pt-program-hero__subtitle {
	margin-top: 1.25rem;
	max-width: 36rem;
	font-size: 1.125rem;
	line-height: 1.6;
	color: #525252;
}

/* Bullets (make it "premium") */
.pt-program-hero__bullets {
	margin-top: 1.25rem !important; /* 20px - force spacing */
	margin-bottom: 0;
	display: grid;
	gap: 1rem;
}

.pt-program-hero__bullets li {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: 0.75rem;
	align-items: start;
	font-size: 0.875rem;
	line-height: 1.5;
	color: #525252;
	margin: 0;
	padding: 0;
}

.pt-check {
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: rgba(0, 102, 204, 0.14);
	position: relative;
	margin-top: 1px;
}

.pt-check::after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 10px;
	height: 6px;
	border-left: 2px solid var(--color-primary);
	border-bottom: 2px solid var(--color-primary);
	transform: rotate(-45deg);
	translate: 0 -1px;
}

/* CTAs (buttons) */
.pt-program-hero__ctas {
	margin-top: 1.75rem !important; /* 28px - force spacing */
	margin-bottom: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.pt-program-hero__cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 2.75rem;
	padding: 0 1.5rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease-out;
	border: 1px solid transparent;
	cursor: pointer;
}

.pt-program-hero__cta-primary {
	background-color: #18181b;
	color: #fff;
}

.pt-program-hero__cta-primary:hover {
	background-color: #27272a;
	color: #fff;
	text-decoration: none;
}

.pt-program-hero__cta-secondary {
	background-color: #fff;
	color: var(--color-text);
	border-color: #d4b5ff;
}

.pt-program-hero__cta-secondary:hover {
	background-color: #fafafa;
	color: var(--color-text);
	text-decoration: none;
	border-color: #c084fc;
}

/* Stat + fine print */
.pt-program-hero__stat {
	margin-top: 1rem !important; /* 16px - force spacing (reduced from 2.5rem to match reference) */
	margin-bottom: 0;
	font-size: 0.875rem;
	color: #525252;
	max-width: 70ch;
	line-height: 1.6;
}

.pt-program-hero__fineprint {
	margin-top: 8px;
	font-size: 12px;
	color: rgba(11,18,32,0.60);
	max-width: 74ch;
}

/* Visual (this is what makes it "like the reference") */
.pt-program-hero__visual {
	position: relative;
	height: auto; /* Remove height: 100% to prevent collapse */
	min-height: 420px; /* Desktop minimum */
	display: flex;
	align-self: stretch; /* Ensure it stretches in grid */
}

/* Wrapper MUST have intrinsic height - this is the key fix */
.pt-program-hero__visual-wrapper {
	position: relative;
	width: 100%;
	height: auto; /* Remove height: 100% to prevent collapse */
	aspect-ratio: 16 / 10; /* Creates real height */
	min-height: 420px; /* Desktop minimum */
	display: block;
	border-radius: 24px;
	overflow: hidden;
	isolation: isolate; /* Create stacking context */
}

/* Blue background layer - behind everything */
.pt-program-hero__visual-bg {
	position: absolute;
	inset: 30px 0 0 0;
	border-radius: 24px; /* Match wrapper */
	background:
		radial-gradient(600px 380px at 40% 30%, rgba(0,83,164,0.45), transparent 70%),
		linear-gradient(180deg, rgba(0,41,82,0.10), rgba(0,41,82,0.02));
	border: 1px solid rgba(0,0,0,0.08);
	z-index: 0; /* Behind everything */
}

/* Wave layer - above blue bg, below image */
.pt-program-hero__wave {
	position: absolute;
	inset: 0;
	border-radius: 24px; /* Match wrapper */
	background:
		radial-gradient(900px 420px at 10% 60%, rgba(71,163,255,0.30), transparent 60%);
	opacity: .9;
	pointer-events: none;
	z-index: 1; /* Above blue bg, below image */
}

.pt-program-hero__cutout-placeholder {
	position: absolute;
	right: -12px;
	bottom: 0;
	width: min(420px, 92%);
	height: auto;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	z-index: 2; /* Above wave, below stat cards */
}

.pt-program-hero__cutout-placeholder svg {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 24px 40px rgba(0,0,0,0.18));
}

/* Image - above wave, below stat cards */
.pt-program-hero__cutout {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
	filter: drop-shadow(0 24px 40px rgba(0,0,0,0.18));
	z-index: 2; /* Above wave, below stat cards */
	border-radius: 24px; /* Match wrapper */
}

/* Desktop: override cutout positioning to show right/bottom bias */
@media (min-width: 769px) {
	.pt-program-hero__cutout {
		inset: auto 0 0 auto;
		right: -12px;
		bottom: 0;
		width: min(420px, 92%);
		height: auto;
		max-height: 100%;
		object-fit: contain;
		object-position: right bottom;
	}
}

/* Weight Loss Stat Card Overlay - contained within visual */
.pt-program-hero__stat-card {
	position: absolute;
	background: #fff;
	border-radius: 12px;
	padding: 1rem 1.25rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	z-index: 3; /* Above image, top of stack */
	min-width: 140px;
	pointer-events: auto; /* Only if clickable */
}

.pt-program-hero__stat-card--first {
	bottom: 40px;
	right: 20px;
}

/* Desktop: move first stat card to top right */
@media (min-width: 769px) {
	.pt-program-hero__stat-card--first {
		top: 20px !important;
		right: 20px !important;
		bottom: auto !important;
	}
}

.pt-program-hero__stat-card--second {
	bottom: 40px;
	left: 20px;
}

.pt-program-hero__stat-card-label {
	font-size: 0.625rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #525252;
	margin-bottom: 0.25rem;
}

.pt-program-hero__stat-card-value {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 0.5rem;
	line-height: 1.2;
}

.pt-program-hero__stat-card-gradient {
	width: 100%;
	height: 40px;
	display: flex;
	align-items: center;
}

.pt-program-hero__stat-card-gradient svg {
	width: 100%;
	height: 100%;
}

/* Mobile - matching hero-eden breakpoints */
@media (max-width: 1024px) {
	.pt-program-hero__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.pt-program-hero__title {
		font-size: 2.25rem;
	}
}

@media (max-width: 768px) {
	.pt-program-hero {
		padding: 2.5rem 0;
		padding-left: 16px;
		padding-right: 16px;
	}
	
	.pt-program-hero__grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
		gap: 24px;
	}
	
	/* Mobile: parent must not interfere with wrapper height calculation */
	.pt-program-hero__visual {
		order: 2 !important; /* Visual goes under content on mobile */
		position: relative !important;
		height: auto !important;
		min-height: 0 !important; /* Remove min-height from visual */
		min-width: 0 !important; /* Allow grid child to shrink */
		width: 100% !important;
		display: block !important; /* Avoid flex weirdness */
	}
	
	/* Wrapper gets the aspect-ratio and min-height - prevents 0px collapse */
	.pt-program-hero__visual-wrapper {
		position: relative !important;
		width: 100% !important;
		max-width: 100% !important; /* Prevent overflow */
		height: auto !important; /* Remove height: 100% */
		aspect-ratio: 16 / 10 !important; /* Creates real height */
		min-height: 320px !important; /* Prevents 0 height collapse */
		max-height: none !important; /* Allow aspect-ratio to work */
		display: block !important;
		overflow: hidden !important; /* Ensure stat cards don't escape */
		border-radius: 24px !important;
		isolation: isolate !important; /* Create stacking context */
	}
	
	/* iOS Safari-specific fixes - only apply on iOS devices */
	@supports (-webkit-touch-callout: none) {
		.pt-program-hero__grid {
			align-items: start !important; /* Prevent stretch from causing iOS Safari issues */
		}
		
		.pt-program-hero__visual {
			align-self: start !important; /* Prevent grid stretch from interfering */
		}
		
		.pt-program-hero__visual-wrapper {
			/* iOS Safari: force block formatting context */
			contain: layout style paint !important;
		}
	}
	
	/* Ensure all layers inherit border-radius */
	.pt-program-hero__visual-bg,
	.pt-program-hero__wave {
		border-radius: 24px !important;
	}
	
	/* Image fills wrapper on mobile */
	.pt-program-hero__cutout {
		position: absolute !important;
		inset: 0 !important;
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
		object-position: center 18% !important; /* Bias downward to avoid cropping heads */
		border-radius: 24px !important;
		z-index: 2 !important; /* Above wave, below stat cards */
	}
	
	.pt-program-hero__stat-card {
		position: absolute;
		bottom: 12px;
		padding: 0.75rem 1rem;
		min-width: 120px;
		transform: scale(0.9);
		transform-origin: bottom center;
		z-index: 5; /* Ensure cards stay within visual container */
		max-width: calc(50% - 20px); /* Prevent cards from being too wide */
	}
	
	.pt-program-hero__stat-card--first {
		right: 10px;
		transform-origin: bottom right;
	}
	
	.pt-program-hero__stat-card--second {
		left: 10px;
		transform-origin: bottom left;
	}
	
	.pt-program-hero__stat-card-value {
		font-size: 1.25rem;
	}
	
	/* Hide second card on very small screens */
	@media (max-width: 380px) {
		.pt-program-hero__stat-card--second {
			display: none;
		}
	}
	
	/* iPhone-specific: taller aspect-ratio to prevent head cropping */
	@media (max-width: 430px) {
		.pt-program-hero__visual-wrapper {
			aspect-ratio: 16 / 11 !important; /* Slightly taller */
			min-height: 360px !important; /* More height for narrow devices */
		}
		
		.pt-program-hero__cutout {
			object-position: center 20% !important; /* Even more downward bias */
		}
	}
}

/* ==========================================================================
   HOTFIX: Mobile Visual Wrapper Height (Force at end of file to win cascade)
   ========================================================================== */
@media (max-width: 1023px) {
	.pt-program-hero__visual-wrapper {
		height: auto !important;
		min-height: 320px !important;
		aspect-ratio: 16/10 !important;
		overflow: hidden !important;
		border-radius: 24px !important;
		position: relative !important;
		width: 100% !important;
		display: block !important;
		isolation: isolate !important;
	}
	
	/* iPhone-specific: taller aspect-ratio to prevent head cropping */
	@media (max-width: 430px) {
		.pt-program-hero__visual-wrapper {
			aspect-ratio: 16/11 !important;
			min-height: 360px !important;
		}
	}
}

/* ==========================================================================
   FINAL OVERRIDES: Program Hero Hard Fix (put at END to win cascade)
   ========================================================================== */

.pt-program-hero__grid {
	align-items: start !important;
}

.pt-program-hero__visual {
	display: block !important;     /* kill flex collapse behaviors */
	height: auto !important;
	min-height: 0 !important;
	min-width: 0 !important;       /* Allow grid child to shrink */
	align-self: start !important;
}

.pt-program-hero__visual-wrapper {
	position: relative !important;
	width: 100% !important;
	max-width: 100% !important;

	/* Primary height mechanism */
	aspect-ratio: 16 / 10 !important;
	min-height: 420px !important;

	/* Fallback height mechanism if aspect-ratio gets nuked */
	padding-top: 62.5% !important;   /* 10/16 = 62.5% */
	height: 0 !important;

	border-radius: 24px !important;
	overflow: hidden !important;
	isolation: isolate !important;
}

/* When using padding-top fallback, absolutely position layers */
.pt-program-hero__visual-bg,
.pt-program-hero__wave {
	position: absolute !important;
	inset: 0 !important;
}

/* Cutout positioning override (keep desktop right/bottom bias) */
@media (min-width: 769px) {
	.pt-program-hero__cutout {
		position: absolute !important;
		inset: auto 0 0 auto !important;
		right: -12px !important;
		bottom: 0 !important;
		width: min(420px, 92%) !important;
		height: auto !important;
		max-height: 100% !important;
		object-fit: contain !important;
		object-position: right bottom !important;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.pt-program-hero__visual-wrapper {
		min-height: 320px !important;
		padding-top: 68.75% !important; /* 11/16 = 68.75% for taller mobile */
	}

	.pt-program-hero__cutout {
		position: absolute !important;
		inset: 0 !important;
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
		object-position: center 20% !important;
	}
}

/* ==========================================================================
   FINAL OVERRIDES: Desktop Nav Visibility (put at END to win cascade)
   ========================================================================== */

/* Desktop nav MUST be visible on desktop (wins against later display:none !important rules) */
@media (min-width: 1024px) {
	/* Show the center nav container */
	.header-eden-style .header-nav-center,
	.header-eden-container .header-nav-center,
	.header-nav-center {
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
		pointer-events: auto !important;
	}

	/* Show the list + items + links */
	.header-eden-style .header-nav-links,
	.header-eden-container .header-nav-links,
	.header-nav-links {
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
		pointer-events: auto !important;
	}

	.header-eden-style .header-nav-links li,
	.header-eden-container .header-nav-links li,
	.header-nav-links li {
		display: list-item !important;
	}

	.header-eden-style .header-nav-links .nav-link,
	.header-eden-container .header-nav-links .nav-link,
	.header-nav-links .nav-link {
		display: inline-flex !important;
	}
}

/* Mobile: keep desktop nav hidden */
@media (max-width: 1023px) {
	.header-nav-center,
	.header-nav-links,
	.header-nav-links li,
	.header-nav-links .nav-link {
		display: none !important;
	}
}

/* ==========================================================================
   Tools Section (BMI Calculator, Video, Weight Projector)
   ========================================================================== */

.pt-tools-section {
	padding: 5rem 0;
	background-color: #ffffff;
}

.pt-tools-section__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	align-items: stretch;
}

.pt-tools-card {
	background: #fff;
	border-radius: 1.5rem;
	padding: 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	min-height: 400px;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pt-tools-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.pt-tools-card__title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 0.5rem;
}

/* (Reverted) tool cards back to default white styling */

.pt-tools-card__subtitle {
	font-size: 0.875rem;
	color: #525252;
	margin-bottom: 1.5rem;
}

.pt-tools-card__description {
	font-size: 0.875rem;
	color: #525252;
	line-height: 1.5;
	margin-top: 0.75rem;
}

/* BMI Calculator Card */
.pt-tools-card__bmi-display {
	text-align: center;
	margin: 1.5rem 0;
}

.pt-tools-card__bmi-value {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-text);
	display: inline-block;
}

.pt-tools-card__form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	flex: 1;
}

.pt-tools-card__input-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.pt-tools-card__label {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--color-text);
}

.pt-tools-card__height-inputs {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.pt-tools-card__input {
	flex: 1;
	padding: 0.75rem;
	border: 1px solid #e4e4e7;
	border-radius: 0.5rem;
	font-size: 1rem;
	font-family: inherit;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	background: #fff;
	color: var(--color-text);
}

.pt-tools-card__input:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.pt-tools-card__input::placeholder {
	color: #a1a1aa;
}

.pt-tools-card__input-suffix {
	font-size: 0.875rem;
	color: #525252;
	white-space: nowrap;
}

.pt-tools-card__button {
	padding: 0.75rem 1.5rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.875rem;
	cursor: pointer;
	transition: all 0.2s ease;
	border: 1px solid transparent;
	margin-top: auto;
}

.pt-tools-card__button--calculate {
	background: var(--color-primary);
	color: #fff;
	border-color: var(--color-primary);
}

.pt-tools-card__button--calculate:hover {
	background: var(--color-primary-dark);
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 102, 204, 0.2);
}

/* Video Card */
.pt-tools-card--video {
	justify-content: flex-start;
	padding: 0;
	overflow: hidden;
}

.pt-tools-card__video-wrapper {
	width: 100%;
	height: 100%;
	margin: 0;
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: 1.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pt-tools-card__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 1.5rem;
	cursor: pointer;
}

.pt-tools-card__video-fallback {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: none;
	align-items: center;
	justify-content: center;
}

.pt-tools-card__video-thumbnail {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 0.75rem;
	overflow: hidden;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pt-tools-card__video-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	background: rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: background 0.2s ease;
}

.pt-tools-card__video-overlay:hover {
	background: rgba(0, 0, 0, 0.3);
}

.pt-tools-card__play-button {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease;
}

.pt-tools-card__play-button:hover {
	transform: scale(1.1);
}

.pt-tools-card__play-icon {
	width: 64px;
	height: 64px;
	color: var(--color-primary);
}

.pt-tools-card__play-text {
	color: #fff;
	font-size: 0.875rem;
	font-weight: 500;
}

/* Weight Projector Card */
.pt-tools-card__weight-display {
	text-align: center;
	margin: 1.5rem 0;
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.25rem;
}

.pt-tools-card__weight-value {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-text);
}

.pt-tools-card__weight-unit {
	font-size: 1.25rem;
	font-weight: 500;
	color: #525252;
}

.pt-tools-card__chart {
	width: 100%;
	height: 120px;
	margin: 1.5rem 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 0.5rem;
}

.pt-tools-card__chart-bars {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	height: 100%;
}

.pt-tools-card__chart-bar {
	flex: 1;
	background: linear-gradient(180deg, #10b981 0%, #ec4899 50%, #f97316 100%);
	border-radius: 4px 4px 0 0;
	min-height: 8px;
	height: 100%;
	transform-origin: bottom;
	transition: transform 0.3s ease;
	/* Use transform instead of height for GPU-accelerated animations */
}

.pt-tools-card__starting-weight {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin: 1rem 0;
	padding: 0.75rem;
	background: rgba(16, 185, 129, 0.15); /* Improved contrast: slightly darker background */
	border-radius: 0.5rem;
}

.pt-tools-card__starting-label {
	font-size: 0.875rem;
	color: #525252;
}

.pt-tools-card__starting-value {
	font-size: 1.25rem;
	font-weight: 700;
	color: #059669; /* Improved contrast: darker green for better accessibility */
}

.pt-tools-card__slider-wrapper {
	position: relative;
	width: 100%;
	margin-top: auto;
	padding: 1rem 0 0 0;
}

.pt-tools-card__slider {
	width: 100%;
	height: 8px;
	border-radius: 4px;
	background: transparent;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
	position: relative;
	z-index: 2;
	margin: 6px 0; /* Center 20px thumb on 8px track: (20-8)/2 = 6px */
}

.pt-tools-card__slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--color-primary);
	cursor: pointer;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s ease;
	margin-top: -6px; /* Center thumb vertically: (20-8)/2 = 6px */
}

.pt-tools-card__slider::-webkit-slider-thumb:hover {
	transform: scale(1.1);
}

.pt-tools-card__slider::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--color-primary);
	cursor: pointer;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s ease;
}

.pt-tools-card__slider-gradient {
	position: absolute;
	top: calc(1rem + 6px); /* Align with slider track: padding-top + margin-top */
	left: 0;
	width: 100%;
	height: 8px;
	border-radius: 4px;
	background: linear-gradient(90deg, #0066cc 0%, #764ba2 25%, #ec4899 50%, #f97316 75%, #10b981 100%);
	pointer-events: none;
	z-index: 1;
}

/* Disclaimer */
.pt-tools-section__disclaimer {
	text-align: center;
	font-size: var(--font-size-xs);
	color: var(--color-text-light);
	line-height: 1.6;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(0, 0, 0, 0.15);
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
	.pt-tools-section__grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.pt-tools-card {
		min-height: auto;
	}
}

@media (max-width: 768px) {
	.pt-tools-section {
		padding: 2.5rem 0;
	}
	
	.pt-tools-card {
		padding: 1.25rem;
	}
	
	.pt-tools-card--video {
		padding: 0;
	}
	
	.pt-tools-card__bmi-value,
	.pt-tools-card__weight-value {
		font-size: 2rem;
	}
	
	.pt-tools-section__disclaimer {
		font-size: var(--font-size-xs);
		margin-top: 2rem;
		padding-top: 1.5rem;
	}
}

/* =========================
   Sign Up Process Timeline
========================= */
.signup-process {
	padding: 5rem 0;
	background: var(--color-bg);
}

.signup-process__container {
	max-width: var(--container-max-width-eden);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.signup-process__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: var(--spacing-lg);
	gap: var(--spacing-md);
}

.signup-process__header-left {
	flex: 1;
}

.signup-process__title {
	font-size: var(--font-size-4xl);
	line-height: 1.2;
	margin: 0 0 var(--spacing-sm);
	font-weight: normal;
	color: var(--color-text);
}

.signup-process__intro {
	margin: 0;
	color: #525252;
	font-size: 0.875rem;
	line-height: 1.5;
	max-width: 600px;
}

.signup-process__subtitle {
	margin: 0;
	color: var(--color-text-light);
	font-size: var(--font-size-base);
}


.signup-process__progress-bar {
	width: 100%;
	height: 4px;
	background: var(--color-primary-lighter);
	border-radius: 999px;
	overflow: hidden;
	position: relative;
}

.signup-process__progress-fill {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
	border-radius: 999px;
	transition: width 0.6s ease;
}

.signup-process__timeline {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-sm);
	margin: 0 auto;
}

/* Each step */
.signup-step {
	display: grid;
	grid-template-columns: 50px 1fr;
	gap: var(--spacing-sm);
	align-items: start;
}

/* Left rail (dot + line) */
.signup-step__rail {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 4px;
}

.signup-step__dot {
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: var(--color-primary);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	z-index: 2;
}

.signup-step__number {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1;
}

.signup-step__line {
	flex: 1;
	width: 2px;
	background: var(--color-border);
	margin-top: var(--spacing-xs);
	border-radius: 999px;
	min-height: 40px;
}

/* Card */
.signup-step__card {
	background: #fff;
	border-radius: 1.5rem;
	border: 1px solid var(--color-border);
	overflow: hidden;
}

.signup-step__toggle {
	width: 100%;
	padding: var(--spacing-sm) var(--spacing-md);
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--spacing-sm);
	transition: background-color 0.2s ease;
}

.signup-step__header-content {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
	flex: 1;
}

.signup-step__header-icon {
	flex-shrink: 0;
	color: var(--color-primary);
	opacity: 0.8;
}

.signup-step__toggle:hover {
	background-color: var(--color-bg-light);
}

.signup-step__toggle[aria-expanded="true"] {
	background-color: var(--color-primary-lightest);
}

.signup-step__heading {
	margin: 0;
	font-size: var(--font-size-xl);
	font-weight: 600;
	color: var(--color-text);
	flex: 1;
}

.signup-step__toggle-icon {
	font-size: var(--font-size-2xl);
	color: var(--color-primary);
	font-weight: 300;
	line-height: 1;
	transition: transform 0.3s ease;
	flex-shrink: 0;
	width: 24px;
	text-align: center;
}

.signup-step__toggle[aria-expanded="true"] .signup-step__toggle-icon {
	transform: rotate(0deg);
}

.signup-step__toggle[aria-expanded="false"] .signup-step__toggle-icon {
	transform: rotate(0deg);
}

/* Content (accordion) */
.signup-step__content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
	padding: 0 var(--spacing-md);
}

.signup-step__content[aria-hidden="true"] {
	max-height: 0;
	padding: 0 var(--spacing-md);
}

.signup-step__toggle[aria-expanded="true"] + .signup-step__content,
.signup-step__content[aria-hidden="false"] {
	max-height: 2000px;
	padding: 1.5rem var(--spacing-md) var(--spacing-md);
}

/* Mobile: Stack header vertically */
@media (max-width: 768px) {
	.signup-process__header {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--spacing-sm);
	}
	
	.signup-process__header-left {
		width: 100%;
	}
	
	.signup-process__intro {
		max-width: 100%;
	}
	
	.signup-process__cta {
		width: 100%;
	}
	
	.signup-process__btn {
		width: 100%;
	}
}

.signup-step__text {
	margin: 0 0 var(--spacing-xs);
	color: var(--color-text);
	line-height: 1.5;
	font-size: var(--font-size-sm);
}

.signup-step__label {
	margin: var(--spacing-xs) 0 var(--spacing-xs);
	font-weight: 600;
	color: var(--color-text);
	font-size: var(--font-size-sm);
}

.signup-step__list {
	margin: 0 0 var(--spacing-xs) var(--spacing-md);
	color: var(--color-text);
	line-height: 1.5;
	font-size: var(--font-size-sm);
	padding-left: 0;
	list-style: none;
}

.signup-step__list li {
	position: relative;
	padding-left: var(--spacing-md);
	margin-bottom: 4px;
}

.signup-step__list li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--color-primary);
	font-weight: bold;
	font-size: var(--font-size-base);
}

.signup-step__note {
	margin: var(--spacing-xs) 0;
	color: var(--color-text-light);
	line-height: 1.5;
	font-size: var(--font-size-sm);
}

/* Single Sign Up Button Container */
.signup-process__cta {
	flex-shrink: 0;
}

.signup-process__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 2.75rem;
	padding: 0 1.5rem;
	border-radius: 9999px;
	background-color: var(--color-primary);
	color: #fff;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease-out;
	font-size: 0.875rem;
	border: 1px solid transparent;
	white-space: nowrap;
}

.signup-process__btn:hover {
	background-color: var(--color-primary-dark);
	color: #fff;
	text-decoration: none;
}

/* Last step: no line */
.signup-step--last .signup-step__line {
	display: none;
}

/* Desktop: Accordion functionality enabled */
@media (min-width: 769px) {
	.signup-step__toggle {
		cursor: pointer;
		pointer-events: auto;
	}
	
	.signup-step__toggle:hover {
		background-color: var(--color-bg-light);
	}
	
	.signup-step__toggle[aria-expanded="true"] {
		background-color: var(--color-primary-lightest);
	}
	
	.signup-step__content {
		max-height: 0 !important;
		padding: 0 var(--spacing-md) !important;
		overflow: hidden !important;
	}
	
	.signup-step__toggle[aria-expanded="true"] + .signup-step__content,
	.signup-step__content[aria-hidden="false"] {
		max-height: 2000px !important;
		padding: 1.5rem var(--spacing-md) var(--spacing-md) !important;
	}
	
	.signup-step__toggle-icon {
		display: block;
	}
}

/* Mobile: Accordion behavior */
@media (max-width: 768px) {
	.signup-process {
		padding: 2.5rem 0;
	}

	.signup-process__container {
		padding: 0 32px !important;
		max-width: 100%;
	}

	.signup-process__header {
		margin-bottom: 1.25rem;
		gap: 0.75rem;
	}

	.signup-process__title {
		font-size: 1.75rem;
		line-height: 1.2;
		margin-bottom: 0.5rem;
	}

	.signup-process__intro {
		font-size: 0.875rem;
		line-height: 1.5;
		max-width: 100%;
		margin-bottom: 0;
	}

	.signup-process__timeline {
		gap: 0.75rem;
	}

	.signup-step {
		grid-template-columns: 32px 1fr;
		gap: 0.75rem;
		margin-bottom: 0;
	}

	.signup-step__dot {
		width: 24px;
		height: 24px;
	}

	.signup-step__number {
		font-size: 0.75rem;
	}

	.signup-step__line {
		min-height: 24px;
	}

	.signup-step__card {
		padding: 0;
	}

	.signup-step__toggle {
		padding: 0.75rem;
	}

	.signup-step__header-icon {
		width: 20px;
		height: 20px;
	}

	.signup-step__heading {
		font-size: 1rem;
		font-weight: 600;
	}

	.signup-step__text,
	.signup-step__label,
	.signup-step__list,
	.signup-step__note {
		font-size: 0.8125rem;
		line-height: 1.5;
	}

	.signup-step__list {
		margin-left: 0.75rem;
		margin-top: 0.25rem;
		margin-bottom: 0.5rem;
	}

	.signup-step__list li {
		margin-bottom: 0.25rem;
		padding-left: 0.75rem;
	}

	.signup-step__content {
		padding: 0 0.75rem 0.75rem 0.75rem;
	}
	
	.signup-step__toggle[aria-expanded="true"] + .signup-step__content,
	.signup-step__content[aria-hidden="false"] {
		padding: 1.25rem 0.75rem 0.75rem 0.75rem;
	}
}

/* ==========================================
   NAD+ Hero Section
   ========================================== */
.nad-hero {
	padding: 5rem 0;
	background-color: #fff;
}

.nad-hero__container {
	max-width: var(--container-max-width-eden);
	margin: 0 auto;
	padding: 0 var(--container-padding);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.nad-hero__card {
	border-radius: 1.5rem;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	background: #fff;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nad-hero__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.nad-hero__card--large {
	padding: 2rem;
	padding-bottom: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: end;
	overflow: hidden;
}

.nad-hero__card--peach {
	background: linear-gradient(to bottom right, #fef3c7, #fde68a);
}

.nad-hero__card--green {
	background: linear-gradient(to bottom right, #d1fae5, #a7f3d0);
}

.nad-hero__card--injection {
	position: relative;
	background-color: var(--color-primary-lightest);
	background-image: url('https://pharmac7dev.wpenginepowered.com/wp-content/uploads/2026/01/NAD-1.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.nad-hero__card--cream {
	position: relative;
	background-color: var(--color-primary-lightest);
	background-image: url('https://pharmac7dev.wpenginepowered.com/wp-content/uploads/2026/01/NAD-topicals.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.nad-hero__card-image-overlay {
	display: none;
}

.nad-hero__card-content--overlay {
	position: relative;
	z-index: 1;
	color: #fff;
}

.nad-hero__card-content--overlay .nad-hero__card-title-small,
.nad-hero__card-content--overlay .nad-hero__card-subtitle,
.nad-hero__card-content--overlay .nad-hero__card-price {
	color: #fff;
}

.nad-hero__card-content--overlay .nad-hero__card-button--secondary {
	background-color: #fff;
	color: #000;
	border-color: #fff;
}

.nad-hero__card-content--overlay .nad-hero__card-button--secondary:hover {
	background-color: #f5f5f5;
	color: #000;
	border-color: #f5f5f5;
}

.nad-hero__card--small {
	padding: 1.5rem;
	text-align: left;
	min-height: 280px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: relative;
}

.nad-hero__cards-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.nad-hero__card-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding-bottom: 2rem;
}

.nad-hero__card-title {
	font-size: 2.75rem;
	font-weight: 400 !important;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--color-text);
	margin: 0 0 1rem;
}

.nad-hero__card-title-small {
	font-size: var(--font-size-xl);
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 0.5rem;
	color: var(--color-text);
	text-transform: lowercase;
}

.nad-hero__card-subtitle {
	font-size: var(--font-size-lg);
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 0.5rem;
	color: var(--color-text);
}

.nad-hero__card-text {
	font-size: 0.875rem;
	line-height: 1.5;
	color: #525252;
	margin: 0 0 1.5rem;
}

.nad-hero__card-bullets {
	list-style: none;
	padding: 0;
	margin: 1.25rem 0 0;
	display: grid;
	gap: 1rem;
}

.nad-hero__card-bullets li {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: 0.75rem;
	align-items: start;
	font-size: 0.875rem;
	line-height: 1.5;
	color: #525252;
	margin: 0;
}

.nad-hero__card-price {
	font-size: var(--font-size-lg);
	font-weight: 600;
	color: var(--color-text);
	margin: 0 0 1.5rem;
}

.nad-hero__card-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 2.75rem;
	padding: 0 1.5rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease-out;
	border: 1px solid transparent;
	cursor: pointer;
	align-self: flex-start;
	margin-top: 1.75rem;
}

.nad-hero__card-button--primary {
	background-color: #18181b;
	color: #fff;
}

.nad-hero__card-button--primary:hover {
	background-color: #27272a;
	color: #fff;
	text-decoration: none;
}

.nad-hero__card-button--secondary {
	background-color: #fff;
	color: var(--color-text);
	border-color: #d4b5ff;
}

.nad-hero__card-button--secondary:hover {
	background-color: #fafafa;
	color: var(--color-text);
	text-decoration: none;
	border-color: #c084fc;
}

.nad-hero__card-image {
	flex-shrink: 0;
	align-self: end;
	display: flex;
	align-items: flex-end;
	margin-bottom: -2rem;
	margin-right: -2rem;
	margin-left: -2rem;
	margin-top: 0;
}

.nad-hero__card-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 0.75rem 0.75rem 0 0;
	margin-bottom: 0;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

/* Mobile: NAD+ Hero */
@media (max-width: 768px) {
	.nad-hero {
		padding: 2.5rem 0;
	}

	.nad-hero__container {
		padding: 0 32px;
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.nad-hero__card--large {
		grid-template-columns: 1fr;
		padding: 1.5rem;
		padding-bottom: 0;
		gap: 1.5rem;
		overflow: visible;
	}
	
	.nad-hero__card-content {
		padding-bottom: 1.5rem;
	}
	
	.nad-hero__card-image {
		margin-bottom: 0;
		margin-right: -1.5rem;
		margin-left: -1.5rem;
		margin-top: 0;
	}

	.nad-hero__cards-row {
		grid-template-columns: 1fr;
	}

	.nad-hero__card--small {
		min-height: auto;
		padding: 1.25rem;
	}

	.nad-hero__card-title {
		font-size: 2.25rem;
	}

	.nad-hero__card-title-small {
		font-size: var(--font-size-lg);
	}

	.nad-hero__card-text {
		font-size: var(--font-size-sm);
	}

	.nad-hero__card-bullets li {
		font-size: var(--font-size-sm);
	}
}

/* ==========================================
   Home FAQ Section with Icons
   ========================================== */
/* ==========================================================================
   Blog Carousel Section
   ========================================================================== */

/* ==========================================================================
   Blog Carousel - Full-Width Editorial Style
   ========================================================================== */

.blog-carousel {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: 5rem 0;
	background-color: #fff;
	position: relative;
}

.blog-carousel__inner {
	position: relative;
	padding: 0;
}

.blog-carousel__viewport {
	position: relative;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE/Edge */
	-webkit-overflow-scrolling: touch;
}

.blog-carousel__viewport::-webkit-scrollbar {
	display: none;
}

.blog-carousel__viewport:focus {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

.blog-carousel__track {
	display: flex;
	gap: 0;
	will-change: transform;
	width: max-content;
}

/* Each set contains 6 cards in a 2-row grid */
.blog-carousel__set {
	display: grid;
	grid-template-rows: repeat(2, 1fr);
	grid-template-columns: repeat(12, 1fr);
	gap: 12px; /* Reduced from 24px to bring cards closer together */
	width: 100vw;
	flex-shrink: 0;
	scroll-snap-align: start;
	padding: 0 48px;
	box-sizing: border-box;
}

/* Grid layout: 2 cards top row, 4 cards bottom row */
/* Using 12-column grid: top cards span 6 cols (50%), bottom cards span 3 cols (25%) */
.blog-card {
	min-width: 0;
	scroll-snap-align: start;
}

/* Position classes for grid layout */
/* First 2 cards in each set: top row, each 50% width (spans 6 columns) */
.blog-card--pos-1,
.blog-card[data-position="1"] {
	grid-row: 1;
	grid-column: 1 / 7; /* Columns 1-6 (50%) */
}

.blog-card--pos-2,
.blog-card[data-position="2"] {
	grid-row: 1;
	grid-column: 7 / 13; /* Columns 7-12 (50%) */
}

/* Cards 3-6 in each set: bottom row, each 25% width (spans 3 columns) */
.blog-card--pos-3,
.blog-card[data-position="3"] {
	grid-row: 2;
	grid-column: 1 / 4; /* Columns 1-3 (25%) */
}

.blog-card--pos-4,
.blog-card[data-position="4"] {
	grid-row: 2;
	grid-column: 4 / 7; /* Columns 4-6 (25%) */
}

.blog-card--pos-5,
.blog-card[data-position="5"] {
	grid-row: 2;
	grid-column: 7 / 10; /* Columns 7-9 (25%) */
}

.blog-card--pos-6,
.blog-card[data-position="6"] {
	grid-row: 2;
	grid-column: 10 / 13; /* Columns 10-12 (25%) */
}

/* Fallback nth-child selectors within each set */
.blog-carousel__set > .blog-card:nth-child(1) {
	grid-row: 1;
	grid-column: 1 / 7;
}

.blog-carousel__set > .blog-card:nth-child(2) {
	grid-row: 1;
	grid-column: 7 / 13;
}

.blog-carousel__set > .blog-card:nth-child(3) {
	grid-row: 2;
	grid-column: 1 / 4;
}

.blog-carousel__set > .blog-card:nth-child(4) {
	grid-row: 2;
	grid-column: 4 / 7;
}

.blog-carousel__set > .blog-card:nth-child(5) {
	grid-row: 2;
	grid-column: 7 / 10;
}

.blog-carousel__set > .blog-card:nth-child(6) {
	grid-row: 2;
	grid-column: 10 / 13;
}

.blog-card__link {
	display: block;
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	background-color: #fff;
	text-decoration: none;
	min-height: 480px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card__link:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	text-decoration: none;
}

.blog-card__link:hover .blog-card__overlay {
	background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.15) 100%);
}

.blog-card__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.blog-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.blog-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #e5e7eb;
}

.blog-card__placeholder svg {
	width: 100%;
	height: 100%;
}

.blog-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
	z-index: 1;
	transition: background 0.3s ease;
}

.blog-card__content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 2rem;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	pointer-events: none;
}

.blog-card__title {
	font-size: 2rem;
	font-weight: 600;
	color: #ffffff;
	margin: 0;
	line-height: 1.3;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.blog-card__cta {
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	padding: 0.75rem 1.5rem;
	background-color: rgba(255, 255, 255, 0.95);
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-text);
	z-index: 3;
	pointer-events: none;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.blog-carousel__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: #fff;
	border: 1px solid var(--color-border);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
	z-index: 10;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	padding: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

/* Show arrows on desktop hover with reduced opacity */
.blog-carousel:hover .blog-carousel__nav {
	opacity: 0.6; /* Reduced from 1 to 0.6 for lower opacity */
	visibility: visible;
	pointer-events: auto;
}

/* Show arrows when interacting (mobile touch) with reduced opacity */
.blog-carousel--interacting .blog-carousel__nav {
	opacity: 0.6; /* Reduced from 1 to 0.6 for lower opacity */
	visibility: visible;
	pointer-events: auto;
}

.blog-carousel__nav:hover {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
	transform: translateY(-50%) scale(1.05);
}

.blog-carousel__nav:active {
	transform: translateY(-50%) scale(0.95);
}

.blog-carousel__nav:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

.blog-carousel__nav:disabled:hover {
	background-color: #fff;
	border-color: var(--color-border);
	color: inherit;
	transform: translateY(-50%);
}

.blog-carousel__nav--prev {
	left: 24px; /* Moved in from edge */
}

.blog-carousel__nav--next {
	right: 24px; /* Moved in from edge */
}

/* Mobile */
@media (max-width: 768px) {
	.blog-carousel {
		padding: 2.5rem 0;
	}
	
	/* On mobile: 2 cards top row, 2 cards bottom row (smaller height) */
	.blog-carousel__set {
		padding: 0 24px;
		gap: 12px; /* Reduced from 16px to match desktop */
		grid-template-rows: 1fr 0.7fr; /* Bottom row is 70% height of top row */
	}
	
	/* Top row: 2 cards, each 50% width */
	.blog-card--pos-1,
	.blog-card[data-position="1"],
	.blog-carousel__set > .blog-card:nth-child(1) {
		grid-row: 1;
		grid-column: 1 / 7; /* Columns 1-6 (50%) */
	}
	
	.blog-card--pos-2,
	.blog-card[data-position="2"],
	.blog-carousel__set > .blog-card:nth-child(2) {
		grid-row: 1;
		grid-column: 7 / 13; /* Columns 7-12 (50%) */
	}
	
	/* Bottom row: 2 cards, each 50% width, smaller height */
	.blog-card--pos-3,
	.blog-card[data-position="3"],
	.blog-carousel__set > .blog-card:nth-child(3) {
		grid-row: 2;
		grid-column: 1 / 7; /* Columns 1-6 (50%) */
	}
	
	.blog-card--pos-4,
	.blog-card[data-position="4"],
	.blog-carousel__set > .blog-card:nth-child(4) {
		grid-row: 2;
		grid-column: 7 / 13; /* Columns 7-12 (50%) */
	}
	
	/* Hide cards 5-6 on mobile */
	.blog-card--pos-5,
	.blog-card[data-position="5"],
	.blog-card--pos-6,
	.blog-card[data-position="6"],
	.blog-carousel__set > .blog-card:nth-child(5),
	.blog-carousel__set > .blog-card:nth-child(6) {
		display: none;
	}
	
	/* Top row cards: larger height */
	.blog-card--pos-1 .blog-card__link,
	.blog-card--pos-2 .blog-card__link,
	.blog-card[data-position="1"] .blog-card__link,
	.blog-card[data-position="2"] .blog-card__link,
	.blog-carousel__set > .blog-card:nth-child(1) .blog-card__link,
	.blog-carousel__set > .blog-card:nth-child(2) .blog-card__link {
		min-height: 360px;
	}
	
	/* Bottom row cards: smaller height */
	.blog-card--pos-3 .blog-card__link,
	.blog-card--pos-4 .blog-card__link,
	.blog-card[data-position="3"] .blog-card__link,
	.blog-card[data-position="4"] .blog-card__link,
	.blog-carousel__set > .blog-card:nth-child(3) .blog-card__link,
	.blog-carousel__set > .blog-card:nth-child(4) .blog-card__link {
		min-height: 250px !important; /* Smaller than top cards */
	}
	
	.blog-card__title {
		font-size: 1.5rem;
	}
	
	.blog-card__content {
		padding: 1.5rem;
	}
	
	.blog-carousel__nav {
		width: 40px;
		height: 40px;
	}
	
	.blog-carousel__nav--prev {
		left: 16px; /* Moved in from edge on mobile */
	}
	
	.blog-carousel__nav--next {
		right: 16px; /* Moved in from edge on mobile */
	}
	
	.blog-carousel__nav svg {
		width: 20px;
		height: 20px;
	}
}

/* iPhone specific - blog titles */
@media (max-width: 480px) {
	.blog-card__title {
		font-size: 1.125rem; /* 25% bigger than 0.9rem (0.9 * 1.25 = 1.125) */
	}
}

/* ==========================================================================
   Instagram Banner Section
   ========================================================================== */

.instagram-banner {
	padding: 0;
	margin: 0;
	overflow: hidden;
}

.instagram-banner__link {
	display: block;
	text-decoration: none;
	color: inherit;
	position: relative;
}

.instagram-banner__image-wrapper {
	position: relative;
	width: 100%;
	min-height: 300px;
	display: flex;
	align-items: center;
	border-top-left-radius: var(--border-radius-xl);
	border-top-right-radius: var(--border-radius-xl);
	overflow: hidden;
}

.instagram-banner__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1);
	transform-origin: center center; /* Ensure scaling happens from center */
	will-change: transform; /* Optimize for animations */
	transition: transform 8s ease-out; /* Slow zoom (no parallax translate) */
}

/* Zoom-only effect (JS adds this class once on load) */
.instagram-banner--zoom .instagram-banner__image {
	transform: scale(1.06);
}

.instagram-banner__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.instagram-banner__content {
	position: relative;
	z-index: 2;
	padding: 3rem var(--container-padding);
	width: 100%;
	max-width: var(--container-max-width);
	margin: 0 auto;
}

.instagram-banner__text {
	font-size: 2.75rem; /* Same as pt-program-hero__title */
	font-weight: 400 !important; /* Same as pt-program-hero__title */
	line-height: 1.2;
	letter-spacing: -0.02em; /* Same as pt-program-hero__title */
	color: #ffffff;
	margin: 0 0 1.5rem 0;
	text-align: left;
}

.instagram-banner__social-icons {
	display: flex;
	gap: 1.5rem;
	align-items: center;
	flex-wrap: wrap;
}

.instagram-banner__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	text-decoration: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.instagram-banner__social-link:hover {
	opacity: 0.8;
	transform: translateY(-2px);
	text-decoration: none;
}

.instagram-banner__icon {
	width: 28px;
	height: 28px;
	fill: currentColor;
}

/* Mobile: Instagram Banner */
@media (max-width: 768px) {
	.instagram-banner__image-wrapper {
		min-height: 200px;
	}
	
	.instagram-banner__image {
		height: 200%; /* Increased to 200% to provide more buffer for parallax movement */
	}
	
	.instagram-banner__content {
		padding: 2rem var(--container-padding);
	}
	
	.instagram-banner__text {
		font-size: 2.25rem; /* Same as pt-program-hero__title mobile */
		line-height: 1.2;
		margin-bottom: 1.25rem;
	}
	
	.instagram-banner__social-icons {
		gap: 1.25rem;
	}
	
	.instagram-banner__icon {
		width: 24px;
		height: 24px;
	}
}

/* ==========================================
   Featured On Section
   ========================================== */
.featured-on-section {
	padding: 5rem 0;
	background-color: var(--color-primary);
}

.featured-on-container {
	max-width: var(--container-max-width-eden);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.featured-on-logos {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	background-color: transparent;
	border-radius: 1rem;
	padding: 2.5rem 3rem;
	margin-bottom: 1.5rem;
}

.featured-on-logo {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.featured-on-logo-img {
	max-width: 100%;
	height: auto;
	max-height: 40px;
	width: auto;
	object-fit: contain;
	filter: brightness(0) invert(1);
	transition: opacity 0.2s ease;
}

.featured-on-logo:hover .featured-on-logo-img {
	opacity: 0.8;
}

.featured-on-pagination {
	display: flex;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.featured-on-pagination-indicator {
	width: 60px;
	height: 8px;
	border-radius: 9999px;
	background: linear-gradient(to right, #fff 0%, #fff 60%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0.3) 100%);
}

.featured-on-disclaimer {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.95); /* Improved contrast: lighter white for better accessibility */
	text-align: center;
	margin: 0;
	line-height: 1.5;
}

/* Mobile: Featured On */
@media (max-width: 768px) {
	.featured-on-section {
		padding: 2.5rem 0;
	}

	.featured-on-container {
		padding: 0 32px;
	}

	.featured-on-logos {
		flex-direction: row;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none; /* Firefox */
		-ms-overflow-style: none; /* IE and Edge */
		gap: 1.5rem;
		padding: 2rem 1.5rem;
		justify-content: flex-start;
	}

	.featured-on-logos::-webkit-scrollbar {
		display: none; /* Chrome, Safari, Opera */
	}

	.featured-on-logo {
		flex: 0 0 50%;
		scroll-snap-align: start;
		min-width: 0;
	}

	.featured-on-logo-img {
		max-height: 32px;
	}

	.featured-on-pagination-indicator {
		width: 50px;
		height: 6px;
		background: linear-gradient(to right, #fff 0%, #fff 60%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0.3) 100%);
	}
}

.home-faq-section {
	padding: 5rem 0;
	background-color: #f5f5f5;
}

/* PDP FAQ heading: keep consistent with site H2 styling */
.product-section-title {
	font-size: 2.75rem;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--color-text);
	margin: 0 0 1.25rem;
}

@media (max-width: 1024px) {
	.product-section-title {
		font-size: 2.25rem;
	}
}

.home-faq-container {
	max-width: var(--container-max-width-eden);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.home-faq-attributes {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 2rem;
	margin-bottom: 4rem;
}

.home-faq-attribute {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	text-align: center;
}

.home-faq-attribute-icon {
	width: 48px;
	height: 48px;
	color: var(--color-text-light);
	flex-shrink: 0;
}

.home-faq-attribute-text {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--color-text);
	line-height: 1.3;
}

.home-faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.home-faq-item {
	border: 1px solid #e4e4e7;
	border-radius: 1.5rem;
	overflow: hidden;
	background-color: #fff;
	transition: border-color 0.2s ease;
}

.home-faq-item:hover {
	border-color: var(--color-primary);
}

.home-faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	border: none;
	background: none;
	text-align: left;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.home-faq-question:hover {
	background-color: #fafafa;
}

.home-faq-question[aria-expanded="true"] {
	background-color: #f5f5f5;
}

.home-faq-question-text {
	font-size: var(--font-size-lg);
	font-weight: 600;
	color: var(--color-text);
	flex: 1;
	padding-right: 1rem;
}

.home-faq-icon {
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--color-text);
	line-height: 1;
	transition: transform 0.3s ease;
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-faq-question[aria-expanded="true"] .home-faq-icon {
	transform: rotate(45deg);
}

.home-faq-item[open] .home-faq-icon {
	transform: rotate(45deg);
}

.home-faq-item[open] > .home-faq-question {
	background-color: #f5f5f5;
}

.home-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.home-faq-answer[aria-hidden="false"] {
	max-height: 500px;
}

/* Product FAQs now use <details>/<summary> (no JS). */
.home-faq-item[open] .home-faq-answer {
	max-height: 500px;
}

.home-faq-answer-content {
	padding: 1.5rem 1.5rem 1.5rem;
}

.home-faq-answer-content p {
	margin: 0;
	color: var(--color-text-light);
	line-height: 1.6;
	font-size: var(--font-size-base);
}

/* Mobile: Home FAQ */
@media (max-width: 768px) {
	.home-faq-section {
		padding: 2.5rem 0;
	}

	.home-faq-container {
		padding: 0 32px;
	}

	.home-faq-attributes {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
		margin-bottom: 3rem;
	}

	.home-faq-attribute-icon {
		width: 40px;
		height: 40px;
	}

	.home-faq-attribute-text {
		font-size: 0.8125rem;
	}

	.home-faq-question {
		padding: 1rem 1.25rem;
	}

	.home-faq-question-text {
		font-size: var(--font-size-base);
		padding-right: 0.75rem;
	}

	.home-faq-answer-content {
		padding: 1.25rem 1.25rem 1.25rem;
	}

	.home-faq-answer-content p {
		font-size: var(--font-size-sm);
	}
}

