/**
 * Essential Oil Blends Marketing Cards Styles
 *
 * Styles for marketing-focused recipe cards displayed on product pages.
 * Matches the aesthetic of the recipe cards while optimized for web display.
 *
 * @package Ecosoap_Child
 * @version 3.0.0
 */

/* ============================================
   MARKETING CARD CONTAINER
   ============================================ */
.sj-eo-blend-marketing-card {
	border: 1px solid #e2e2e2;
	border-radius: 12px;
	overflow: hidden;
	margin: 20px 0 30px 0;
	background: #fff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* ============================================
   CARD HEADER
   ============================================ */
.sj-blend-card-header {
	padding: 20px 24px;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 16px;
	position: relative;
}

/* Blend ID never visible - backend/analytics only */
.sj-blend-id,
.sj-blend-id-backend,
[class*="blend-id"],
[data-blend-id]::before,
[data-blend-id]::after {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	width: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
	position: absolute !important;
	left: -9999px !important;
	clip: rect(0, 0, 0, 0) !important;
}
.sj-blend-id-backend {
	font-size: 0 !important;
	line-height: 0 !important;
	pointer-events: none !important;
}

.sj-blend-info {
	flex: 1;
}

.sj-blend-name {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.3px;
	margin-bottom: 4px;
	line-height: 1.2;
}

.sj-blend-category {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	opacity: 0.85;
	font-weight: 600;
}

/* ============================================
   CARD BODY
   ============================================ */
.sj-blend-card-body {
	padding: 20px 24px;
}

/* ============================================
   PROMINENT INFO SECTION
   ============================================ */
.sj-blend-prominent-info {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border: 1px solid #e9ecef;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.sj-prominent-item {
	flex: 1;
}

.sj-prominent-label {
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 700;
	color: #7B68AE;
	margin-bottom: 10px;
}

.sj-prominent-value {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
	letter-spacing: 0.5px;
}

.sj-prominent-oils {
	border-top: 1px solid #e9ecef;
	padding-top: 20px;
}

.sj-oils-list-prominent {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px;
}

.sj-oil-badge-prominent {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sj-oil-badge-prominent:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.sj-oil-badge-prominent .sj-note-label {
	font-size: 11px;
	opacity: 0.9;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.sj-blend-concept {
	font-style: italic;
	color: #555;
	font-size: 15px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid #eee;
	line-height: 1.6;
}

/* ============================================
   SCENT FAMILY PILLS
   ============================================ */
.sj-scent-pill {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.3px;
	line-height: 1.4;
	border: 1.5px solid transparent;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.sj-scent-floral {
	background-color: #FCE4EC;
	color: #AD1457;
	border-color: #f48fb1;
}

.sj-scent-citrus {
	background-color: #FFF3E0;
	color: #E65100;
	border-color: #ffb74d;
}

.sj-scent-herbal {
	background-color: #E8F5E9;
	color: #2E7D32;
	border-color: #81c784;
}

.sj-scent-woody {
	background-color: #E0F2F1;
	color: #00695C;
	border-color: #4db6ac;
}

.sj-scent-resinous {
	background-color: #F3E5F5;
	color: #6A1B9A;
	border-color: #ba68c8;
}

.sj-scent-warm {
	background-color: #FBE9E7;
	color: #BF360C;
	border-color: #ef9a9a;
}

.sj-scent-tropical {
	background-color: #E0F7FA;
	color: #00838F;
	border-color: #26c6da;
}

.sj-scent-ethereal {
	background-color: #EDE7F6;
	color: #4527A0;
	border-color: #9575cd;
}

/* ============================================
   CARD SECTIONS
   ============================================ */
.sj-blend-section {
	margin-bottom: 20px;
}

.sj-blend-section:last-child {
	margin-bottom: 0;
}

.sj-section-title {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 700;
	color: #999;
	margin-bottom: 0;
}

/* ============================================
   COLLAPSIBLE SECTIONS — MODERN ACCORDION
   ============================================ */
.sj-collapsible {
	border: 1px solid #e8e8e8;
	border-left: 3px solid #7B68AE;
	border-radius: 8px;
	margin-bottom: 12px;
	overflow: hidden;
	transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
	            box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sj-collapsible:hover {
	border-color: #ccc;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.sj-section-toggle {
	width: 100%;
	background: #fafbfc;
	border: none;
	padding: 14px 16px;
	cursor: pointer;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	text-align: left;
	transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
	            box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
	            transform 0.15s ease;
	font-family: inherit;
	gap: 0;
	/* Mobile: prevent 300ms delay and suppress tap highlight */
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
	min-height: 48px;
}

.sj-section-toggle:hover {
	background-color: #f0f1f4;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.sj-section-toggle:active {
	transform: scale(0.995);
}

.sj-section-toggle:focus {
	outline: 2px solid #7B68AE;
	outline-offset: -2px;
}

.sj-section-toggle .sj-section-title {
	flex: 1;
	color: #444;
	font-size: 11px;
}

/* Preview snippet text */
.sj-preview-text {
	width: 100%;
	display: block;
	font-size: 13px;
	color: #888;
	line-height: 1.5;
	margin-top: 6px;
	font-weight: 400;
	font-style: italic;
	transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
	            max-height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	max-height: 60px;
	overflow: hidden;
}

/* Hide preview when section is expanded */
.sj-section-toggle[aria-expanded="true"] .sj-preview-text {
	opacity: 0;
	max-height: 0;
	margin-top: 0;
}

/* SVG Chevron */
.sj-chevron-icon {
	flex-shrink: 0;
	color: #7B68AE;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sj-section-toggle[aria-expanded="true"] .sj-chevron-icon {
	transform: rotate(180deg);
}

.sj-section-toggle[aria-expanded="false"] .sj-chevron-icon {
	transform: rotate(0deg);
}

/* Remove old toggle icon styles (replaced by SVG chevron) */
.sj-toggle-icon {
	display: none;
}

.sj-section-content {
	padding: 16px;
	overflow: hidden;
	transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
	            padding 0.35s cubic-bezier(0.4, 0, 0.2, 1),
	            opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	max-height: 2000px;
	opacity: 1;
}

.sj-section-content.collapsed {
	max-height: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	opacity: 0;
	overflow: hidden;
}

.sj-blending-rationale .sj-section-toggle {
	background-color: #f8f9fa;
}

.sj-blending-rationale .sj-section-toggle:hover {
	background-color: #eef0f2;
}

.sj-blending-rationale .sj-section-content {
	background-color: #f8f9fa;
}

.sj-blending-rationale .sj-section-content.collapsed {
	background-color: transparent;
}

.sj-blend-section p {
	font-size: 14px;
	color: #555;
	line-height: 1.7;
	margin: 0;
}

.sj-blending-rationale {
	background: #f8f9fa;
	padding: 0;
	border-radius: 8px;
	border-left: 3px solid #7B68AE;
	margin-top: 20px;
}

.sj-blending-rationale .sj-section-title {
	color: #7B68AE;
}

/* ============================================
   OILS LIST
   ============================================ */
.sj-oils-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px;
}

.sj-oil-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
}

.sj-note-label {
	font-size: 10px;
	opacity: 0.8;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Note Badge Colors */
.sj-note-top {
	background: #FFF3E0;
	color: #E65100;
}

.sj-note-middle {
	background: #E8F5E9;
	color: #2E7D32;
}

.sj-note-base {
	background: #E3F2FD;
	color: #1565C0;
}

/* ============================================
   CARD FOOTER
   ============================================ */
.sj-blend-card-footer {
	padding: 14px 24px;
	border-top: 1px solid #eee;
	background: #fafafa;
	display: flex;
	justify-content: space-around;
	gap: 20px;
}

.sj-footer-item {
	text-align: center;
	flex: 1;
}

.sj-footer-label {
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #999;
	font-weight: 700;
	margin-bottom: 4px;
}

.sj-footer-value {
	font-size: 13px;
	font-weight: 600;
	color: #1a1a1a;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
	.sj-eo-blend-marketing-card {
		margin: 20px 0;
		border-radius: 10px;
	}

	.sj-blend-card-header {
		padding: 14px 18px;
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.sj-blend-name {
		font-size: 18px;
	}

	.sj-blend-card-body {
		padding: 16px 18px;
	}

	.sj-blend-prominent-info {
		padding: 16px;
		gap: 16px;
	}

	.sj-prominent-value {
		font-size: 16px;
	}

	.sj-oil-badge-prominent {
		padding: 8px 14px;
		font-size: 13px;
	}

	.sj-blend-concept {
		font-size: 14px;
	}

	.sj-blend-section p {
		font-size: 13px;
	}

	.sj-blend-card-footer {
		padding: 12px 18px;
		flex-direction: column;
		gap: 12px;
	}

	.sj-oils-list {
		flex-direction: column;
	}

	.sj-oil-badge {
		width: 100%;
		justify-content: space-between;
	}

	.sj-oils-list-prominent {
		flex-direction: column;
	}

	.sj-oil-badge-prominent {
		width: 100%;
		justify-content: space-between;
	}

	.sj-scent-pill {
		font-size: 13px;
		padding: 5px 14px;
	}

	.sj-preview-text {
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	.sj-blend-card-header {
		padding: 12px 16px;
	}

	.sj-blend-card-body {
		padding: 14px 16px;
	}

	.sj-blend-card-footer {
		padding: 10px 16px;
	}
}

/* ============================================
   PRODUCT PAGE — DYNAMIC SCENT META PILLS
   Shown in woocommerce_single_product_summary
   (priority 16, below title/urgency, above cart)
   ============================================ */
.sj-product-scent-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
}

/* Scent pills as links — neutralise browser default anchor styles */
a.sj-scent-pill,
a.sj-product-category-pill {
	text-decoration: none;
	cursor: pointer;
	transition: opacity 0.15s ease, box-shadow 0.15s ease;
}

a.sj-scent-pill:hover,
a.sj-product-category-pill:hover {
	opacity: 0.82;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
	text-decoration: none;
}

a.sj-scent-pill:focus-visible,
a.sj-product-category-pill:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

/* Category pill reuses --pill-color CSS variable */
.sj-product-category-pill {
	display: inline-flex;
	align-items: center;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.5;
	/* Fallback for iOS < 16.2 */
	background: #f0ecfa;
	color: #7B68AE;
	border: 1.5px solid #d4c8f0;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
	/* Modern: dynamic color */
	background: color-mix(in srgb, var(--pill-color) 12%, white);
	color: var(--pill-color);
	border-color: color-mix(in srgb, var(--pill-color) 30%, white);
}

/* ============================================
   BOTANICALS & ADDITIVES SECTION
   Compact strip below EO blend card on product page
   ============================================ */
.sj-botanicals-section {
	border: 1px solid #d4e8d4;
	border-left: 3px solid #388E3C;
	border-radius: 8px;
	background: #fff;
	margin: 0 0 20px;
	overflow: hidden;
}

.sj-botanicals-header {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	background: #f1f8f1;
	border-bottom: 1px solid #d4e8d4;
}

.sj-botanicals-icon {
	font-size: 16px;
	line-height: 1;
}

.sj-botanicals-title {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #2E7D32;
}

.sj-botanicals-list {
	padding: 10px 14px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.sj-botanical-item {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
}

.sj-botanical-name {
	font-size: 13px;
	font-weight: 600;
	color: #1a1a1a;
	flex-shrink: 0;
}

/* Shared pill base */
.sj-botanical-pill {
	display: inline-flex;
	align-items: center;
	padding: 2px 9px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.5;
	flex-shrink: 0;
}

/* Category colors — match guide palette */
.sj-botanical-cat--floral    { background: #fce4ec; color: #C2185B; border: 1px solid #f48fb1; }
.sj-botanical-cat--herb      { background: #e8f5e9; color: #388E3C; border: 1px solid #a5d6a7; }
.sj-botanical-cat--citrus    { background: #fff3e0; color: #E65100; border: 1px solid #ffcc80; }
.sj-botanical-cat--spice     { background: #efebe9; color: #4E342E; border: 1px solid #bcaaa4; }
.sj-botanical-cat--exfoliant { background: #eceff1; color: #546E7A; border: 1px solid #b0bec5; }

/* Method badges */
.sj-botanical-method--top        { background: #e3f2fd; color: #1565C0; border: 1px solid #90caf9; }
.sj-botanical-method--embed      { background: #e8f5e9; color: #2E7D32; border: 1px solid #a5d6a7; }
.sj-botanical-method--both       { background: #f3e5f5; color: #6A1B9A; border: 1px solid #ce93d8; }
.sj-botanical-method--decorative { background: #f5f5f5; color: #757575; border: 1px solid #e0e0e0; }

/* Safety warning icon */
.sj-botanical-warning {
	font-size: 13px;
	cursor: help;
	flex-shrink: 0;
}

@media (max-width: 480px) {
	.sj-botanicals-list {
		padding: 8px 12px;
	}
	.sj-botanical-item {
		gap: 5px;
	}
	.sj-botanical-name {
		font-size: 12px;
	}
}

/* ============================================
   ADDITIONAL INFORMATION TAB — BLEND PILLS
   Hooked via woocommerce_product_additional_information
   at priority 5, before the WC attributes table
   ============================================ */
.sj-additional-blend-info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 28px;
	margin-bottom: 20px;
	padding-bottom: 18px;
	border-bottom: 1px solid #eee;
}

.sj-additional-scent-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.sj-additional-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #aaa;
	min-width: 88px;
	flex-shrink: 0;
}

.sj-additional-value {
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

@media (max-width: 600px) {
	.sj-additional-blend-info {
		flex-direction: column;
		gap: 10px;
		align-items: flex-start;
	}
}

/* ============================================
   REDUCED MOTION — disable all transitions
   ============================================ */
@media (prefers-reduced-motion: reduce) {
	.sj-collapsible,
	.sj-section-toggle,
	.sj-section-content,
	.sj-preview-text,
	.sj-chevron-icon,
	.sj-oil-badge-prominent {
		transition: none !important;
		animation: none !important;
	}
	.sj-section-toggle:active { transform: none !important; }
}

/* ============================================
   MICA CARD BELOW GALLERY (Fix 5 — 2026-03-18)
   ============================================ */
.sj-mica-card-below-gallery {
	margin-top: 20px;
}

/* ============================================
   PRODUCT DESCRIPTION INLINE (Fix 1B)
   ============================================ */
.sj-product-description-inline {
	margin: 20px 0;
	padding: 20px;
	background: #f9f8fc;
	border-radius: 10px;
	border-left: 3px solid #db2876;
}

.sj-product-description-title {
	font-family: 'Jabula', Georgia, serif;
	font-size: 1rem;
	color: #082567;
	margin: 0 0 10px 0;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.sj-product-description-inline p {
	font-family: 'Lora', Georgia, serif;
	font-size: 0.92rem;
	line-height: 1.75;
	color: #333;
	margin: 0 0 8px 0;
}

/* ============================================
   KIDS SAFETY BADGES (Fix 9)
   ============================================ */
.sj-kids-safe-badge {
	background: #e8f5e9;
	border: 1.5px solid #4caf50;
	border-radius: 10px;
	padding: 12px 16px;
	margin: 12px 0;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 8px;
	font-size: 0.9rem;
	color: #1b5e20;
}

.sj-kids-safe-badge strong {
	color: #2e7d32;
	font-size: 0.95rem;
}

.sj-kids-safe-badge .sj-kids-safe-icon,
.sj-kids-caution-badge span[aria-hidden] {
	font-size: 1.1rem;
	flex-shrink: 0;
}

.sj-kids-safe-badge .sj-kids-safe-note {
	flex-basis: 100%;
	font-size: 0.82rem;
	color: #388e3c;
	margin: 4px 0 0 0;
	line-height: 1.5;
}

.sj-kids-caution-badge {
	background: #fff3e0;
	border: 1.5px solid #ff9800;
	border-radius: 10px;
	padding: 12px 16px;
	margin: 12px 0;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 8px;
	font-size: 0.9rem;
	color: #e65100;
}

.sj-kids-caution-badge strong {
	color: #bf360c;
	font-size: 0.95rem;
}

.sj-kids-caution-badge .sj-kids-safe-note {
	flex-basis: 100%;
	font-size: 0.82rem;
	color: #e65100;
	margin: 4px 0 0 0;
	line-height: 1.5;
}

/* === Mica Card Redesign 1.4.0 — matches EO card visual language === */
.sj-mica-blend-marketing-card {
	border: 1px solid #e2e0e8;
	border-radius: 12px;
	overflow: hidden;
	margin: 20px 0 30px 0;
	background: #fff;
	box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.sj-mica-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	/* background-color set inline from blend hex */
}
.sj-mica-card-header .sj-blend-name {
	font-family: Jabula, sans-serif;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.3px;
	line-height: 1.2;
	margin: 0 0 4px 0;
}
.sj-mica-card-header .sj-blend-category {
	font-size: 10px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	font-weight: 600;
	font-family: Thematic, sans-serif;
	opacity: 0.85;
}
.sj-mica-swatch-large {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.sj-mica-card-body {
	padding: 14px 16px;
	background: #fff;
}

/* Color Recipe section */
.sj-mica-section {
	margin-bottom: 12px;
}
.sj-mica-section-label {
	font-size: 0.68rem;
	letter-spacing: 0.1em;
	color: #7c6f8e;
	font-family: Thematic, sans-serif;
	margin-bottom: 8px;
	text-transform: uppercase;
}
.sj-mica-pigments-table {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.sj-mica-pigment-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 5px 10px;
	background: #f8f7fc;
	border-radius: 6px;
	border: 1px solid #ece9f3;
}
.sj-mica-pigment-swatch {
	width: 28px;
	height: 28px;
	border-radius: 4px;
	flex-shrink: 0;
	border: 1px solid rgba(0,0,0,0.12);
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.sj-mica-pigment-name {
	flex: 1;
	font-size: 0.84rem;
	color: #082567;
}
.sj-mica-pigment-pct {
	font-size: 0.8rem;
	font-weight: 700;
	color: #db2876;
	min-width: 36px;
	text-align: right;
}
.sj-mica-usage-note {
	font-size: 0.75rem;
	color: #888;
	margin-top: 6px;
	font-style: italic;
}

/* Color Story collapsible */
.sj-mica-details {
	border-top: 1px solid #ece9f3;
	margin-top: 10px;
	padding-top: 8px;
}
.sj-mica-details summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	list-style: none;
	padding: 4px 0;
}
.sj-mica-details summary::-webkit-details-marker { display: none; }
.sj-mica-details .sj-blend-section-title {
	font-size: 0.68rem;
	letter-spacing: 0.1em;
	color: #7c6f8e;
	font-family: Thematic, sans-serif;
	text-transform: uppercase;
}
.sj-mica-details .sj-blend-section-toggle {
	font-size: 0.6rem;
	color: #7c6f8e;
	transition: transform 0.2s;
}
.sj-mica-details[open] .sj-blend-section-toggle { transform: rotate(180deg); }
.sj-mica-concept-body {
	font-size: 0.88rem;
	color: #444;
	line-height: 1.6;
	padding: 8px 0 4px;
}

/* Soap base row */
.sj-mica-base-row {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #ece9f3;
	font-size: 0.82rem;
}
.sj-mica-base-label {
	color: #7c6f8e;
	font-family: Thematic, sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.sj-mica-base-value { color: #082567; font-weight: 600; }
