/**
 * Secret Life Store - Global Export Showcase Widget Stylesheet (Upgraded)
 * Scoped under .omtw-export-*
 */

:root {
	--omtw-emerald-dark: #062D22;
	--omtw-emerald-mid: #0A3D2E;
	--omtw-emerald-light: #145240;
	--omtw-gold: #D4AF37;
	--omtw-gold-light: #E5C358;
	--omtw-gold-dark: #997A15;
	--omtw-white: #FFFFFF;
	--omtw-card-bg: #FFFFFF;
	--omtw-text-dark: #062D22;
	--omtw-text-muted: #5B7368;
}

/* ==========================================================================
   Section Container & Background
   ========================================================================== */
.omtw-export-section {
	position: relative;
	background: linear-gradient(135deg, #04221A 0%, #062D22 40%, #0A3D2E 75%, #05261D 100%);
	color: #FFFFFF;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	overflow: hidden;
	box-sizing: border-box;
	border-top: 1px solid rgba(212, 175, 55, 0.25);
	border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.omtw-export-bg-glow {
	position: absolute;
	top: -150px;
	right: -150px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(6, 45, 34, 0) 70%);
	pointer-events: none;
	z-index: 1;
}

.omtw-export-bg-lines {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(to right, rgba(212, 175, 55, 0.03) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
	z-index: 1;
}

.omtw-export-container {
	position: relative;
	z-index: 2;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

/* ==========================================================================
   Header: Brand Logo & Title Row
   ========================================================================== */
.omtw-export-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 36px;
	gap: 14px;
}

.omtw-export-brand {
	display: flex;
	align-items: center;
	justify-content: center;
}

.omtw-export-logo-badge {
	display: flex;
	align-items: center;
	gap: 14px;
}

.omtw-export-logo-svg {
	filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.3));
	transition: transform 0.3s ease;
}

.omtw-export-logo-badge:hover .omtw-export-logo-svg {
	transform: rotate(5deg) scale(1.05);
}

