/**
 * AS Theme CSS - Rosie Farms Co. Custom Premium Styling
 * Based on Ecuadorian Flower Exporters Aesthetics
 */

:root {
	--color-crimson: #8A1C14;
	--color-crimson-dark: #6B120C;
	--color-green: #1B3622;
	--color-green-dark: #122416;
	--color-blush: #FAF0EB;
	--color-blush-dark: #FCEEE9;
	--color-bg-light: #FCFAF7;
	--color-text-dark: #1C1C1C;
	--color-text-muted: #5C5C5C;
	--color-white: #FFFFFF;
	--color-border: #E8E2DE;

	--font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--font-serif: 'Roboto', 'Playfair Display', Georgia, serif;

	--transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	--shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.03);
	--shadow-medium: 0 10px 30px rgba(138, 28, 20, 0.05);
	--shadow-hover: 0 15px 40px rgba(138, 28, 20, 0.12);
}

/* Reset & Global Styles */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-primary);
	background-color: var(--color-bg-light);
	color: var(--color-text-dark);
	line-height: 1.6;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-serif);
	font-weight: 600;
	line-height: 1.25;
	color: var(--color-text-dark);
}

h1 {
	font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
	font-size: clamp(1.8rem, 4vw, 2.6rem);
}

h3 {
	font-size: clamp(1.4rem, 3vw, 1.8rem);
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.section-padding {
	padding: clamp(3rem, 8vw, 6rem) 0;
}

.text-center {
	text-align: center;
}

.highlight-text {
	color: #f48b8b;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 4px;
	transition: var(--transition);
	cursor: pointer;
	border: none;
	font-family: var(--font-primary);
}

.btn i {
	margin: 0 8px;
	font-size: 12px;
	transition: transform 0.2s ease;
}


.btn-crimson {
	background-color: var(--color-crimson);
	color: var(--color-white);
}

.btn-crimson:hover {
	background-color: var(--color-crimson-dark);
	box-shadow: 0 8px 20px rgba(138, 28, 20, 0.25);
}

.btn-green {
	background-color: var(--color-green);
	color: var(--color-white);
}

.btn-green:hover {
	background-color: var(--color-green-dark);
	box-shadow: 0 8px 20px rgba(27, 54, 34, 0.25);
}

.btn-outline {
	background-color: transparent;
	color: var(--color-crimson);
	border: 1px solid var(--color-crimson);
}

.btn-outline:hover {
	background-color: var(--color-crimson);
	color: var(--color-white);
}

.btn-outline-white {
	background-color: transparent;
	color: var(--color-white);
	border: 1px solid var(--color-white);
}

.btn-outline-white:hover {
	background-color: var(--color-white);
	color: var(--color-crimson);
}

/* Header & Pre-Header Styles */
.as-pre-header {
	background-color: var(--color-green);
	color: var(--color-white);
	font-size: 12px;
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.as-pre-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.as-pre-header-left span {
	margin-right: 20px;
}

.as-pre-header-left i {
	margin-right: 6px;
	color: var(--color-crimson);
}

.as-pre-header-right span {
	display: inline-flex;
	align-items: center;
	font-weight: 500;
}

.as-pre-header-right img {
	width: 16px;
	height: 11px;
	margin-left: 6px;
	border-radius: 1px;
}

.as-header {
	background-color: var(--color-white);
	border-bottom: 1px solid var(--color-border);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: var(--shadow-subtle);
}

.as-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}

.as-logo {
	font-family: var(--font-serif);
	font-size: 24px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 8px;
}

.as-logo-icon {
	color: var(--color-crimson);
	font-size: 22px;
}

.as-nav {
	display: flex;
	align-items: center;
}

.as-nav-list {
	display: flex;
	list-style: none;
	gap: 32px;
	align-items: center;
}

.as-nav-link {
	font-size: 14px;
	font-weight: 500;
	color: var(--color-text-dark);
	position: relative;
	padding: 6px 0;
}

.as-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--color-crimson);
	transition: var(--transition);
}

.as-nav-link:hover::after,
.as-nav-list li.current-menu-item .as-nav-link::after {
	width: 100%;
}

.as-nav-cta {
	margin-left: 32px;
}

