   Hero Section
   ============================================ */

.rushby-hero-section {
	position: relative;
	background-color: #E5E7EB;
	overflow: hidden;
	z-index: 0;
}

/* Background Pattern */
.rushby-hero-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.05;
	z-index: 0;
	pointer-events: none;
}

.rushby-hero-pattern > div {
	position: absolute;
	inset: 0;
	background-repeat: repeat;
}

/* Container */
.rushby-hero-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 4rem 1rem;
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.rushby-hero-container {
		padding: 6rem 1rem;
	}
}

/* Grid Layout */
.rushby-hero-grid {
	display: grid;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 1024px) {
	.rushby-hero-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Left Column - Content */
.rushby-hero-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

/* ============================================
   Badge
   ============================================ */

.rushby-badge-wrapper {
	animation: fadeInUp 0.6s ease-out 0.2s both;
}

.rushby-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.375rem 0.75rem;
	background-color: var(--rushby-accent-light);
	color: var(--rushby-accent-dark);
	border: 1px solid var(--rushby-accent-soft);
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 500;
	transition: background-color 0.2s;
}

.rushby-badge:hover {
	background-color: var(--rushby-accent-soft);
}

.rushby-badge-icon {
	width: 0.75rem;
	height: 0.75rem;
	fill: var(--rushby-accent);
}

/* ============================================
   Headline
   ============================================ */

.rushby-headline-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	animation: fadeInUp 0.6s ease-out 0.3s both;
}

.rushby-headline {
	font-size: 2.25rem;
	font-weight: 700;
	color: #111827;
	line-height: 1.2;
	margin: 0;
}

@media (min-width: 768px) {
	.rushby-headline {
		font-size: 3.75rem;
	}
}

@media (min-width: 1024px) {
	.rushby-headline {
		font-size: 4.5rem;
	}
}

.rushby-headline-highlight {
	display: block;
	color: var(--rushby-accent);
}

/* ============================================
   Description
   ============================================ */

.rushby-description {
	font-size: 1.125rem;
	color: #374151;
	max-width: 36rem;
	margin: 0;
}

@media (min-width: 768px) {
	.rushby-description {
		font-size: 1.25rem;
	}
}

.rushby-description-highlight {
	color: #111827;
	font-weight: 500;
}

/* ============================================
   Trust Indicators
   ============================================ */

.rushby-trust-indicators {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	animation: fadeInUp 0.6s ease-out 0.5s both;
}

.rushby-trust-indicator {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: #4B5563;
}

.rushby-trust-icon {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--rushby-accent);
}

/* ============================================
   CTA Buttons
   ============================================ */

.rushby-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	animation: fadeInUp 0.6s ease-out 0.6s both;
}

/* Button styles moved to common.css for shared use across widgets */

/* ============================================
   Statistics
   ============================================ */

.rushby-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	padding-top: 2rem;
	border-top: 1px solid #D1D5DB;
	animation: fadeInUp 0.6s ease-out 0.7s both;
}

.rushby-stat {
	display: flex;
	flex-direction: column;
}

.rushby-stat-number {
	font-size: 1.5rem;
	font-weight: 700;
	color: #111827;
}

@media (min-width: 768px) {
	.rushby-stat-number {
		font-size: 1.875rem;
	}
}

.rushby-stat-label {
	font-size: 0.875rem;
	color: #4B5563;
}

/* ============================================
   Product Showcase
   ============================================ */

.rushby-product-showcase {
	position: relative;
	animation: fadeInRight 0.8s ease-out 0.4s both;
}

/* Product Card - Matches Product Grid Widget */
.rushby-product-showcase .rushby-product-card {
	background-color: #FFFFFF;
	border: 1px solid #E5E7EB;
	border-radius: 0.5rem;
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.rushby-product-showcase .rushby-product-card:hover {
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	transform: translateY(-2px);
}

/* Product Image */
.rushby-product-showcase .rushby-product-image-wrapper {
	position: relative;
	background-color: #F9FAFB;
}

.rushby-product-showcase .rushby-product-image-link {
	display: block;
	width: 100%;
}

.rushby-product-showcase .rushby-product-image-wrapper img {
	width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
}

/* Product Badge */
.rushby-product-showcase .rushby-product-badge-wrapper {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 1;
}

.rushby-product-showcase .rushby-product-badge {
	background-color: var(--rushby-accent);
	color: #FFFFFF;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.25rem 0.75rem;
	border-radius: 0.25rem;
	text-transform: uppercase;
	letter-spacing: 0.025em;
}

/* Product Info */
.rushby-product-showcase .rushby-product-info {
	padding: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex-grow: 1;
}

/* Category & Rating */
.rushby-product-showcase .rushby-product-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
}

.rushby-product-showcase .rushby-product-category {
	color: var(--rushby-accent);
	font-weight: 500;
	font-size: 0.875rem;
}

.rushby-product-showcase .rushby-product-rating {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	color: #F59E0B;
}

