/*
 * ZivaPlans WooCommerce single-product styles
 *
 * Scope: this file is enqueued ONLY on WooCommerce product pages
 * (see functions.php - is_product() check), so none of these rules can
 * affect blog posts, standard pages, the cart, or checkout.
 *
 * Palette and type reused from the existing ZivaPlans brand:
 *   cream background  #FAF9F6   charcoal text  #1A1A1A / #2b2a28
 *   sage green accent #6B7565   sage hover     #2C3E2D
 *   muted sage/grey   #6B7B6C   card border    #ECE8DC
 *   headings: Georgia/serif (matches parent theme h1/h2/h3)
 */

body.single-product #primary,
body.single-product .content-area {
	max-width: 1220px;
	margin: 0 auto;
	padding: 32px 24px 80px;
}

body.single-product img {
	max-width: 100%;
	height: auto;
}

/* Breadcrumb ------------------------------------------------------------ */
body.single-product nav.woocommerce-breadcrumb {
	max-width: 1220px;
	margin: 0 auto 8px;
	padding: 0 24px;
	font-size: 13px;
	letter-spacing: 0.02em;
	color: #6B7B6C;
}
body.single-product nav.woocommerce-breadcrumb a {
	color: #6B7565;
	text-decoration: none;
}
body.single-product nav.woocommerce-breadcrumb a:hover {
	color: #2C3E2D;
	text-decoration: underline;
}
/* Two-column top section: gallery + summary ----------------------------- */
body.single-product .zp-product-top {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 56px;
	align-items: start;
	margin-bottom: 32px;
}

@media (max-width: 1024px) {
	body.single-product .zp-product-top {
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
	}
}

/* Gallery ----------------------------------------------------------------*/
body.single-product .zp-gallery-col {
	position: relative;
}

body.single-product .woocommerce-product-gallery {
	max-width: 100%;
	position: relative;
}

body.single-product .woocommerce-product-gallery__wrapper {
	margin: 0;
	border-radius: 16px;
	overflow: hidden;
	background: #F4F1EA;
}

body.single-product .woocommerce-product-gallery__image {
	aspect-ratio: 1 / 1;
	max-width: 1200px;
	overflow: hidden;
	display: block;
}

body.single-product .woocommerce-product-gallery__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	border-radius: 16px;
}

/* Simple non-interactive zoom affordance (the real zoom is handled by
 * WooCommerce's own zoom.js, enabled via add_theme_support in functions.php) */
body.single-product .flex-viewport::after {
	content: '\2295 Zoom';
	position: absolute;
	right: 16px;
	bottom: 16px;
	background: rgba(26, 26, 26, 0.72);
	color: #fff;
	font-size: 13px;
	letter-spacing: 0.03em;
	padding: 8px 14px;
	border-radius: 999px;
	pointer-events: none;
	z-index: 2;
}

/* Thumbnails (rendered by WooCommerce's flexslider gallery script) -------
   High-specificity selectors are needed here to reliably beat WooCommerce
   core's own .flex-control-thumbs / .flex-control-thumbs li / images rules
   (width:25%, width:100%, overflow:hidden) which otherwise force uneven,
   inconsistently-cropped thumbnails and clip the last item. */
body.single-product .flex-control-nav,
body.single-product.woocommerce div.product div.images .flex-control-thumbs {
	list-style: none;
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	gap: 12px;
	padding: 0 8px 0 0;
	margin: 20px 0 0;
	max-width: 100%;
}

body.single-product .flex-control-nav::-webkit-scrollbar,
body.single-product.woocommerce div.product div.images .flex-control-thumbs::-webkit-scrollbar {
	display: none;
	height: 0;
}

body.single-product .flex-control-nav li,
body.single-product.woocommerce div.product div.images .flex-control-thumbs li {
	width: 120px;
	height: auto;
	flex: 0 0 auto;
	float: none;
	margin: 0;
}

body.single-product .flex-control-nav img,
body.single-product.woocommerce div.product div.images .flex-control-thumbs li img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	height: auto;
	object-fit: cover;
	border-radius: 10px;
	cursor: pointer;
	opacity: 1;
	border: 2px solid transparent;
	transition: border-color 0.15s ease, opacity 0.15s ease;
}

body.single-product .flex-control-nav img:hover,
body.single-product.woocommerce div.product div.images .flex-control-thumbs li img:hover {
	border-color: #C9C3AE;
}