.as-burger-menu {
	display: none;
	font-size: 24px;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--color-text-dark);
}

/* Mobile Nav Drawer */
.as-mobile-drawer {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	max-width: 320px;
	height: 100vh;
	background-color: var(--color-white);
	z-index: 999;
	box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
	transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
	padding: 40px 24px;
	display: flex;
	flex-direction: column;
}

.as-mobile-drawer.open {
	right: 0;
}

.as-mobile-drawer-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 998;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.as-mobile-drawer-overlay.open {
	opacity: 1;
	pointer-events: auto;
}

.as-mobile-drawer-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.as-mobile-drawer-close {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: var(--color-text-dark);
}

.as-mobile-nav-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 40px;
}

.as-mobile-nav-link {
	font-size: 18px;
	font-weight: 500;
	display: block;
	padding: 8px 0;
	border-bottom: 1px solid var(--color-border);
}

/* Footer Section */
.as-footer {
	background-color: #121212;
	color: #B3B3B3;
	padding: 80px 0 40px 0;
	font-size: 14px;
	border-top: 5px solid var(--color-crimson);
}

.as-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 40px;
	margin-bottom: 60px;
}

.as-footer-col h4 {
	color: var(--color-white);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 24px;
	position: relative;
	padding-bottom: 8px;
}

.as-footer-col h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: var(--color-crimson);
}

.as-footer-col p {
	line-height: 1.8;
	margin-bottom: 20px;
}

.as-footer-socials {
	display: flex;
	gap: 12px;
}

.as-footer-social-link {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	transition: var(--transition);
}

.as-footer-social-link:hover {
	background-color: var(--color-crimson);
	color: var(--color-white);
	transform: translateY(-2px);
}

.as-footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.as-footer-links a:hover {
	color: var(--color-white);
	padding-left: 4px;
}

.as-footer-contact-info li {
	margin-bottom: 16px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.as-footer-contact-info i {
	color: var(--color-crimson);
	margin-top: 4px;
	font-size: 16px;
}

.as-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

/* WhatsApp Floating Button */
.as-whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background-color: #25D366;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	z-index: 99;
	transition: var(--transition);
}

.as-whatsapp-float::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #25D366;
	opacity: 0.5;
	z-index: -1;
	animation: pulse 2s infinite;
}

.as-whatsapp-float:hover {
	transform: scale(1.08) translateY(-4px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 0.5;
	}

	100% {
		transform: scale(1.4);
		opacity: 0;
	}
}

/* Page Headers / Banners */
.as-page-header {
	background-color: var(--color-green);
	color: var(--color-white);
	padding: 80px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.as-page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(27, 54, 34, 0.3) 0%, rgba(18, 36, 22, 0.9) 100%);
	z-index: 1;
}

.as-page-header-content {
	position: relative;
	z-index: 2;
}

.as-page-header h1 {
	color: #fff;
	margin-bottom: 12px;
	font-family: var(--font-serif);
}

.as-page-header p {
	font-size: 16px;
	max-width: 600px;
	margin: 0 auto;
	opacity: 0.8;
}

/* Torn Paper Watercolor Dividers (inspired by screenshot 1) */
.as-watercolor-divider {
	width: 100%;
	height: 25px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,42.4V0Z' fill='%238a1c14'/%3E%3C/svg%3E") no-repeat center bottom;
	background-size: 100% 100%;
	position: relative;
	margin-top: -1px;
}

.as-watercolor-divider-top {
	width: 100%;
	height: 25px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,120V73.71c47.79-22.2,103.59-32.17,158-28,70.36,5.37,136.33,33.31,206.8,37.5,73.84,4.37,147.54-16.87,218.2-35.25,69.27-18,138.3-24.88,209.4-13.08,36.15,6,69.85,17.84,104.45,29.34C989.49,95,1113,134.29,1200,77.6V120Z' fill='%238a1c14'/%3E%3C/svg%3E") no-repeat center top;
	background-size: 100% 100%;
	position: relative;
	margin-bottom: -1px;
}

/* Home Hero Section */
.as-hero {
	position: relative;
	background-color: var(--color-green);
	color: var(--color-white);
	padding: 120px 0 160px 0;
	overflow: hidden;
}

