/**
 * CoreBuild Essential Pro - Ultra-Clean WooCommerce Stylesheet
 * 100% Matches Ripped Up Nutrition High-Converting Storefront
 * Engineered by Method Commerce
 */

/* 1. Product Cards Grid (Shop & Bestsellers) */
.corebuild-products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.product-card-item {
	background: #ffffff;
	border: 1px solid #eeeeee;
	border-radius: var(--radius-xs);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
}

.product-card-item:hover {
	transform: translateY(-4px);
	border-color: #d0d0d0;
	box-shadow: var(--shadow-hover);
}

.product-card-media {
	position: relative;
	background: #fafafa;
	padding: 24px 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 220px;
	border-bottom: 1px solid #f5f5f5;
}

.product-thumb-link {
	display: block;
	width: 100%;
	text-align: center;
}

.product-featured-img {
	max-height: 180px;
	width: auto;
	margin: 0 auto;
	transition: transform 0.3s ease;
}

.product-card-item:hover .product-featured-img {
	transform: scale(1.05);
}

.product-discount-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #bf0000;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 800;
	padding: 3px 7px;
	border-radius: 2px;
	z-index: 2;
	letter-spacing: 0.05em;
}

.product-badge-tag {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #000000;
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 800;
	padding: 3px 7px;
	border-radius: 2px;
	letter-spacing: 0.06em;
	z-index: 2;
}

.trustified-seal {
	position: absolute;
	bottom: 8px;
	left: 10px;
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid #e2e8f0;
	font-size: 1rem;
	font-weight: 700;
	color: #080900;
	padding: 2px 6px;
	border-radius: 3px;
}

.product-card-details {
	padding: 16px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	background: #ffffff;
}

.product-rating {
	margin-bottom: 6px;
}

.corebuild-rating-stars {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.stars-icons {
	display: inline-flex;
	gap: 1.5px;
}

.star-icon path {
	fill: #f5c518;
}

.rating-text {
	font-size: 1.15rem;
	font-weight: 700;
	color: #718096;
}

.product-card-title {
	font-size: 1.45rem;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 6px;
	color: #121212;
	text-transform: uppercase;
}

.product-card-title a:hover {
	color: var(--cb-blue);
}

.product-spec-pill {
	font-size: 1.15rem;
	font-weight: 700;
	color: #108474;
	margin-bottom: 6px;
}

.flavor-pills-list {
	margin-bottom: 8px;
}

.flavor-mini-pill {
	display: inline-block;
	font-size: 1.05rem;
	color: #64748b;
	background: #f1f5f9;
	padding: 2px 6px;
	border-radius: 3px;
	font-weight: 600;
}

.product-card-pricing {
	margin-top: auto;
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 12px;
}

.product-sale-price {
	font-size: 1.75rem;
	font-weight: 800;
	color: #080900;
}

.product-regular-mrp {
	font-size: 1.25rem;
	color: #a0aec0;
	text-decoration: line-through;
}

.product-quick-atc-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	background: #000000;
	color: #ffffff;
	font-size: 1.2rem;
	font-weight: 700;
	padding: 10px;
	border: none;
	border-radius: 3px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: background 0.2s ease;
}

.product-quick-atc-btn:hover {
	background: var(--cb-blue);
}

/* ==========================================================================
   2. SINGLE PRODUCT PAGE (PDP) - RIPPEDUPNUTRITION HIGH-CONVERTING DESIGN
   ========================================================================== */
.corebuild-pdp-wrapper {
	padding: 20px 0 50px;
	background: #ffffff;
}

.pdp-breadcrumbs-bar {
	font-size: 1.25rem;
	color: #64748b;
	margin-bottom: 24px;
}

.pdp-breadcrumbs-bar a {
	color: #64748b;
	text-decoration: none;
}

.pdp-breadcrumbs-bar a:hover {
	color: #0f172a;
}

.pdp-breadcrumbs-bar .sep {
	margin: 0 8px;
	color: #cbd5e1;
}

.pdp-breadcrumbs-bar .current {
	color: #0f172a;
	font-weight: 600;
}

/* 2-Column Hero Buy Box */
.pdp-main-hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 46px;
	align-items: flex-start;
}

/* LEFT COLUMN: Gallery & Carousels */
.pdp-gallery-sticky-wrap {
	position: sticky;
	top: 90px;
}

.pdp-badges-floating-stack {
	position: absolute;
	top: 14px;
	left: 14px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	z-index: 10;
}

.pdp-bestseller-badge {
	background: #0f172a;
	color: #ffffff;
	font-size: 1.05rem;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 4px;
	letter-spacing: 0.04em;
}

.pdp-discount-pill-badge {
	background: #16a34a;
	color: #ffffff;
	font-size: 1.05rem;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 4px;
	width: max-content;
}

.pdp-main-image-viewport {
	position: relative;
	background: #f8fafc;
	border: 1.5px solid #e2e8f0;
	border-radius: 16px;
	padding: 30px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 440px;
	overflow: hidden;
}

.pdp-active-featured-image {
	max-height: 400px;
	width: auto;
	object-fit: contain;
	transition: opacity 0.15s ease;
}

.gallery-nav-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid #e2e8f0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	color: #0f172a;
	cursor: pointer;
	z-index: 5;
	transition: all 0.2s ease;
}

.gallery-nav-arrow:hover {
	background: #0f172a;
	color: #ffffff;
}

.gallery-nav-arrow.prev { left: 12px; }
.gallery-nav-arrow.next { right: 12px; }

.pdp-thumbnail-slider-row {
	display: flex;
	gap: 10px;
	margin-top: 14px;
	overflow-x: auto;
	scrollbar-width: none;
	padding-bottom: 4px;
}

.pdp-thumbnail-slider-row::-webkit-scrollbar {
	display: none;
}

.pdp-thumb-card {
	flex: 0 0 76px;
	height: 76px;
	border: 2px solid #e2e8f0;
	border-radius: 10px;
	padding: 4px;
	background: #f8fafc;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pdp-thumb-card.active,
.pdp-thumb-card:hover {
	border-color: #2563eb;
	background: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(37, 99, 235, 0.15);
}

.pdp-thumb-img {
	max-height: 100%;
	width: auto;
	object-fit: contain;
}

.pdp-gallery-trust-banner {
	margin-top: 14px;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 10px;
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.pdp-gallery-trust-banner .trust-shield-icon {
	font-size: 2.2rem;
}

.pdp-gallery-trust-banner strong {
	display: block;
	font-size: 1.25rem;
	color: #166534;
}

.pdp-gallery-trust-banner span {
	font-size: 1.15rem;
	color: #15803d;
}

/* RIGHT COLUMN: Buy Box & CRO Conversion Engine */
.pdp-buybox-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.pdp-rating-social-proof {
	display: flex;
	align-items: center;
	gap: 10px;
}

.pdp-stars-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #fffbeb;
	border: 1px solid #fef3c7;
	padding: 3px 8px;
	border-radius: 6px;
}

.stars-gold {
	color: #f59e0b;
	font-size: 1.3rem;
}

.rating-num {
	font-size: 1.2rem;
	font-weight: 700;
	color: #92400e;
}

.pdp-recommended-tag {
	font-size: 1.15rem;
	font-weight: 700;
	color: #16a34a;
	background: #f0fdf4;
	padding: 3px 8px;
	border-radius: 6px;
	border: 1px solid #dcfce7;
}

.pdp-rating-category-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 4px;
}

.pdp-stars-badge-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	text-decoration: none !important;
	cursor: pointer;
	transition: opacity 0.2s;
}

.pdp-stars-badge-link:hover {
	opacity: 0.8;
}

.pdp-stars-badge-link .stars-gold {
	color: #f59e0b;
	font-size: 1.4rem;
	letter-spacing: 1px;
	line-height: 1;
}

