/**
 * OG Hemp Business Cards Customizer & Pre-Flight Calculator Styles.
 * Strictly scoped under #oghemp-card-customizer-root (Rule 0.2 isolation).
 */

#oghemp-card-customizer-root {
	--og-green-primary: #70b453;
	--og-green-dark: #1b382b;
	--og-green-light: #f2f8ef;
	--og-gold: #d4af37;
	--og-gold-light: #fff9e6;
	--og-dark: #1f2937;
	--og-gray-bg: #f9fafb;
	--og-border: #e5e7eb;
	--og-radius: 12px;
	--og-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	color: var(--og-dark);
	max-width: 1360px;
	margin: 0 auto 50px;
	padding: 20px 20px;
	box-sizing: border-box;
}

#oghemp-card-customizer-root * {
	box-sizing: border-box;
}

/* ==========================================================================
   HERO HEADER
   ========================================================================== */
#oghemp-card-customizer-root .oghemp-card-hero {
	text-align: center;
	margin-bottom: 40px;
}

#oghemp-card-customizer-root .oghemp-card-badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--og-green-light);
	color: var(--og-green-dark);
	font-size: 13px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 50px;
	margin-bottom: 15px;
	border: 1px solid rgba(112, 180, 83, 0.3);
}

#oghemp-card-customizer-root .oghemp-card-title {
	font-size: 38px;
	font-weight: 800;
	color: var(--og-green-dark);
	line-height: 1.2;
	margin: 0 0 12px;
	letter-spacing: -0.5px;
}

#oghemp-card-customizer-root .oghemp-card-subtitle {
	font-size: 16px;
	line-height: 1.6;
	color: #4b5563;
	max-width: 750px;
	margin: 0 auto 25px;
}

#oghemp-card-customizer-root .oghemp-card-specs-bar {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
	max-width: 900px;
	margin: 0 auto;
}

#oghemp-card-customizer-root .oghemp-spec-item {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #ffffff;
	padding: 10px 16px;
	border-radius: 8px;
	border: 1px solid var(--og-border);
	box-shadow: 0 2px 8px rgba(0,0,0,0.03);
	text-align: left;
}

#oghemp-card-customizer-root .oghemp-spec-icon {
	font-size: 20px;
}

#oghemp-card-customizer-root .oghemp-spec-item strong {
	display: block;
	font-size: 13px;
	color: var(--og-green-dark);
}

#oghemp-card-customizer-root .oghemp-spec-item span {
	display: block;
	font-size: 11px;
	color: #6b7280;
}

/* ==========================================================================
   MAIN CONFIGURATOR 2-COLUMN GRID (50% LHS / 50% RHS LOCKED)
   ========================================================================== */
#oghemp-card-customizer-root .oghemp-configurator-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 36px;
	align-items: start;
	margin-bottom: 60px;
	width: 100%;
	box-sizing: border-box;
}

#oghemp-card-customizer-root .oghemp-controls-col,
#oghemp-card-customizer-root .oghemp-preview-col {
	min-width: 0;
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
}

@media (max-width: 860px) {
	#oghemp-card-customizer-root .oghemp-configurator-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

/* ==========================================================================
   STEP SECTIONS & CONTROLS
   ========================================================================== */
#oghemp-card-customizer-root .oghemp-step-section {
	background: #ffffff;
	border: 1px solid var(--og-border);
	border-radius: var(--og-radius);
	padding: 24px;
	margin-bottom: 20px;
	box-shadow: var(--og-shadow);
	box-sizing: border-box;
	width: 100%;
}

#oghemp-card-customizer-root .oghemp-step-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
}

#oghemp-card-customizer-root .oghemp-step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: var(--og-green-dark);
	color: #ffffff;
	font-weight: 800;
	font-size: 14px;
	border-radius: 50%;
	flex-shrink: 0;
}

#oghemp-card-customizer-root .oghemp-step-header h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--og-green-dark);
	margin: 0 0 2px;
}

#oghemp-card-customizer-root .oghemp-step-header p {
	font-size: 13px;
	color: #6b7280;
	margin: 0;
}

/* Option Pill Grid (2x2 Structure) */
#oghemp-card-customizer-root .oghemp-pill-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

@media (max-width: 480px) {
	#oghemp-card-customizer-root .oghemp-pill-grid {
		grid-template-columns: 1fr;
	}
}