.as-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.7;
	z-index: 3;
}

.as-hero::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(18, 36, 22, 0.95) 0%, rgba(18, 36, 22, 0.6) 50%, rgba(18, 36, 22, 0.9) 100%);
	z-index: 2;
}

.as-hero-content {
	position: relative;
	z-index: 3;
	max-width: 800px;
}

.as-hero-tagline {
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--color-crimson);
	background-color: var(--color-blush);
	display: inline-block;
	padding: 6px 14px;
	border-radius: 4px;
	margin-bottom: 24px;
}

.as-hero h1 {
	font-family: var(--font-serif);
	margin-bottom: 24px;
	font-weight: 400;
	color: #FFFFFF;
}

.as-hero-intro {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 40px;
	opacity: 0.9;
}

.as-hero-stats {
	display: flex;
	gap: 40px;
	margin-top: 60px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 30px;
}

.as-hero-stat-item h3 {
	font-size: 32px;
	font-weight: 700;
	color: var(--color-white);
}

.as-hero-stat-item p {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.7;
}

.as-hero-ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

/* Home Preview Section */
.as-preview-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.as-preview-images {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.as-preview-img-wrapper {
	border-radius: 4px;
	overflow: hidden;
	box-shadow: var(--shadow-medium);
}

.as-preview-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.as-preview-img-wrapper:hover img {
	transform: scale(1.05);
}

.as-preview-info h4 {
	color: var(--color-crimson);
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.as-preview-info h2 {
	margin-bottom: 24px;
}

.as-preview-info p {
	color: var(--color-text-muted);
	margin-bottom: 30px;
	font-size: 15px;
	line-height: 1.8;
}

/* Featured Flowers & Products */
.as-section-header {
	max-width: 600px;
	margin: 0 auto 50px auto;
}

.as-section-header h4 {
	color: var(--color-crimson);
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 2px;
	margin-bottom: 12px;
}

.as-section-header h2 {
	margin-bottom: 16px;
}

.as-section-header p {
	color: var(--color-text-muted);
}

.as-category-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.as-category-card {
	background-color: var(--color-white);
	border-radius: 4px;
	overflow: hidden;
	box-shadow: var(--shadow-subtle);
	transition: var(--transition);
	position: relative;
	height: 380px;
}

.as-category-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.as-category-card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(18, 36, 22, 0.95) 0%, rgba(18, 36, 22, 0.4) 50%, rgba(18, 36, 22, 0) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px;
	color: var(--color-white);
}

.as-category-card h3 {
	color: var(--color-white);
	margin-bottom: 8px;
}

.as-category-card p {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.8;
	margin-bottom: 16px;
}

.as-category-card-link {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--color-crimson);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.as-category-card-link i {
	font-size: 11px;
}

.as-category-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
}

.as-category-card:hover .as-category-card-img {
	transform: scale(1.06);
}

/* Why Choose Us Cards */
.as-why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.as-why-card {
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	padding: 30px;
	border-radius: 4px;
	transition: var(--transition);
}

.as-why-icon-wrapper {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: var(--color-blush);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-crimson);
	font-size: 24px;
	margin-bottom: 24px;
}

.as-why-card h3 {
	margin-bottom: 12px;
	font-size: 18px;
}

.as-why-card p {
	font-size: 14px;
	color: var(--color-text-muted);
	line-height: 1.6;
}

.as-why-card:hover {
	transform: translateY(-5px);
	border-color: var(--color-crimson);
	box-shadow: var(--shadow-hover);
}

.as-why-card:hover .as-why-icon-wrapper {
	background-color: var(--color-crimson);
	color: var(--color-white);
}

/* Timeline Process (inspired by screenshot 3) */
.as-process-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

.as-process-card {
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	padding: 30px;
	border-radius: 4px;
	position: relative;
	transition: var(--transition);
}

.as-process-step {
	position: absolute;
	top: 24px;
	right: 30px;
	font-family: var(--font-serif);
	font-size: 36px;
	font-weight: 700;
	color: rgba(138, 28, 20, 0.08);
	line-height: 1;
}

.as-process-icon {
	color: var(--color-crimson);
	font-size: 24px;
	margin-bottom: 20px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--color-blush);
	display: flex;
	align-items: center;
	justify-content: center;
}