body.single-product .flex-control-nav .flex-active,
body.single-product .flex-control-nav img.flex-active,
body.single-product.woocommerce div.product div.images .flex-control-thumbs li img.flex-active {
	border-color: #6B7565;
	opacity: 1;
}

body.single-product .flex-control-nav img:focus-visible,
body.single-product.woocommerce div.product div.images .flex-control-thumbs li img:focus-visible {
	outline: 3px solid #2C3E2D;
	outline-offset: 2px;
}

@media (max-width: 1024px) {
	body.single-product .flex-control-nav li,
	body.single-product.woocommerce div.product div.images .flex-control-thumbs li {
		width: 105px;
	}
}

@media (max-width: 480px) {
	body.single-product .flex-control-nav li,
	body.single-product.woocommerce div.product div.images .flex-control-thumbs li {
		width: 90px;
	}
}
/* Summary column --------------------------------------------------------*/
body.single-product .zp-summary-col .summary {
	max-width: 560px;
}

body.single-product .zp-badge-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 16px;
}

body.single-product .zp-badge {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 7px 16px;
	border-radius: 999px;
	background: #EFEDE2;
	color: #2C3E2D;
}

body.single-product .zp-badge-muted {
	background: transparent;
	border: 1px solid #D8D4C8;
	color: #6B7565;
}

body.single-product .summary h1.product_title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(28px, 3.4vw, 42px);
	line-height: 1.15;
	color: #1A1A1A;
	margin: 0 0 10px;
}

body.single-product .zp-subtitle {
	font-size: 17px;
	line-height: 1.6;
	color: #5f6b5e;
	margin: 0 0 20px;
	max-width: 46ch;
}

body.single-product div.product p.price {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    color: #5f6b5e;
    font-weight: 700;
    margin: 0 0 18px;
    display: block;
}

body.single-product div.product p.price ins {
    font-size: 22px;
    font-weight: 700;
    color: #a66340;
    text-decoration: none;
}

body.single-product div.product p.price del {
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #5f6b5e;
}

body.single-product .summary .woocommerce-product-details__short-description {
	font-size: 16.5px;
	line-height: 1.7;
	color: #353432;
	margin: 0 0 20px;
}

body.single-product .zp-benefits {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	display: grid;
	gap: 10px;
	font-size: 15.5px;
	color: #2b2a28;
}

body.single-product .zp-benefits li {
	position: relative;
	padding-left: 26px;
}

body.single-product .zp-benefits li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	top: 0;
	color: #6B7565;
	font-weight: 700;
}
/* Quantity + Add to Cart -------------------------------------------------*/
body.single-product .quantity {
	display: inline-block;
	margin: 0 12px 20px 0;
	vertical-align: middle;
}

body.single-product .quantity .qty {
	width: 68px;
	height: 52px;
	border: 1px solid #D8D4C8;
	border-radius: 10px;
	text-align: center;
	font-size: 16px;
}

body.single-product .quantity .qty:focus-visible {
	outline: 3px solid #2C3E2D;
	outline-offset: 2px;
}

body.single-product form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 8px;
}

body.single-product .single_add_to_cart_button,
body.single-product .zp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #6B7565;
	color: #fff !important;
	font-size: 17px;
	font-weight: 600;
	padding: 16px 36px;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	text-decoration: none;
	min-height: 52px;
	transition: background-color 0.2s ease, transform 0.15s ease;
}

body.single-product .single_add_to_cart_button:hover,
body.single-product .zp-btn:hover {
	background: #2C3E2D;
}

body.single-product .single_add_to_cart_button:active,
body.single-product .zp-btn:active {
	transform: scale(0.98);
}

body.single-product .single_add_to_cart_button:focus-visible,
body.single-product .zp-btn:focus-visible {
	outline: 3px solid #2C3E2D;
	outline-offset: 3px;
}

/* Trust row + digital note ------------------------------------------------*/
body.single-product .zp-trust-row {
	list-style: none;
	margin: 20px 0 0;
	padding: 18px 0 0;
	border-top: 1px solid #E7E3D8;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 22px;
	font-size: 14.5px;
	color: #41453f;
}

body.single-product .zp-trust-row li {
	position: relative;
	padding-left: 22px;
}

body.single-product .zp-trust-row li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	top: 0;
	color: #6B7565;
}

body.single-product .zp-digital-note {
	font-size: 14px;
	color: #6B7B6C;
	margin: 18px 0 0;
}