#oghemp-card-customizer-root .oghemp-pill-option {
	cursor: pointer;
	position: relative;
}

#oghemp-card-customizer-root .oghemp-pill-option input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

#oghemp-card-customizer-root .oghemp-pill-card {
	display: block;
	background: var(--og-gray-bg);
	border: 2px solid var(--og-border);
	border-radius: 8px;
	padding: 12px 14px;
	transition: all 0.2s ease;
}

#oghemp-card-customizer-root .oghemp-pill-option:hover .oghemp-pill-card {
	border-color: #cbd5e1;
	background: #ffffff;
}

#oghemp-card-customizer-root .oghemp-pill-option.active .oghemp-pill-card,
#oghemp-card-customizer-root .oghemp-pill-option input:checked + .oghemp-pill-card {
	border-color: var(--og-green-primary);
	background: var(--og-green-light);
	box-shadow: 0 0 0 1px var(--og-green-primary);
}

#oghemp-card-customizer-root .oghemp-pill-title {
	display: block;
	font-weight: 700;
	font-size: 14px;
	color: var(--og-dark);
	margin-bottom: 3px;
}

#oghemp-card-customizer-root .oghemp-pill-meta {
	display: block;
	font-size: 12px;
	color: #6b7280;
}

/* Segmented Control */
#oghemp-card-customizer-root .oghemp-subgroup {
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px dashed var(--og-border);
}

#oghemp-card-customizer-root .oghemp-subgroup-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #4b5563;
	margin-bottom: 8px;
}

#oghemp-card-customizer-root .oghemp-segmented-control {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

#oghemp-card-customizer-root .oghemp-seg-item {
	cursor: pointer;
}

#oghemp-card-customizer-root .oghemp-seg-item input {
	display: none;
}

#oghemp-card-customizer-root .oghemp-seg-item span {
	display: block;
	padding: 8px 14px;
	background: var(--og-gray-bg);
	border: 1px solid var(--og-border);
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	color: #4b5563;
	transition: all 0.2s;
}

#oghemp-card-customizer-root .oghemp-seg-item.active span,
#oghemp-card-customizer-root .oghemp-seg-item input:checked + span {
	background: var(--og-green-dark);
	color: #ffffff;
	border-color: var(--og-green-dark);
}

/* Finishes Box */
#oghemp-card-customizer-root .oghemp-finish-box {
	background: var(--og-gray-bg);
	border: 1px solid var(--og-border);
	border-radius: 8px;
	padding: 14px 16px;
	margin-bottom: 12px;
}

#oghemp-card-customizer-root .oghemp-finish-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	flex-wrap: wrap;
}

#oghemp-card-customizer-root .oghemp-finish-title {
	display: flex;
	align-items: center;
	gap: 10px;
}

#oghemp-card-customizer-root .oghemp-finish-icon {
	font-size: 18px;
}

#oghemp-card-customizer-root .oghemp-finish-title strong {
	display: block;
	font-size: 14px;
	color: var(--og-dark);
}

#oghemp-card-customizer-root .oghemp-finish-title span {
	display: block;
	font-size: 12px;
	color: #6b7280;
}

#oghemp-card-customizer-root .oghemp-select {
	padding: 8px 12px;
	font-size: 13px;
	font-weight: 600;
	border-radius: 6px;
	border: 1px solid var(--og-border);
	background: #ffffff;
	color: var(--og-dark);
	min-width: 180px;
	cursor: pointer;
}

#oghemp-card-customizer-root .oghemp-moq-notice {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fffbeb;
	border: 1px solid #fde68a;
	color: #92400e;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 12px;
	line-height: 1.4;
	margin-bottom: 14px;
}

#oghemp-card-customizer-root .oghemp-moq-notice .oghemp-notice-icon {
	font-size: 16px;
	flex-shrink: 0;
}

#oghemp-card-customizer-root .oghemp-constraint-notice {
	background: #f8fafc;
	border-left: 3px solid var(--og-gold);
	padding: 8px 12px;
	font-size: 11px;
	color: #475569;
	margin-top: 8px;
	border-radius: 0 6px 6px 0;
}

#oghemp-card-customizer-root .oghemp-finish-box.disabled-moq {
	opacity: 0.6;
	cursor: not-allowed;
}