.as-process-card h3 {
	font-size: 18px;
	margin-bottom: 12px;
}

.as-process-card p {
	font-size: 14px;
	color: var(--color-text-muted);
}

.as-process-card:hover {
	border-color: var(--color-crimson);
	box-shadow: var(--shadow-hover);
}

.as-process-card:hover .as-process-step {
	color: rgba(138, 28, 20, 0.2);
}

/* Testimonials / Client Trust */
.as-testimonials {
	background-color: var(--color-blush);
}

.as-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.as-testimonial-card {
	background-color: var(--color-white);
	padding: 40px;
	border-radius: 4px;
	box-shadow: var(--shadow-subtle);
}

.as-stars {
	color: #D4AF37;
	margin-bottom: 20px;
}

.as-testimonial-card p {
	font-style: italic;
	color: var(--color-text-dark);
	margin-bottom: 24px;
}

.as-buyer-info h4 {
	font-size: 16px;
	font-family: var(--font-primary);
	font-weight: 600;
}

.as-buyer-info span {
	font-size: 12px;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Call To Action Banner */
.as-cta-banner {
	background-color: var(--color-crimson);
	color: var(--color-white);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.as-cta-banner-content {
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.as-cta-banner h2 {
	color: var(--color-white);
	margin-bottom: 20px;
}

.as-cta-banner p {
	font-size: 18px;
	margin-bottom: 40px;
	opacity: 0.9;
}

.as-cta-banner-ctas {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Flower Catalog Page Styles (inspired by screenshot 2) */
.as-catalog-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 40px;
	margin-top: 40px;
}

.as-catalog-sidebar {
	position: sticky;
	top: 100px;
	height: fit-content;
}

.as-catalog-filter-title {
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
	border-bottom: 2px solid var(--color-crimson);
	padding-bottom: 8px;
}

.as-filter-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.as-filter-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 4px;
	cursor: pointer;
	text-align: left;
	font-weight: 500;
	font-size: 14px;
	transition: var(--transition);
	width: 100%;
}

.as-filter-btn:hover,
.as-filter-btn.active {
	background-color: var(--color-crimson);
	color: var(--color-white);
	border-color: var(--color-crimson);
}

.as-filter-count {
	font-size: 11px;
	padding: 2px 6px;
	border-radius: 10px;
	background-color: rgba(0, 0, 0, 0.05);
	color: var(--color-text-muted);
}

.as-filter-btn:hover .as-filter-count,
.as-filter-btn.active .as-filter-count {
	background-color: rgba(255, 255, 255, 0.2);
	color: var(--color-white);
}

.as-product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.as-product-card {
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 4px;
	overflow: hidden;
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	border-radius: 15px;
}

.as-product-card-img-wrapper {
	height: 240px;
	overflow: hidden;
	position: relative;
}

.as-product-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.as-product-tag {
	position: absolute;
	top: 12px;
	left: 12px;
	background-color: var(--color-crimson);
	color: var(--color-white);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 4px 8px;
	border-radius: 2px;
}

.as-product-info {
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.as-product-info h3 {
	font-size: 18px;
	margin-bottom: 8px;
}

.as-product-category {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--color-crimson);
	margin-bottom: 16px;
}

.as-product-meta-list {
	list-style: none;
	margin-bottom: 20px;
	border-top: 1px solid var(--color-border);
	padding-top: 16px;
}

.as-product-meta-list li {
	font-size: 13px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
	color: var(--color-text-muted);
}

.as-product-meta-list li span:last-child {
	color: var(--color-text-dark);
	font-weight: 500;
}

.as-product-ctas {
	margin-top: auto;
}

.as-product-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
	border-color: var(--color-crimson);
}

.as-product-card:hover img {
	transform: scale(1.05);
}

/* Why Choose Us Page Details & Comparison */
.as-comparison-table-wrapper {
	overflow-x: auto;
	margin-top: 40px;
	border-radius: 4px;
	box-shadow: var(--shadow-subtle);
}

.as-comparison-table {
	width: 100%;
	border-collapse: collapse;
	background-color: var(--color-white);
	text-align: left;
	font-size: 15px;
}

.as-comparison-table th,
.as-comparison-table td {
	padding: 20px 24px;
	border-bottom: 1px solid var(--color-border);
}

.as-comparison-table th {
	font-family: var(--font-primary);
	font-weight: 600;
	background-color: var(--color-green);
	color: var(--color-white);
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 1px;
}

.as-comparison-table th:nth-child(2) {
	background-color: var(--color-crimson);
}

.as-comparison-table tr:last-child td {
	border-bottom: none;
}

.as-comparison-table td i.fa-check-circle {
	color: #25D366;
	font-size: 18px;
}

.as-comparison-table td i.fa-times-circle {
	color: #DC3545;
	font-size: 18px;
}

/* Gallery Lightbox */
.as-gallery-filter {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.as-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.as-gallery-item {
	height: 280px;
	border-radius: 4px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	box-shadow: var(--shadow-subtle);
}

.as-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.as-gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(27, 54, 34, 0.85);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: var(--transition);
	color: var(--color-white);
	padding: 20px;
	text-align: center;
}

.as-gallery-overlay i {
	font-size: 28px;
	margin-bottom: 12px;
	color: var(--color-crimson);
}

.as-gallery-overlay h4 {
	color: var(--color-white);
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 6px;
}

.as-gallery-overlay span {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.8;
}

.as-gallery-item:hover img {
	transform: scale(1.06);
}

.as-gallery-item:hover .as-gallery-overlay {
	opacity: 1;
}

/* Lightbox Modal */
.as-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.as-lightbox.open {
	opacity: 1;
	pointer-events: auto;
}

.as-lightbox-content {
	max-width: 90%;
	max-height: 80vh;
	position: relative;
}

.as-lightbox-content img {
	max-width: 100%;
	max-height: 80vh;
	border-radius: 4px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.as-lightbox-close {
	position: absolute;
	top: -40px;
	right: 0;
	background: none;
	border: none;
	color: var(--color-white);
	font-size: 28px;
	cursor: pointer;
}

.as-lightbox-caption {
	color: var(--color-white);
	text-align: center;
	margin-top: 15px;
	font-family: var(--font-serif);
	font-size: 18px;
}

/* Contact & Quote Pages Forms */
.as-form-layout {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 60px;
	align-items: start;
}

.as-form-container {
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 4px;
	padding: 40px;
	box-shadow: var(--shadow-subtle);
}

.as-form-group {
	margin-bottom: 24px;
}

.as-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.as-form-label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
	color: var(--color-text-dark);
}

.as-form-input {
	width: 100%;
	padding: 14px 18px;
	border: 1px solid var(--color-border);
	border-radius: 4px;
	font-family: var(--font-primary);
	font-size: 14px;
	background-color: var(--color-bg-light);
	transition: var(--transition);
	color: var(--color-text-dark);
}

.as-form-input:focus {
	outline: none;
	border-color: var(--color-crimson);
	background-color: var(--color-white);
	box-shadow: 0 0 0 3px rgba(138, 28, 20, 0.08);
}

.as-file-upload-wrapper {
	position: relative;
	border: 2px dashed var(--color-border);
	border-radius: 4px;
	padding: 24px;
	text-align: center;
	background-color: var(--color-bg-light);
	cursor: pointer;
	transition: var(--transition);
}

.as-file-upload-wrapper:hover {
	border-color: var(--color-crimson);
}

.as-file-upload-wrapper input[type="file"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.as-file-upload-icon {
	font-size: 24px;
	color: var(--color-text-muted);
	margin-bottom: 8px;
}

.as-file-upload-text {
	font-size: 13px;
	color: var(--color-text-muted);
}

.as-file-name-preview {
	margin-top: 10px;
	font-size: 12px;
	font-weight: 600;
	color: var(--color-crimson);
}

/* Sidebar Information Grid */
.as-sidebar-box {
	background-color: var(--color-blush);
	border-radius: 4px;
	padding: 40px;
	margin-bottom: 30px;
}

.as-sidebar-box h3 {
	margin-bottom: 20px;
	font-size: 20px;
	border-bottom: 1px solid var(--color-border);
	padding-bottom: 12px;
}

.as-sidebar-info-list {
	list-style: none;
}

.as-sidebar-info-list li {
	margin-bottom: 20px;
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.as-sidebar-info-list li:last-child {
	margin-bottom: 0;
}

.as-sidebar-info-list i {
	font-size: 20px;
	color: var(--color-crimson);
	margin-top: 2px;
}

.as-sidebar-info-list h4 {
	font-size: 15px;
	font-family: var(--font-primary);
	font-weight: 600;
	margin-bottom: 4px;
}

.as-sidebar-info-list p {
	font-size: 13px;
	color: var(--color-text-muted);
}

/* Form Response Alerts */
.as-form-response {
	padding: 16px;
	border-radius: 4px;
	margin-top: 20px;
	font-size: 14px;
	font-weight: 500;
	display: none;
}

.as-form-response.success {
	background-color: #E8F5E9;
	color: #2E7D32;
	border: 1px solid #C8E6C9;
	display: block;
}

.as-form-response.error {
	background-color: #FFEBEE;
	color: #C62828;
	border: 1px solid #FFCDD2;
	display: block;
}

/* Google Map Container */
.as-map-container {
	margin-top: 60px;
	border-radius: 4px;
	overflow: hidden;
	height: 450px;
	box-shadow: var(--shadow-subtle);
}

.as-map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {

	.as-category-grid,
	.as-why-grid,
	.as-process-grid,
	.as-gallery-grid,
	.as-testimonial-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.as-product-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.as-footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.as-nav-list,
	.as-nav-cta {
		display: none;
	}

	.as-burger-menu {
		display: block;
	}
}

@media (max-width: 768px) {



	.as-preview-grid,
	.as-form-layout,
	.as-catalog-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.as-catalog-layout {
		padding: 0 10px;
	}

	.as-catalog-sidebar {
		position: static;
	}

	.as-hero-stats {
		flex-direction: column;
		gap: 20px;
	}

	.as-form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

@media (max-width: 580px) {

	.as-category-grid,
	.as-why-grid,
	.as-process-grid,
	.as-gallery-grid,
	.as-testimonial-grid,
	.as-product-grid,
	.as-footer-grid {
		grid-template-columns: 1fr;
	}

	.as-pre-header-content {
		flex-direction: column;
		align-items: flex-start;
	}


}

/* Pagination Styles */
.as-pagination {
	margin-top: 50px;
	display: flex;
	justify-content: center;
	width: 100%;
}

.as-pagination ul {
	display: inline-flex;
	list-style: none;
	gap: 6px;
	background: var(--color-white);
	padding: 8px 16px;
	border-radius: 30px;
	box-shadow: var(--shadow-subtle);
	border: 1px solid var(--color-border);
	margin: 0;
	align-items: center;
}

.as-pagination li {
	margin: 0;
	padding: 0;
	display: inline-flex;
}

.as-pagination a,
.as-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	border-radius: 50%;
	font-weight: 600;
	font-size: 13px;
	color: var(--color-text-muted);
	transition: var(--transition);
	text-decoration: none;
}

.as-pagination a:hover {
	background-color: var(--color-blush);
	color: var(--color-crimson);
}

.as-pagination span.current {
	background-color: var(--color-crimson);
	color: var(--color-white);
}

/* Cart-like Quote Request Styles */
.as-quote-cart-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.as-quote-cart-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	background-color: var(--color-bg-light);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	transition: var(--transition);
}

.as-quote-cart-item:hover {
	border-color: var(--color-crimson);
	background-color: #fff;
}

.as-quote-cart-item-details {
	display: flex;
	align-items: center;
	gap: 16px;
}

.as-quote-cart-item-img {
	width: 48px;
	height: 48px;
	border-radius: 6px;
	object-fit: cover;
	border: 1px solid var(--color-border);
}

.as-quote-cart-item-name {
	font-family: var(--font-serif);
	font-size: 16px;
	font-weight: 600;
	color: var(--color-text-dark);
}

.as-quote-cart-item-price {
	font-size: 13px;
	color: var(--color-text-muted);
	margin-top: 2px;
}

.as-quote-cart-remove-btn {
	background: none;
	border: none;
	color: var(--color-text-muted);
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: var(--transition);
	padding: 6px 12px;
	border-radius: 4px;
}

.as-quote-cart-remove-btn:hover {
	color: var(--color-crimson);
	background-color: rgba(138, 28, 20, 0.05);
}

/* Button Added State */
.btn-crimson.added {
	background-color: var(--color-green) !important;
	color: var(--color-white) !important;
	border-color: var(--color-green) !important;
	cursor: default;
}

.btn-crimson.added:hover {
	background-color: var(--color-green-dark) !important;
	box-shadow: none !important;
}

/* Trial Box Page Styles */
.as-trial-color-section {
	background-color: var(--color-bg-light);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 24px;
}

.as-trial-color-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px dashed var(--color-border);
}

.as-trial-color-row:last-child {
	border-bottom: none;
}

.as-trial-color-label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 14px;
}