@media (max-width: 480px) {
	body.single-product .zp-trust-row {
		grid-template-columns: 1fr;
	}
}
/* Details area: feature grid, route overview, description, final CTA ----*/
body.single-product .zp-product-details {
	margin-top: 24px;
}

body.single-product .zp-section {
	margin: 56px 0;
}

body.single-product .zp-section h2 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(24px, 2.6vw, 32px);
	color: #5f6b5e;
	margin: 0 0 24px;
	text-align: center;
}

body.single-product .zp-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

@media (max-width: 1024px) {
	body.single-product .zp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
	body.single-product .zp-grid { grid-template-columns: 1fr; }
}

body.single-product .zp-grid-card {
	background: #fff;
	border: 1px solid #ECE8DC;
	border-radius: 14px;
	padding: 22px;
}

body.single-product .zp-grid-card h3 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 18px;
	color: #2C3E2D;
	margin: 0 0 8px;
}

body.single-product .zp-grid-card p {
	font-size: 15px;
	line-height: 1.6;
	color: #41453f;
	margin: 0;
}

body.single-product .zp-route-facts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	body.single-product .zp-route-facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
	body.single-product .zp-route-facts { grid-template-columns: 1fr; }
}

body.single-product .zp-route-fact {
	text-align: center;
	padding: 18px 10px;
	background: #FAF9F6;
	border-radius: 12px;
}

body.single-product .zp-route-fact dt {
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #6B7B6C;
	margin: 0 0 6px;
}

body.single-product .zp-route-fact dd {
	font-size: 16px;
	font-weight: 600;
	color: #1A1A1A;
	margin: 0;
}
/* Description tabs -------------------------------------------------------*/
body.single-product .woocommerce-tabs {
	margin: 56px 0;
}

body.single-product .woocommerce-tabs ul.tabs {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	border-bottom: 1px solid #ECE8DC;
	text-align: center;
}

body.single-product .woocommerce-tabs ul.tabs li {
	display: inline-block;
}

body.single-product .woocommerce-tabs ul.tabs li a {
	display: inline-block;
	padding: 0 0 14px;
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #6B7B6C;
	text-decoration: none;
}

body.single-product .woocommerce-tabs .panel {
	max-width: 760px;
	margin: 0 auto;
	font-size: 17px;
	line-height: 1.75;
	color: #2b2a28;
}

body.single-product .woocommerce-tabs .panel h2 {
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #6B7B6C;
	text-align: left;
	margin: 0 0 20px;
}

body.single-product .woocommerce-tabs .panel h2:not(:first-child) {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 24px;
	text-transform: none;
	letter-spacing: normal;
	color: #5f6b5e;
	margin: 36px 0 14px;
}

body.single-product .woocommerce-tabs .panel h3 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 19px;
	color: #2C3E2D;
	margin: 24px 0 10px;
}

body.single-product .woocommerce-tabs .panel p {
	margin: 0 0 18px;
}

body.single-product .woocommerce-tabs .panel ul {
	margin: 0 0 18px;
	padding-left: 22px;
	list-style: disc outside !important;
}

body.single-product .woocommerce-tabs .panel li {
	margin-bottom: 8px;
	display: list-item !important;
	list-style: disc outside !important;
}
/* Final call to action ----------------------------------------------------*/
body.single-product .zp-final-cta {
	background: #e6e0cf;
	border-radius: 20px;
	padding: 48px 32px;
	text-align: center;
	max-width: 760px;
	margin: 64px auto;
}

body.single-product .zp-final-cta h2 {
	margin: 0 0 10px;
}

body.single-product .zp-final-cta-price {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 26px;
	color: #2C3E2D;
	margin: 0 0 14px;
}

body.single-product .zp-final-cta-message {
	font-size: 16.5px;
	color: #353432;
	max-width: 46ch;
	margin: 0 auto 22px;
	line-height: 1.6;
}

body.single-product .zp-final-cta-note {
	font-size: 13.5px;
	color: #6B7B6C;
	margin: 14px 0 0;
}

/* Related products --------------------------------------------------------*/
body.single-product .related.products {
	max-width: 1220px;
	margin: 64px auto 0;
	padding: 0 24px;
}

body.single-product .related.products > h2 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 26px;
	color: #5f6b5e;
	text-align: center;
	margin: 0 0 28px;
}