.pdp-stars-badge-link .rating-num {
	font-size: 1.2rem;
	color: #475569;
	font-weight: 600;
}

.pdp-category-tag-caps {
	font-size: 1.15rem;
	font-weight: 800;
	color: #64748b;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.pdp-product-main-title {
	font-size: 2.6rem;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.2;
	margin: 0 0 6px;
}

/* Exact RUP Screenshot Clean Pricing (No heavy border box) */
.pdp-clean-pricing-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 8px 0 4px;
	flex-wrap: wrap;
}

.pricing-numbers-left {
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
}

.pdp-current-offer-price {
	font-size: 2.6rem !important;
	font-weight: 900 !important;
	color: #991b1b !important;
	text-decoration: none !important;
}

.pdp-regular-mrp-price {
	font-size: 1.65rem !important;
	color: #94a3b8 !important;
	text-decoration: line-through !important;
	font-weight: 500 !important;
}

.pdp-tax-note {
	font-size: 1.15rem;
	color: #64748b;
	font-weight: 500;
}

.pdp-saving-pill-badge {
	background: #991b1b !important;
	color: #ffffff !important;
	font-size: 1.2rem !important;
	font-weight: 800 !important;
	padding: 4px 12px !important;
	border-radius: 20px !important;
	letter-spacing: 0.02em !important;
}

.pdp-servings-line-subtext {
	font-size: 1.25rem;
	color: #475569;
	font-weight: 600;
	margin-bottom: 10px;
}

/* Reward Coins Banner */
.pdp-coins-reward-banner {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	border-radius: 8px;
	padding: 8px 12px;
	font-size: 1.25rem;
	color: #065f46;
	margin-bottom: 10px;
	font-weight: 500;
}

/* Deal Callout Ribbon */
.pdp-deal-callout-ribbon {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff7ed;
	border: 1.5px solid #fed7aa;
	border-radius: 8px;
	padding: 8px 14px;
	font-size: 1.25rem;
	color: #9a3412;
	margin-bottom: 14px;
}

.deal-ribbon-left {
	display: flex;
	align-items: center;
	gap: 8px;
}

.discount-micro-pill {
	background: #16a34a;
	color: #ffffff;
	font-size: 1.05rem;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 12px;
}

.deal-details-link {
	font-size: 1.2rem;
	font-weight: 700;
	color: #ea580c;
	cursor: pointer;
}

/* 5 Outline Benefit Micro-Icons (Exact Screenshot Match) */
.pdp-outline-benefits-strip {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px;
	padding: 12px 0 10px;
	border-top: 1px solid #f1f5f9;
	border-bottom: 1px solid #f1f5f9;
	margin-bottom: 14px;
}

.outline-benefit-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
}

.outline-benefit-item svg {
	stroke: #1e293b;
	width: 24px;
	height: 24px;
}

.outline-benefit-item span {
	font-size: 1.05rem;
	font-weight: 700;
	color: #334155;
	line-height: 1.15;
}

/* Gallery Top Badge */
.pdp-gallery-top-badge {
	position: absolute;
	top: 12px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	background: #000000;
	color: #ffffff;
	font-size: 1.15rem;
	font-weight: 800;
	padding: 5px 14px;
	border-radius: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Customer Transformations Avatars */
.pdp-transformations-section {
	margin: 18px 0 14px;
	padding: 0 4px;
	box-sizing: border-box;
}

.transformations-title {
	font-size: 1.35rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 10px;
	text-align: left;
	padding-left: 8px;
}

.transformations-avatars-row {
	display: flex;
	justify-content: flex-start;
	gap: 12px;
	overflow-x: auto;
	padding: 6px 12px 10px;
	box-sizing: border-box;
	scrollbar-width: none;
}

.transformations-avatars-row::-webkit-scrollbar { display: none; }

.transformations-avatars-row::after {
	content: '' !important;
	flex: 0 0 16px !important;
	display: block !important;
}

.t-avatar-ring {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 2.5px solid #ec4899;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	font-size: 2.2rem;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	flex-shrink: 0;
	overflow: hidden;
}

.t-avatar-img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

.outline-benefit-custom-img {
	width: 26px;
	height: 26px;
	object-fit: contain;
	display: block;
}

/* AUTOMATIC WOOCOMMERCE VARIATIONS & DYNAMIC SWATCHES */
.pdp-dynamic-attributes-wrapper {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 22px !important;
}

.pdp-swatch-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.swatch-header-label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 1.35rem;
}

.swatch-header-label .swatch-title-text {
	font-weight: 700;
	color: #0f172a;
}

.swatch-header-label .selected-swatch-val {
	color: #2563eb;
	font-weight: 700;
}

.pdp-swatches-interactive-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

/* Flavor Swatches Track */
.flavor-grid {
	display: flex !important;
	flex-wrap: nowrap !important;
	overflow-x: auto !important;
	gap: 10px !important;
	padding: 6px 0 10px !important;
	scrollbar-width: none;
}
.flavor-grid::-webkit-scrollbar { display: none; }
.flavor-grid::after { content: '' !important; flex: 0 0 12px !important; display: block !important; }