#oghemp-card-customizer-root .oghemp-finish-box.disabled-moq select {
	pointer-events: none;
	background: #f1f5f9;
}

#oghemp-card-customizer-root .oghemp-radio-inline {
	font-size: 13px;
	font-weight: 600;
	color: #4b5563;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 5px;
}

#oghemp-card-customizer-root .oghemp-checkbox-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 14px;
}

#oghemp-card-customizer-root .oghemp-toggle-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
}

#oghemp-card-customizer-root .oghemp-toggle-checkbox input {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--og-green-primary);
	cursor: pointer;
}

#oghemp-card-customizer-root .oghemp-toggle-label strong {
	display: block;
	font-size: 13px;
	color: var(--og-dark);
}

#oghemp-card-customizer-root .oghemp-toggle-label span {
	display: block;
	font-size: 11px;
	color: #6b7280;
}

/* Quantity Grid */
#oghemp-card-customizer-root .oghemp-qty-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
}

@media (max-width: 480px) {
	#oghemp-card-customizer-root .oghemp-qty-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

#oghemp-card-customizer-root .oghemp-qty-btn {
	background: var(--og-gray-bg);
	border: 2px solid var(--og-border);
	border-radius: 8px;
	padding: 14px 8px;
	text-align: center;
	cursor: pointer;
	position: relative;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
}

#oghemp-card-customizer-root .oghemp-qty-btn:hover {
	background: #ffffff;
	border-color: #cbd5e1;
}

#oghemp-card-customizer-root .oghemp-qty-btn.active {
	border-color: var(--og-green-primary);
	background: var(--og-green-light);
	box-shadow: 0 0 0 1px var(--og-green-primary);
}

#oghemp-card-customizer-root .oghemp-qty-count {
	display: block;
	font-size: 20px;
	font-weight: 800;
	color: var(--og-green-dark);
	letter-spacing: -0.5px;
}

#oghemp-card-customizer-root .oghemp-qty-tag {
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--og-green-primary);
	color: #ffffff;
	font-size: 9px;
	font-weight: 800;
	padding: 2px 6px;
	border-radius: 20px;
	text-transform: uppercase;
	white-space: nowrap;
}

/* Artwork Upload Zone */
#oghemp-card-customizer-root .oghemp-upload-zone {
	display: block;
	border: 2px dashed #cbd5e1;
	border-radius: 8px;
	padding: 24px;
	text-align: center;
	background: var(--og-gray-bg);
	cursor: pointer;
	transition: all 0.2s;
}

#oghemp-card-customizer-root .oghemp-upload-zone:hover,
#oghemp-card-customizer-root .oghemp-upload-zone.dragover {
	border-color: var(--og-green-primary);
	background: var(--og-green-light);
}

#oghemp-card-customizer-root .oghemp-dropzone-icon {
	font-size: 28px;
	margin-bottom: 8px;
}

#oghemp-card-customizer-root .oghemp-dropzone-text strong {
	display: block;
	font-size: 14px;
	color: var(--og-dark);
	margin-bottom: 4px;
}

#oghemp-card-customizer-root .oghemp-dropzone-text span {
	display: block;
	font-size: 12px;
	color: #6b7280;
	margin-bottom: 12px;
}

#oghemp-card-customizer-root .oghemp-browse-btn {
	background: #ffffff;
	border: 1px solid #cbd5e1;
	color: var(--og-dark);
	font-weight: 600;
	font-size: 13px;
	padding: 7px 16px;
	border-radius: 6px;
	cursor: pointer;
}

#oghemp-card-customizer-root .oghemp-preflight-card {
	background: #ffffff;
	border: 1px solid var(--og-green-primary);
	border-radius: 8px;
	padding: 14px;
	margin-top: 12px;
}

#oghemp-card-customizer-root .oghemp-preflight-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 10px;
}

#oghemp-card-customizer-root .oghemp-file-badge {
	background: var(--og-green-dark);
	color: #ffffff;
	font-size: 11px;
	font-weight: 800;
	padding: 2px 6px;
	border-radius: 4px;
}

#oghemp-card-customizer-root .oghemp-file-name {
	font-size: 13px;
	font-weight: 700;
	color: var(--og-dark);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	flex: 1;
}