.rushby-product-showcase .rushby-product-rating .star {
	width: 1rem;
	height: 1rem;
	stroke: #F59E0B;
}

.rushby-product-showcase .rushby-product-rating .rating-value {
	font-weight: 600;
	color: #111827;
	font-size: 0.875rem;
}

.rushby-product-showcase .rushby-product-rating .rating-count {
	color: #6B7280;
	font-size: 0.875rem;
}

/* Product Title */
.rushby-product-showcase .rushby-product-title {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
}

.rushby-product-showcase .rushby-product-title a {
	color: #111827;
	text-decoration: none;
	transition: color 0.2s;
}

.rushby-product-showcase .rushby-product-title a:hover {
	color: var(--rushby-accent);
}

/* Price & Add to Cart */
.rushby-product-showcase .rushby-product-price-cart {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: auto;
}

.rushby-product-showcase .rushby-product-price-wrapper {
	flex: 1;
}

.rushby-product-showcase .rushby-product-price {
	font-size: 1.125rem;
	font-weight: 700;
	color: #111827;
}

.rushby-product-showcase .rushby-product-add-to-cart {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.5rem 1rem;
	background-color: var(--rushby-accent);
	color: #FFFFFF;
	border: none;
	border-radius: 0.375rem;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
}

.rushby-product-showcase .rushby-product-add-to-cart:hover {
	background-color: var(--rushby-accent-dark);
}

.rushby-product-showcase .rushby-product-add-to-cart svg {
	width: 1rem;
	height: 1rem;
}

/* Stock Status */
.rushby-product-showcase .rushby-product-stock {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: #6B7280;
}

.rushby-product-showcase .rushby-stock-indicator {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
}

.rushby-product-showcase .rushby-stock-indicator.in-stock {
	background-color: #10B981;
}

.rushby-product-showcase .rushby-stock-indicator.on-backorder {
	background-color: #F59E0B;
}

.rushby-product-showcase .rushby-stock-indicator.out-of-stock {
	background-color: #EF4444;
}

/* ============================================
   Floating Cards
   ============================================ */

.rushby-floating-card {
	position: absolute;
	background-color: #FFFFFF;
	border: 1px solid #D1D5DB;
	border-radius: 0.5rem;
	padding: 1rem;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.rushby-floating-card-1 {
	bottom: -1.5rem;
	left: -1.5rem;
	display: none;
	animation: fadeInUp 0.6s ease-out 0.8s both;
}

.rushby-floating-card-2 {
	top: -1.5rem;
	right: -1.5rem;
	display: none;
	animation: fadeInUp 0.6s ease-out 1s both;
}

@media (min-width: 768px) {
	.rushby-floating-card-1 {
		display: block;
	}
}

@media (min-width: 1024px) {
	.rushby-floating-card-2 {
		display: block;
	}
}

.rushby-floating-card-content {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.rushby-floating-card-icon {
	width: 3rem;
	height: 3rem;
	background-color: var(--rushby-accent-light);
	border-radius: 0.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.rushby-floating-card-icon svg {
	width: 1.5rem;
	height: 1.5rem;
	color: var(--rushby-accent);
}

.rushby-floating-card-title {
	font-size: 0.875rem;
	font-weight: 600;
	color: #111827;
}

.rushby-floating-card-subtitle {
	font-size: 0.75rem;
	color: #4B5563;
}

/* ============================================
   Responsive Utilities
   ============================================ */

@media (max-width: 767px) {
	.rushby-hero-content {
		gap: 1.5rem;
	}

	.rushby-headline {
		font-size: 2rem;
	}

	.rushby-description {
		font-size: 1rem;
	}

	.rushby-stats {
		gap: 1rem;
		padding-top: 1.5rem;
	}
}

/* ============================================
   Highlights Section
   ============================================ */

.rushby-hero-highlights {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 3rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 768px) {
	.rushby-hero-highlights {
		grid-template-columns: repeat(3, 1fr);
	}
}

.rushby-hero-highlight-card {
	background-color: #F9FAFB;
	border: 1px solid #E5E7EB;
	border-radius: 0.75rem;
	padding: 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
}

.rushby-hero-highlight-card:hover {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Clickable highlight card styles */
a.rushby-hero-highlight-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

a.rushby-hero-highlight-card-link:hover {
	transform: translateY(-2px);
	border-color: var(--rushby-accent);
}

a.rushby-hero-highlight-card-link .rushby-hero-highlight-title {
	color: #111827;
}

a.rushby-hero-highlight-card-link .rushby-hero-highlight-description {
	color: #6B7280;
}

.rushby-hero-highlight-icon-wrapper {
	width: 3rem;
	height: 3rem;
	background-color: var(--rushby-accent-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.rushby-hero-highlight-icon {
	width: 1.5rem;
	height: 1.5rem;
	color: var(--rushby-accent);
}

.rushby-hero-highlight-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: #111827;
	margin-bottom: 0.5rem;
}

.rushby-hero-highlight-description {
	color: #6B7280;
	line-height: 1.5;
	font-size: 0.875rem;
}

/* ============================================
