/* Woo Reels Pro - Frontend CSS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

:root {
	--wrp-primary: #ff0000; /* Overridden inline by settings */
	--wrp-overlay: rgba(0, 0, 0, 0.4);
	--wrp-text: #ffffff;
}

.wooreels-pro-container {
	width: 100%;
	max-width: 220px;
	height: 380px;
	max-height: 80vh;
	margin: 0 auto;
	position: relative;
	background: var(--wrp-bg, #ffffff);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 15px 45px rgba(0,0,0,0.15); /* Stronger soft shadow */
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
	-webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
	text-rendering: optimizeLegibility !important;
	transition: all 0.3s ease;
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
}

/* Hide ALL native video controls & WP plugins */
video.wooreels-video-element::-webkit-media-controls { display: none !important; }
video.wooreels-video-element::-webkit-media-controls-enclosure { display: none !important; }
.mejs-controls, .mejs-overlay, .mejs-container { display: none !important; opacity: 0 !important; visibility: hidden !important; }


/* Scroll Snap Wrapper */
.wooreels-pro-wrapper {
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	scroll-snap-type: y mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none; /* Firefox */
}
.wooreels-pro-wrapper::-webkit-scrollbar {
	display: none; /* Chrome/Safari */
}

/* Individual Reel Item */
.wooreels-pro-item {
	width: 100%;
	height: 100%;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	position: relative;
	background: transparent;
}

/* Video Player */
.wooreels-video-container {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.wooreels-video-element {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Ensures no black bars, fills screen */
	cursor: pointer;
}

/* YouTube Scaled Trick to hide Title/Uploader */
.wooreels-video-youtube {
	position: absolute;
	top: -80px;
	left: -5%;
	width: 110% !important;
	height: calc(100% + 160px) !important; /* Crop 80px off top to hide title */
	pointer-events: none;
	object-fit: cover;
}

/* Overlays */
.wooreels-play-pause-overlay {
	display: none !important; /* User requested to hide player controllers */
}
.wooreels-mute-toggle {
	display: none !important; /* User requested to hide mute button */
}

/* Product Info Overlay (Bottom) */
.wooreels-product-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 6px 8px 10px 8px;
	box-sizing: border-box;
	z-index: 3;
	background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 40%, transparent 100%);
	color: var(--wrp-text);
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.wooreels-product-info {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.wooreels-product-thumb img {
	width: 36px; /* Reduced from 44px */
	height: 36px; /* Reduced from 44px */
	border-radius: 6px;
	object-fit: cover;
	border: 1px solid rgba(255,255,255,0.2);
}

.wooreels-product-details {
	display: flex;
	flex-direction: column;
	gap: 1px;
	flex: 1;
}
.wooreels-product-title {
	margin: 0 0 1px 0;
	font-size: 11px; /* Smaller for responsiveness */
	font-weight: 500;
	color: #fff;
	text-shadow: 0 1px 3px rgba(0,0,0,0.8);
	line-height: 1.1;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* Truncate to max 2 lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.wooreels-product-price-wrapper {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-wrap: wrap;
}
.wooreels-product-price {
	font-size: 11px;
	font-weight: 500;
	color: #eee;
	margin: 0;
}
.wooreels-product-stock {
	font-size: 10px;
	font-weight: 500;
	text-transform: uppercase;
}
.wooreels-stock-instock {
	color: #4ade80;
}
.wooreels-stock-outofstock {
	color: #f87171;
}
.wooreels-discount-badge {
	background: #ef4444;
	color: #fff;
	font-size: 9px;
	font-weight: 500;
	padding: 1px 4px;
	border-radius: 4px;
	line-height: 1;
}
.wooreels-product-category {
	font-size: 10px;
	color: #ccc;
	margin: 0;
}
.wooreels-product-description {
	display: none; /* Hidden by default, shown in fullscreen */
}
.wooreels-product-price del {
	opacity: 0.7;
	font-size: 11px;
	margin-right: 4px;
}
.wooreels-product-price ins {
	text-decoration: none;
	color: #fff;
}

/* Action Button */
.wooreels-btn {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 4px !important;
	width: 100% !important;
	padding: 5px 8px !important; /* Reduced padding */
	text-align: center !important;
	background: var(--wrp-primary);
	color: #fff;
	text-decoration: none !important;
	border-radius: 6px;
	font-weight: 500 !important;
	font-size: 11px !important;
	transition: transform 0.2s ease, opacity 0.2s ease;
	border: none;
	line-height: 1.2 !important;
}
.wooreels-btn:hover {
	opacity: 0.9;
	color: #fff;
}
.wooreels-btn:active {
	transform: scale(0.98);
}

/* View Cart Button (dynamically injected by WooCommerce AJAX) */
.wooreels-pro-item .added_to_cart {
	display: block;
	width: 100%;
	padding: 6px;
	margin-top: 4px;
	text-align: center;
	background-color: #ffffff;
	color: #000000;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 500;
	font-size: 11px;
	transition: all 0.2s ease;
	box-sizing: border-box;
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.wooreels-pro-item .added_to_cart:hover {
	background-color: #f1f1f1;
	color: #000000;
	transform: scale(0.98);
}

/* ===== MOBILE RESPONSIVE BASE ===== */
@media (max-width: 480px) {
	/* Make the reel card fill width naturally */
	.wooreels-pro-container {
		max-width: 100%;
		height: 100%;
		border-radius: 0;
	}
	/* Tighten the overlay padding on small screens */
	.wooreels-product-overlay {
		padding: 4px 6px 8px 6px;
		gap: 3px;
	}
	/* Smaller thumbnail on mobile */
	.wooreels-product-thumb img {
		width: 30px;
		height: 30px;
		border-radius: 5px;
	}
	/* Tighter product info row */
	.wooreels-product-info {
		gap: 5px;
	}
	/* Smaller title on mobile */
	.wooreels-product-title {
		font-size: 10px !important;
		line-height: 1.2;
	}
	/* Smaller price on mobile */
	.wooreels-product-price,
	.wooreels-product-price del,
	.wooreels-product-price ins {
		font-size: 10px !important;
	}
	/* Smaller badge */
	.wooreels-discount-badge {
		font-size: 8px !important;
		padding: 1px 4px !important;
	}
	/* Smaller stock */
	.wooreels-product-stock {
		font-size: 9px !important;
	}
	/* Compact button */
	.wooreels-btn {
		padding: 5px 8px !important;
		font-size: 10px !important;
		border-radius: 7px !important;
	}
}

/* --- Templates --- */

/* Button Styles overrides */
.wrp-btn-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 !important;
}
.wooreels-btn span {
	display: inline-block;
}

.wooreels-btn-style-outline {
	background: transparent !important;
	border: 2px solid var(--wrp-primary) !important;
	color: var(--wrp-primary) !important;
}
.wooreels-btn-style-outline:hover {
	background: var(--wrp-primary) !important;
	color: #fff !important;
}
.wooreels-btn-style-rounded {
	border-radius: 30px !important;
}

.wooreels-btn-style-soft-sell {
	background: #fdf5e6 !important;
	color: #654321 !important;
	border: 1px solid #dcd0c0 !important;
	border-radius: 30px !important;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05) !important;
}
.wooreels-btn-style-soft-sell:hover {
	background: #f5eedc !important;
}

.wooreels-btn-style-instant-buy {
	background: #2e7d32 !important;
	color: #ffffff !important;
	border-radius: 4px !important;
	border: none !important;
}
.wooreels-btn-style-instant-buy:hover {
	background: #1b5e20 !important;
}

.wooreels-btn-style-grab-go {
	background: #2962ff !important;
	color: #ffffff !important;
	border-radius: 30px !important;
	border: none !important;
}
.wooreels-btn-style-grab-go:hover {
	background: #0039cb !important;
}

.wooreels-btn-style-flash-deal {
	background: linear-gradient(135deg, #d500f9, #ff1744) !important;
	color: #ffffff !important;
	border-radius: 30px !important;
	border: none !important;
	box-shadow: 0 0 15px rgba(213,0,249,0.5) !important;
}
.wooreels-btn-style-flash-deal:hover {
	box-shadow: 0 0 25px rgba(213,0,249,0.8) !important;
}

.wooreels-btn-style-hot-deal {
	background: linear-gradient(135deg, #ff9100, #ff3d00) !important;
	color: #ffffff !important;
	border-radius: 30px !important;
	border: none !important;
}

.wooreels-btn-style-classic-buy {
	background: #5d4037 !important;
	color: #ffffff !important;
	border-radius: 8px !important;
	border: none !important;
}

.wooreels-btn-style-quick-pick {
	background: #00e676 !important;
	color: #000000 !important;
	border-radius: 8px !important;
	border: none !important;
	box-shadow: 0 5px 15px rgba(0,230,118,0.4) !important;
}

.wooreels-btn-style-premium-buy {
	background: #ffd600 !important;
	color: #000000 !important;
	border-radius: 6px !important;
	border: 2px solid #000 !important;
	box-shadow: 4px 4px 0px #000 !important;
	font-weight: 600 !important;
}
.wooreels-btn-style-premium-buy:active {
	box-shadow: 0px 0px 0px #000 !important;
	transform: translate(4px, 4px) !important;
}

.wooreels-btn-style-smooth-checkout {
	background: #001e36 !important;
	color: #ffffff !important;
	border-radius: 30px !important;
	border: none !important;
}

.wooreels-btn-style-dark-minimal {
	background: #111111 !important;
	color: #ffffff !important;
	border-radius: 4px !important;
	border: none !important;
}

/* Progress Bar */
.wooreels-progress-bar-container {
	display: none !important; /* User requested to hide player controllers */
}
.wooreels-progress-bar {
	display: none !important;
}

/* Fullscreen Toggle */
.wooreels-fullscreen-toggle {
	position: absolute !important;
	top: 10px !important;
	left: 10px !important;
	width: 28px !important;
	height: 28px !important;
	background: rgba(0, 0, 0, 0.85) !important;
	color: #ffffff !important;
	border: 1px solid rgba(255, 255, 255, 0.3) !important;
	border-radius: 50% !important;
	padding: 0 !important;
	margin: 0 !important;
	font-size: 16px !important;
	line-height: 1 !important;
	cursor: pointer !important;
	z-index: 20 !important;
	pointer-events: auto !important;
	touch-action: manipulation;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: background-color 0.2s, transform 0.1s !important;
}
.wooreels-fullscreen-toggle svg {
	width: 14px !important;
	height: 14px !important;
	display: block !important;
}
.wooreels-fullscreen-toggle:hover {
	background: #000000 !important;
	transform: scale(1.1) !important;
	border-color: #ffffff !important;
}
@media (max-width: 768px) {
	.wooreels-fullscreen-toggle {
		width: 24px !important;
		height: 24px !important;
		top: 6px !important;
		left: 6px !important;
	}
	.wooreels-fullscreen-toggle svg {
		width: 12px !important;
		height: 12px !important;
	}
}

/* Loader */
.wooreels-loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
}
.wooreels-spinner {
	display: block;
	width: 40px;
	height: 40px;
	border: 3px solid rgba(255,255,255,0.3);
	border-top-color: var(--wrp-primary);
	border-radius: 50%;
	animation: wooreels-spin 0.8s linear infinite;
}
@keyframes wooreels-spin {
	to { transform: rotate(360deg); }
}

/* New Product Display Fields */
.wooreels-product-rating .star-rating {
	color: #FFD700;
	font-size: 14px;
}
.wooreels-product-stock {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.wooreels-stock-instock { color: #4caf50; }
.wooreels-stock-outofstock { color: #f44336; }

.wooreels-discount-badge {
	display: inline-block;
	background: var(--wrp-primary);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 4px;
}
.wooreels-product-category {
	font-size: 11px;
	color: rgba(255,255,255,0.7);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* --- Use CSS Variables --- */
.wooreels-pro-container {
	font-family: var(--wrp-font, inherit);
	border-radius: var(--wrp-radius, 16px);
}
.wooreels-product-overlay {
	background: linear-gradient(to top, var(--wrp-overlay, rgba(0,0,0,0.6)) 0%, rgba(0,0,0,0) 100%);
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
	-webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
	text-rendering: optimizeLegibility !important;
}

/* ============================================================
   GLOBAL TEXT & FONT SMOOTHING FOR ALL TEMPLATES
   ============================================================ */
.wooreels-product-overlay *,
.wooreels-product-title,
.wooreels-product-description,
.wooreels-product-price,
.wooreels-discount-badge,
.wooreels-btn {
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
	-webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
	text-rendering: optimizeLegibility !important;
}

/* ============================================================
   TEMPLATE 1: MODERN — Bottom Gradient Overlay (Not Rounded Card!)
   Flush to bottom, zero side margins, ultra-compact!
   ============================================================ */
.wooreels-template-modern .wooreels-product-overlay.wooreels-layout-modern {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.75) 60%, rgba(0, 0, 0, 0) 100%) !important;
	border-radius: 0 0 16px 16px !important;
	padding: 8px 8px 6px 8px !important;
	margin: 0 !important;
	width: 100% !important;
	box-sizing: border-box !important;
	border: none !important;
	box-shadow: none !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 3px !important;
}
.wooreels-layout-modern .wooreels-product-info {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	gap: 6px !important;
	background: transparent !important;
	padding: 0 !important;
	border: none !important;
	box-shadow: none !important;
}
.wooreels-layout-modern .wooreels-product-thumb img {
	width: 30px !important;
	height: 30px !important;
	border-radius: 6px !important;
	object-fit: cover !important;
	flex-shrink: 0 !important;
}
.wooreels-layout-modern .wooreels-product-details {
	display: flex !important;
	flex-direction: column !important;
	gap: 1px !important;
	flex: 1 !important;
	min-width: 0 !important;
}
.wooreels-layout-modern .wooreels-badge-top-wrapper {
	margin-bottom: 0px !important;
}
.wooreels-layout-modern .wooreels-discount-badge {
	background: #f43f5e !important;
	color: #ffffff !important;
	font-size: 8px !important;
	font-weight: 500 !important;
	padding: 1px 4px !important;
	border-radius: 4px !important;
	display: inline-block !important;
	line-height: 1 !important;
}
.wooreels-layout-modern .wooreels-product-title {
	font-size: 11px !important;
	font-weight: 500 !important;
	color: #ffffff !important;
	margin: 0 !important;
	line-height: 1.15 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}
.wooreels-layout-modern .wooreels-product-description {
	display: none !important;
}
.wooreels-layout-modern .wooreels-divider {
	display: none !important;
}
.wooreels-layout-modern .wooreels-product-footer {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 4px !important;
}
.wooreels-layout-modern .wooreels-price-stock-row {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	gap: 4px !important;
}
.wooreels-layout-modern .wooreels-product-price {
	font-size: 12px !important;
	font-weight: 600 !important;
	color: #ffffff !important;
	line-height: 1.1 !important;
	margin: 0 !important;
}
.wooreels-layout-modern .wooreels-product-price del {
	color: rgba(255, 255, 255, 0.45) !important;
	font-size: 10px !important;
	font-weight: 400 !important;
	margin-left: 3px !important;
}
.wooreels-layout-modern .wooreels-product-stock {
	font-size: 8px !important;
	font-weight: 500 !important;
	line-height: 1 !important;
}
.wooreels-layout-modern .wooreels-stock-instock {
	color: #10b981 !important;
}
.wooreels-layout-modern .wooreels-stock-outofstock {
	color: #f87171 !important;
}
.wooreels-layout-modern .wooreels-stock-dot {
	font-size: 8px !important;
	margin-right: 2px !important;
}
.wooreels-layout-modern .wooreels-product-action {
	width: 100% !important;
	margin-top: 0 !important;
}
.wooreels-layout-modern .wooreels-btn {
	background: #ffffff !important;
	color: #000000 !important;
	border: none !important;
	border-radius: 6px !important;
	padding: 4px 8px !important;
	font-size: 10px !important;
	font-weight: 500 !important;
	width: 100% !important;
	min-height: 24px !important;
	max-height: 26px !important;
	line-height: 1 !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 4px !important;
}
.wooreels-layout-modern .wooreels-btn:hover {
	background: #f1f5f9 !important;
	color: #000000 !important;
}

/* ============================================================
   TEMPLATE 2: MINIMAL — Ultra-Compact Floating Translucent Pill
   Sleek horizontal layout taking minimal height!
   ============================================================ */
.wooreels-template-minimal .wooreels-product-overlay.wooreels-layout-minimal {
	background: rgba(24, 24, 27, 0.85) !important;
	backdrop-filter: blur(15px) !important;
	-webkit-backdrop-filter: blur(15px) !important;
	border-radius: 10px !important;
	padding: 6px 8px !important;
	margin: 0 4px 4px 4px !important;
	width: calc(100% - 8px) !important;
	box-sizing: border-box !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35) !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 3px !important;
}
.wooreels-layout-minimal .wooreels-product-info {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	gap: 6px !important;
	background: transparent !important;
	padding: 0 !important;
	border: none !important;
}
.wooreels-layout-minimal .wooreels-product-thumb img {
	width: 30px !important;
	height: 30px !important;
	border-radius: 6px !important;
	object-fit: cover !important;
	flex-shrink: 0 !important;
}
.wooreels-layout-minimal .wooreels-product-details {
	display: flex !important;
	flex-direction: column !important;
	gap: 1px !important;
	flex: 1 !important;
	min-width: 0 !important;
}
.wooreels-layout-minimal .wooreels-product-title {
	font-size: 11px !important;
	font-weight: 500 !important;
	color: #ffffff !important;
	margin: 0 !important;
	line-height: 1.15 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}
.wooreels-layout-minimal .wooreels-product-description {
	display: none !important;
}
.wooreels-layout-minimal .wooreels-price-badge-row {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	gap: 4px !important;
}
.wooreels-layout-minimal .wooreels-product-price {
	font-size: 12px !important;
	font-weight: 600 !important;
	color: #ffffff !important;
	line-height: 1.1 !important;
	margin: 0 !important;
}
.wooreels-layout-minimal .wooreels-product-price del {
	color: rgba(255, 255, 255, 0.45) !important;
	font-size: 10px !important;
	font-weight: 400 !important;
	margin-left: 3px !important;
}
.wooreels-layout-minimal .wooreels-discount-badge {
	background: #f43f5e !important;
	color: #ffffff !important;
	font-size: 8px !important;
	font-weight: 500 !important;
	padding: 1px 4px !important;
	border-radius: 4px !important;
	line-height: 1 !important;
}
.wooreels-layout-minimal .wooreels-product-action {
	width: 100% !important;
	margin-top: 0 !important;
}
.wooreels-layout-minimal .wooreels-btn {
	background: #ffffff !important;
	color: #000000 !important;
	border: none !important;
	border-radius: 6px !important;
	padding: 4px 8px !important;
	font-size: 10px !important;
	font-weight: 500 !important;
	width: 100% !important;
	min-height: 24px !important;
	max-height: 26px !important;
	line-height: 1 !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 4px !important;
}
.wooreels-layout-minimal .wooreels-btn:hover {
	background: #f1f5f9 !important;
	color: #000000 !important;
}

/* ============================================================
   TEMPLATE 3: GLASS — Full-Width Frosted Bottom Sheet (Not Rounded Card!)
   Flush to bottom, frosted blur, minimal height!
   ============================================================ */
.wooreels-template-glass .wooreels-product-overlay.wooreels-layout-glass {
	background: rgba(25, 22, 20, 0.75) !important;
	backdrop-filter: blur(25px) !important;
	-webkit-backdrop-filter: blur(25px) !important;
	border-radius: 0 0 16px 16px !important;
	padding: 6px 8px 6px 8px !important;
	margin: 0 !important;
	width: 100% !important;
	box-sizing: border-box !important;
	border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
	border-bottom: none !important;
	border-left: none !important;
	border-right: none !important;
	box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3) !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 3px !important;
}
.wooreels-layout-glass .wooreels-product-info {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	gap: 6px !important;
	background: transparent !important;
	padding: 0 !important;
	border: none !important;
}
.wooreels-layout-glass .wooreels-product-thumb img {
	width: 30px !important;
	height: 30px !important;
	border-radius: 6px !important;
	object-fit: cover !important;
	flex-shrink: 0 !important;
}
.wooreels-layout-glass .wooreels-product-details {
	display: flex !important;
	flex-direction: column !important;
	gap: 1px !important;
	flex: 1 !important;
	min-width: 0 !important;
}
.wooreels-layout-glass .wooreels-product-title {
	font-size: 11px !important;
	font-weight: 500 !important;
	color: #ffffff !important;
	margin: 0 !important;
	line-height: 1.15 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}
.wooreels-layout-glass .wooreels-product-description {
	display: none !important;
}
.wooreels-layout-glass .wooreels-price-badge-row {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	gap: 4px !important;
}
.wooreels-layout-glass .wooreels-product-price {
	font-size: 12px !important;
	font-weight: 600 !important;
	color: #ffffff !important;
	line-height: 1.1 !important;
	margin: 0 !important;
}
.wooreels-layout-glass .wooreels-product-price del {
	color: rgba(255, 255, 255, 0.45) !important;
	font-size: 10px !important;
	font-weight: 400 !important;
	margin-left: 3px !important;
}
.wooreels-layout-glass .wooreels-discount-badge {
	background: #991b1b !important;
	color: #ffffff !important;
	font-size: 8px !important;
	font-weight: 500 !important;
	padding: 1px 4px !important;
	border-radius: 4px !important;
	line-height: 1 !important;
}
.wooreels-layout-glass .wooreels-product-action {
	width: 100% !important;
	margin-top: 0 !important;
}
.wooreels-layout-glass .wooreels-btn {
	background: rgba(255, 255, 255, 0.92) !important;
	color: #1c1917 !important;
	border: none !important;
	border-radius: 6px !important;
	padding: 4px 8px !important;
	font-size: 10px !important;
	font-weight: 500 !important;
	width: 100% !important;
	min-height: 24px !important;
	max-height: 26px !important;
	line-height: 1 !important;
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
}
.wooreels-layout-glass .wooreels-btn-text {
	font-weight: 500 !important;
}
.wooreels-layout-glass .wooreels-btn-icon-right {
	display: flex !important;
	align-items: center !important;
}

/* ============================================================
   TEMPLATE 4: DARK — Compact Floating Slate Tag
   High contrast, low profile, slim button with divider
   ============================================================ */
.wooreels-template-dark .wooreels-product-overlay.wooreels-layout-dark {
	background: #0f172a !important;
	border-radius: 10px !important;
	padding: 6px 8px !important;
	margin: 0 4px 4px 4px !important;
	width: calc(100% - 8px) !important;
	box-sizing: border-box !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4) !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 3px !important;
}
.wooreels-layout-dark .wooreels-product-info {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	gap: 6px !important;
	background: transparent !important;
	padding: 0 !important;
	border: none !important;
}
.wooreels-layout-dark .wooreels-thumb-wrapper {
	position: relative !important;
	flex-shrink: 0 !important;
}
.wooreels-layout-dark .wooreels-product-thumb img {
	width: 30px !important;
	height: 30px !important;
	border-radius: 6px !important;
	object-fit: cover !important;
}
.wooreels-layout-dark .wooreels-badge-floating {
	position: absolute !important;
	top: -5px !important;
	left: -3px !important;
	z-index: 2 !important;
}
.wooreels-layout-dark .wooreels-discount-badge {
	background: #ef4444 !important;
	color: #ffffff !important;
	font-size: 7px !important;
	font-weight: 500 !important;
	padding: 1px 3px !important;
	border-radius: 3px !important;
	box-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
	line-height: 1 !important;
}
.wooreels-layout-dark .wooreels-product-details {
	display: flex !important;
	flex-direction: column !important;
	gap: 1px !important;
	flex: 1 !important;
	min-width: 0 !important;
}
.wooreels-layout-dark .wooreels-product-title {
	font-size: 11px !important;
	font-weight: 500 !important;
	color: #ffffff !important;
	margin: 0 !important;
	line-height: 1.15 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}
.wooreels-layout-dark .wooreels-product-price {
	font-size: 12px !important;
	font-weight: 600 !important;
	color: #ffffff !important;
	line-height: 1.1 !important;
	margin: 0 !important;
}
.wooreels-layout-dark .wooreels-product-price del {
	color: rgba(255, 255, 255, 0.4) !important;
	font-size: 10px !important;
	font-weight: 400 !important;
	margin-left: 3px !important;
}
.wooreels-layout-dark .wooreels-product-stock {
	font-size: 8px !important;
	font-weight: 500 !important;
	line-height: 1 !important;
}
.wooreels-layout-dark .wooreels-stock-instock {
	color: #10b981 !important;
}
.wooreels-layout-dark .wooreels-stock-dot {
	font-size: 8px !important;
	margin-right: 2px !important;
}
.wooreels-layout-dark .wooreels-product-action {
	width: 100% !important;
	margin-top: 0 !important;
}
.wooreels-layout-dark .wooreels-btn {
	background: rgba(255,255,255,0.08) !important;
	border: 1px solid rgba(255,255,255,0.18) !important;
	color: #ffffff !important;
	border-radius: 6px !important;
	padding: 4px 8px !important;
	font-size: 10px !important;
	font-weight: 500 !important;
	width: 100% !important;
	min-height: 24px !important;
	max-height: 26px !important;
	line-height: 1 !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 6px !important;
}
.wooreels-layout-dark .wooreels-btn:hover {
	background: rgba(255,255,255,0.14) !important;
	color: #ffffff !important;
}
.wooreels-layout-dark .wooreels-btn-divider {
	color: rgba(255,255,255,0.25) !important;
	font-weight: 300 !important;
}

/* ============================================================
   TEMPLATE 5: LIGHT — Ultra-Slim Two-Piece Split Bar
   Bright crisp top pill + compact dark action bar below
   ============================================================ */
.wooreels-template-light .wooreels-product-overlay.wooreels-layout-light-split {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 4px 4px 4px !important;
	width: calc(100% - 8px) !important;
	box-sizing: border-box !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 2px !important;
}
.wooreels-layout-light-split .wooreels-light-card-top {
	background: #ffffff !important;
	border-radius: 8px !important;
	padding: 5px 6px !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	gap: 6px !important;
}
.wooreels-layout-light-split .wooreels-product-thumb img {
	width: 28px !important;
	height: 28px !important;
	border-radius: 5px !important;
	object-fit: cover !important;
	flex-shrink: 0 !important;
}
.wooreels-layout-light-split .wooreels-product-details {
	display: flex !important;
	flex-direction: column !important;
	gap: 1px !important;
	flex: 1 !important;
	min-width: 0 !important;
}
.wooreels-layout-light-split .wooreels-product-title {
	font-size: 11px !important;
	font-weight: 500 !important;
	color: #0f172a !important;
	margin: 0 !important;
	line-height: 1.15 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}
.wooreels-layout-light-split .wooreels-product-description {
	display: none !important;
}
.wooreels-layout-light-split .wooreels-price-badge-row {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	justify-content: space-between !important;
	width: 100% !important;
}
.wooreels-layout-light-split .wooreels-product-price {
	font-size: 11px !important;
	font-weight: 600 !important;
	color: #0f172a !important;
	line-height: 1.1 !important;
	margin: 0 !important;
	flex: 1 !important;
	min-width: 0 !important;
}
.wooreels-layout-light-split .wooreels-product-price del {
	color: #94a3b8 !important;
	font-size: 9px !important;
	font-weight: 400 !important;
	display: block !important;
	line-height: 1 !important;
	margin: 0 !important;
}
.wooreels-layout-light-split .wooreels-product-price ins {
	color: #0f172a !important;
	text-decoration: none !important;
	display: block !important;
	line-height: 1 !important;
	margin: 0 !important;
}
.wooreels-layout-light-split .wooreels-discount-badge {
	background: #f87171 !important;
	color: #ffffff !important;
	font-size: 8px !important;
	font-weight: 600 !important;
	padding: 2px 4px !important;
	border-radius: 3px !important;
	line-height: 1 !important;
	white-space: nowrap !important;
	flex-shrink: 0 !important;
}
.wooreels-layout-light-split .wooreels-light-card-bottom {
	width: 100% !important;
}
.wooreels-layout-light-split .wooreels-light-card-bottom a {
	background: #18181b !important;
	border-radius: 8px !important;
	padding: 4px 8px !important;
	min-height: 24px !important;
	max-height: 26px !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	justify-content: space-between !important;
	text-decoration: none !important;
	color: #ffffff !important;
}
.wooreels-layout-light-split .wooreels-action-left {
	display: flex !important;
	align-items: center !important;
	gap: 4px !important;
	font-size: 10px !important;
	font-weight: 500 !important;
	color: #ffffff !important;
	line-height: 1 !important;
}
.wooreels-layout-light-split .wooreels-action-arrow {
	background: #f1f5f9 !important;
	color: #0f172a !important;
	width: 18px !important;
	height: 18px !important;
	border-radius: 4px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 10px !important;
}

/* ============================================================
   TEMPLATE 6: LUXURY — Obsidian & Gold Bottom Ribbon (Not Rounded Card!)
   Flush to bottom, elegant gold accent, low profile!
   ============================================================ */
.wooreels-template-luxury .wooreels-product-overlay.wooreels-layout-luxury {
	background: linear-gradient(to top, #0c0a09 0%, rgba(12, 10, 9, 0.9) 70%, rgba(12, 10, 9, 0) 100%) !important;
	border-radius: 0 0 16px 16px !important;
	padding: 6px 8px 6px 8px !important;
	margin: 0 !important;
	width: 100% !important;
	box-sizing: border-box !important;
	border-top: 1px solid rgba(217, 119, 6, 0.45) !important;
	border-bottom: none !important;
	border-left: none !important;
	border-right: none !important;
	box-shadow: none !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 3px !important;
}
.wooreels-layout-luxury .wooreels-product-info {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	gap: 6px !important;
	background: transparent !important;
	padding: 0 !important;
	border: none !important;
}
.wooreels-layout-luxury .wooreels-product-thumb img {
	width: 30px !important;
	height: 30px !important;
	border-radius: 6px !important;
	border: 1px solid #fbbf24 !important;
	object-fit: cover !important;
	flex-shrink: 0 !important;
}
.wooreels-layout-luxury .wooreels-product-details {
	display: flex !important;
	flex-direction: column !important;
	gap: 1px !important;
	flex: 1 !important;
	min-width: 0 !important;
}
.wooreels-layout-luxury .wooreels-product-title {
	font-size: 11px !important;
	font-weight: 500 !important;
	color: #fef3c7 !important;
	margin: 0 !important;
	line-height: 1.15 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}
.wooreels-layout-luxury .wooreels-product-description {
	display: none !important;
}
.wooreels-layout-luxury .wooreels-price-badge-row {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	gap: 4px !important;
}
.wooreels-layout-luxury .wooreels-product-price {
	font-size: 12px !important;
	font-weight: 600 !important;
	color: #f59e0b !important;
	line-height: 1.1 !important;
	margin: 0 !important;
}
.wooreels-layout-luxury .wooreels-product-price del {
	color: rgba(217, 119, 6, 0.4) !important;
	font-size: 10px !important;
	font-weight: 400 !important;
	margin-left: 3px !important;
}
.wooreels-layout-luxury .wooreels-discount-badge {
	background: #b45309 !important;
	color: #ffffff !important;
	font-size: 8px !important;
	font-weight: 500 !important;
	padding: 1px 4px !important;
	border-radius: 4px !important;
	line-height: 1 !important;
}
.wooreels-layout-luxury .wooreels-product-action {
	width: 100% !important;
	margin-top: 0 !important;
}
.wooreels-layout-luxury .wooreels-btn {
	background: linear-gradient(135deg, #f59e0b, #d97706) !important;
	color: #000000 !important;
	border: none !important;
	border-radius: 6px !important;
	padding: 4px 8px !important;
	font-size: 10px !important;
	font-weight: 500 !important;
	width: 100% !important;
	min-height: 24px !important;
	max-height: 26px !important;
	line-height: 1 !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 4px !important;
}
.wooreels-layout-luxury .wooreels-btn:hover {
	background: linear-gradient(135deg, #fbbf24, #b45309) !important;
	color: #000000 !important;
}

/* ==========================================================================
   TEMPLATE 7: WHITE CARD PRO (Clean Floating Card with Separator Button)
   ========================================================================== */
.wooreels-template-white-card .wooreels-product-overlay.wooreels-layout-white-card {
	position: absolute !important;
	bottom: 8px !important;
	left: 8px !important;
	right: 8px !important;
	width: calc(100% - 16px) !important;
	background: #ffffff !important;
	border-radius: 12px !important;
	padding: 6px !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 6px !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
	border: 1px solid rgba(0, 0, 0, 0.05) !important;
	z-index: 10 !important;
	transition: all 0.3s ease !important;
}
.wooreels-layout-white-card .wooreels-white-card-top {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	width: 100% !important;
}
.wooreels-layout-white-card .wooreels-product-thumb {
	width: 38px !important;
	height: 38px !important;
	border-radius: 8px !important;
	overflow: hidden !important;
	flex-shrink: 0 !important;
	background: #111111 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}
.wooreels-layout-white-card .wooreels-product-thumb img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	border-radius: 8px !important;
}
.wooreels-layout-white-card .wooreels-product-details {
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	flex: 1 !important;
	min-width: 0 !important;
}
.wooreels-layout-white-card .wooreels-product-title {
	font-family: 'Poppins', sans-serif !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	color: #000000 !important;
	line-height: 1.25 !important;
	margin: 0 0 2px 0 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	text-shadow: none !important;
}
.wooreels-layout-white-card .wooreels-product-description {
	font-size: 11px !important;
	color: #6b7280 !important;
	margin: 0 0 4px 0 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	line-height: 1.2 !important;
}
.wooreels-layout-white-card .wooreels-price-badge-row {
	display: flex !important;
	align-items: center !important;
	gap: 6px !important;
	flex-wrap: wrap !important;
}
.wooreels-layout-white-card .wooreels-product-price {
	font-family: 'Poppins', sans-serif !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	color: #000000 !important;
	line-height: 1 !important;
	text-shadow: none !important;
}
.wooreels-layout-white-card .wooreels-product-price del {
	font-size: 11px !important;
	color: #9ca3af !important;
	font-weight: 400 !important;
	margin-left: 4px !important;
	text-decoration: line-through !important;
}
.wooreels-layout-white-card .wooreels-discount-badge {
	background: #111827 !important;
	color: #ffffff !important;
	font-size: 9px !important;
	font-weight: 600 !important;
	padding: 2px 6px !important;
	border-radius: 4px !important;
	letter-spacing: 0.3px !important;
	line-height: 1 !important;
}
.wooreels-layout-white-card .wooreels-white-card-bottom {
	width: 100% !important;
}
.wooreels-layout-white-card .wooreels-white-card-bottom a {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	width: 100% !important;
	background: #161618 !important;
	color: #ffffff !important;
	padding: 5px 10px !important;
	border-radius: 8px !important;
	text-decoration: none !important;
	font-size: 11px !important;
	font-weight: 500 !important;
	transition: all 0.2s ease !important;
	min-height: 28px !important;
	text-shadow: none !important;
}
.wooreels-layout-white-card .wooreels-white-card-bottom a:hover {
	background: #000000 !important;
	transform: translateY(-1px) !important;
}
.wooreels-layout-white-card .wooreels-btn-text {
	flex: 1 !important;
	text-align: center !important;
	color: #ffffff !important;
	font-weight: 500 !important;
	text-shadow: none !important;
}
.wooreels-layout-white-card .wooreels-btn-divider {
	color: rgba(255, 255, 255, 0.25) !important;
	margin: 0 10px !important;
	font-weight: 300 !important;
}
.wooreels-layout-white-card .wooreels-white-card-bottom svg {
	width: 16px !important;
	height: 16px !important;
	stroke: #ffffff !important;
	flex-shrink: 0 !important;
}

/* ==========================================================================
   TEMPLATE 8: DARK HERITAGE (Sleek Dark Overlay with Pink Price & Outline Btn)
   ========================================================================== */
.wooreels-template-dark-heritage .wooreels-product-overlay.wooreels-layout-dark-heritage {
	position: absolute !important;
	bottom: 0 !important;
	left: 0 !important;
	right: 0 !important;
	width: 100% !important;
	background: linear-gradient(to top, rgba(12, 12, 15, 0.98) 0%, rgba(18, 18, 22, 0.92) 75%, rgba(18, 18, 22, 0) 100%) !important;
	backdrop-filter: blur(10px) !important;
	padding: 10px 10px 8px 10px !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 8px !important;
	z-index: 10 !important;
	transition: all 0.3s ease !important;
}
.wooreels-layout-dark-heritage .wooreels-product-info {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	width: 100% !important;
}
.wooreels-layout-dark-heritage .wooreels-product-thumb {
	width: 42px !important;
	height: 42px !important;
	border-radius: 8px !important;
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	overflow: hidden !important;
	flex-shrink: 0 !important;
	background: #1a1a1a !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}
.wooreels-layout-dark-heritage .wooreels-product-thumb img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	border-radius: 7px !important;
}
.wooreels-layout-dark-heritage .wooreels-product-details {
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	flex: 1 !important;
	min-width: 0 !important;
}
.wooreels-layout-dark-heritage .wooreels-product-title {
	font-family: 'Poppins', sans-serif !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	color: #ffffff !important;
	line-height: 1.25 !important;
	margin: 0 0 4px 0 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}
.wooreels-layout-dark-heritage .wooreels-price-badge-row {
	display: flex !important;
	align-items: baseline !important;
	gap: 8px !important;
	margin-bottom: 4px !important;
}
.wooreels-layout-dark-heritage .wooreels-product-price {
	font-family: 'Poppins', sans-serif !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	color: #ff5e7e !important;
	line-height: 1 !important;
}
.wooreels-layout-dark-heritage .wooreels-product-price del {
	font-size: 11px !important;
	color: #888888 !important;
	font-weight: 400 !important;
	text-decoration: line-through !important;
}
.wooreels-layout-dark-heritage .wooreels-product-stock {
	font-size: 11px !important;
	color: #4ade80 !important;
	font-weight: 500 !important;
	display: flex !important;
	align-items: center !important;
	gap: 5px !important;
	line-height: 1 !important;
}
.wooreels-layout-dark-heritage .wooreels-stock-dot {
	width: 6px !important;
	height: 6px !important;
	border-radius: 50% !important;
	background: #4ade80 !important;
	display: inline-block !important;
	box-shadow: 0 0 6px rgba(74, 222, 128, 0.6) !important;
}
.wooreels-layout-dark-heritage .wooreels-product-action {
	width: 100% !important;
}
.wooreels-layout-dark-heritage .wooreels-product-action a {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	width: 100% !important;
	background: rgba(255, 255, 255, 0.03) !important;
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	color: #ffffff !important;
	padding: 6px 10px !important;
	border-radius: 8px !important;
	text-decoration: none !important;
	font-size: 11px !important;
	font-weight: 500 !important;
	transition: all 0.25s ease !important;
	min-height: 28px !important;
}
.wooreels-layout-dark-heritage .wooreels-product-action a:hover {
	background: rgba(255, 255, 255, 0.08) !important;
	border-color: rgba(255, 255, 255, 0.3) !important;
}
.wooreels-layout-dark-heritage .wooreels-action-left {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
}
.wooreels-layout-dark-heritage .wooreels-action-left svg {
	width: 16px !important;
	height: 16px !important;
	stroke: #ff5e7e !important;
	flex-shrink: 0 !important;
}
.wooreels-layout-dark-heritage .wooreels-action-left span {
	color: #ffffff !important;
	font-weight: 500 !important;
}
.wooreels-layout-dark-heritage .wooreels-action-arrow svg {
	width: 14px !important;
	height: 14px !important;
	stroke: #ffffff !important;
	opacity: 0.8 !important;
}

/* ============================================================
   TEMPLATE 9: LUXE PILL (Floating Orange Badge & Capsule Button)
   ============================================================ */
.wooreels-template-luxe-pill .wrp-luxe-container {
	position: absolute !important;
	bottom: 12px !important;
	left: 12px !important;
	width: calc(100% - 24px) !important;
	background: #1e1e1e !important;
	border-radius: 12px !important;
	padding: 8px !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 8px !important;
	box-shadow: 0 4px 15px rgba(0,0,0,0.5) !important;
	z-index: 10 !important;
}
.wooreels-template-luxe-pill .wrp-luxe-main {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
}
.wooreels-template-luxe-pill .wrp-luxe-thumb {
	position: relative !important;
	width: 38px !important;
	height: 38px !important;
	flex-shrink: 0 !important;
}
.wooreels-template-luxe-pill .wrp-luxe-thumb img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	border-radius: 8px !important;
}
.wooreels-template-luxe-pill .wrp-luxe-badge {
	position: absolute !important;
	top: -6px !important;
	left: -6px !important;
	z-index: 2 !important;
}
.wooreels-template-luxe-pill .wooreels-discount-badge {
	background: #f97316 !important;
	color: #fff !important;
	font-size: 9px !important;
	font-weight: 600 !important;
	padding: 2px 5px !important;
	border-radius: 4px !important;
	line-height: 1 !important;
}
.wooreels-template-luxe-pill .wrp-luxe-meta {
	display: flex !important;
	flex-direction: column !important;
	gap: 4px !important;
	flex: 1 !important;
	min-width: 0 !important;
}
.wooreels-template-luxe-pill .wooreels-product-title {
	font-size: 12px !important;
	font-weight: 600 !important;
	color: #ffffff !important;
	margin: 0 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	text-shadow: none !important;
}
.wooreels-template-luxe-pill .wooreels-product-price {
	font-size: 12px !important;
	font-weight: 700 !important;
	color: #e5e5e5 !important;
	margin: 0 !important;
	text-shadow: none !important;
}
.wooreels-template-luxe-pill .wooreels-product-stock {
	font-size: 10px !important;
	color: #10b981 !important;
}
.wooreels-template-luxe-pill .wrp-luxe-action a {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: #ffffff !important;
	color: #000000 !important;
	border-radius: 20px !important;
	padding: 6px !important;
	text-decoration: none !important;
	font-weight: 600 !important;
	font-size: 11px !important;
	gap: 6px !important;
	text-shadow: none !important;
}
.wooreels-template-luxe-pill .wrp-luxe-btn-icon svg {
	width: 14px !important;
	height: 14px !important;
}

/* ============================================================
   TEMPLATE 10: WHITE BUTTON PRO (Dark Transparent Card & Massive White Btn)
   ============================================================ */
.wooreels-template-white-btn-pro .wrp-whitebtn-container {
	position: absolute !important;
	bottom: 0 !important;
	left: 0 !important;
	width: 100% !important;
	background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%) !important;
	padding: 8px !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 8px !important;
	z-index: 10 !important;
}
.wooreels-template-white-btn-pro .wrp-whitebtn-box {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
}
.wooreels-template-white-btn-pro .wrp-whitebtn-box img {
	width: 38px !important;
	height: 38px !important;
	border-radius: 6px !important;
	object-fit: cover !important;
	flex-shrink: 0 !important;
}
.wooreels-template-white-btn-pro .wrp-whitebtn-text {
	display: flex !important;
	flex-direction: column !important;
	gap: 4px !important;
	flex: 1 !important;
	min-width: 0 !important;
}
.wooreels-template-white-btn-pro .wooreels-product-title {
	font-size: 12px !important;
	color: #fff !important;
	font-weight: 500 !important;
	margin: 0 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	text-shadow: none !important;
}
.wooreels-template-white-btn-pro .wooreels-product-price {
	font-size: 12px !important;
	color: #fff !important;
	font-weight: 700 !important;
	margin: 0 !important;
	text-shadow: none !important;
}
.wooreels-template-white-btn-pro .wrp-whitebtn-action a {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: #ffffff !important;
	color: #000000 !important;
	padding: 6px 10px !important;
	border-radius: 8px !important;
	text-decoration: none !important;
	font-weight: 700 !important;
	font-size: 11px !important;
	gap: 6px !important;
	text-shadow: none !important;
}

/* ============================================================
   TEMPLATE 11: ROYAL GOLD (Dark Premium Box with Golden Accents)
   ============================================================ */
.wooreels-template-royal-gold .wrp-royal-layout {
	position: absolute !important;
	bottom: 10px !important;
	left: 10px !important;
	width: calc(100% - 20px) !important;
	background: #111111 !important;
	border: 1px solid #d9a74a !important;
	border-radius: 10px !important;
	padding: 8px !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 8px !important;
	z-index: 10 !important;
}
.wooreels-template-royal-gold .wrp-royal-content {
	display: flex !important;
	align-items: flex-start !important;
	gap: 10px !important;
}
.wooreels-template-royal-gold .wrp-royal-thumb-wrap {
	position: relative !important;
	flex-shrink: 0 !important;
}
.wooreels-template-royal-gold .wrp-royal-thumb-wrap img {
	width: 42px !important;
	height: 42px !important;
	border-radius: 4px !important;
	object-fit: cover !important;
}
.wooreels-template-royal-gold .wrp-royal-badge {
	position: absolute !important;
	top: -5px !important;
	left: -5px !important;
}
.wooreels-template-royal-gold .wooreels-discount-badge {
	background: #d9a74a !important;
	color: #111 !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	padding: 2px 6px !important;
	border-radius: 2px !important;
}
.wooreels-template-royal-gold .wrp-royal-text {
	display: flex !important;
	flex-direction: column !important;
	gap: 5px !important;
	flex: 1 !important;
	min-width: 0 !important;
}
.wooreels-template-royal-gold .wooreels-product-title {
	font-size: 12px !important;
	color: #fff !important;
	margin: 0 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	text-shadow: none !important;
}
.wooreels-template-royal-gold .wooreels-product-price {
	font-size: 12px !important;
	text-shadow: none !important;
}
.wooreels-template-royal-gold .wrp-royal-warranty {
	font-size: 9px !important;
	color: #d9a74a !important;
	display: flex !important;
	align-items: center !important;
}
.wooreels-template-royal-gold .wrp-royal-action a {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: #d9a74a !important;
	color: #111111 !important;
	padding: 6px !important;
	border-radius: 4px !important;
	font-weight: 700 !important;
	font-size: 11px !important;
	text-decoration: none !important;
	gap: 6px !important;
	text-shadow: none !important;
}

/* ============================================================
   TEMPLATE 12: CYBER PURPLE (Neon Glowing Grid Layout)
   ============================================================ */
.wooreels-template-cyber-purple .wrp-cyber-grid {
	position: absolute !important;
	bottom: 12px !important;
	left: 12px !important;
	width: calc(100% - 24px) !important;
	background: rgba(15, 5, 25, 0.8) !important;
	border: 1px solid #a855f7 !important;
	box-shadow: 0 0 15px rgba(168, 85, 247, 0.3) !important;
	border-radius: 8px !important;
	padding: 8px !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 8px !important;
	z-index: 10 !important;
	backdrop-filter: blur(5px) !important;
}
.wooreels-template-cyber-purple .wrp-cyber-top {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
}
.wooreels-template-cyber-purple .wrp-cyber-top img {
	width: 38px !important;
	height: 38px !important;
	border-radius: 4px !important;
	border: 1px solid #7e22ce !important;
	object-fit: cover !important;
	flex-shrink: 0 !important;
}
.wooreels-template-cyber-purple .wrp-cyber-text {
	display: flex !important;
	flex-direction: column !important;
	gap: 4px !important;
	flex: 1 !important;
	min-width: 0 !important;
}
.wooreels-template-cyber-purple .wooreels-discount-badge {
	background: #d946ef !important;
	color: #fff !important;
	font-size: 8px !important;
	padding: 2px 4px !important;
	border-radius: 2px !important;
	align-self: flex-start !important;
}
.wooreels-template-cyber-purple .wooreels-product-title {
	font-size: 11px !important;
	color: #f3e8ff !important;
	margin: 0 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	text-shadow: none !important;
}
.wooreels-template-cyber-purple .wrp-cyber-bottom {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	border-top: 1px solid rgba(168, 85, 247, 0.2) !important;
	padding-top: 6px !important;
}
.wooreels-template-cyber-purple .wooreels-product-price {
	font-size: 13px !important;
	color: #e879f9 !important;
	font-weight: 700 !important;
	margin: 0 !important;
	text-shadow: none !important;
}
.wooreels-template-cyber-purple .wrp-cyber-action a {
	display: flex !important;
	align-items: center !important;
	background: #a855f7 !important;
	color: #ffffff !important;
	padding: 4px 10px !important;
	border-radius: 4px !important;
	font-weight: 600 !important;
	font-size: 10px !important;
	text-decoration: none !important;
	text-shadow: none !important;
}

/* ============================================================
   TEMPLATE 13: CREAM CARD (Soft Aesthetic with Split Button)
   ============================================================ */
.wooreels-template-cream-card .wrp-cream-wrapper {
	position: absolute !important;
	bottom: 12px !important;
	left: 12px !important;
	width: calc(100% - 24px) !important;
	background: #fdfbf7 !important;
	border-radius: 12px !important;
	padding: 8px !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 8px !important;
	box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
	z-index: 10 !important;
}
.wooreels-template-cream-card .wrp-cream-top {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
}
.wooreels-template-cream-card .wrp-cream-thumb img {
	width: 38px !important;
	height: 38px !important;
	border-radius: 8px !important;
	object-fit: cover !important;
}
.wooreels-template-cream-card .wrp-cream-text {
	display: flex !important;
	flex-direction: column !important;
	gap: 4px !important;
	flex: 1 !important;
	min-width: 0 !important;
}
.wooreels-template-cream-card .wooreels-product-title {
	font-size: 12px !important;
	color: #333333 !important;
	font-weight: 600 !important;
	margin: 0 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	text-shadow: none !important;
}
.wooreels-template-cream-card .wooreels-product-price {
	font-size: 12px !important;
	color: #666666 !important;
	margin: 0 !important;
	text-shadow: none !important;
}
.wooreels-template-cream-card .wooreels-discount-badge {
	background: #ec4899 !important;
	color: #fff !important;
	font-size: 8px !important;
	padding: 2px 4px !important;
	border-radius: 4px !important;
	align-self: flex-start !important;
}
.wooreels-template-cream-card .wrp-cream-action a {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	background: #333333 !important;
	color: #ffffff !important;
	border-radius: 8px !important;
	padding: 6px 10px !important;
	text-decoration: none !important;
	font-weight: 500 !important;
	font-size: 11px !important;
	text-shadow: none !important;
}

/* ============================================================
   TEMPLATE 14: MIDNIGHT RED (Pitch Dark with Coral Accent)
   ============================================================ */
.wooreels-template-midnight-red .wrp-midnight-stack {
	position: absolute !important;
	bottom: 8px !important;
	left: 8px !important;
	width: calc(100% - 16px) !important;
	background: #09090b !important;
	border-radius: 8px !important;
	border-left: 3px solid #f43f5e !important;
	padding: 8px !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 4px !important;
	z-index: 10 !important;
}
.wooreels-template-midnight-red .wrp-midnight-header {
	display: flex !important;
	align-items: center !important;
	gap: 6px !important;
}
.wooreels-template-midnight-red .wooreels-discount-badge {
	background: #f43f5e !important;
	color: #fff !important;
	font-size: 8px !important;
	padding: 2px 4px !important;
	border-radius: 2px !important;
}
.wooreels-template-midnight-red .wooreels-product-title {
	font-size: 11px !important;
	color: #e4e4e7 !important;
	margin: 0 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	flex: 1 !important;
	text-shadow: none !important;
	line-height: 1.2 !important;
}
.wooreels-template-midnight-red .wrp-midnight-body {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
}
.wooreels-template-midnight-red .wrp-midnight-body img {
	width: 32px !important;
	height: 32px !important;
	border-radius: 4px !important;
	object-fit: cover !important;
	flex-shrink: 0 !important;
}
.wooreels-template-midnight-red .wrp-midnight-price-stock {
	display: flex !important;
	flex-direction: column !important;
	gap: 2px !important;
	flex: 1 !important;
}
.wooreels-template-midnight-red .wooreels-product-price {
	font-size: 12px !important;
	color: #fff !important;
	font-weight: 700 !important;
	margin: 0 !important;
	text-shadow: none !important;
	line-height: 1.2 !important;
}
.wooreels-template-midnight-red .wooreels-product-price del {
	font-size: 10px !important;
	color: #a1a1aa !important;
	font-weight: 400 !important;
	display: block !important;
	line-height: 1 !important;
	margin: 0 !important;
}
.wooreels-template-midnight-red .wooreels-product-price ins {
	display: block !important;
	text-decoration: none !important;
	line-height: 1 !important;
	margin: 0 !important;
}
.wooreels-template-midnight-red .wrp-midnight-action a {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: rgba(244, 63, 94, 0.1) !important;
	color: #f43f5e !important;
	border-radius: 50% !important;
	width: 28px !important;
	height: 28px !important;
	text-decoration: none !important;
	text-shadow: none !important;
}
.wooreels-template-midnight-red .wrp-midnight-action a:hover {
	background: #f43f5e !important;
	color: #fff !important;
}

\r\n\r\n/* --- Entrance Animations --- */
.wooreels-anim-fade .wooreels-product-overlay {
	animation: wrpFadeIn 0.6s ease-out;
}
@keyframes wrpFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
.wooreels-anim-slide .wooreels-product-overlay {
	animation: wrpSlideUp 0.5s ease-out;
}
@keyframes wrpSlideUp {
	from { transform: translateY(30px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

/* --- Fullscreen Overlay (Modal) */
/* --- Fullscreen Mode specific overrides --- */
.wooreels-is-fullscreen {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100vw !important;
	height: 100dvh !important;
	max-width: none !important;
	max-height: none !important;
	z-index: 999999 !important;
	border-radius: 0 !important;
	margin: 0 !important;
	background: #000 !important;
}

/* ===== Stories Bar (CPT-based) ===== */
.wooreels-stories-bar {
	display: flex;
	justify-content: center;
	gap: 16px;
	overflow-x: auto;
	padding: 16px 8px;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}
.wooreels-stories-bar::-webkit-scrollbar {
	display: none;
}

.wooreels-story-circle-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	width: 82px;
	flex: 0 0 auto;
	transition: transform 0.2s;
}
.wooreels-story-circle-item:hover {
	transform: scale(1.05);
}

.wooreels-story-ring {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	padding: 3px;
	background: var(--ring-bg, linear-gradient(135deg, #e1306c, #f77737, #fcaf45, #e1306c));
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s, background 0.3s;
	position: relative;
}
.wooreels-story-circle-item.wooreels-story-seen .wooreels-story-ring {
	background: #dcdcdc;
}
.wooreels-story-ring img {
	width: 100%;
	height: 100%;
	border-radius: 50% !important;
	object-fit: cover !important;
	border: 3px solid #fff !important;
	background: #fff;
	position: relative;
	z-index: 1;
	box-sizing: border-box !important;
}

.wooreels-story-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30px;
	height: 30px;
	background: rgba(0, 0, 0, 0.4);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.9);
	z-index: 2;
	pointer-events: none;
	backdrop-filter: blur(2px);
}
.wooreels-story-play-icon svg {
	margin-left: 2px; /* optical alignment for play triangle */
}

.wooreels-story-label {
	font-size: 11px;
	color: #333;
	text-align: center;
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: 500;
	line-height: 1.2;
}

/* ===== Stories Fullscreen Overlay ===== */
.wooreels-stories-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100dvh;
	z-index: 9999999;
	background: rgba(0, 0, 0, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: wrpOverlayFadeIn 0.3s ease;
}

@keyframes wrpOverlayFadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}

.wooreels-stories-overlay-close {
	position: absolute !important;
	top: 20px !important;
	right: 20px !important;
	color: #ffffff !important;
	font-size: 24px !important;
	cursor: pointer !important;
	z-index: 99999999 !important;
	width: 40px !important;
	height: 40px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: #d63638 !important;
	border-radius: 50% !important;
	border: 2px solid #ffffff !important;
	transition: background 0.2s, transform 0.1s !important;
	pointer-events: auto !important;
	touch-action: manipulation !important;
	padding: 0 !important;
	line-height: 1 !important;
	text-decoration: none !important;
}
.wooreels-stories-overlay-close:hover,
.wooreels-stories-overlay-close:active {
	background: #b32d2e !important;
	transform: scale(1.1) !important;
}

.wooreels-stories-overlay-content {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.wooreels-stories-overlay-content .wooreels-story-reel-slide {
	width: 100%;
	max-width: 400px;
	height: auto;
	aspect-ratio: 9 / 16;
	max-height: 85vh;
	border-radius: 16px;
	overflow: hidden;
	background: #000;
	position: relative;
	flex: 0 0 100%;
	scroll-snap-align: center;
}

.wooreels-stories-overlay-content .wooreels-story-reel-slide video,
.wooreels-stories-overlay-content .wooreels-story-reel-slide iframe,
.wooreels-stories-overlay-content .wooreels-story-reel-slide .wooreels-story-image-slide {
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none; /* Prevents users from clicking the YouTube logo and pausing it natively */
}

/* Swipe navigation wrapper */
.wooreels-story-swiper {
	display: flex;
	align-items: center;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	width: 100%;
	height: 100%;
	scrollbar-width: none;
	gap: 20px;
	padding: 0 calc(50vw - 200px);
}
.wooreels-story-swiper::-webkit-scrollbar {
	display: none;
}

/* Navigation arrows */
.wooreels-story-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	background: rgba(255,255,255,0.15);
	border: none;
	border-radius: 50%;
	color: #fff;
	font-size: 22px;
	cursor: pointer;
	z-index: 99999998;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(8px);
	transition: background 0.2s;
}
.wooreels-story-nav:hover {
	background: rgba(255,255,255,0.3);
}
.wooreels-story-nav.wooreels-story-prev {
	left: max(16px, calc(50vw - 230px));
}
.wooreels-story-nav.wooreels-story-next {
	right: max(16px, calc(50vw - 230px));
}

/* Reel title overlay inside the player */
.wooreels-story-reel-title {
	position: absolute;
	bottom: 16px;
	left: 16px;
	right: 16px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
	text-shadow: 0 1px 4px rgba(0,0,0,0.6);
	z-index: 10;
	pointer-events: none;
}

/* Attached Product Popup */
.wooreels-story-product-popup {
	position: absolute;
	bottom: 50px; /* Increased bottom gap */
	left: 50%;
	transform: translateX(-50%);
	background: #ffffff !important; /* White background */
	border: 1px solid #eeeeee !important;
	box-shadow: 0 4px 15px rgba(0,0,0,0.15);
	border-radius: 12px;
	padding: 8px 12px 8px 8px;
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 99999999;
	text-decoration: none !important;
	color: #000000 !important; /* Black text */
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
	transition: background 0.2s, transform 0.2s;
	max-width: 280px;
}
.wooreels-story-product-popup:hover {
	background: #f8f9fa;
	transform: translateX(-50%) translateY(-2px);
	color: #000000;
}
.wooreels-story-product-popup img {
	width: 44px;
	height: 44px;
	border-radius: 8px;
	object-fit: cover;
	flex-shrink: 0;
}
.wooreels-spp-title {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
	color: #000000 !important; /* Force black text */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.wooreels-spp-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: rgba(0, 0, 0, 0.05); /* Darker icon bg for white card */
	color: #000000; /* Black icon */
	border-radius: 50%;
	flex-shrink: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.wooreels-stories-bar {
		gap: 12px;
		padding: 12px 4px;
	}
	.wooreels-story-circle-item {
		width: 68px;
	}
	.wooreels-story-ring {
		width: 64px;
		height: 64px;
	}
	.wooreels-story-label {
		font-size: 10px;
	}
	.wooreels-stories-overlay-content .wooreels-story-reel-slide {
		max-width: 100vw;
		height: 100dvh;
		max-height: 100dvh;
		border-radius: 0;
	}
	.wooreels-story-swiper {
		padding: 0;
		gap: 0;
	}
	.wooreels-story-nav {
		display: none;
	}
	.wooreels-stories-overlay-close {
		top: 12px;
		right: 12px;
		width: 36px;
		height: 36px;
		font-size: 24px;
	}
	.wooreels-story-product-popup {
		bottom: 48px; /* Increased bottom gap on mobile to clear bottom bars */
		left: 50%;
		transform: translateX(-50%);
		width: calc(100% - 32px);
		max-width: 350px;
	}
}

/* Legacy compat (keep old class names working) */
.wooreels-stories-row-wrapper { width: 100%; position: relative; }
.wooreels-stories-row { display: flex; gap: 15px; overflow-x: auto; padding: 15px 5px; scrollbar-width: none; }
.wooreels-stories-row::-webkit-scrollbar { display: none; }
.wooreels-story-item { display: flex; flex-direction: column; align-items: center; gap: 6px; cursor: pointer; width: 84px; flex: 0 0 auto; }
.wooreels-story-circle { width: 74px; height: 74px; border-radius: 50%; padding: 3px; background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
.wooreels-story-circle:hover { transform: scale(1.05); }
.wooreels-story-circle img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid #fff; background: #fff; }
.wooreels-story-title { font-size: 12px; color: #333; text-align: center; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }

.wooreels-pro-container.wooreels-is-fullscreen {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100vw !important;
	max-width: 100vw !important;
	height: 100dvh !important;
	max-height: 100dvh !important;
	border-radius: 0 !important;
	z-index: 999999 !important;
	background: rgba(0,0,0,0.9) !important;
	box-shadow: none !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}
.wooreels-is-fullscreen .wooreels-pro-wrapper {
	position: relative !important;
	width: 100% !important;
	max-width: 450px !important;
	height: 90vh !important;
	max-height: 850px !important;
	border-radius: 16px !important;
	background: #000 !important;
	overflow: hidden !important;
	box-shadow: 0 25px 50px rgba(0,0,0,0.5) !important;
}
.wooreels-is-fullscreen .wooreels-pro-item {
	width: 100% !important;
	height: 100% !important;
}
.wooreels-is-fullscreen .wooreels-video-container {
	position: absolute !important;
	width: 100% !important;
	height: 100% !important;
}
.wooreels-is-fullscreen .wooreels-video-element {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
}
.wooreels-is-fullscreen .wooreels-product-overlay {
	position: absolute !important;
	bottom: 0 !important;
	left: 0 !important;
	width: 100% !important;
	padding: 12px 16px !important;
	background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0) 100%) !important;
	z-index: 999999 !important;
}
.wooreels-is-fullscreen .wooreels-product-title {
	font-size: 15px !important;
	color: #fff !important;
	-webkit-line-clamp: 2 !important;
	margin: 0 !important;
}
.wooreels-is-fullscreen .wooreels-product-price {
	font-size: 14px !important;
	color: #fff !important;
}
.wooreels-is-fullscreen .wooreels-btn {
	padding: 12px 24px !important;
	font-size: 16px !important;
	max-width: 300px !important;
}
.wooreels-is-fullscreen .wooreels-fullscreen-toggle {
	position: fixed !important;
	top: 20px !important;
	left: 20px !important;
	z-index: 9999999 !important;
	background: #000000 !important;
	color: #ffffff !important;
	border: none !important;
	width: 44px !important;
	height: 44px !important;
	font-size: 22px !important;
}
.wooreels-is-fullscreen .wooreels-click-shield {
	z-index: 4 !important;
}
@media (max-width: 480px) {
	.wooreels-pro-container {
		max-width: 100%;
		border-radius: 0;
		height: 100vh;
		max-height: 100vh;
	}
}

/* Floating Single Product Video */
.wooreels-floating-video-container {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: var(--wrp-f-width-d, 180px);
	height: var(--wrp-f-height-d, 320px);
	background: #000;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
	z-index: 999999;
	overflow: hidden;
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
	transform-origin: bottom right;
}

@media (max-width: 768px) {
	.wooreels-floating-video-container {
		width: var(--wrp-f-width-m, 150px);
		height: var(--wrp-f-height-m, 266px);
	}
}

.wooreels-floating-video-container.wooreels-hidden {
	transform: scale(0);
	opacity: 0;
	pointer-events: none;
}

.wooreels-floating-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
}

.wooreels-floating-close {
	position: absolute !important;
	top: 10px !important;
	right: 10px !important;
	width: 28px !important;
	height: 28px !important;
	background: rgba(0, 0, 0, 0.85) !important;
	color: #ffffff !important;
	border: 1px solid rgba(255, 255, 255, 0.3) !important;
	border-radius: 50% !important;
	padding: 0 !important;
	margin: 0 !important;
	font-size: 16px !important;
	line-height: 1 !important;
	cursor: pointer !important;
	z-index: 9999999 !important;
	pointer-events: auto !important;
	touch-action: manipulation;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	opacity: 1 !important;
	transition: background-color 0.2s, transform 0.1s !important;
}
.wooreels-floating-close svg {
	width: 14px !important;
	height: 14px !important;
	display: block !important;
}

.wooreels-floating-close:hover,
.wooreels-floating-close:active {
	background: #000000 !important;
	transform: scale(1.1) !important;
	border-color: #ffffff !important;
}

/* Mobile Adjustments for Floating Video */
@media (max-width: 768px) {
	.wooreels-floating-video-container {
		width: 135px !important;
		height: 240px !important;
	}
	.wooreels-floating-close {
		width: 24px !important;
		height: 24px !important;
		top: 6px !important;
		right: 6px !important;
	}
	.wooreels-floating-close svg {
		width: 12px !important;
		height: 12px !important;
	}
}

/* Carousel Elementor Fallback Styles */
.wooreels-carousel-wrapper {
	gap: 15px; /* Fallback gap, overridden by Elementor widget settings */
}
.wooreels-carousel-slide {
	width: 220px; /* Fallback width, overridden by Elementor widget settings */
	height: 380px; /* Fallback height, overridden by Elementor widget settings */
}

@media (max-width: 768px) {
	.wooreels-carousel-wrapper {
		gap: 8px !important;
	}
	.wooreels-carousel-slide {
		width: 160px !important;
		height: 280px !important;
	}
}

/* Mobile Adjustments for Reel Cards */
/* Comprehensive Mobile Adjustments for All Reel Templates */
@media (max-width: 768px) {
	/* Global Re-sizing */
	.wooreels-pro-item .wooreels-product-overlay {
		padding: 5px 6px !important;
		gap: 2px !important;
	}
	.wooreels-pro-item .wooreels-product-info {
		padding: 0 !important;
		gap: 4px !important;
	}
	.wooreels-pro-item .wooreels-product-thumb img {
		width: 26px !important;
		height: 26px !important;
		border-radius: 4px !important;
	}
	
	/* Font Sizes - Force single line and small fonts */
	.wooreels-pro-item .wooreels-product-title {
		font-size: 10px !important;
		line-height: 1.15 !important;
		margin-bottom: 0 !important;
		white-space: nowrap !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
	}
	.wooreels-pro-item .wooreels-product-price {
		font-size: 11px !important;
		line-height: 1.1 !important;
	}
	.wooreels-pro-item .wooreels-product-price del {
		font-size: 9px !important;
	}
	.wooreels-pro-item .wooreels-discount-badge {
		font-size: 8px !important;
		padding: 1px 3px !important;
	}
	
	/* Global Button Resizing */
	.wooreels-pro-item .wooreels-btn {
		padding: 3px 6px !important;
		font-size: 9px !important;
		line-height: 1 !important;
		margin-top: 0px !important;
		min-height: 20px !important;
		max-height: 24px !important;
	}
	.wooreels-pro-item .wooreels-btn svg.wrp-btn-icon,
	.wooreels-pro-item .wooreels-btn .dashicons {
		width: 10px !important;
		height: 10px !important;
		font-size: 10px !important;
	}
	.wooreels-pro-item .added_to_cart {
		padding: 3px 6px !important;
		font-size: 9px !important;
		margin-top: 0px !important;
		min-height: 20px !important;
	}

	/* Meta Box */
	.wooreels-product-meta-row {
		gap: 3px !important;
		margin-bottom: 1px !important;
	}
	.wooreels-product-meta-badge,
	.wooreels-product-rating {
		font-size: 8px !important;
		padding: 1px 3px !important;
	}

	/* Header (Avatar & Profile Button) */
	.wooreels-product-header {
		padding: 6px !important;
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 4px !important;
	}
	.wrp-header-profile {
		width: 100% !important;
	}
	.wrp-header-action {
		margin-left: 0 !important;
	}
	.wrp-header-action .wooreels-btn-profile {
		font-size: 8px !important;
		padding: 2px 5px !important;
	}

	/* Template Specific Overrides for Mobile — Maintain Flush vs Compact Tag */
	
	/* Flush Bottom Themes: Modern, Glass, Luxury, Dark Heritage, Luxe Pill, White Btn Contrast */
	.wooreels-template-modern .wooreels-product-overlay.wooreels-layout-modern,
	.wooreels-template-glass .wooreels-product-overlay.wooreels-layout-glass,
	.wooreels-template-luxury .wooreels-product-overlay.wooreels-layout-luxury {
		margin: 0 !important;
		width: 100% !important;
		padding: 8px 10px !important;
		gap: 3px !important;
	}
}

/* ==========================================================================
   SINGLE LINE & SMALL FONT ENFORCEMENT (Stock Status & Offer Discount Badges)
   Guarantees stock text and discount badges never wrap onto multiple lines
   ========================================================================== */

/* 1. Global Single-Line Stock Text Enforcement */
.wooreels-pro-item .wooreels-product-stock,
.wooreels-pro-item .wooreels-midnight-stock,
.wooreels-pro-item .wooreels-warranty-tag,
.wooreels-pro-item .wooreels-gold-badge {
	white-space: nowrap !important;
	max-width: 100% !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	display: inline-block !important;
	line-height: 1.2 !important;
}

/* 2. Global Single-Line & Small Font Offer Discount Badge Enforcement */
.wooreels-pro-item .wooreels-discount-badge,
.wooreels-pro-item .wooreels-floating-badge,
.wooreels-pro-item .wooreels-pink-pill-badge,
.wooreels-pro-item .wooreels-purple-badge,
.wooreels-pro-item .wooreels-cream-badge,
.wooreels-pro-item .wooreels-midnight-badge,
.wooreels-pro-item .wooreels-badge-floating,
.wooreels-pro-item .wooreels-badge-top-wrapper {
	white-space: nowrap !important;
	max-width: 100% !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	font-size: 10px !important;
	font-weight: 600 !important;
	padding: 2px 6px !important;
	line-height: 1.2 !important;
	display: inline-block !important;
}

/* 3. Mobile Specific Ultra-Small Offer Discount Badges & Stock Text */
@media (max-width: 768px) {
	.wooreels-pro-item .wooreels-product-stock,
	.wooreels-pro-item .wooreels-midnight-stock,
	.wooreels-pro-item .wooreels-warranty-tag,
	.wooreels-pro-item .wooreels-gold-badge {
		font-size: 9px !important;
		padding: 1px 6px !important;
		white-space: nowrap !important;
		line-height: 1.1 !important;
	}
	.wooreels-pro-item .wooreels-discount-badge,
	.wooreels-pro-item .wooreels-floating-badge,
	.wooreels-pro-item .wooreels-pink-pill-badge,
	.wooreels-pro-item .wooreels-purple-badge,
	.wooreels-pro-item .wooreels-cream-badge,
	.wooreels-pro-item .wooreels-midnight-badge,
	.wooreels-pro-item .wooreels-badge-floating,
	.wooreels-pro-item .wooreels-badge-top-wrapper {
		font-size: 8px !important;
		padding: 1px 5px !important;
		white-space: nowrap !important;
		line-height: 1.1 !important;
	}
}

/* ==========================================================================
   PRICE TAG BACKGROUND COLOR STYLING (Selected Modern & Luxury Templates)
   Adds sleek, high-converting colored background tags/pills to prices in select themes
   ========================================================================== */

/* 1. Cyber Purple (Glow) - Neon Violet Price Tag */
.wooreels-layout-cyber-purple .wooreels-product-price {
	background: rgba(139, 92, 246, 0.2) !important;
	border: 1px solid rgba(139, 92, 246, 0.4) !important;
	color: #f3e8ff !important;
	padding: 2px 8px !important;
	border-radius: 6px !important;
	display: inline-block !important;
	line-height: 1.2 !important;
}

/* 2. Luxe Pill (Floating Badge) - Glassmorphism Price Pill */
.wooreels-layout-luxe-pill .wooreels-product-price {
	background: rgba(255, 255, 255, 0.14) !important;
	backdrop-filter: blur(6px) !important;
	border: 1px solid rgba(255, 255, 255, 0.25) !important;
	color: #ffffff !important;
	padding: 2px 10px !important;
	border-radius: 20px !important;
	display: inline-block !important;
	line-height: 1.2 !important;
}

/* 3. Royal Gold (Card) - Warm Bronze Gold Price Tag */
.wooreels-layout-royal-gold .wooreels-product-price {
	background: rgba(226, 183, 100, 0.15) !important;
	border: 1px solid rgba(226, 183, 100, 0.35) !important;
	color: #fef08a !important;
	padding: 2px 8px !important;
	border-radius: 6px !important;
	display: inline-block !important;
	line-height: 1.2 !important;
}

/* 4. Luxury (Gold Border) - Rich Gold & Black Price Box */
.wooreels-layout-luxury .wooreels-product-price {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(15, 15, 15, 0.8)) !important;
	border: 1px solid #d4af37 !important;
	color: #ffd700 !important;
	padding: 2px 8px !important;
	border-radius: 4px !important;
	display: inline-block !important;
	line-height: 1.2 !important;
}

/* 5. Modern (Default) - Clean Translucent White Tag */
.wooreels-layout-modern .wooreels-product-price {
	background: rgba(255, 255, 255, 0.15) !important;
	color: #ffffff !important;
	padding: 2px 8px !important;
	border-radius: 6px !important;
	display: inline-block !important;
	line-height: 1.2 !important;
}

/* 6. White Button (Contrast) - Rose Pink Tinted Price Tag */
.wooreels-layout-white-btn-pro .wooreels-product-price {
	background: rgba(244, 63, 94, 0.15) !important;
	border: 1px solid rgba(244, 63, 94, 0.3) !important;
	color: #fda4af !important;
	padding: 2px 8px !important;
	border-radius: 6px !important;
	display: inline-block !important;
	line-height: 1.2 !important;
}

/* Mobile Responsive Adjustments for Price Tag Backgrounds */
@media (max-width: 768px) {
	.wooreels-layout-cyber-purple .wooreels-product-price,
	.wooreels-layout-luxe-pill .wooreels-product-price,
	.wooreels-layout-royal-gold .wooreels-product-price,
	.wooreels-layout-luxury .wooreels-product-price,
	.wooreels-layout-modern .wooreels-product-price,
	.wooreels-layout-white-btn-pro .wooreels-product-price {
		padding: 1px 6px !important;
		font-size: 11px !important;
		border-radius: 4px !important;
	}
	.wooreels-layout-luxe-pill .wooreels-product-price {
		border-radius: 12px !important;
	}
}

/* ==========================================================================
   FULLSCREEN OVERLAY FOR CAROUSELS
   Used when transform/overflow clips standard fixed positioning
   ========================================================================== */
.wooreels-fs-overlay {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.wooreels-fs-overlay .wooreels-pro-item,
.wooreels-fs-overlay .wooreels-carousel-slide {
	width: 100% !important;
	max-width: 450px !important;
	height: 90vh !important;
	max-height: 850px !important;
	border-radius: 16px !important;
	overflow: hidden !important;
	background: #000 !important;
	box-shadow: 0 25px 50px rgba(0,0,0,0.5) !important;
	position: relative !important;
	margin: 0 !important;
	flex: none !important;
	scroll-snap-align: none !important;
}

.wooreels-fs-overlay .wooreels-video-container {
	position: absolute !important;
	width: 100% !important;
	height: 100% !important;
	top: 0 !important;
	left: 0 !important;
}

.wooreels-fs-overlay .wooreels-video-element {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
}

.wooreels-fs-overlay .wooreels-product-overlay {
	position: absolute !important;
	bottom: 0 !important;
	left: 0 !important;
	width: 100% !important;
	z-index: 999999 !important;
}

.wooreels-fs-overlay .wooreels-fullscreen-toggle {
	position: absolute !important;
	top: 20px !important;
	left: 20px !important;
	z-index: 9999999 !important;
	background: #000000 !important;
	color: #ffffff !important;
	border: none !important;
	width: 44px !important;
	height: 44px !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
}

.wooreels-fs-overlay .wooreels-click-shield {
	z-index: 4 !important;
}

/* =============================================
   Carousel Global Styling (Fixes Elementor & Store Arrows)
   ============================================= */
.wooreels-carousel-wrapper { position: relative; width: 100%; padding: 0 48px; box-sizing: border-box; }
.wooreels-carousel-viewport { overflow: hidden; border-radius: 12px; width: 100%; }
.wooreels-carousel-track { display: flex; gap: 12px; transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94); will-change: transform; }
.wooreels-carousel-slide { flex: 0 0 auto; position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 9/16; background: #111; }
.wooreels-carousel-wrapper .wooreels-pro-item { width: 100% !important; height: 100% !important; max-width: none !important; max-height: none !important; box-shadow: none !important; }
.wooreels-carousel-arrow { position: absolute; top: 50%; transform: translateY(-60%); width: 40px; height: 40px; border-radius: 50% !important; background: #ffffff !important; border: 1px solid #e0e0e0 !important; box-shadow: 0 2px 8px rgba(0,0,0,0.12) !important; cursor: pointer; display: flex !important; align-items: center; justify-content: center; z-index: 10; transition: all 0.2s ease !important; color: #333 !important; padding: 0 !important; }
.wooreels-carousel-arrow:hover { background: #f5f5f5 !important; box-shadow: 0 4px 12px rgba(0,0,0,0.18) !important; transform: translateY(-60%) scale(1.08); color: #000 !important; }
.wooreels-carousel-arrow:active { transform: translateY(-60%) scale(0.95); }
.wooreels-carousel-arrow:disabled { opacity: 0.3 !important; cursor: default; pointer-events: none; }
.wooreels-carousel-prev { left: 0; }
.wooreels-carousel-next { right: 0; }
.wooreels-carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; padding: 4px 0; }
.wooreels-carousel-dot { width: 10px; height: 10px; border-radius: 50% !important; border: none !important; background: #d1d5db !important; cursor: pointer; padding: 0 !important; transition: all 0.25s ease !important; }
.wooreels-carousel-dot:hover { background: #9ca3af !important; transform: scale(1.2); }
.wooreels-carousel-dot.active { background: #111 !important; width: 24px; border-radius: 5px !important; }

/* Mobile */
@media (max-width: 768px) {
	.wooreels-carousel-wrapper { padding: 0; }
	.wooreels-carousel-arrow { display: none !important; }
	.wooreels-carousel-viewport { overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
	.wooreels-carousel-viewport::-webkit-scrollbar { display: none; }
	.wooreels-carousel-track { transition: none !important; }
	.wooreels-carousel-slide { scroll-snap-align: start; min-width: 44%; }
	.wooreels-carousel-dots { margin-top: 12px; }
}