#oghemp-card-customizer-root .oghemp-remove-file-btn {
	background: none;
	border: none;
	font-size: 20px;
	color: #94a3b8;
	cursor: pointer;
	line-height: 1;
}

#oghemp-card-customizer-root .oghemp-check-item {
	font-size: 12px;
	color: #15803d;
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 4px;
}

#oghemp-card-customizer-root .oghemp-alt-artwork-options {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 14px;
	padding-top: 10px;
	border-top: 1px solid #f1f5f9;
}

/* ==========================================================================
   RIGHT COLUMN: STICKY 3D MOCKUP & PRICE CARD
   ========================================================================== */
#oghemp-card-customizer-root .oghemp-sticky-card-box {
	position: sticky;
	top: 90px;
	background: #ffffff;
	border: 1px solid var(--og-border);
	border-radius: var(--og-radius);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

/* 3D Card Mockup */
#oghemp-card-customizer-root .oghemp-mockup-container {
	background: linear-gradient(135deg, #182e23 0%, #0a1711 100%);
	padding: 24px 20px 20px;
	text-align: center;
	perspective: 1000px;
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Mockup Header & Dimension Badges */
#oghemp-card-customizer-root .oghemp-mockup-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 18px;
}

#oghemp-card-customizer-root .oghemp-card-dimension-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	color: #e2e8f0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#oghemp-card-customizer-root .oghemp-dim-icon {
	font-size: 13px;
}

#oghemp-card-customizer-root .oghemp-dim-label {
	color: #94a3b8;
	font-weight: 500;
}

#oghemp-card-customizer-root #oghemp-preview-dim-text {
	color: #a7f3d0;
	font-weight: 700;
	letter-spacing: 0.2px;
}

#oghemp-card-customizer-root .oghemp-card-stock-badge {
	background: rgba(59, 181, 74, 0.2);
	border: 1px solid rgba(59, 181, 74, 0.4);
	color: #86efac;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Card Stage & Caliper Guides */
#oghemp-card-customizer-root .oghemp-card-stage {
	position: relative;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 15px 10px 25px;
	min-height: 280px;
	justify-content: center;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}

#oghemp-card-customizer-root .oghemp-dim-guide-w {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	max-width: 420px;
	margin-bottom: 12px;
	color: #94a3b8;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
}

#oghemp-card-customizer-root .oghemp-dim-guide-h {
	position: absolute;
	left: -10px;
	top: 50%;
	transform: translateY(-50%) rotate(-90deg);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 140px;
	color: #94a3b8;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.5px;
	pointer-events: none;
}

#oghemp-card-customizer-root .oghemp-guide-line {
	flex: 1;
	height: 1px;
	background: rgba(255, 255, 255, 0.25);
	position: relative;
}

#oghemp-card-customizer-root .oghemp-guide-line::before,
#oghemp-card-customizer-root .oghemp-guide-line::after {
	content: '';
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #3bb54a;
	top: -1.5px;
}

#oghemp-card-customizer-root .oghemp-guide-val {
	color: #ffffff;
	background: rgba(15, 23, 42, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 2px 8px;
	border-radius: 4px;
	font-family: monospace;
	font-size: 11px;
	font-weight: 700;
}

#oghemp-card-customizer-root .oghemp-card-stage-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 450px;
	padding: 0 15px;
	box-sizing: border-box;
}

/* 3D Card Sizes & Aspect Ratios (Fluid Responsive Scaling) */
#oghemp-card-customizer-root .oghemp-3d-card {
	position: relative;
	transform-style: preserve-3d;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
	border-radius: 10px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
}

/* Standard: 89 x 51 mm (3.5 x 2.0 in) - Aspect Ratio 89/51 */
#oghemp-card-customizer-root .oghemp-3d-card.size-standard {
	max-width: 420px;
	aspect-ratio: 89 / 51;
}

/* European: 85 x 55 mm (3.35 x 2.17 in) - Aspect Ratio 85/55 */
#oghemp-card-customizer-root .oghemp-3d-card.size-european {
	max-width: 400px;
	aspect-ratio: 85 / 55;
}

/* Modern Square: 65 x 65 mm (2.5 x 2.5 in) - Aspect Ratio 1:1 */
#oghemp-card-customizer-root .oghemp-3d-card.size-square {
	max-width: 290px;
	aspect-ratio: 1 / 1;
}