.pdp-swatch-btn.flavor-chip {
	flex: 0 0 98px !important;
	min-width: 98px !important;
	width: 98px !important;
	height: 122px !important;
	border: 1.5px solid #cbd5e1 !important;
	border-radius: 12px !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: space-between !important;
	padding: 0 4px 6px !important;
	overflow: hidden !important;
	position: relative !important;
	background: #ffffff !important;
	box-sizing: border-box !important;
	cursor: pointer !important;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.flavor-badge-top {
	width: calc(100% + 8px);
	margin: 0 -4px;
	background: #dc2626;
	color: #ffffff;
	font-size: 0.85rem;
	font-weight: 800;
	text-align: center;
	padding: 3px 0;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border-radius: 10px 10px 0 0;
	line-height: 1.2;
}

.pdp-swatch-btn.flavor-chip:nth-child(2) .flavor-badge-top { background: #0f172a; }
.pdp-swatch-btn.flavor-chip:nth-child(3) .flavor-badge-top { background: #0f172a; }
.pdp-swatch-btn.flavor-chip:nth-child(4) .flavor-badge-top { background: #0f172a; }

.flavor-swatch-thumb-wrap {
	width: 100%;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 8px;
	margin: 4px 0 3px;
	background: #000000;
}

.flavor-swatch-thumb {
	width: 100%;
	height: 100%;
	min-height: 56px;
	object-fit: cover;
	display: block;
	border-radius: 8px;
	transition: transform 0.25s ease;
}

.pdp-swatch-btn.flavor-chip:hover .flavor-swatch-thumb {
	transform: scale(1.08);
}

.pdp-swatch-btn.flavor-chip .chip-emoji {
	font-size: 2.2rem;
	margin: 2px 0;
}

.pdp-swatch-btn.flavor-chip .chip-name {
	font-size: 1.15rem !important;
	font-weight: 800 !important;
	color: #0f172a !important;
	text-align: center !important;
	line-height: 1.15 !important;
	width: 100% !important;
	padding: 2px 0 0 !important;
	white-space: normal !important;
	display: -webkit-box !important;
	-webkit-line-clamp: 2 !important;
	-webkit-box-orient: vertical !important;
	overflow: hidden !important;
}

.pdp-swatch-btn.flavor-chip.active {
	border-color: #0f172a !important;
	border-width: 2.5px !important;
	background: #ffffff !important;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18) !important;
	transform: translateY(-2px);
}

/* Size Horizontal Square Box Swatches (1 Line) */
.size-horizontal-grid {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 10px !important;
	width: 100% !important;
}

.pdp-swatch-btn.size-box-chip {
	flex: 0 0 auto !important;
	min-width: 76px !important;
	height: 42px !important;
	padding: 0 16px !important;
	border: 1.5px solid #cbd5e1 !important;
	border-radius: 8px !important;
	background: #ffffff !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	box-sizing: border-box !important;
	transition: all 0.2s ease !important;
}

.pdp-swatch-btn.size-box-chip:hover {
	border-color: #0f172a !important;
	background: #f8fafc !important;
}

.pdp-swatch-btn.size-box-chip.active {
	border-color: #0f172a !important;
	border-width: 2px !important;
	background: #0f172a !important;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2) !important;
}

.pdp-swatch-btn.size-box-chip.active .size-chip-text {
	color: #ffffff !important;
}

.size-chip-text {
	font-size: 1.3rem !important;
	font-weight: 700 !important;
	color: #0f172a !important;
}

.pdp-swatch-btn {
	background: #ffffff;
	border: 1.5px solid #cbd5e1;
	border-radius: 8px;
	padding: 8px 14px;
	font-size: 1.25rem;
	font-weight: 600;
	color: #1e293b;
	cursor: pointer;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.pdp-swatch-btn:hover {
	border-color: #2563eb;
	background: #f8fafc;
}

.pdp-swatch-btn.active {
	border-color: #0f172a;
	background: #fafafa;
	color: #0f172a;
	font-weight: 700;
}

/* Action Row with Inline Quantity Stepper + Add To Cart CTA */
.pdp-cta-action-row,
.pdp-action-stepper-row {
	display: flex !important;
	align-items: stretch !important;
	gap: 12px !important;
	margin-top: 22px !important;
	margin-bottom: 22px !important;
}

.pdp-qty-stepper-box {
	display: inline-flex;
	align-items: center;
	background: #ffffff;
	border: 1.5px solid #cbd5e1;
	border-radius: 8px;
	height: 48px;
	flex-shrink: 0;
	overflow: hidden;
	padding: 2px;
}

.pdp-qty-btn {
	width: 36px;
	height: 100%;
	background: transparent;
	border: none;
	font-size: 1.7rem;
	font-weight: 700;
	color: #334155;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s ease, color 0.15s ease;
}

.pdp-qty-btn:hover {
	background: #f1f5f9;
	color: #0f172a;
}

.pdp-qty-input {
	width: 40px !important;
	height: 100% !important;
	border: none !important;
	background: transparent !important;
	text-align: center !important;
	font-size: 1.5rem !important;
	font-weight: 800 !important;
	color: #0f172a !important;
	padding: 0 !important;
	margin: 0 !important;
	-moz-appearance: textfield;
}

.pdp-qty-input::-webkit-outer-spin-button,
.pdp-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Premium Wide Gradient CTA Button (Ripped Up Nutrition Style) */
button.single_add_to_cart_button,
button.pdp-main-cta-gradient,
.pdp-main-cta-gradient,
.pdp-woocommerce-form-container .single_add_to_cart_button,
.pdp-simple-cart-form .single_add_to_cart_button {
	flex-grow: 1 !important;
	height: 48px !important;
	background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
	color: #ffffff !important;
	font-size: 1.45rem !important;
	font-weight: 800 !important;
	border-radius: 8px !important;
	border: none !important;
	cursor: pointer !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3) !important;
	transition: all 0.2s ease !important;
	letter-spacing: 0.03em !important;
	text-transform: uppercase !important;
	padding: 0 20px !important;
	text-decoration: none !important;
}

button.single_add_to_cart_button:hover,
button.pdp-main-cta-gradient:hover,
.pdp-main-cta-gradient:hover {
	background: linear-gradient(135deg, #15803d 0%, #166534 100%) !important;
	transform: translateY(-1px) !important;
	box-shadow: 0 8px 24px rgba(22, 163, 74, 0.45) !important;
}

.pdp-cta-title {
	font-weight: 800;
}

.pdp-cta-dot {
	opacity: 0.7;
}

.pdp-btn-live-price {
	font-weight: 900;
	letter-spacing: 0.02em;
}

/* ⚡ High-Converting BUY NOW Button */
.pdp-buy-now-btn {
	flex-grow: 1 !important;
	height: 48px !important;
	background: #f5c518 !important;
	color: #080900 !important;
	font-size: 1.45rem !important;
	font-weight: 900 !important;
	border-radius: 8px !important;
	border: none !important;
	cursor: pointer !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	box-shadow: 0 4px 14px rgba(245, 197, 24, 0.35) !important;
	transition: all 0.2s ease !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
	padding: 0 20px !important;
	text-decoration: none !important;
}

.pdp-buy-now-btn:hover {
	background: #e6b800 !important;
	transform: translateY(-1px) !important;
	box-shadow: 0 8px 24px rgba(245, 197, 24, 0.5) !important;
}

/* Hide raw stock status text */
.pdp-woocommerce-form-container p.stock,
.pdp-woocommerce-form-container .stock {
	display: none !important;
}

/* Customer Avatars Social Proof (From Screenshot) */
.pdp-customer-avatars-proof {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 10px 14px;
	background: #f8fafc;
	border-radius: 10px;
	border: 1px solid #e2e8f0;
}

.avatars-cluster {
	display: flex;
	align-items: center;
}

.avatars-cluster .avatar-dot {
	width: 32px;
	height: 32px;
	background: #ffffff;
	border: 2px solid #2563eb;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	margin-left: -8px;
}

.avatars-cluster .avatar-dot:first-child {
	margin-left: 0;
}

.avatars-text strong {
	display: block;
	font-size: 1.25rem;
	color: #0f172a;
}

.avatars-text span {
	font-size: 1.1rem;
	color: #64748b;
}

/* Collapsible Dropdown Accordions (Details, How to Use, What's Inside) */
.pdp-mini-accordions-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mini-accordion-item {
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	overflow: hidden;
}

.mini-accordion-header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 14px;
	background: #f8fafc;
	border: none;
	cursor: pointer;
	font-size: 1.3rem;
	font-weight: 700;
	color: #0f172a;
	text-align: left;
}

.mini-accordion-header .accordion-arrow {
	font-size: 1.5rem;
	color: #64748b;
	transition: transform 0.2s ease;
}

.mini-accordion-item.is-open .accordion-arrow {
	transform: rotate(90deg);
	color: #2563eb;
}

.mini-accordion-content {
	display: none;
	padding: 12px 14px;
	font-size: 1.25rem;
	color: #475569;
	line-height: 1.5;
	background: #ffffff;
	border-top: 1px solid #f1f5f9;
}

.mini-accordion-content p {
	margin: 0 0 6px 0;
}

.mini-accordion-content p:last-child {
	margin-bottom: 0;
}

/* Pincode Estimator */
.pdp-pincode-card-box {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 12px 14px;
}

.pincode-header {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 1.25rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 8px;
}

.pincode-input-row {
	display: flex;
	gap: 8px;
}

.pincode-input-row input {
	flex-grow: 1;
	padding: 9px 12px;
	font-size: 1.3rem;
	border: 1.5px solid #cbd5e1;
	border-radius: 8px;
	background: #ffffff;
}

.pincode-input-row button {
	background: #0f172a;
	color: #ffffff;
	font-size: 1.2rem;
	font-weight: 800;
	padding: 0 18px;
	border-radius: 8px;
	border: none;
	cursor: pointer;
}

.pincode-result-notice {
	font-size: 1.2rem;
	font-weight: 600;
	margin-top: 8px;
	display: none;
}

.pincode-result-notice.success { color: #166534; display: block; }
.pincode-result-notice.error { color: #991b1b; display: block; }

/* 4-Item Quality Guarantee Strip */
.pdp-trust-pillars-strip {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}

.trust-mini-pill {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 8px 10px;
}

.trust-mini-pill .t-icon { font-size: 1.8rem; }
.trust-mini-pill strong { display: block; font-size: 1.2rem; color: #0f172a; }
.trust-mini-pill small { font-size: 1.05rem; color: #64748b; }

/* Full-Width Below-the-Fold 4-Pillar Quality Strip (Directly Above Video Reels) */
.pdp-fullwidth-trust-strip-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 36px;
	margin-bottom: 24px;
	padding: 18px 24px;
	background: #ffffff;
	border: 1.5px solid #e2e8f0;
	border-radius: 16px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.pdp-trust-pill-box {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 4px 6px;
}

.pdp-pill-icon {
	font-size: 2.4rem;
	flex-shrink: 0;
}

.pdp-pill-text strong {
	display: block;
	font-size: 1.35rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 2px;
}

.pdp-pill-text span {
	font-size: 1.15rem;
	color: #64748b;
	line-height: 1.3;
}


/* ==========================================================================
   3. BELOW THE FOLD RICH SECTIONS (MATCHING SCREENSHOT)
   ========================================================================== */

/* SECTION 1: INSTAGRAM / ATHLETE VIDEO REELS */
.pdp-reels-dark-section {
	background: #0c0d12;
	padding: 46px 0;
	margin-top: 50px;
	color: #ffffff;
	text-align: center;
}

.pdp-section-badge-dark {
	display: inline-block;
	background: rgba(255, 255, 255, 0.1);
	color: #93c5fd;
	font-size: 1.15rem;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 8px;
}

.pdp-reels-title-dark {
	font-size: 2.8rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 24px;
}

.pdp-reels-track-wrapper {
	overflow-x: auto;
	scrollbar-width: none;
	padding: 10px 0;
}

.pdp-reels-track-wrapper::-webkit-scrollbar { display: none; }

.pdp-reels-scroll-row {
	display: flex;
	gap: 14px;
	width: max-content;
	margin: 0 auto;
}

.pdp-reel-card {
	flex: 0 0 190px;
	height: 300px;
	border-radius: 14px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.reel-mockup-bg {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 14px;
	box-sizing: border-box;
	background-size: cover;
	background-position: center;
	position: relative;
}

.bg-coffee-1 { background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.85) 100%), #3e2723; }
.bg-coffee-2 { background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.85) 100%), #4e342e; }
.bg-coffee-3 { background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.85) 100%), #5d4037; }
.bg-coffee-4 { background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.85) 100%), #3e2723; }
.bg-coffee-5 { background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.85) 100%), #271c19; }

.reel-play-btn {
	width: 38px;
	height: 38px;
	background: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(6px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	color: #ffffff;
	margin: auto 0;
	align-self: center;
}

.reel-caption {
	font-size: 1.15rem;
	font-weight: 700;
	color: #ffffff;
	text-align: left;
	line-height: 1.3;
}

/* SECTION 2: HOW PEOPLE USE / EASY CONSUMPTION */
.pdp-how-people-use-section {
	background: #ffffff;
	padding: 45px 0 40px;
	border-top: 1px solid #f1f5f9;
}

.pdp-cream-heading {
	font-size: 2.8rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 6px;
	letter-spacing: -0.5px;
}

.pdp-cream-subtext {
	font-size: 1.4rem;
	color: #64748b;
}

.pdp-3-use-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 28px;
}

.pdp-use-card {
	background: #ffffff;
	border: 1.5px solid #e2e8f0;
	border-radius: 16px;
	padding: 26px 22px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
	transition: all 0.25s ease;
	position: relative;
}

.pdp-use-card:hover {
	transform: translateY(-3px);
	border-color: #cbd5e1;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.pdp-use-card.highlighted {
	border-color: #2563eb;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.use-card-badge-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}

.use-step-pill {
	font-size: 1.15rem;
	font-weight: 800;
	color: #475569;
	background: #f1f5f9;
	padding: 4px 12px;
	border-radius: 20px;
	letter-spacing: 0.5px;
}

.use-step-pill.highlight {
	background: #dbeafe;
	color: #1d4ed8;
}

.use-emoji-icon {
	font-size: 2.2rem;
}

.use-card-title {
	font-size: 1.7rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 10px;
	line-height: 1.3;
}

.use-card-desc {
	font-size: 1.35rem;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

/* SECTION 3: WHAT'S INSIDE? */
.pdp-whats-inside-section {
	padding: 45px 0 40px;
	background: #ffffff;
}

.pdp-inside-pills-row {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 24px;
}

.inside-pill-tab {
	background: #f1f5f9;
	border: 1.5px solid #cbd5e1;
	color: #334155;
	font-size: 1.3rem;
	font-weight: 700;
	padding: 9px 18px;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.inside-pill-tab.active,
.inside-pill-tab:hover {
	background: #0f172a;
	color: #ffffff;
	border-color: #0f172a;
}

.pdp-inside-showcase-box {
	max-width: 800px;
	margin: 0 auto;
	background: #f8fafc;
	border: 1.5px solid #e2e8f0;
	border-radius: 16px;
	padding: 26px;
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 24px;
	align-items: center;
}

.inside-visual-powder {
	text-align: center;
}

.powder-heap-graphic {
	width: 120px;
	height: 120px;
	background: #ffffff;
	border: 2px dashed #cbd5e1;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.powder-emoji { font-size: 3.5rem; }

.inside-title {
	font-size: 1.9rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 6px;
}

.inside-desc {
	font-size: 1.3rem;
	color: #475569;
	line-height: 1.5;
	margin-bottom: 12px;
}

.inside-cert-tags {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.inside-cert-tags span {
	font-size: 1.15rem;
	font-weight: 700;
	color: #166534;
	background: #dcfce7;
	padding: 3px 10px;
	border-radius: 16px;
}

/* SECTION 4: MACRO PROGRESS BARS */
.pdp-macro-breakdown-section,
.pdp-macro-bars-section {
	padding: 45px 0 40px;
	background: #f8fafc;
	border-top: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
}

.macro-bars-card-container,
.macro-bars-card-box {
	max-width: 720px;
	margin: 28px auto 0;
	background: #ffffff;
	border: 1.5px solid #e2e8f0;
	border-radius: 20px;
	padding: 30px 28px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

.macro-bar-row,
.macro-row {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.macro-labels {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.4rem;
}

.macro-title-group {
	display: flex;
	align-items: center;
	gap: 10px;
}

.macro-icon-tag {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
}

.macro-icon-tag.green { background: #dcfce7; }
.macro-icon-tag.orange { background: #ffedd5; }
.macro-icon-tag.blue { background: #dbeafe; }
.macro-icon-tag.purple { background: #f3e8ff; }
.macro-icon-tag.clean { background: #ecfdf5; }

.macro-labels strong {
	color: #0f172a;
	font-weight: 700;
}

.macro-badge-val {
	font-size: 1.3rem;
	font-weight: 800;
	color: #0f172a;
	background: #f1f5f9;
	padding: 4px 12px;
	border-radius: 20px;
}

.macro-badge-val.highlight-green {
	background: #dcfce7;
	color: #15803d;
}

.macro-bar-track {
	width: 100%;
	height: 10px;
	background: #f1f5f9;
	border-radius: 10px;
	overflow: hidden;
}

.macro-bar-fill {
	height: 100%;
	border-radius: 10px;
}

.macro-bar-fill.protein { background: linear-gradient(90deg, #16a34a 0%, #22c55e 100%); }
.macro-bar-fill.caffeine { background: linear-gradient(90deg, #ea580c 0%, #f97316 100%); }
.macro-bar-fill.carbs { background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%); }
.macro-bar-fill.fat { background: linear-gradient(90deg, #9333ea 0%, #a855f7 100%); }
.macro-bar-fill.sugar { background: linear-gradient(90deg, #059669 0%, #10b981 100%); }

.macro-cta-row {
	margin-top: 10px;
	text-align: center;
}

.macro-claim-btn {
	display: inline-block;
	background: #0f172a;
	color: #ffffff;
	font-size: 1.4rem;
	font-weight: 800;
	padding: 14px 28px;
	border-radius: 10px;
	text-decoration: none;
	letter-spacing: 0.03em;
	transition: background 0.2s;
}

.macro-claim-btn:hover {
	background: #2563eb;
}

/* SECTION 5: COMPARISON MATRIX TABLE */
.pdp-comparison-section {
	padding: 50px 0;
	background: #ffffff;
}

.pdp-comparison-table-wrap {
	max-width: 800px;
	margin: 0 auto;
	overflow-x: auto;
}

.comparison-pdp-table {
	width: 100%;
	border-collapse: collapse;
	background: #ffffff;
	border: 1.5px solid #e2e8f0;
	border-radius: 12px;
	overflow: hidden;
}

.comparison-pdp-table th,
.comparison-pdp-table td {
	padding: 14px 18px;
	text-align: left;
	border-bottom: 1px solid #f1f5f9;
	font-size: 1.35rem;
}

.comparison-pdp-table th {
	background: #f8fafc;
	font-weight: 800;
	color: #0f172a;
}

.comparison-pdp-table .corebuild-col {
	background: #f0fdf4;
	color: #166534;
	font-weight: 700;
}

/* SECTION 6: CUSTOMER REVIEWS (From Screenshot) */
.pdp-reviews-screenshot-section {
	padding: 50px 0;
	background: #ffffff;
	border-top: 1px solid #e2e8f0;
}

.reviews-header-with-rating {
	text-align: center;
	margin-bottom: 30px;
}

.rating-overview-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 6px;
	font-size: 1.35rem;
	color: #475569;
}

.pdp-customer-reviews-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

.review-item-card {
	background: #f8fafc;
	border: 1.5px solid #e2e8f0;
	border-radius: 14px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.review-top-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.review-verified-badge {
	font-size: 1.1rem;
	font-weight: 700;
	color: #16a34a;
}

.review-heading {
	font-size: 1.45rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 8px;
	line-height: 1.35;
}

.review-body {
	font-size: 1.25rem;
	color: #475569;
	line-height: 1.5;
	margin-bottom: 16px;
}

.review-author-row {
	border-top: 1px solid #e2e8f0;
	padding-top: 10px;
	font-size: 1.2rem;
}

.review-author-row strong { display: block; color: #0f172a; }
.review-author-row span { color: #64748b; }

/* SECTION 7: RELATED PRODUCTS (Horizontal Carousel Grid) */
.pdp-related-section {
	padding: 50px 0 30px;
	background: #f8fafc;
	border-top: 1px solid #e2e8f0;
	overflow: hidden;
}

.pdp-related-section .products,
.pdp-related-section ul.products {
	display: flex !important;
	flex-wrap: nowrap !important;
	overflow-x: auto !important;
	scroll-snap-type: x mandatory !important;
	-webkit-overflow-scrolling: touch !important;
	scrollbar-width: none !important;
	gap: 16px !important;
	padding: 10px 0 20px !important;
	margin: 0 !important;
	list-style: none !important;
}

.pdp-related-section .products::-webkit-scrollbar { display: none; }

.pdp-related-section .products li.product,
.pdp-related-section .screenshot-product-card {
	flex: 0 0 280px !important;
	max-width: 280px !important;
	width: 280px !important;
	scroll-snap-align: start !important;
	box-sizing: border-box !important;
}

@media (max-width: 767px) {
	.pdp-related-section .products li.product,
	.pdp-related-section .screenshot-product-card {
		flex: 0 0 76% !important;
		max-width: 76% !important;
		width: 76% !important;
	}
}

/* SECTION 8: RED BOTTOM TRUST BAR */
.pdp-bottom-trust-strip-red {
	background: #991b1b;
	color: #ffffff;
	padding: 24px 0;
}

.bottom-trust-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	text-align: center;
}

.trust-cell {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.trust-cell .trust-ico { font-size: 2.4rem; }
.trust-cell strong { display: block; font-size: 1.3rem; font-weight: 800; letter-spacing: 0.04em; }
.trust-cell span { font-size: 1.15rem; color: #fecaca; }


/* ==========================================================================
   4. MOBILE FLOATING STICKY ADD-TO-CART BAR (ALWAYS VISIBLE FROM START)
   ========================================================================== */
.pdp-mobile-sticky-atc-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #ffffff;
	border-top: 1px solid #e2e8f0;
	padding: 10px 16px;
	z-index: 99999;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
}

@media (max-width: 767px) {
	.pdp-mobile-sticky-atc-bar {
		display: block !important;
		transform: none !important;
	}
	body.single-product {
		padding-bottom: 74px !important;
	}
}

.sticky-atc-action-btn {
	width: 100% !important;
	height: 48px !important;
	background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
	color: #ffffff !important;
	font-size: 1.55rem !important;
	font-weight: 800 !important;
	border: none !important;
	border-radius: 8px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 10px !important;
	text-transform: uppercase !important;
	letter-spacing: 0.03em !important;
	cursor: pointer !important;
	box-shadow: 0 4px 16px rgba(22, 163, 74, 0.35) !important;
	transition: all 0.2s ease !important;
}

.sticky-atc-action-btn:hover {
	background: linear-gradient(135deg, #15803d 0%, #166534 100%) !important;
	transform: translateY(-1px);
}


/* ==========================================================================
   5. RESPONSIVE BREAKPOINTS (Mobile Optimization)
   ========================================================================== */
@media (max-width: 991px) {
	.pdp-main-hero-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.pdp-gallery-sticky-wrap {
		position: static;
	}
	.pdp-3-use-cards-grid {
		grid-template-columns: 1fr;
	}
	.pdp-inside-showcase-box {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.pdp-customer-reviews-list {
		grid-template-columns: 1fr;
	}
	.bottom-trust-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}
}

@media (max-width: 767px) {
	/* 1. Base PDP Container & Breadcrumbs */
	.corebuild-pdp-wrapper {
		padding: 12px 0 40px !important;
		width: 100% !important;
		overflow-x: hidden !important;
	}
	body.single-product .corebuild-container {
		padding: 0 16px !important;
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}
	.pdp-breadcrumbs-bar {
		font-size: 1.15rem !important;
		margin-bottom: 14px !important;
		white-space: nowrap !important;
		overflow-x: auto !important;
		scrollbar-width: none !important;
		padding-bottom: 2px !important;
	}
	.pdp-breadcrumbs-bar::-webkit-scrollbar { display: none; }

	/* 2. Main Buy Box 2-Column to 1-Column Responsive Stack */
	.pdp-main-hero-grid {
		display: flex !important;
		flex-direction: column !important;
		gap: 18px !important;
		width: 100% !important;
	}
	.pdp-gallery-column,
	.pdp-buybox-column {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}
	.pdp-gallery-sticky-wrap {
		position: static !important;
		width: 100% !important;
	}

	/* 3. Product Gallery Viewport & Thumbnails */
	.pdp-main-image-viewport {
		min-height: 280px !important;
		max-height: 330px !important;
		padding: 16px !important;
		border-radius: 14px !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}
	.pdp-active-featured-image {
		max-height: 250px !important;
		width: auto !important;
		object-fit: contain !important;
		margin: 0 auto !important;
	}
	.pdp-thumbnail-slider-row {
		gap: 8px !important;
		margin-top: 10px !important;
		padding: 2px 0 6px !important;
		overflow-x: auto !important;
		scrollbar-width: none !important;
		width: 100% !important;
	}
	.pdp-thumbnail-slider-row::-webkit-scrollbar { display: none; }
	.pdp-thumb-card {
		flex: 0 0 60px !important;
		height: 60px !important;
		border-radius: 8px !important;
		padding: 3px !important;
	}

	/* 4. Product Header & Title */
	.pdp-rating-category-row {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		width: 100% !important;
		margin-bottom: 4px !important;
	}
	.pdp-stars-badge {
		padding: 2px 6px !important;
		font-size: 1.1rem !important;
	}
	.pdp-category-tag-caps {
		font-size: 1.05rem !important;
	}
	.pdp-product-main-title {
		font-size: 2.1rem !important;
		font-weight: 800 !important;
		line-height: 1.25 !important;
		margin: 0 0 6px !important;
		text-align: left !important;
		word-break: break-word !important;
	}

	/* 5. Clean Inline Pricing */
	.pdp-clean-pricing-row {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		gap: 8px !important;
		width: 100% !important;
		margin: 6px 0 8px !important;
		flex-wrap: wrap !important;
	}
	.pricing-numbers-left {
		display: flex !important;
		align-items: baseline !important;
		gap: 8px !important;
		flex-wrap: wrap !important;
	}
	.pdp-current-offer-price,
	.pdp-current-offer-price .woocommerce-Price-amount {
		font-size: 2.3rem !important;
		font-weight: 900 !important;
	}
	.pdp-regular-mrp-price {
		font-size: 1.45rem !important;
	}
	.pdp-saving-pill-badge {
		font-size: 1.1rem !important;
		padding: 3px 8px !important;
	}
	.pdp-tax-note {
		font-size: 1.1rem !important;
	}
	.pdp-servings-line-subtext {
		font-size: 1.2rem !important;
		margin-bottom: 8px !important;
		color: #64748b !important;
	}

	/* 6. 5 Benefit Micro-Icons */
	.pdp-outline-benefits-strip {
		display: grid !important;
		grid-template-columns: repeat(5, 1fr) !important;
		gap: 4px !important;
		padding: 10px 2px !important;
		width: 100% !important;
		margin: 8px 0 12px !important;
		box-sizing: border-box !important;
	}
	.outline-benefit-item {
		gap: 4px !important;
		text-align: center !important;
	}
	.outline-benefit-item svg {
		width: 20px !important;
		height: 20px !important;
	}
	.outline-benefit-item span {
		font-size: 0.92rem !important;
		line-height: 1.15 !important;
		text-align: center !important;
		word-break: break-word !important;
	}

	/* 7. Swatches (Flavor & Size) */
	.pdp-dynamic-attributes-wrapper {
		display: flex !important;
		flex-direction: column !important;
		gap: 12px !important;
		margin-bottom: 16px !important;
		width: 100% !important;
	}
	.swatch-header-label {
		font-size: 1.25rem !important;
		margin-bottom: 4px !important;
	}
	.flavor-grid {
		display: flex !important;
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
		-webkit-overflow-scrolling: touch !important;
		gap: 8px !important;
		padding: 4px 0 8px !important;
		scrollbar-width: none !important;
		width: 100% !important;
	}
	.flavor-grid::-webkit-scrollbar { display: none; }
	.pdp-swatch-btn.flavor-chip {
		flex: 0 0 80px !important;
		min-width: 80px !important;
		height: 96px !important;
		border-radius: 10px !important;
		padding: 0 3px 6px !important;
	}
	.flavor-swatch-thumb {
		width: 36px !important;
		height: 36px !important;
	}
	.pdp-swatch-btn.flavor-chip .chip-name {
		font-size: 1rem !important;
	}
	.size-horizontal-grid {
		display: flex !important;
		flex-wrap: wrap !important;
		gap: 8px !important;
		width: 100% !important;
	}
	.pdp-swatch-btn.size-box-chip {
		height: 40px !important;
		min-width: 68px !important;
		padding: 0 12px !important;
		border-radius: 8px !important;
	}
	.size-chip-text {
		font-size: 1.2rem !important;
	}

	/* 8. Action Stepper & Dual Add to Cart / Buy Now Button Row */
	.pdp-cta-action-row,
	.pdp-action-stepper-row {
		display: flex !important;
		flex-wrap: wrap !important;
		align-items: stretch !important;
		gap: 8px !important;
		width: 100% !important;
		margin: 14px 0 12px !important;
	}
	.pdp-qty-stepper-box {
		flex: 0 0 96px !important;
		height: 46px !important;
		border-radius: 8px !important;
	}
	.pdp-qty-btn {
		width: 30px !important;
		font-size: 1.5rem !important;
	}
	.pdp-qty-input {
		width: 32px !important;
		font-size: 1.4rem !important;
	}
	button.single_add_to_cart_button,
	.pdp-main-cta-gradient {
		flex: 1 1 calc(100% - 106px) !important;
		height: 46px !important;
		font-size: 1.3rem !important;
		font-weight: 800 !important;
		padding: 0 12px !important;
		border-radius: 8px !important;
		gap: 6px !important;
	}
	.pdp-buy-now-btn {
		flex: 1 1 100% !important;
		height: 46px !important;
		font-size: 1.35rem !important;
		font-weight: 900 !important;
		border-radius: 8px !important;
		margin-top: 2px !important;
	}

	/* 9. Reward Coins Banner */
	.pdp-coins-reward-banner {
		display: flex !important;
		align-items: center !important;
		gap: 8px !important;
		padding: 9px 12px !important;
		font-size: 1.2rem !important;
		border-radius: 8px !important;
		margin-bottom: 12px !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}

	/* 10. Transformations Avatars */
	.pdp-transformations-section {
		margin: 14px 0 10px !important;
		padding: 0 !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}
	.transformations-title {
		font-size: 1.25rem !important;
		font-weight: 800 !important;
		text-align: left !important;
		margin-bottom: 8px !important;
		padding: 0 !important;
	}
	.transformations-avatars-row {
		display: flex !important;
		gap: 8px !important;
		overflow-x: auto !important;
		-webkit-overflow-scrolling: touch !important;
		padding: 2px 0 6px !important;
		width: 100% !important;
		scrollbar-width: none !important;
		box-sizing: border-box !important;
	}
	.transformations-avatars-row::-webkit-scrollbar { display: none; }
	.t-avatar-ring {
		width: 42px !important;
		height: 42px !important;
		flex-shrink: 0 !important;
	}

	/* 11. Below-the-fold 4-Pillar Quality Strip (Directly Above Reels) */
	.pdp-fullwidth-trust-strip-4 {
		display: grid !important;
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 10px 8px !important;
		margin: 20px 0 16px !important;
		padding: 12px 10px !important;
		border-radius: 12px !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}
	.pdp-trust-pill-box {
		display: flex !important;
		align-items: center !important;
		gap: 8px !important;
		padding: 2px !important;
	}
	.pdp-pill-icon {
		font-size: 1.8rem !important;
		flex-shrink: 0 !important;
	}
	.pdp-pill-text strong {
		font-size: 1.15rem !important;
		line-height: 1.25 !important;
	}
	.pdp-pill-text small {
		font-size: 0.95rem !important;
		line-height: 1.2 !important;
	}

	/* 12. Headings for PDP Sections */
	.pdp-cream-heading,
	.pdp-reels-title-dark,
	.section-title {
		font-size: 2rem !important;
		font-weight: 800 !important;
		line-height: 1.25 !important;
		margin-bottom: 4px !important;
		text-align: center !important;
	}
	.pdp-cream-subtext,
	.section-subtitle {
		font-size: 1.2rem !important;
		font-weight: 400 !important;
		color: #64748b !important;
		line-height: 1.4 !important;
		text-align: center !important;
		margin-bottom: 16px !important;
	}

	/* 13. PDP Video Reels: 1 Full Card + 25% Peeking Card */
	.pdp-reels-dark-section,
	.corebuild-reels-screenshot-section {
		padding: 24px 0 16px !important;
		overflow: hidden !important;
		width: 100% !important;
	}

	/* 14. 3 Ways to Enjoy Your Supplement */
	.pdp-how-people-use-section {
		padding: 24px 0 !important;
		overflow: hidden !important;
		width: 100% !important;
	}
	.pdp-3-use-cards-grid {
		display: flex !important;
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
		scroll-snap-type: x mandatory !important;
		-webkit-overflow-scrolling: touch !important;
		scrollbar-width: none !important;
		gap: 12px !important;
		padding: 4px 16px 14px !important;
		margin-left: -16px !important;
		margin-right: -16px !important;
		width: calc(100% + 32px) !important;
		box-sizing: border-box !important;
	}
	.pdp-3-use-cards-grid::-webkit-scrollbar { display: none; }
	.pdp-use-card {
		flex: 0 0 74vw !important;
		min-width: 74vw !important;
		max-width: 74vw !important;
		scroll-snap-align: start !important;
		padding: 16px 14px !important;
		border-radius: 14px !important;
		box-sizing: border-box !important;
	}
	.use-card-badge {
		font-size: 1rem !important;
		padding: 3px 8px !important;
	}
	.use-card-title {
		font-size: 1.3rem !important;
		font-weight: 800 !important;
	}
	.use-card-desc {
		font-size: 1.15rem !important;
		line-height: 1.4 !important;
	}

	/* 15. Macro Breakdown Dashboard */
	.pdp-macro-breakdown-section {
		padding: 24px 0 !important;
		width: 100% !important;
	}
	.macro-bars-card-container {
		padding: 16px 14px !important;
		border-radius: 14px !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}
	.macro-bar-row {
		display: flex !important;
		flex-direction: column !important;
		gap: 6px !important;
		margin-bottom: 12px !important;
		width: 100% !important;
	}
	.macro-label-left {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		width: 100% !important;
	}
	.macro-category-tag {
		font-size: 1.1rem !important;
	}
	.macro-val-pill {
		font-size: 1.1rem !important;
		padding: 2px 8px !important;
	}

	/* 16. Floating Sticky Dual Action Add To Cart & Buy Now Bar */
	.pdp-mobile-sticky-atc-bar {
		position: fixed !important;
		bottom: 0 !important;
		left: 0 !important;
		right: 0 !important;
		width: 100% !important;
		z-index: 9999 !important;
		background: #ffffff !important;
		border-top: 1px solid #e2e8f0 !important;
		padding: 8px 12px max(8px, env(safe-area-inset-bottom)) !important;
		box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12) !important;
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		gap: 8px !important;
		box-sizing: border-box !important;
	}
	.pdp-sticky-atc-btn {
		flex: 0 0 38% !important;
		height: 44px !important;
		background: #ffffff !important;
		color: #0f172a !important;
		border: 1.5px solid #0f172a !important;
		border-radius: 8px !important;
		font-size: 1.25rem !important;
		font-weight: 800 !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 6px !important;
		cursor: pointer !important;
	}
	.pdp-sticky-buynow-btn {
		flex: 1 1 62% !important;
		height: 44px !important;
		background: #f5c518 !important;
		color: #080900 !important;
		border: none !important;
		border-radius: 8px !important;
		font-size: 1.25rem !important;
		font-weight: 900 !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 4px !important;
		box-shadow: 0 4px 12px rgba(245, 197, 24, 0.35) !important;
		cursor: pointer !important;
		letter-spacing: 0.02em !important;
	}
}

/* Hide General Mobile Sticky Navbar on Single Product Page */
.single-product .screenshot-mobile-sticky-navbar {
	display: none !important;
}

/* ==========================================================================
   4. RIPPED UP NUTRITION STYLE SHOP & CATEGORY ARCHIVE
   ========================================================================== */

.corebuild-shop-hero-banner {
	background: linear-gradient(135deg, #e0e7ff 0%, #ede9fe 50%, #f0fdf4 100%);
	padding: 40px 0 32px;
	border-bottom: 1px solid #e2e8f0;
	position: relative;
	overflow: hidden;
}

.shop-hero-banner-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.shop-hero-micro-tag {
	display: inline-block;
	background: #2563eb;
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	padding: 3px 10px;
	border-radius: 20px;
	margin-bottom: 8px;
}

.shop-hero-main-title {
	font-size: 3.4rem;
	font-weight: 900;
	color: #0f172a;
	letter-spacing: -0.02em;
	margin: 0 0 6px 0;
	line-height: 1.15;
}

.shop-hero-subtitle {
	font-size: 1.45rem;
	color: #475569;
	margin: 0;
	font-weight: 500;
}

.shop-hero-tubs-cluster {
	font-size: 4.5rem;
	filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

/* Explore Collections Pill Bar (Strict 1-Row Horizontal Scroll Track) */
.corebuild-explore-collections-section {
	background: #ffffff;
	padding: 20px 0 16px;
	border-bottom: 1px solid #f1f5f9;
	overflow: hidden;
	width: 100%;
}

.explore-collections-header {
	margin-bottom: 12px;
}

.explore-label {
	font-size: 1.6rem;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.01em;
}

.explore-pills-scroll-row {
	display: flex !important;
	flex-wrap: nowrap !important;
	gap: 10px !important;
	overflow-x: auto !important;
	scroll-snap-type: x mandatory !important;
	-webkit-overflow-scrolling: touch !important;
	scrollbar-width: none !important;
	padding: 4px 0 10px !important;
	margin: 0 !important;
	width: 100% !important;
}

.explore-pills-scroll-row::-webkit-scrollbar { display: none; }

.explore-pills-scroll-row::after {
	content: '' !important;
	flex: 0 0 16px !important;
	display: block !important;
}

.explore-pill {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 8px 20px !important;
	background: #ffffff !important;
	border: 1.5px solid #cbd5e1 !important;
	border-radius: 40px !important;
	font-size: 1.35rem !important;
	font-weight: 700 !important;
	color: #334155 !important;
	text-decoration: none !important;
	transition: all 0.2s ease !important;
	white-space: nowrap !important;
	flex-shrink: 0 !important;
	scroll-snap-align: start !important;
}

.explore-pill:hover {
	border-color: #0f172a !important;
	background: #f8fafc !important;
	color: #0f172a !important;
	transform: translateY(-1px);
}

.explore-pill.active {
	background: #0f172a !important;
	color: #ffffff !important;
	border-color: #0f172a !important;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25) !important;
}

/* Shop Grid Meta */
.shop-grid-header-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 20px 0 16px;
	font-size: 1.35rem;
	color: #64748b;
}

.shop-items-count {
	font-weight: 600;
}

.shop-archive-grid {
	margin-bottom: 50px;
}

/* Bottom 3-Pillar Red Quality Strip (From Screenshot) */
.corebuild-shop-bottom-trust-strip {
	background: #991b1b;
	color: #ffffff;
	padding: 26px 0;
	margin-top: 50px;
}

.shop-bottom-trust-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.trust-cell {
	display: flex;
	align-items: center;
	gap: 14px;
}

.trust-cell-icon {
	width: 46px;
	height: 46px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	flex-shrink: 0;
}

.trust-cell-info strong {
	display: block;
	font-size: 1.3rem;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: 0.02em;
}

.trust-cell-info span {
	font-size: 1.15rem;
	color: #fecaca;
	line-height: 1.3;
}

/* ==========================================================================
   MOBILE PDP REELS & REVIEWS HORIZONTAL SCROLL TRACKS
   ========================================================================== */
@media (max-width: 767px) {
	/* 1. PDP Video Reels: 1 Full Card (74%) + 25% Peek Card on Mobile */
	body.single-product .reels-slider-viewport,
	.corebuild-pdp-wrapper .reels-slider-viewport {
		overflow-x: auto !important;
		scroll-snap-type: x mandatory !important;
		-webkit-overflow-scrolling: touch !important;
		scrollbar-width: none !important;
		width: calc(100% + 32px) !important;
		margin-left: -16px !important;
		margin-right: -16px !important;
		padding-left: 16px !important;
		padding-right: 16px !important;
		box-sizing: border-box !important;
	}

	body.single-product .reels-cards-track,
	.corebuild-pdp-wrapper .reels-cards-track {
		display: flex !important;
		flex-direction: row !important;
		gap: 12px !important;
		width: max-content !important;
		padding: 4px 0 12px !important;
		transform: none !important;
	}

	body.single-product .reels-cards-track::after,
	.corebuild-pdp-wrapper .reels-cards-track::after {
		content: '' !important;
		flex: 0 0 24px !important;
		display: block !important;
	}

	body.single-product .reel-vertical-card,
	.corebuild-pdp-wrapper .reel-vertical-card {
		flex: 0 0 66vw !important; /* 1 Full Card + ~30% Peeking 2nd Card */
		min-width: 66vw !important;
		max-width: 66vw !important;
		scroll-snap-align: start !important;
		height: 380px !important;
		min-height: 380px !important;
		max-height: 380px !important;
		border-radius: 16px !important;
		overflow: hidden !important;
		position: relative !important;
		box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16) !important;
	}

	/* 2. PDP Customer Reviews: Smooth Horizontal Carousel on Product Page */
	body.single-product .corebuild-reviews-screenshot-section .reviews-cards-track-container {
		overflow-x: auto !important;
		scroll-snap-type: x mandatory !important;
		-webkit-overflow-scrolling: touch !important;
		scrollbar-width: none !important;
		width: calc(100% + 32px) !important;
		margin-left: -16px !important;
		margin-right: -16px !important;
		padding-left: 16px !important;
		padding-right: 16px !important;
		box-sizing: border-box !important;
	}

	body.single-product .corebuild-reviews-screenshot-section .reviews-cards-track-container::-webkit-scrollbar { display: none; }

	body.single-product .corebuild-reviews-screenshot-section .reviews-cards-track {
		display: flex !important;
		flex-direction: row !important;
		gap: 12px !important;
		padding: 4px 0 14px !important;
		width: max-content !important;
	}

	body.single-product .corebuild-reviews-screenshot-section .reviews-cards-track::after {
		content: '' !important;
		flex: 0 0 16px !important;
		display: block !important;
	}

	body.single-product .corebuild-reviews-screenshot-section .screenshot-review-card {
		flex: 0 0 76vw !important;
		max-width: 320px !important;
		min-width: 260px !important;
		scroll-snap-align: start !important;
		height: auto !important;
		min-height: 180px !important;
		padding: 14px !important;
		box-sizing: border-box !important;
	}
}

@media (max-width: 767px) {
	.shop-hero-main-title { font-size: 2.4rem; }
	.shop-hero-tubs-cluster { display: none; }
	.explore-pills-scroll-row { flex-wrap: nowrap; padding-bottom: 8px; }
	.shop-bottom-trust-grid { grid-template-columns: 1fr; gap: 16px; }

	/* 3. Easy Consumption 3 Cards: Smooth Horizontal Scroller with 74vw Peek */
	.pdp-how-people-use-section {
		padding: 28px 0 24px !important;
		overflow: hidden !important;
		width: 100% !important;
	}

	.pdp-cream-heading {
		font-size: 2.1rem !important;
		line-height: 1.2 !important;
	}

	.pdp-cream-subtext {
		font-size: 1.25rem !important;
	}

	.pdp-3-use-cards-grid {
		display: flex !important;
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
		scroll-snap-type: x mandatory !important;
		-webkit-overflow-scrolling: touch !important;
		scrollbar-width: none !important;
		gap: 12px !important;
		width: calc(100% + 32px) !important;
		margin-left: -16px !important;
		margin-right: -16px !important;
		padding: 4px 16px 14px !important;
		box-sizing: border-box !important;
		scroll-padding-left: 16px !important;
		scroll-padding-right: 16px !important;
	}

	.pdp-3-use-cards-grid::-webkit-scrollbar { display: none; }

	.pdp-3-use-cards-grid::after {
		content: '' !important;
		flex: 0 0 20px !important;
		display: block !important;
	}

	.pdp-use-card {
		flex: 0 0 74vw !important;
		min-width: 74vw !important;
		max-width: 74vw !important;
		scroll-snap-align: start !important;
		border-radius: 14px !important;
		padding: 18px 16px !important;
		box-sizing: border-box !important;
	}

	.use-card-badge {
		width: 32px !important;
		height: 32px !important;
		font-size: 1.2rem !important;
		margin-bottom: 10px !important;
	}

	.use-card-title {
		font-size: 1.45rem !important;
		margin-bottom: 6px !important;
	}

	.use-card-desc {
		font-size: 1.2rem !important;
		line-height: 1.45 !important;
	}

	/* 4. Macronutrient Breakdown: Compact Sleek Mobile Dashboard Card */
	.pdp-macro-breakdown-section {
		padding: 28px 0 24px !important;
	}

	.macro-bars-card-container,
	.macro-bars-card-box {
		padding: 18px 14px !important;
		border-radius: 14px !important;
		margin-top: 16px !important;
		gap: 14px !important;
	}

	.macro-labels {
		font-size: 1.25rem !important;
	}

	.macro-badge-val {
		font-size: 1.15rem !important;
		padding: 2px 8px !important;
	}

	.macro-bar-track {
		height: 8px !important;
	}

	/* 5. What's Inside Mobile Layout */
	.pdp-whats-inside-section {
		padding: 28px 0 24px !important;
	}

	.pdp-inside-pills-row {
		gap: 8px !important;
		margin-bottom: 18px !important;
		overflow-x: auto !important;
		flex-wrap: nowrap !important;
		justify-content: flex-start !important;
		scrollbar-width: none !important;
		padding-bottom: 6px !important;
	}

	.pdp-inside-pills-row::-webkit-scrollbar { display: none; }

	.inside-pill-tab {
		font-size: 1.15rem !important;
		padding: 7px 14px !important;
		white-space: nowrap !important;
		flex-shrink: 0 !important;
	}

	.pdp-inside-showcase-box {
		grid-template-columns: 1fr !important;
		gap: 16px !important;
		padding: 18px 16px !important;
		text-align: center !important;
	}

	.powder-heap-graphic {
		width: 100px !important;
		height: 100px !important;
	}

	.powder-emoji { font-size: 3rem !important; }

	.inside-title {
		font-size: 1.6rem !important;
		margin-bottom: 6px !important;
	}

	.inside-desc {
		font-size: 1.2rem !important;
		line-height: 1.45 !important;
		margin-bottom: 10px !important;
	}

	/* 6. Full-Width 4-Pillar Quality Strip Mobile (2x2 Grid) */
	.pdp-fullwidth-trust-strip-4 {
		grid-template-columns: 1fr 1fr !important;
		gap: 12px !important;
		margin-top: 22px !important;
		margin-bottom: 18px !important;
		padding: 14px 12px !important;
	}

	.pdp-trust-pill-box {
		gap: 8px !important;
		padding: 2px !important;
	}

	.pdp-pill-icon {
		font-size: 2rem !important;
	}

	.pdp-pill-text strong {
		font-size: 1.15rem !important;
	}

	.pdp-pill-text span {
		font-size: 1.02rem !important;
	}
}