.omtw-export-brand-title {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 2px;
	background: linear-gradient(135deg, #FFFDF0 0%, #E5C358 50%, #D4AF37 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-transform: uppercase;
}

.omtw-export-logo-img {
	max-height: 70px;
	width: auto;
	object-fit: contain;
}

.omtw-export-titles {
	max-width: 900px;
}

.omtw-export-title {
	font-family: 'Inter', sans-serif;
	font-size: 26px;
	font-weight: 800;
	color: #FFFFFF;
	line-height: 1.3;
	letter-spacing: 0.5px;
	margin: 0;
	text-transform: uppercase;
}

.omtw-export-subtitle-dash {
	color: var(--omtw-gold);
}

.omtw-export-subtitle {
	font-weight: 400;
	color: #E2ECE7;
	text-transform: none;
	font-size: 22px;
}

/* ==========================================================================
   2-Column Split Showcase Grid
   ========================================================================== */
.omtw-export-grid {
	display: flex;
	gap: 28px;
	align-items: stretch;
	margin-bottom: 40px;
}

.omtw-export-left {
	flex: 0 0 55%;
	max-width: 55%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.omtw-export-right {
	flex: 0 0 45%;
	max-width: 45%;
	display: flex;
	align-items: center;
}

/* ==========================================================================
   Left Column: Product Cards Grid
   ========================================================================== */
.omtw-export-cards-wrapper {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.omtw-export-cards-row {
	display: flex;
	gap: 16px;
}

.omtw-row-top .omtw-export-card {
	flex: 1 1 calc(33.333% - 11px);
	max-width: calc(33.333% - 11px);
}

.omtw-row-bottom .omtw-export-card {
	flex: 1 1 calc(50% - 8px);
	max-width: calc(50% - 8px);
}

.omtw-export-card {
	background: #FFFFFF;
	border-radius: 14px;
	padding: 14px;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	border: 1.5px solid rgba(212, 175, 55, 0.35);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
	transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
}

.omtw-export-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--omtw-gold-light), var(--omtw-gold), var(--omtw-gold-dark));
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.omtw-export-card:hover {
	transform: translateY(-5px);
	border-color: var(--omtw-gold);
	box-shadow: 0 14px 32px rgba(212, 175, 55, 0.25), 0 6px 12px rgba(0, 0, 0, 0.2);
}

.omtw-export-card:hover::before {
	opacity: 1;
}

.omtw-export-card-media {
	width: 100%;
	height: 105px;
	border-radius: 10px;
	overflow: hidden;
	background: #F8FAF8;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	position: relative;
}

.omtw-export-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.omtw-export-card:hover .omtw-export-card-img {
	transform: scale(1.06);
}

.omtw-preset-svg-wrap {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.omtw-preset-svg-wrap svg {
	transition: transform 0.4s ease;
}

.omtw-export-card:hover .omtw-preset-svg-wrap svg {
	transform: scale(1.05);
}

.omtw-export-card-content {
	display: flex;
	flex-direction: column;
	gap: 3px;
	width: 100%;
}

.omtw-export-card-title {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: var(--omtw-text-dark);
	margin: 0;
	line-height: 1.25;
	word-break: normal;
	overflow-wrap: break-word;
	hyphens: manual;
}

.omtw-export-card-subtitle {
	font-size: 12px;
	font-weight: 500;
	color: var(--omtw-text-muted);
	line-height: 1.2;
}

/* ==========================================================================
   Right Column: Video Frame & Overlays
   ========================================================================== */
.omtw-export-video-frame {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 380px;
	border-radius: 20px;
	overflow: hidden;
	border: 2.5px solid var(--omtw-gold);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.2);
	background: #041B14;
	display: flex;
	align-items: center;
	justify-content: center;
}

.omtw-export-video-player {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 17px;
}

.omtw-export-badge-madeinindia {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 10;
	filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
	transition: transform 0.3s ease;
}

.omtw-export-badge-madeinindia:hover {
	transform: scale(1.06) rotate(-3deg);
}

.omtw-export-badge-seal {
	position: absolute;
	bottom: 16px;
	right: 16px;
	z-index: 10;
	filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.4));
	transition: transform 0.3s ease;
}

.omtw-export-badge-seal:hover {
	transform: scale(1.06) rotate(3deg);
}

/* ==========================================================================
   REDESIGNED: Floating Glassmorphism Trust Badges Pill Cards
   ========================================================================== */
.omtw-export-trust-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	margin-top: 10px;
}

.omtw-export-trust-pills-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	width: 100%;
}

.omtw-export-trust-pill {
	background: rgba(10, 61, 46, 0.65);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1.5px solid rgba(212, 175, 55, 0.4);
	border-radius: 50px;
	padding: 10px 22px 10px 12px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
	transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
	cursor: default;
}