/* Slim: 89 x 32 mm (3.5 x 1.25 in) - Aspect Ratio 89/32 */
#oghemp-card-customizer-root .oghemp-3d-card.size-slim {
	max-width: 440px;
	aspect-ratio: 89 / 32;
}

#oghemp-card-customizer-root .oghemp-3d-card.flipped {
	transform: rotateY(180deg);
}

#oghemp-card-customizer-root .oghemp-card-face {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #fcfaf5; /* Authentic natural unbleached ivory hemp cardstock */
	border-radius: 12px;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.38), inset 0 0 0 1px rgba(215, 204, 187, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border: 1px solid #e7e0d3;
}

#oghemp-card-customizer-root .oghemp-card-back {
	transform: rotateY(180deg);
}

#oghemp-card-customizer-root .oghemp-card-paper-texture {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: radial-gradient(#d3c9b8 1.2px, transparent 1.2px);
	background-size: 8px 8px;
	opacity: 0.45;
	pointer-events: none;
}

/* Sample Card Minimalist Typography */
#oghemp-card-customizer-root .oghemp-card-sample-layout {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 24px 28px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: left;
	z-index: 1;
	pointer-events: none;
	transition: opacity 0.3s;
}

#oghemp-card-customizer-root .oghemp-card-sample-brand {
	display: flex;
	align-items: center;
	gap: 8px;
}

#oghemp-card-customizer-root .oghemp-card-sample-logo {
	font-size: 16px;
}

#oghemp-card-customizer-root .oghemp-card-sample-company {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 2px;
	color: #1e3a29;
}

#oghemp-card-customizer-root .oghemp-card-sample-person {
	margin: auto 0;
}

#oghemp-card-customizer-root .oghemp-card-sample-name {
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 1.5px;
	color: #111827;
	line-height: 1.2;
}

#oghemp-card-customizer-root .oghemp-card-sample-title {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: #4b5563;
	margin-top: 4px;
	text-transform: uppercase;
}

#oghemp-card-customizer-root .oghemp-card-sample-contact {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: 0.4px;
	color: #4b5563;
}

/* Sample Card Back Layout */
#oghemp-card-customizer-root .oghemp-card-sample-back {
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 12px;
}

#oghemp-card-customizer-root .oghemp-card-sample-logo-large {
	font-size: 38px;
}

#oghemp-card-customizer-root .oghemp-card-sample-tagline {
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 2px;
	color: #2d5a3f;
}

#oghemp-card-customizer-root .oghemp-card-brand-watermark {
	position: absolute;
	bottom: 10px;
	right: 14px;
	font-size: 8.5px;
	font-weight: 800;
	letter-spacing: 1px;
	color: #b3a898;
	text-transform: uppercase;
	z-index: 1;
}

#oghemp-card-customizer-root .oghemp-foil-effect {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s;
	z-index: 2;
}

#oghemp-card-customizer-root .oghemp-foil-effect.foil-active {
	opacity: 1;
	background: linear-gradient(115deg, rgba(212,175,55,0) 0%, rgba(212,175,55,0.35) 45%, rgba(255,255,255,0.85) 50%, rgba(212,175,55,0.35) 55%, rgba(212,175,55,0) 100%);
}

#oghemp-card-customizer-root .oghemp-card-art-preview {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 3;
}

#oghemp-card-customizer-root .oghemp-mockup-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 15px;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#oghemp-card-customizer-root .oghemp-flip-btn {
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	cursor: pointer;
	transition: background 0.2s;
}

#oghemp-card-customizer-root .oghemp-flip-btn:hover {
	background: rgba(255, 255, 255, 0.3);
}

#oghemp-card-customizer-root .oghemp-mockup-hint {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.6);
}

/* Price Box */
#oghemp-card-customizer-root .oghemp-price-summary-box {
	padding: 22px;
}

#oghemp-card-customizer-root .oghemp-currency-bar {
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid #f1f5f9;
}

#oghemp-card-customizer-root .oghemp-currency-label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #64748b;
	margin-bottom: 6px;
}

#oghemp-card-customizer-root .oghemp-currency-pills {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
}

#oghemp-card-customizer-root .oghemp-curr-btn {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	padding: 5px 8px;
	font-size: 11px;
	font-weight: 600;
	color: #475569;
	cursor: pointer;
	text-align: center;
	transition: all 0.15s ease;
}