.as-color-dot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	display: inline-block;
}

.as-color-dot.red {
	background-color: #DC3545;
}

.as-color-dot.white {
	background-color: #FFFFFF;
	border: 1px solid #CCCCCC;
}

.as-color-dot.pink {
	background-color: #E28C8C;
}

.as-color-dot.purple {
	background-color: #6F42C1;
}

.as-color-dot.yellow {
	background-color: #FFC107;
}

.as-trial-bunch-input-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
}

.as-trial-bunch-input {
	width: 80px;
	padding: 8px 12px;
	border: 1px solid var(--color-border);
	border-radius: 4px;
	text-align: center;
	font-size: 14px;
}

.as-trial-bunch-input:focus {
	outline: none;
	border-color: var(--color-crimson);
}

/* Sticky Bottom Trial CTA Bar */
.as-sticky-trial-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--color-white);
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
	z-index: 98;
	padding: 12px 24px;
	border-top: 1px solid var(--color-border);
	transition: transform 0.3s ease;
}

.as-sticky-trial-bar-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.as-sticky-trial-bar-text {
	font-size: 14px;
	color: var(--color-text-dark);
	font-weight: 500;
	margin: 0;
}

.as-sticky-trial-bar-text strong {
	color: var(--color-crimson);
}

.as-sticky-trial-bar-btn {
	padding: 10px 24px;
	font-size: 13px;
	border-radius: 4px;
}