.omtw-export-trust-pill:hover {
	background: rgba(14, 75, 57, 0.85);
	border-color: #E5C358;
	transform: translateY(-4px);
	box-shadow: 0 14px 28px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.omtw-export-trust-icon-ring {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #062D22;
	border: 1.5px solid #D4AF37;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), 0 0 12px rgba(212, 175, 55, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #D4AF37;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.omtw-export-trust-icon-ring i {
	font-size: 20px;
	color: #D4AF37;
}

.omtw-export-trust-icon-ring svg {
	width: 22px;
	height: 22px;
	color: #D4AF37;
	fill: #D4AF37;
	stroke: #D4AF37;
	transition: color 0.3s ease, fill 0.3s ease, stroke 0.3s ease;
}

.omtw-export-trust-pill:hover .omtw-export-trust-icon-ring {
	border-color: #E5C358;
	box-shadow: 0 0 16px rgba(229, 195, 88, 0.5);
	transform: scale(1.05);
}

.omtw-export-trust-title {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #FFFFFF;
	letter-spacing: 0.3px;
	white-space: nowrap;
	transition: color 0.3s ease;
}

/* ==========================================================================
   REDESIGNED: Glowing Neon-Gold Ribbon Slogan Badge
   ========================================================================== */
.omtw-export-slogan-ribbon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	background: linear-gradient(135deg, rgba(6, 45, 34, 0.95) 0%, rgba(10, 61, 46, 0.95) 50%, rgba(6, 45, 34, 0.95) 100%);
	border: 1.5px solid #D4AF37;
	border-radius: 30px;
	padding: 10px 28px;
	box-shadow: 0 0 20px rgba(212, 175, 55, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
	position: relative;
	margin-top: 6px;
	transition: all 0.3s ease;
}

.omtw-export-slogan-ribbon:hover {
	box-shadow: 0 0 30px rgba(229, 195, 88, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
	border-color: #E5C358;
}

.omtw-slogan-wing {
	display: flex;
	align-items: center;
	color: #D4AF37;
}

.omtw-slogan-wing svg {
	color: #D4AF37;
	fill: #D4AF37;
	stroke: #D4AF37;
}

.omtw-export-slogan-text {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	background: linear-gradient(90deg, #FFFDF0 0%, #E5C358 40%, #D4AF37 70%, #FFFDF0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Responsive Architecture
   ========================================================================== */
@media (max-width: 1024px) {
	.omtw-export-grid {
		flex-direction: column;
		gap: 24px;
	}

	.omtw-export-left,
	.omtw-export-right {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.omtw-export-video-frame {
		min-height: 320px;
		height: 360px;
	}
}

@media (max-width: 767px) {
	.omtw-export-header {
		margin-bottom: 24px;
		gap: 10px;
	}

	.omtw-export-brand-title {
		font-size: 20px;
		letter-spacing: 1px;
	}

	.omtw-export-title {
		font-size: 20px;
	}

	.omtw-export-subtitle {
		font-size: 16px;
	}

	.omtw-export-cards-wrapper {
		gap: 12px;
	}

	.omtw-export-cards-row {
		display: flex;
		flex-wrap: wrap !important;
		gap: 12px !important;
	}

	.omtw-row-top .omtw-export-card,
	.omtw-row-bottom .omtw-export-card {
		flex: 1 1 calc(50% - 6px) !important;
		max-width: calc(50% - 6px) !important;
	}

	/* Card 3 (Herbal & Traditional Oils) wraps to its own row with full width */
	.omtw-row-top .omtw-export-card:nth-child(3) {
		flex: 1 1 100% !important;
		max-width: 100% !important;
	}

	.omtw-export-card {
		padding: 12px 10px !important;
	}

	.omtw-export-card-media {
		height: 90px !important;
		margin-bottom: 8px !important;
	}

	.omtw-export-card-title {
		font-size: 13px !important;
		line-height: 1.3 !important;
	}

	.omtw-export-card-subtitle {
		font-size: 11px !important;
	}

	.omtw-export-video-frame {
		min-height: 220px;
		height: auto;
		aspect-ratio: 16 / 9;
	}

	.omtw-export-badge-madeinindia svg {
		width: 70px;
		height: 70px;
	}

	.omtw-export-badge-seal svg {
		width: 65px;
		height: 65px;
	}

	.omtw-export-trust-pills-wrap {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.omtw-export-trust-pill {
		padding: 8px 12px;
		border-radius: 30px;
	}

	.omtw-export-trust-title {
		font-size: 13px;
		white-space: normal;
	}

	.omtw-export-slogan-ribbon {
		padding: 8px 16px;
		gap: 10px;
	}

	.omtw-export-slogan-text {
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	.omtw-row-top .omtw-export-card,
	.omtw-row-bottom .omtw-export-card,
	.omtw-row-top .omtw-export-card:nth-child(3) {
		flex: 1 1 100% !important;
		max-width: 100% !important;
	}

	.omtw-export-card-media {
		height: 100px !important;
	}

	.omtw-export-trust-pills-wrap {
		grid-template-columns: 1fr;
	}
}