#oghemp-card-customizer-root .oghemp-curr-btn:hover {
	border-color: var(--og-gold);
	background: #fff;
	color: var(--og-forest);
}

#oghemp-card-customizer-root .oghemp-curr-btn.active {
	background: var(--og-forest);
	border-color: var(--og-forest);
	color: #fff;
	box-shadow: 0 2px 4px rgba(45, 90, 39, 0.15);
}

#oghemp-card-customizer-root .oghemp-inr-equiv-note {
	display: block;
	font-size: 11px;
	color: #64748b;
	margin-top: 2px;
	font-style: italic;
}

#oghemp-card-customizer-root .oghemp-price-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 18px;
	padding-bottom: 16px;
	border-bottom: 1px dashed #e2e8f0;
}

#oghemp-card-customizer-root .oghemp-total-label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

#oghemp-card-customizer-root .oghemp-total-price {
	font-size: 32px;
	font-weight: 900;
	color: var(--og-green-dark);
	line-height: 1;
	margin: 4px 0 6px;
}

#oghemp-card-customizer-root .oghemp-tax-note {
	display: block;
	font-size: 11px;
	color: var(--og-green-primary);
	font-weight: 600;
}

#oghemp-card-customizer-root .oghemp-unit-rate-box {
	text-align: right;
	background: var(--og-gray-bg);
	padding: 8px 12px;
	border-radius: 6px;
	border: 1px solid var(--og-border);
}

#oghemp-card-customizer-root .oghemp-unit-label {
	display: block;
	font-size: 10px;
	color: #6b7280;
	text-transform: uppercase;
	font-weight: 700;
}

#oghemp-card-customizer-root .oghemp-unit-val {
	font-size: 16px;
	font-weight: 800;
	color: var(--og-dark);
}

#oghemp-card-customizer-root .oghemp-unit-sub {
	font-size: 11px;
	color: #6b7280;
}

#oghemp-card-customizer-root .oghemp-breakdown-wrap {
	font-size: 13px;
	color: #4b5563;
	margin-bottom: 18px;
}

#oghemp-card-customizer-root .oghemp-breakdown-line {
	display: flex;
	justify-content: space-between;
	margin-bottom: 6px;
}

#oghemp-card-customizer-root .oghemp-turnaround-badge {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 12px;
	color: #334155;
	display: flex;
	justify-content: space-between;
	margin-bottom: 18px;
}

/* Eco Scoreboard */
#oghemp-card-customizer-root .oghemp-eco-scoreboard {
	background: var(--og-green-light);
	border: 1px solid rgba(112, 180, 83, 0.4);
	border-radius: 8px;
	padding: 12px;
	margin-bottom: 20px;
}

#oghemp-card-customizer-root .oghemp-eco-title {
	font-size: 12px;
	font-weight: 700;
	color: var(--og-green-dark);
	margin-bottom: 8px;
}

#oghemp-card-customizer-root .oghemp-eco-metrics {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 6px;
	text-align: center;
}

#oghemp-card-customizer-root .oghemp-eco-item strong {
	display: block;
	font-size: 13px;
	font-weight: 800;
	color: var(--og-green-dark);
}

#oghemp-card-customizer-root .oghemp-eco-item span {
	display: block;
	font-size: 10px;
	color: #4b5563;
}

/* Action Buttons */
#oghemp-card-customizer-root .oghemp-action-stack {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 14px;
}

#oghemp-card-customizer-root .oghemp-add-to-cart-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	background: var(--og-green-primary);
	color: #ffffff;
	border: none;
	padding: 14px;
	font-size: 16px;
	font-weight: 800;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.2s, transform 0.1s;
	box-shadow: 0 4px 14px rgba(112, 180, 83, 0.35);
}

#oghemp-card-customizer-root .oghemp-add-to-cart-btn:hover {
	background: #5ea043;
	transform: translateY(-1px);
}

#oghemp-card-customizer-root .oghemp-b2b-quote-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	background: #ffffff;
	color: #075e54;
	border: 2px solid #25d366;
	padding: 12px;
	font-size: 14px;
	font-weight: 700;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.2s;
}

#oghemp-card-customizer-root .oghemp-b2b-quote-btn:hover {
	background: #f0fdf4;
}