@media (max-width: 768px) {
	.as-sticky-trial-bar {
		padding: 16px;
	}

	.as-sticky-trial-bar-content {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}
}

/* Color Pills for Trial Form */
.as-color-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	border: 1px solid var(--color-border);
	border-radius: 30px;
	background-color: var(--color-white);
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	transition: var(--transition);
	user-select: none;
	min-width: 120px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.as-color-pill:hover {
	border-color: var(--color-crimson);
	background-color: var(--color-bg-light);
}

/* Color Pill Active States with specific matching color schemes */
.as-color-pill[data-color="red"].active {
	border-color: #DC3545;
	background-color: #FAF0EB;
	color: #DC3545;
}
.as-color-pill[data-color="white"].active {
	border-color: #6C757D;
	background-color: #F8F9FA;
	color: #495057;
}
.as-color-pill[data-color="pink"].active {
	border-color: #E28C8C;
	background-color: #FFF0F0;
	color: #C25C5C;
}
.as-color-pill[data-color="purple"].active {
	border-color: #6F42C1;
	background-color: #F3EFFF;
	color: #5A2B9A;
}
.as-color-pill[data-color="yellow"].active {
	border-color: #FFC107;
	background-color: #FFFDF0;
	color: #856404;
}

/* Red Dot styling */
.as-color-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.as-color-dot.red { background-color: #DC3545; }
.as-color-dot.white { background-color: #FFFFFF; border: 1px solid #CCCCCC; }
.as-color-dot.pink { background-color: #E28C8C; }
.as-color-dot.purple { background-color: #6F42C1; }
.as-color-dot.yellow { background-color: #FFC107; }

/* Product card description styling */
.as-product-description {
	font-size: 13px;
	color: var(--color-text-muted);
	margin-top: 10px;
	margin-bottom: 12px;
	line-height: 1.5;
}
.as-product-description p {
	margin-bottom: 6px;
}
.as-product-description p:last-child {
	margin-bottom: 0;
}