body.single-product .related.products ul.products {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	list-style: none;
	padding: 0;
	margin: 0;
}

@media (max-width: 768px) {
	body.single-product .related.products ul.products {
		grid-template-columns: 1fr;
	}
}

body.single-product .related.products ul.products li.product {
	background: #fff;
	border: 1px solid #ECE8DC;
	border-radius: 14px;
	padding: 18px;
	text-align: center;
}

body.single-product .related.products ul.products li.product img {
	border-radius: 10px;
	margin-bottom: 12px;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

body.single-product .related.products ul.products li.product .woocommerce-loop-product__title {
	font-size: 16px;
	color: #1A1A1A;
	margin: 0 0 6px;
}

body.single-product .related.products ul.products li.product .price {
	color: #2C3E2D;
	font-weight: 600;
	margin-bottom: 12px;
	display: block;
}

body.single-product .related.products ul.products li.product a.button {
	display: inline-block;
	background: #6B7565;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 22px;
	border-radius: 999px;
	text-decoration: none;
}

body.single-product .related.products ul.products li.product a.button:hover {
	background: #2C3E2D;
}
/* Accessibility ------------------------------------------------------------*/
body.single-product a:focus-visible,
body.single-product button:focus-visible,
body.single-product input:focus-visible {
	outline: 3px solid #2C3E2D;
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	body.single-product * {
		transition: none !important;
		animation: none !important;
	}
}

/* Small-screen refinements --------------------------------------------------*/
@media (max-width: 600px) {
	body.single-product #primary,
	body.single-product .content-area {
		padding: 20px 16px 56px;
	}
	body.single-product .summary h1.product_title {
		font-size: 26px;
	}
	body.single-product form.cart {
		flex-direction: column;
		align-items: stretch;
	}
	body.single-product .quantity {
		margin: 0 0 12px;
	}
	body.single-product .single_add_to_cart_button,
	body.single-product .zp-btn {
		width: 100%;
	}
}


/* =========================================================================
 * v2 layout update
 * - Fixes a real bug: WooCommerce's own default stylesheet applies
 *   width:48%/float to div.images and .summary, which was fighting our
 *   CSS Grid columns and leaving a large blank gap between them.
 * - Widens the product container to ~1600px with two strictly equal
 *   (50/50) columns.
 * - Caps the main gallery image at ~800x800px, adds prev/next arrow
 *   styling, polishes thumbnails.
 * - Adds styles for the digital note, condensed reassurance line, and
 *   collapsible accordions used for extra product information.
 * ========================================================================= */

/* Undo WooCommerce core's default 48% float so our grid columns can use
   their full, equal width. */
body.single-product div.product div.images,
body.single-product div.product div.summary {
	width: 100%;
	float: none;
}

/* Wider, balanced container */
body.single-product #primary,
body.single-product .content-area {
	max-width: 1600px;
}

/* Strictly equal 50/50 columns, top aligned - desktop only, so the
   existing mobile stacking rule (max-width:1024px) keeps working */
@media (min-width: 1025px) {
	body.single-product .zp-product-top {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		align-items: start;
	}
}
/* Main gallery image: sized dynamically from the photo's own aspect
   ratio (no forced square crop), capped at 800px wide so it never
      grows larger than the design's intended max size */
body.single-product .woocommerce-product-gallery {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

body.single-product .woocommerce-product-gallery__wrapper {
	position: relative;
}

body.single-product .woocommerce-product-gallery__image {
	max-width: 800px;
	background: #F4F1EA;
}

/* Root-cause fix: a higher-specificity rule from the parent theme /
   WooCommerce core CSS applies aspect-ratio:1/1 to the active slide,
   forcing a square box no matter the photo's real proportions. This
   override (matching that specificity) lets the slide - and the
   FlexSlider viewport that sizes itself from it - match the image's
   actual rendered height instead of leaving empty space below it. */
body.single-product .woocommerce-product-gallery__image,
body.single-product .woocommerce-product-gallery__image.flex-active-slide {
    aspect-ratio: auto;
    height: auto;
}
               
body.single-product .woocommerce-product-gallery__image img {
	width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
	border-radius: 16px;
}

/* Thumbnails: consolidated into the high-specificity ruleset above
   (.flex-control-nav / .flex-control-thumbs), see near line 108. */

/* Gallery prev/next arrows */
body.single-product .zp-gallery-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: none;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	line-height: 1;
	color: #2B2B28;
	cursor: pointer;
}

body.single-product .zp-gallery-arrow:hover {
	background: #fff;
}

body.single-product .zp-gallery-arrow-prev {
	left: 16px;
}

body.single-product .zp-gallery-arrow-next {
	right: 16px;
}

/* Digital / availability note - above Add to Cart */
body.single-product .zp-digital-note {
	font-size: 14px;
	color: #6b6b63;
	margin: 4px 0 16px;
}

/* Condensed reassurance line - under Add to Cart */
body.single-product .zp-reassurance {
	font-size: 14px;
	color: #6b6b63;
	margin: 16px 0 28px;
}

body.single-product .zp-summary-col img,
body.single-product .woocommerce-product-gallery img {
	max-width: 100%;
	height: auto;
}

/* Responsive: proportionally reduce gallery/padding on laptops & tablets */
@media (max-width: 1300px) {
	body.single-product #primary,
	body.single-product .content-area {
		padding-left: 20px;
		padding-right: 20px;
	}
	body.single-product .zp-product-top {
		gap: 40px;
	}
}

/* Mobile: stack (handled by existing 600px rule), full-width Add to Cart */
@media (max-width: 600px) {
	body.single-product .single_add_to_cart_button,
	body.single-product .zp-btn-primary {
		width: 100%;
		text-align: center;
	}
	body.single-product form.cart {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}
}


/* =====================================================================
 * 9. Full-width long-description landing sections
  * Replaces the old narrow accordions (benefits / what's-inside /
   * route-facts, formerly squeezed into the summary column) and the
    * duplicate plain-text Description tab with a full-width section
     * journey rendered below the gallery/summary area. Every section is
      * scoped to body.single-product only and reuses the container width,
       * spacing scale, colors, typography and card/button styles already
        * defined above in this file.
         * ---------------------------------------------------------------------*/
         
         body.single-product .zp-section {
         	padding: 30px 20px;
         	}
         	@media (min-width: 768px) {
         		body.single-product .zp-section { padding: 30px 32px; }
         		}
         		@media (min-width: 1024px) {
         			body.single-product .zp-section { padding: 30px 40px; }
         			}
         			@media (min-width: 1280px) {
         				body.single-product .zp-section { padding: 30px 40px; }
         				}
         				
         				body.single-product .zp-section-inner {
         					max-width: 1200px;
         						margin: 0 auto;
         						}
         						
         						body.single-product .zp-section--tinted {
         							background: #e6e0cf;
         							}
         							
         							body.single-product .zp-section-eyebrow {
         								display: block;
         									font-size: 13px;
         										font-weight: 600;
         											letter-spacing: 0.1em;
         												text-transform: uppercase;
         													color: #6B7565;
         														margin: 0 0 14px;
         															text-align: center;
         															}
         															
         															body.single-product .zp-section-heading {
         																font-family: Georgia, "Times New Roman", serif;
         																	font-size: clamp(26px, 3.2vw, 36px);
         																		color: #1A1A1A;
         																			text-align: center;
         																				margin: 0 0 20px;
         																				}
         																				
         																				body.single-product .zp-section-heading--left {
         																					text-align: left;
         																					}
         																					
         																					
         																					/* Section 1: introduction */
         																					body.single-product .zp-intro {
         																					max-width: 640px;
         																					margin: 0 auto;
         																					text-align: center;
         																					}
         																					body.single-product .zp-intro p {
         																					font-size: 17px;
         																					line-height: 1.75;
         																					color: #353432;
         																					}
         																					body.single-product .zp-intro .zp-intro-benefit {
         																					font-weight: 600;
         																					color: #2C3E2D;
         																					}
         																					
         																					/* Section 2: key guide details stats row */
         																					body.single-product .zp-stats {
         																					display: grid;
         																					grid-template-columns: repeat(4, 1fr);
         																					gap: 32px;
         																					max-width: 1100px;
         																					margin: 0 auto;
         																					}
         																					@media (max-width: 1024px) {
         																					body.single-product .zp-stats { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
         																					}
         																					@media (max-width: 480px) {
         																					body.single-product .zp-stats { grid-template-columns: 1fr; }
         																					}
         																					body.single-product .zp-stat {
         																					text-align: center;
         																					padding: 0 16px;
         																					border-left: 1px solid #ECE8DC;
         																					}
         																					body.single-product .zp-stat:first-child { border-left: none; }
         																					@media (max-width: 1024px) {
         																					body.single-product .zp-stat:nth-child(2n+1) { border-left: none; }
         																					}
         																					@media (max-width: 480px) {
         																					body.single-product .zp-stat { border-left: none; }
         																					}
         																					body.single-product .zp-stat-number {
         																					display: block;
         																					font-family: Georgia, "Times New Roman", serif;
         																					font-size: clamp(22px, 3vw, 30px);
         																					color: #2C3E2D;
         																					margin-bottom: 8px;
         																					}
         																					body.single-product .zp-stat-label {
         																					font-size: 14.5px;
         																					color: #6B7B6C;
         																					line-height: 1.5;
         																					}
         																					
         																					/* Sections 3 & 7: alternating image + text split */
         																					body.single-product .zp-split {
         																					display: grid;
         																					grid-template-columns: 1fr 1fr;
         																					gap: 56px;
         																					align-items: center;
         																					}
         																					@media (max-width: 1024px) {
         																					body.single-product .zp-split { grid-template-columns: 1fr; gap: 28px; }
         																					}
         																					body.single-product .zp-split-media { order: 1; }
         																					body.single-product .zp-split-body { order: 2; }
         																					
         																					@media (min-width: 1025px) {
         																					body.single-product .zp-split--reverse .zp-split-media { order: 2; }
         																					body.single-product .zp-split--reverse .zp-split-body { order: 1; }
         																					}
         																					@media (max-width: 1024px) {
         																					body.single-product .zp-split-media { order: 1 !important; }
         																					body.single-product .zp-split-body { order: 2 !important; }
         																					}
         																					body.single-product .zp-split-media img {
         																					width: 100%;
         																					height: auto;
         																					border-radius: 16px;
         																					display: block;
         																					}
         																					
         																					body.single-product .zp-split-body h2,
         																					body.single-product .zp-split-body h3 {
         																					font-family: Georgia, "Times New Roman", serif;
         																					color: #1A1A1A;
         																					margin: 0 0 14px;
         																					}
         																					body.single-product .zp-split-body p {
         																					font-size: 16.5px;
         																					line-height: 1.75;
         																					color: #353432;
         																					max-width: 520px;
         																					}
         																					body.single-product .zp-split-body ul {
         																					margin: 16px 0 0;
         																					padding-left: 22px;
         																					}
         																					body.single-product .zp-split-body ul li {
         																					margin-bottom: 8px;
         																					font-size: 16px;
         																					line-height: 1.6;
         																					color: #353432;
         																					}
         																					
         																					/* Sections 4 & 5: 3-column card grid modifier (base .zp-grid/.zp-grid-card already defined above) */
         																					body.single-product .zp-grid--3 {
         																					grid-template-columns: repeat(3, 1fr);
         																					}
         																					@media (max-width: 1024px) {
         																					body.single-product .zp-grid--3 { grid-template-columns: repeat(2, 1fr); }
         																					}
         																					@media (max-width: 560px) {
         																					body.single-product .zp-grid--3 { grid-template-columns: 1fr; }
         																					}
         																					
         																					/* Section 6: route overview panel */
         																					body.single-product .zp-route-panel {
         																					display: grid;
         																					grid-template-columns: 0.9fr 1.1fr;
         																					gap: 48px;
         																					align-items: center;
         																					}
         																					@media (max-width: 1024px) {
         																					body.single-product .zp-route-panel { grid-template-columns: 1fr; gap: 28px; }
         																					}
         																					body.single-product .zp-route-panel img {
         																					width: 100%;
         																					height: auto;
         																					border-radius: 16px;
         																					display: block;
         																					}
         																					body.single-product .zp-route-panel .zp-route-facts {
         																					max-width: none;
         																					margin: 0;
         																					grid-template-columns: repeat(2, 1fr);
         																					}
         																					@media (max-width: 480px) {
         																					body.single-product .zp-route-panel .zp-route-facts { grid-template-columns: 1fr; }
         																					}
         																					
         																					/* Section 8: time-saving benefits row */
         																					body.single-product .zp-benefits-row {
         																					display: grid;
         																					grid-template-columns: repeat(3, 1fr);
         																					gap: 32px;
         																					max-width: 1000px;
         																					margin: 0 auto;
         																					text-align: center;
         																					}
         																					@media (max-width: 768px) {
         																					body.single-product .zp-benefits-row { grid-template-columns: 1fr; gap: 28px; }
         																					}
         																					body.single-product .zp-benefit h3 {
         																					font-family: Georgia, "Times New Roman", serif;
         																					font-size: 19px;
         																					color: #2C3E2D;
         																					margin: 0 0 8px;
         																					}
         																					body.single-product .zp-benefit p {
         																					font-size: 15.5px;
         																					line-height: 1.6;
         																					color: #5f6b5e;
         																					margin: 0;
         																					}
         																					
         																					/* Section 9: digital product information panel */
         																					body.single-product .zp-digital-panel {
         																					max-width: 720px;
         																					margin: 0 auto;
         																					background: #fff;
         																					border: 1px solid #ECE8DC;
         																					border-radius: 20px;
         																					padding: 40px 36px;
         																					text-align: center;
         																					}
         																					body.single-product .zp-digital-panel .zp-digital-icon {
         																					display: inline-flex;
         																					align-items: center;
         																					justify-content: center;
         																					width: 48px;
         																					height: 48px;
         																					border-radius: 999px;
         																					background: #F4F1EA;
         																					font-size: 22px;
         																					margin-bottom: 16px;
         																					}
         																					body.single-product .zp-digital-panel h2 {
         																					font-family: Georgia, "Times New Roman", serif;
         																					font-size: 22px;
         																					color: #1A1A1A;
         																					margin: 0 0 12px;
         																					}
         																					body.single-product .zp-digital-panel p {
         																					font-size: 15.5px;
         																					line-height: 1.7;
         																					color: #5f6b5e;
         																					margin: 0;
         																					}
         																					
         																					/* Section 10: final CTA extras (base .zp-final-cta/.zp-final-cta-message/.zp-final-cta-note already existed in this file but were unused) */
         																					body.single-product .zp-final-cta-price {
         																					font-family: Georgia, "Times New Roman", serif;
         																					font-size: 26px;
         																					color: #2C3E2D;
         																					margin: 0 0 18px;
         																					}
         																					body.single-product .zp-final-cta form.cart {
         																					justify-content: center;
         																					margin: 0 0 14px;
         																					}
         																					
         																					/* Reviews section: heading is printed by us; hide the now-redundant single "Reviews" tab link since there is nothing left to switch between */
         																					body.single-product .zp-reviews-section .woocommerce-tabs ul.tabs {
         																					display: none;
         																					}
         																					body.single-product .zp-reviews-section .woocommerce-tabs {
         																					border: none;
         																					padding: 0;
         																					margin: 0;
         																					}
         																					@media (max-width: 480px) {
         																					body.single-product .zp-section-heading { font-size: 24px; }
         																					body.single-product .zp-digital-panel { padding: 32px 24px; }
         																					}
         																					
/* GPX import instructions ------------------------------------------------ */
body.single-product .zp-grid--2 {
	grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1024px) {
	body.single-product .zp-grid--2 { grid-template-columns: 1fr; }
}

body.single-product .zp-import-icon-wrap {
	text-align: center;
}

body.single-product .zp-import-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	background: #F4F1EA;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: #2C3E2D;
	margin: 0 auto 20px;
}

body.single-product .zp-import-intro {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 32px;
	color: #353432;
	font-size: 16px;
	line-height: 1.7;
}

body.single-product .zp-import-card h3 {
	margin-bottom: 16px;
}

body.single-product .zp-steps {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}

body.single-product .zp-steps > li {
	position: relative;
	padding-left: 34px;
	margin-bottom: 12px;
	font-size: 15px;
	line-height: 1.6;
	color: #41453f;
}

body.single-product .zp-step-num {
	position: absolute;
	left: 0;
	top: 0;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: #6B7565;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

body.single-product .zp-steps strong {
	color: #1A1A1A;
}

body.single-product .zp-steps ul {
	list-style: disc outside;
	margin: 8px 0 0;
	padding-left: 18px;
}

body.single-product .zp-steps ul li {
	margin-bottom: 6px;
	font-size: 14.5px;
	color: #41453f;
}

body.single-product .zp-import-note {
	font-size: 13.5px;
	color: #6B7B6C;
	margin: 14px 0 0;
	padding-top: 14px;
	border-top: 1px solid #ECE8DC;
}

body.single-product .zp-import-card h4 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 15.5px;
	color: #2C3E2D;
	margin: 22px 0 10px;
}

body.single-product .zp-import-card > p {
	margin: 0 0 12px;
}