#oghemp-card-customizer-root .oghemp-guarantee-strip {
	font-size: 11px;
	color: #6b7280;
	text-align: center;
	line-height: 1.4;
}

/* ==========================================================================
   SHOWCASE & EDUCATIONAL SECTION
   ========================================================================== */
#oghemp-card-customizer-root .oghemp-showcase-section {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid var(--og-border);
}

#oghemp-card-customizer-root .oghemp-section-head {
	text-align: center;
	max-width: 750px;
	margin: 0 auto 40px;
}

#oghemp-card-customizer-root .oghemp-section-tag {
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--og-green-primary);
	letter-spacing: 1px;
}

#oghemp-card-customizer-root .oghemp-section-head h2 {
	font-size: 32px;
	font-weight: 800;
	color: var(--og-green-dark);
	margin: 6px 0 10px;
}

#oghemp-card-customizer-root .oghemp-section-head p {
	font-size: 15px;
	color: #4b5563;
	margin: 0;
}

#oghemp-card-customizer-root .oghemp-showcase-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
	margin-bottom: 50px;
}

#oghemp-card-customizer-root .oghemp-showcase-card {
	background: #ffffff;
	border: 1px solid var(--og-border);
	border-radius: var(--og-radius);
	overflow: hidden;
	box-shadow: var(--og-shadow);
}

#oghemp-card-customizer-root .oghemp-showcase-visual {
	height: 140px;
	background: #f8fafc;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

#oghemp-card-customizer-root .oghemp-showcase-visual.foil-visual {
	background: linear-gradient(135deg, #1b382b 0%, #0b1f16 100%);
}

#oghemp-card-customizer-root .oghemp-visual-shimmer {
	width: 100px;
	height: 50px;
	background: linear-gradient(115deg, #b8860b 0%, #ffd700 50%, #d4af37 100%);
	border-radius: 4px;
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

#oghemp-card-customizer-root .oghemp-visual-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.6);
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 20px;
}

#oghemp-card-customizer-root .oghemp-showcase-body {
	padding: 20px;
}

#oghemp-card-customizer-root .oghemp-showcase-body h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--og-green-dark);
	margin: 0 0 8px;
}

#oghemp-card-customizer-root .oghemp-showcase-body p {
	font-size: 13px;
	line-height: 1.5;
	color: #4b5563;
	margin: 0 0 14px;
}

#oghemp-card-customizer-root .oghemp-feature-bullets {
	margin: 0;
	padding-left: 18px;
	font-size: 12px;
	color: #6b7280;
	line-height: 1.6;
}

/* Guidelines Box */
#oghemp-card-customizer-root .oghemp-guidelines-box {
	background: #f8fafc;
	border: 1px solid #cbd5e1;
	border-radius: var(--og-radius);
	padding: 28px;
	margin-bottom: 50px;
}

#oghemp-card-customizer-root .oghemp-guidelines-header h3 {
	font-size: 20px;
	font-weight: 800;
	color: var(--og-green-dark);
	margin: 0 0 4px;
}

#oghemp-card-customizer-root .oghemp-guidelines-header p {
	font-size: 13px;
	color: #6b7280;
	margin: 0 0 20px;
}

#oghemp-card-customizer-root .oghemp-guidelines-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

#oghemp-card-customizer-root .oghemp-guide-item strong {
	display: block;
	font-size: 14px;
	color: var(--og-dark);
	margin-bottom: 4px;
}

#oghemp-card-customizer-root .oghemp-guide-item span {
	display: block;
	font-size: 12px;
	color: #4b5563;
	line-height: 1.5;
}

/* FAQ Accordions */
#oghemp-card-customizer-root .oghemp-faq-list {
	max-width: 850px;
	margin: 0 auto;
}

#oghemp-card-customizer-root .oghemp-faq-item {
	background: #ffffff;
	border: 1px solid var(--og-border);
	border-radius: 8px;
	margin-bottom: 12px;
	padding: 18px 20px;
}

#oghemp-card-customizer-root .oghemp-faq-question {
	font-size: 16px;
	font-weight: 700;
	color: var(--og-green-dark);
	margin: 0 0 8px;
}

#oghemp-card-customizer-root .oghemp-faq-answer p {
	font-size: 14px;
	line-height: 1.6;
	color: #4b5563;
	margin: 0;
}
