/* ==========================================================================
   Floweriopot — Main Component Stylesheet
   Mobile-first. No external frameworks. Tokens defined in style.css :root.
   ========================================================================== */

/* --------------------------------------------------------------------------
   LAYOUT HELPERS
   -------------------------------------------------------------------------- */
/* Smooth scroll behavior */
html {
	scroll-behavior: smooth;
}

.container {
	width: 100%;
	max-width: var(--container-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.section-padding {
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

/* Parallax background effect */
.section-padding::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -10%;
	width: 120%;
	height: 200%;
	background: radial-gradient(circle, rgba(45, 106, 45, 0.03) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.section-padding > * {
	position: relative;
	z-index: 1;
}

.bg-light {
	background-color: var(--color-bg-light);
	position: relative;
}

.bg-light::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(45, 106, 45, 0.05) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.bg-primary {
	background-color: var(--color-primary);
	position: relative;
	overflow: hidden;
}

.bg-primary::before {
	content: '';
	position: absolute;
	top: -100px;
	left: -100px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	animation: float 20s infinite ease-in-out;
	pointer-events: none;
}

.bg-primary::after {
	content: '';
	position: absolute;
	bottom: -150px;
	right: -150px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	animation: float 25s infinite ease-in-out reverse;
	pointer-events: none;
}

@keyframes float {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(30px, -30px) scale(1.1);
	}
	66% {
		transform: translate(-20px, 20px) scale(0.9);
	}
}

.text-white {
	color: var(--color-white);
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white p {
	color: var(--color-white);
}

.text-center {
	text-align: center;
}

.mt-20 {
	margin-top: 20px;
}

.mt-40 {
	margin-top: 40px;
}

.section-tag {
	display: inline-block;
	font-family: var(--font-primary);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--color-secondary);
	background-color: var(--color-light-green);
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: 15px;
}

/* --------------------------------------------------------------------------
   SECTION HEADERS
   -------------------------------------------------------------------------- */
.section-header {
	margin-bottom: 50px;
}

.section-header h2 {
	font-family: var(--font-heading);
	font-size: 2.25rem;
	margin-bottom: 15px;
}

.section-header p {
	color: var(--color-text-grey);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	padding: 14px 28px;
	border: 2px solid transparent;
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	text-decoration: none;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::before {
	width: 400px;
	height: 400px;
	transition: width 0s, height 0s;
}

.btn--primary {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	color: var(--color-white);
	border-color: var(--color-primary);
}

.btn--primary:hover,
.btn--primary:focus {
	background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
	border-color: var(--color-primary-dark);
	color: var(--color-white);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 25px rgba(45, 106, 45, 0.4);
}

.btn--outline {
	background-color: transparent;
	color: var(--color-primary);
	border-color: var(--color-primary);
	box-shadow: none;
}

.btn--outline::before {
	background: var(--color-primary);
	opacity: 0.1;
}

.btn--outline:hover,
.btn--outline:focus {
	background-color: var(--color-primary);
	color: var(--color-white);
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(45, 106, 45, 0.3);
}

.btn--white {
	background-color: var(--color-white);
	color: var(--color-primary);
	border-color: var(--color-white);
}

.btn--white:hover,
.btn--white:focus {
	background-color: transparent;
	color: var(--color-white);
	transform: translateY(-3px);
}

.btn--outline-white {
	background-color: transparent;
	color: var(--color-white);
	border-color: var(--color-white);
	box-shadow: none;
}

.btn--outline-white:hover,
.btn--outline-white:focus {
	background-color: var(--color-white);
	color: var(--color-primary);
	transform: translateY(-3px);
}

.btn--sm {
	padding: 9px 18px;
	font-size: 0.875rem;
}

.btn--lg {
	padding: 18px 38px;
	font-size: 1.125rem;
}

.btn--full {
	width: 100%;
}

/* Icon animation in buttons */
.btn svg,
.btn i {
	transition: transform 0.3s ease;
}

.btn:hover svg,
.btn:hover i {
	transform: translateX(5px);
}

/* --------------------------------------------------------------------------
   TOP BAR
   -------------------------------------------------------------------------- */
/* Scroll progress bar */
.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 0%;
	height: 3px;
	background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
	z-index: 9999;
	transition: width 0.1s ease;
	box-shadow: 0 2px 10px rgba(45, 106, 45, 0.5);
}

.top-bar {
	background-color: var(--color-topbar-bg);
	padding: 10px 0;
	font-size: 0.875rem;
	position: relative;
	z-index: 998;
	overflow: visible;
}

.top-bar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.top-bar__left {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.top-bar__tagline {
	display: inline-flex;
	align-items: center;
	color: #ffffff !important;
	font-weight: 600;
	font-size: 0.9rem;
	padding-right: 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.top-bar__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--color-white);
}

.top-bar__item:hover {
	color: var(--color-accent);
}

.top-bar__icon {
	flex-shrink: 0;
}

.top-bar__right {
	display: flex;
	align-items: center;
	gap: 12px;
}

.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	transition: var(--transition);
}

.social-icon:hover {
	color: var(--color-accent);
	transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   SITE HEADER
   -------------------------------------------------------------------------- */
.site-header {
	background: linear-gradient(to bottom, #F5F1E8 0%, #FAF8F4 100%);
	padding: 8px 0;
	position: sticky;
	top: 0;
	z-index: 999;
	transition: var(--transition);
	border-bottom: 2px solid var(--color-accent);
	box-shadow: 0 2px 10px rgba(59, 26, 64, 0.08);
	overflow: visible;
}

.site-header.is-sticky {
	box-shadow: 0 4px 20px rgba(59, 26, 64, 0.15);
	background: linear-gradient(to bottom, #F5F1E8 0%, #FFFFFF 100%);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	position: relative;
	padding-top: 0;
	padding-bottom: 0;
	min-height: 50px;
}

/* Navigation center mein */
.site-header__inner .site-nav {
	flex: 1;
	display: flex;
	justify-content: center;
	margin-left: 200px;
}

/* CTA button right mein */
.site-header__inner .header-cta {
	flex-shrink: 0;
}

/* Logo ko flex calculation se bahar rakho */
.site-header__inner > .site-logo {
	position: absolute !important;
	flex: none !important;
	width: 0 !important;
	height: 0 !important;
	overflow: visible !important;
	pointer-events: none;
}

.site-header__inner > .site-logo * {
	pointer-events: auto;
}

/* ===================== LOGO HANGING EFFECT ===================== */
.site-logo {
	position: absolute !important;
	top: 100% !important;
	left: 20px !important;
	transform: translateY(-20px) !important;
	display: inline-block !important;
	transform-origin: top left !important;
	animation: logoSwing 3s ease-in-out infinite !important;
	padding-top: 0 !important;
	z-index: 1001 !important;
	margin-top: -10px !important;
	pointer-events: auto !important;
	width: auto !important;
	height: auto !important;
}

@keyframes logoSwing {
	0%, 100% {
		transform: translateY(-20px) rotate(0deg);
	}
	25% {
		transform: translateY(-20px) rotate(1deg);
	}
	75% {
		transform: translateY(-20px) rotate(-1deg);
	}
}

/* Hanging thread/rope - header se neeche latkta hua */
.site-logo::before {
	content: '' !important;
	position: absolute !important;
	top: -50px !important;
	left: 50% !important;
	width: 3px !important;
	height: 60px !important;
	background: linear-gradient(to bottom, rgba(200, 163, 95, 0.8) 0%, rgba(200, 163, 95, 0.4) 100%) !important;
	transform: translateX(-50%) !important;
	z-index: -1 !important;
	box-shadow: 0 0 3px rgba(200, 163, 95, 0.5) !important;
}

/* Decorative hook at top */
.site-logo::after {
	content: '' !important;
	position: absolute !important;
	top: -55px !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	width: 8px !important;
	height: 8px !important;
	background: #C8A35F !important;
	border-radius: 50% !important;
	box-shadow: 0 0 10px rgba(200, 163, 95, 0.8) !important;
	z-index: -1 !important;
}

@keyframes hookGlow {
	0%, 100% {
		opacity: 0.7;
		text-shadow: 0 0 8px rgba(200, 163, 95, 0.6);
	}
	50% {
		opacity: 1;
		text-shadow: 0 0 20px rgba(200, 163, 95, 1);
	}
}

.site-logo__title {
	font-family: var(--font-heading);
	font-size: 1.6rem;
	font-weight: 700;
	margin: 0;
}

.site-logo__title a {
	color: var(--color-primary);
}

.site-logo img,
.custom-logo {
	max-height: 160px;
	max-width: 450px;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: all 0.3s ease;
	filter: drop-shadow(0 8px 20px rgba(59, 26, 64, 0.2));
	display: block !important;
	background: white;
	padding: 15px;
	border-radius: 12px;
}

.site-logo:hover img,
.site-logo:hover .custom-logo {
	filter: drop-shadow(0 8px 25px rgba(59, 26, 64, 0.25));
	transform: scale(1.05);
}

/* Dynamic logo size from customizer */
body.has-custom-logo-size .site-logo img,
body.has-custom-logo-size .custom-logo {
	max-width: var(--logo-width, 250px);
	max-height: var(--logo-height, 80px);
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 30px;
}

.site-nav__list a {
	color: var(--color-text-dark);
	font-weight: 500;
	position: relative;
}

.site-nav__list a:hover {
	color: var(--color-primary);
}

.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a {
	color: var(--color-primary);
}

.site-nav .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: var(--color-white);
	box-shadow: var(--box-shadow);
	border-radius: var(--border-radius);
	padding: 10px 0;
	z-index: 1001;
}

.site-nav__list li {
	position: relative;
}

.site-nav__list li:hover > .sub-menu {
	display: block;
}

.site-nav .sub-menu li a {
	display: block;
	padding: 8px 20px;
}

.header-cta {
	flex-shrink: 0;
}

/* Hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 0;
	width: 40px;
	height: 40px;
}

.hamburger span {
	display: block;
	width: 25px;
	height: 3px;
	margin: 3px auto;
	background-color: var(--color-text-dark);
	border-radius: 3px;
	transition: var(--transition);
}

.hamburger.is-active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
	opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   HERO SLIDER (Full Width with Aspect Ratio)
   -------------------------------------------------------------------------- */
.hero-slider-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: var(--color-white);
	margin-top: 50px;
	padding-top: 30px;
	z-index: 1;
}

.hero-slider-aspect-wrapper {
	aspect-ratio: 12 / 5;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	position: relative;
}

.hero-slider-inner {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	z-index: 10;
}

.hero-slide.is-active {
	opacity: 1;
	z-index: 20;
}

.hero-slide-image-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-slide-image {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.hero-slider-dots {
	position: absolute;
	bottom: 16px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 8px;
	z-index: 30;
}

.hero-slider-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	border: none;
	cursor: pointer;
	transition: var(--transition);
	padding: 0;
}

.hero-slider-dot.is-active {
	background-color: var(--color-primary);
	transform: scale(1.2);
}

.hero-slider-dot:hover {
	background-color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.hero-slider-aspect-wrapper {
		aspect-ratio: 16 / 9;
	}
	
	.hero-slide-image {
		object-fit: contain;
		object-position: center center;
		background-color: var(--color-bg-light);
	}
	
	.hero-slider-dots {
		bottom: 12px;
		gap: 6px;
		z-index: 40;
	}
	
	.hero-slider-dot {
		width: 8px;
		height: 8px;
	}
}

/* --------------------------------------------------------------------------
   HERO OVERLAY PRODUCTS SLIDER - DISABLED (User Request)
   Hero overlay products slider completely hidden on all devices
   -------------------------------------------------------------------------- */
.hero-overlay-products {
	display: none !important;
}

/* Overlay slider styles - DISABLED
.hero-overlay-track {
	display: flex;
	gap: 20px;
	transition: transform 0.5s ease;
	will-change: transform;
}

.hero-overlay-slide {
	min-width: 200px;
	flex-shrink: 0;
}

.hero-product-card {
	display: block;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: var(--transition);
	text-decoration: none;
}

.hero-product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-product-image {
	width: 100%;
	height: 180px;
	overflow: hidden;
	background: var(--color-white);
}

.hero-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.hero-product-card:hover .hero-product-image img {
	transform: scale(1.1);
}

.hero-product-title {
	padding: 15px;
	text-align: center;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--color-text-dark);
	margin: 0;
	line-height: 1.3;
}

.hero-overlay-prev,
.hero-overlay-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.9);
	border: none;
	font-size: 1.5rem;
	line-height: 1;
	color: var(--color-primary);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: var(--transition);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-overlay-prev:hover,
.hero-overlay-next:hover {
	background-color: var(--color-primary);
	color: var(--color-white);
	transform: translateY(-50%) scale(1.1);
}

.hero-overlay-prev {
	left: 0;
}

.hero-overlay-next {
	right: 0;
}
*/

/* Responsive overlay products - DISABLED
@media (max-width: 1024px) {
	.hero-overlay-products {
		bottom: 40px;
		padding: 0 40px;
	}
	
	.hero-overlay-slide {
		min-width: 180px;
	}
	
	.hero-product-image {
		height: 150px;
	}
}
*/



/* --------------------------------------------------------------------------
   GRIDS
   -------------------------------------------------------------------------- */
.categories-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.cities-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.contact-grid {
	display: grid;
	grid-template-columns: 40% 60%;
	gap: 0;
}

.info-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	text-align: center;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* --------------------------------------------------------------------------
   CATEGORY CARDS
   -------------------------------------------------------------------------- */
.category-card {
	display: block;
	background: var(--color-white);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--box-shadow);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
}

.category-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(45, 106, 45, 0.1) 0%, transparent 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
	pointer-events: none;
}

.category-card:hover::before {
	opacity: 1;
}

.category-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 12px 40px rgba(45, 106, 45, 0.2);
}

.category-card__image {
	overflow: hidden;
	position: relative;
}

.category-card__image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4));
	opacity: 0;
	transition: opacity 0.4s ease;
}

.category-card:hover .category-card__image::after {
	opacity: 1;
}

.category-card__image img {
	width: 100%;
	height: 200px;
	object-fit: contain;
	transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	background: var(--color-bg-light);
}

.category-card:hover .category-card__image img {
	transform: scale(1.15) rotate(2deg);
}

.category-card__title {
	padding: 15px;
	text-align: center;
	background: var(--color-white);
	position: relative;
	z-index: 2;
	transition: all 0.3s ease;
}

.category-card:hover .category-card__title {
	background: var(--color-light-green);
}

.category-card__title h3 {
	font-size: 1.2rem;
	margin: 0;
	transition: color 0.3s ease;
}

.category-card:hover .category-card__title h3 {
	color: var(--color-primary);
	transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   FEATURE CARDS
   -------------------------------------------------------------------------- */
.feature-card {
	background: var(--color-white);
	padding: 40px 30px;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	text-align: center;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
	transition: left 0.6s ease;
}

.feature-card:hover::before {
	left: 100%;
}

.feature-card:hover {
	transform: translateY(-10px) scale(1.03);
	box-shadow: 0 15px 50px rgba(45, 106, 45, 0.2);
}

.feature-card__icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--color-light-green) 0%, #d4edda 100%);
	color: var(--color-primary);
	border-radius: 50%;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
}

.feature-card__icon::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: var(--color-primary);
	opacity: 0;
	transform: scale(0);
	transition: all 0.4s ease;
}

.feature-card:hover .feature-card__icon {
	transform: scale(1.2) rotate(360deg);
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	color: var(--color-white);
}

.feature-card:hover .feature-card__icon::before {
	opacity: 0.2;
	transform: scale(1.3);
}

.feature-card__icon svg,
.feature-card__icon img {
	width: 35px;
	height: 35px;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}

.feature-card:hover .feature-card__icon svg,
.feature-card:hover .feature-card__icon img {
	filter: brightness(0) invert(1);
}

.feature-card h3 {
	font-size: 1.25rem;
	margin-bottom: 12px;
	transition: color 0.3s ease;
}

.feature-card:hover h3 {
	color: var(--color-primary);
}

.feature-card p {
	transition: transform 0.3s ease;
}

.feature-card:hover p {
	transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   CITY CARDS
   -------------------------------------------------------------------------- */
.city-card {
	background: var(--color-white);
	padding: 25px;
	border-radius: var(--border-radius);
	border-left: 4px solid var(--color-primary);
	box-shadow: var(--box-shadow);
	transition: var(--transition);
}

.city-card:hover {
	border-left-color: var(--color-accent);
	transform: translateY(-3px);
	box-shadow: var(--box-shadow-hover);
}

.city-card h3 {
	font-size: 1.25rem;
	margin-bottom: 10px;
}

.city-card a {
	font-weight: 500;
	display: inline-block;
	margin-top: 10px;
}

/* --------------------------------------------------------------------------
   PRODUCT CARDS
   -------------------------------------------------------------------------- */
.product-card {
	background: var(--color-white);
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	display: flex;
	flex-direction: column;
	position: relative;
}

.product-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 2px solid var(--color-primary);
	border-radius: var(--border-radius);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.product-card:hover::after {
	opacity: 1;
}

.product-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 15px 50px rgba(45, 106, 45, 0.25);
}

.product-card.is-hidden {
	display: none;
}

.product-card__image {
	position: relative;
	height: 220px;
	overflow: hidden;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.product-card__image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom right, rgba(255,255,255,0.3), transparent);
	z-index: 1;
	pointer-events: none;
}

.product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	z-index: 0;
	background: var(--color-white);
}

.product-card:hover .product-card__image img {
	transform: scale(1.2) rotate(3deg);
}

.product-card__badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	color: var(--color-white);
	font-size: 0.75rem;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 20px;
	z-index: 2;
	box-shadow: 0 4px 15px rgba(45, 106, 45, 0.4);
	animation: bounce 2s infinite;
}

/* New badge (ribbon style) */
.product-card__badge.ribbon {
	left: -5px;
	top: 15px;
	border-radius: 0 20px 20px 0;
	padding: 6px 16px 6px 12px;
	box-shadow: 0 4px 15px rgba(45, 106, 45, 0.4);
}

.product-card__badge.ribbon::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid var(--color-primary-dark);
	border-bottom: 5px solid transparent;
}

.product-card__body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex-grow: 1;
	background: linear-gradient(to bottom, var(--color-white) 0%, #fafafa 100%);
	transition: background 0.3s ease;
}

.product-card:hover .product-card__body {
	background: linear-gradient(to bottom, var(--color-white) 0%, var(--color-light-green) 100%);
}

.product-card__title {
	font-size: 1.15rem;
	margin: 0;
	transition: all 0.3s ease;
}

.product-card__title a {
	color: var(--color-text-dark);
	transition: all 0.3s ease;
	position: relative;
}

.product-card__title a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-primary);
	transition: width 0.3s ease;
}

.product-card:hover .product-card__title a::after {
	width: 100%;
}

.product-card__title a:hover {
	color: var(--color-primary);
}

.product-card__excerpt {
	font-size: 0.9rem;
	margin: 0;
	flex-grow: 1;
	line-height: 1.6;
}

.product-card .btn {
	align-self: flex-start;
	margin-top: 5px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.product-card .btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.product-card .btn:hover::before {
	width: 300px;
	height: 300px;
}

/* --------------------------------------------------------------------------
   ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-image img {
	width: 100%;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
}

.about-content h2 {
	margin-bottom: 20px;
}

.about-badges {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin: 25px 0;
}

.about-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	color: var(--color-text-dark);
}

.about-badge::before {
	content: "\2713";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	background: var(--color-light-green);
	color: var(--color-primary);
	border-radius: 50%;
	font-size: 0.8rem;
	flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   CITIES SECTION
   -------------------------------------------------------------------------- */
.cities-section .section-header,
.cities-section h2 {
	margin-bottom: 15px;
}

.cities-section > .container > p {
	max-width: 700px;
	margin: 0 auto 40px;
	text-align: center;
}

/* --------------------------------------------------------------------------
   CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-grid {
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--box-shadow);
}

.contact-info {
	background: var(--color-primary);
	color: var(--color-white);
	padding: 50px 40px;
}

.contact-info h2 {
	color: var(--color-white);
	margin-bottom: 15px;
}

.contact-info p {
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 30px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 25px;
}

.contact-item svg {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	fill: var(--color-white);
}

.contact-item a {
	color: var(--color-white);
}

.contact-item a:hover {
	color: var(--color-accent);
}

.contact-form-wrapper {
	background: var(--color-white);
	padding: 50px 40px;
}

.contact-form-wrapper h3 {
	margin-bottom: 25px;
}

/* --------------------------------------------------------------------------
   FORMS
   -------------------------------------------------------------------------- */
.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-weight: 500;
	margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	font-family: var(--font-primary);
	transition: var(--transition);
	background-color: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(45, 106, 45, 0.1);
}

.form-group textarea {
	height: 120px;
	resize: vertical;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

#form-response {
	margin-top: 15px;
	font-weight: 500;
}

#form-response .form-success {
	color: var(--color-primary);
	background: var(--color-light-green);
	padding: 12px 15px;
	border-radius: 6px;
}

#form-response .form-error {
	color: #b00020;
	background: #fdecea;
	padding: 12px 15px;
	border-radius: 6px;
}

.btn.is-loading {
	opacity: 0.7;
	pointer-events: none;
}

.btn .spinner {
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-top-color: var(--color-white);
	border-radius: 50%;
	animation: spin 0.7s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* --------------------------------------------------------------------------
   FILTER BAR
   -------------------------------------------------------------------------- */
.filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-bottom: 40px;
}

.filter-btn {
	padding: 10px 20px;
	border: 1px solid var(--color-border);
	border-radius: 30px;
	background: var(--color-white);
	color: var(--color-text-dark);
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-white);
}

/* --------------------------------------------------------------------------
   CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner {
	padding: 70px 0;
	background: var(--color-primary);
	color: var(--color-white);
}

.cta-banner h2 {
	color: var(--color-white);
	margin-bottom: 15px;
}

.cta-banner p {
	color: rgba(255, 255, 255, 0.9);
	max-width: 600px;
	margin: 0 auto 30px;
}

.cta-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   PAGE BANNER
   -------------------------------------------------------------------------- */
.page-banner {
	padding: 60px 0;
	background: var(--color-primary);
	color: var(--color-white);
}

.page-banner__title {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	color: var(--color-white);
	margin-bottom: 10px;
}

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.875rem;
}

.breadcrumb a {
	color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
	color: var(--color-white);
}

.breadcrumb__sep {
	opacity: 0.6;
}

/* --------------------------------------------------------------------------
   SINGLE PRODUCT
   -------------------------------------------------------------------------- */
.product-detail-grid {
	display: grid;
	grid-template-columns: 45% 55%;
	gap: 50px;
	margin-bottom: 60px;
}

.gallery-main {
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--box-shadow);
}

.gallery-main__image {
	width: 100%;
	height: auto;
	object-fit: contain;
	background: var(--color-bg-light);
}

.gallery-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 15px;
}

.gallery-thumb {
	width: 80px;
	height: 80px;
	border-radius: 6px;
	overflow: hidden;
	border: 2px solid transparent;
	padding: 0;
	cursor: pointer;
}

.gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: var(--color-bg-light);
}

.gallery-thumb.is-active {
	border-color: var(--color-primary);
}

.product-details__title {
	font-size: 2rem;
	margin: 10px 0 15px;
}

.product-categories-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.tag {
	display: inline-block;
	background: var(--color-light-green);
	color: var(--color-primary);
	font-size: 0.8rem;
	padding: 4px 12px;
	border-radius: 20px;
}

.product-description {
	margin-bottom: 20px;
}

.product-meta-row,
.product-sizes {
	margin-bottom: 15px;
	padding: 12px 15px;
	background: var(--color-bg-light);
	border-radius: 6px;
}

.product-meta-row strong,
.product-sizes strong {
	margin-right: 8px;
}

.related-products__title {
	margin-bottom: 30px;
	text-align: center;
}

/* --------------------------------------------------------------------------
   STATS BAR
   -------------------------------------------------------------------------- */
.stat-item__number,
.stat-item__suffix {
	font-family: var(--font-heading);
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--color-white);
}

.stat-item__label {
	color: rgba(255, 255, 255, 0.85);
	margin-top: 8px;
}

/* --------------------------------------------------------------------------
   INFO CARDS (Contact page)
   -------------------------------------------------------------------------- */
.info-card {
	background: var(--color-white);
	padding: 40px 30px;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	text-align: center;
	transition: var(--transition);
}

.info-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--box-shadow-hover);
}

.info-card__icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	background: var(--color-light-green);
	color: var(--color-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.info-card a {
	color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   GALLERY GRID (workshop)
   -------------------------------------------------------------------------- */
.gallery-grid__item {
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--box-shadow);
}

.gallery-grid__item img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: var(--transition);
}

.gallery-grid__item:hover img {
	transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   CONTACT MAP
   -------------------------------------------------------------------------- */
.contact-map iframe {
	display: block;
	width: 100%;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
	background-color: var(--color-footer-bg);
	color: rgba(255, 255, 255, 0.75);
}

.footer-main {
	padding: 60px 0 40px;
}

.footer-brand__title,
.footer-col__title {
	color: var(--color-white);
	font-size: 1.2rem;
	margin-bottom: 20px;
}

.footer-brand__logo {
	margin-bottom: 15px;
}

.footer-brand__logo img {
	max-height: 60px;
	width: auto;
}

.footer-brand__desc {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	margin-bottom: 20px;
}

.footer-social {
	display: flex;
	gap: 12px;
}

.footer-menu li {
	margin-bottom: 10px;
}

.footer-menu a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
}

.footer-menu a:hover {
	color: var(--color-accent);
	padding-left: 5px;
}

.footer-contact__list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.footer-contact__item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.9rem;
}

.footer-contact__icon {
	flex-shrink: 0;
	fill: var(--color-accent);
	margin-top: 2px;
}

.footer-contact__item a {
	color: rgba(255, 255, 255, 0.7);
}

.footer-contact__item a:hover {
	color: var(--color-accent);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px 0;
}

.footer-bottom .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-bottom__copy {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.85rem;
	margin: 0;
}

.footer-bottom__nav {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.85rem;
}

.footer-bottom__nav a {
	color: rgba(255, 255, 255, 0.7);
}

.footer-bottom__nav a:hover {
	color: var(--color-accent);
}

.footer-bottom__sep {
	opacity: 0.4;
}

/* --------------------------------------------------------------------------
   WHATSAPP FLOAT
   -------------------------------------------------------------------------- */
.whatsapp-float {
	position: fixed;
	bottom: 25px;
	right: 25px;
	z-index: 999;
	width: 55px;
	height: 55px;
	background-color: #25d366;
	color: var(--color-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	animation: pulse 2s infinite;
	transition: all 0.3s ease;
}

.whatsapp-float:hover {
	color: var(--color-white);
	transform: scale(1.15);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
	}
	70% {
		box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}

/* --------------------------------------------------------------------------
   BACK TO TOP BUTTON
   -------------------------------------------------------------------------- */
.back-to-top {
	position: fixed;
	bottom: 95px;
	right: 25px;
	z-index: 998;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	color: var(--color-white);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(45, 106, 45, 0.3);
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 6px 20px rgba(45, 106, 45, 0.5);
}

.back-to-top:active {
	transform: translateY(-3px) scale(1.05);
}

.back-to-top svg {
	width: 24px;
	height: 24px;
}

/* Pulse animation for back to top */
.back-to-top::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: var(--color-primary);
	animation: pulse-ring 2s infinite;
	opacity: 0;
}

@keyframes pulse-ring {
	0% {
		transform: scale(1);
		opacity: 0.5;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}

/* --------------------------------------------------------------------------
   ERROR 404
   -------------------------------------------------------------------------- */
.error-404__code {
	font-family: var(--font-heading);
	font-size: 6rem;
	font-weight: 700;
	color: var(--color-primary);
	line-height: 1;
}

.error-404__title {
	margin: 10px 0 15px;
}

.error-404__search {
	max-width: 450px;
	margin: 30px auto 0;
}

.error-404__actions {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   BLOG / INDEX
   -------------------------------------------------------------------------- */
.content-with-sidebar {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 40px;
}

.blog-card {
	background: var(--color-white);
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	overflow: hidden;
	margin-bottom: 30px;
}

.blog-card__image img {
	width: 100%;
	height: 280px;
	object-fit: cover;
}

.blog-card__body {
	padding: 25px;
}

.blog-card__title {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.blog-card__meta {
	display: flex;
	gap: 15px;
	font-size: 0.85rem;
	color: var(--color-text-grey);
	margin-bottom: 15px;
}

.widget {
	margin-bottom: 30px;
	background: var(--color-white);
	padding: 25px;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
}

.widget-title {
	margin-bottom: 15px;
	font-size: 1.2rem;
}

.widget ul li {
	padding: 6px 0;
	border-bottom: 1px solid var(--color-bg-light);
}

.search-form {
	display: flex;
	gap: 8px;
}

.search-form .search-field {
	flex-grow: 1;
	padding: 10px 12px;
	border: 1px solid var(--color-border);
	border-radius: 6px;
}

.search-form .search-submit {
	padding: 10px 18px;
	background: var(--color-primary);
	color: var(--color-white);
	border-radius: 6px;
	cursor: pointer;
}

/* --------------------------------------------------------------------------
   PAGINATION
   -------------------------------------------------------------------------- */
.pagination {
	margin-top: 50px;
	text-align: center;
}

.pagination .page-numbers {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	padding: 0;
}

.pagination .page-numbers li {
	list-style: none;
}

.pagination .page-numbers a,
.pagination .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border-radius: 6px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	color: var(--color-text-dark);
}

.pagination .page-numbers a:hover,
.pagination .page-numbers .current {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-white);
}

/* --------------------------------------------------------------------------
   SCROLL ANIMATIONS
   -------------------------------------------------------------------------- */
.animate-in {
	animation: fadeInUp 0.6s ease both;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Fade in from left */
@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Fade in from right */
@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Scale in animation */
@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Bounce effect */
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

/* Stagger animations for cards */
.category-card,
.product-card,
.feature-card,
.city-card {
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

/* Hero slider entrance */
.hero-slider-container {
	animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* Section headers animation */
.section-header {
	animation: fadeInUp 0.8s ease;
}

.section-tag {
	display: inline-block;
	animation: fadeInLeft 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
	
	.category-card,
	.product-card,
	.feature-card,
	.city-card {
		opacity: 1;
		animation: none;
	}
}

/* ==========================================================================
   RESPONSIVE — LAPTOP (max 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
	.categories-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.cities-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.content-with-sidebar {
		grid-template-columns: 1fr;
	}

	.header-cta {
		display: none;
	}
}

/* ==========================================================================
   RESPONSIVE — TABLET (max 768px)
   ========================================================================== */
@media (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	.section-header h2 {
		font-size: 1.75rem;
	}

	.categories-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.cities-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.info-cards-grid {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.product-detail-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	/* Mobile navigation */
	.site-nav {
		position: fixed;
		top: 0;
		right: 0;
		width: 80%;
		max-width: 320px;
		height: 100vh;
		background: var(--color-white);
		box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
		transform: translateX(100%);
		transition: transform 0.3s ease;
		padding: 80px 30px 30px;
		overflow-y: auto;
		z-index: 1005;
	}

	.site-nav.is-open {
		transform: translateX(0);
	}

	.site-nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
	}

	.site-nav__list li {
		width: 100%;
		border-bottom: 1px solid var(--color-bg-light);
	}

	.site-nav__list a {
		display: block;
		padding: 14px 0;
	}

	.site-nav .sub-menu {
		position: static;
		display: block;
		box-shadow: none;
		padding: 0 0 0 15px;
	}

	.hamburger {
		display: flex;
		z-index: 1010;
	}

	.top-bar__right {
		display: none;
	}

	.slide {
		height: 300px;
	}

	.footer-bottom .container {
		flex-direction: column;
		text-align: center;
	}
}

/* ==========================================================================
   RESPONSIVE — MOBILE (max 480px)
   ========================================================================== */
@media (max-width: 480px) {
	.categories-grid {
		grid-template-columns: 1fr;
	}

	.products-grid {
		grid-template-columns: 1fr;
	}

	.cities-grid {
		grid-template-columns: 1fr;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.about-badges {
		grid-template-columns: 1fr;
	}

	.section-padding {
		padding: 50px 0;
	}

	.contact-info,
	.contact-form-wrapper {
		padding: 30px 20px;
	}

	.slide {
		height: 220px;
	}

	.slider-prev,
	.slider-next {
		width: 40px;
		height: 40px;
		font-size: 1.4rem;
	}

	.top-bar__left {
		justify-content: center;
		font-size: 0.78rem;
		flex-direction: column;
		gap: 8px;
	}

	.top-bar__tagline {
		font-size: 0.8rem;
		padding-right: 0;
		border-right: none;
		text-align: center;
		padding-bottom: 8px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}

	.top-bar .container {
		justify-content: center;
	}
}

/* --------------------------------------------------------------------------
   PRODUCTS SLIDER
   -------------------------------------------------------------------------- */
.products-slider-section {
	background: var(--color-bg-light);
}

.products-slider-wrapper {
	position: relative;
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 60px;
}

.products-slider-track {
	display: flex;
	gap: 30px;
	overflow: hidden;
	scroll-behavior: smooth;
}

.products-slide {
	min-width: calc(33.333% - 20px);
	flex-shrink: 0;
	transition: transform 0.5s ease;
}

.products-slider-prev,
.products-slider-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	color: var(--color-primary);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: var(--transition);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.products-slider-prev:hover,
.products-slider-next:hover {
	background-color: var(--color-primary);
	color: var(--color-white);
	border-color: var(--color-primary);
	transform: translateY(-50%) scale(1.05);
}

.products-slider-prev:disabled,
.products-slider-next:disabled {
	opacity: 0.3;
	cursor: not-allowed;
	pointer-events: none;
}

.products-slider-prev {
	left: 0;
}

.products-slider-next {
	right: 0;
}

.products-slider-dots {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 30px;
}

.products-slider-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #ccc;
	border: none;
	cursor: pointer;
	transition: var(--transition);
	padding: 0;
}

.products-slider-dot.is-active {
	background-color: var(--color-primary);
	width: 30px;
	border-radius: 5px;
}

/* Tablet view - 2 products */
@media (max-width: 1024px) {
	.products-slide {
		min-width: calc(50% - 15px);
	}
}

/* Mobile view - 1 product */
@media (max-width: 768px) {
	.products-slider-section {
		padding: 50px 0;
	}
	
	.products-slider-wrapper {
		padding: 0 45px;
	}
	
	.products-slide {
		min-width: 100%;
	}
	
	.products-slider-prev,
	.products-slider-next {
		width: 36px;
		height: 36px;
	}
	
	.products-slider-prev svg,
	.products-slider-next svg {
		width: 18px;
		height: 18px;
	}
	
	.products-slider-section .section-header {
		margin-bottom: 35px;
	}
	
	.products-slider-section .section-header h2 {
		font-size: 1.75rem;
	}
}

@media (max-width: 480px) {
	.products-slider-section {
		padding: 40px 0;
	}
	
	.products-slider-wrapper {
		padding: 0 38px;
	}
	
	.products-slider-prev,
	.products-slider-next {
		width: 32px;
		height: 32px;
		font-size: 1.2rem;
	}
	
	.products-slider-section .section-header h2 {
		font-size: 1.5rem;
	}
}

/* ==========================================================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   TABLET & BELOW (max 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.container {
		padding-left: 15px;
		padding-right: 15px;
	}
	
	.section-padding {
		padding: 60px 0;
	}
	
	/* Header */
	.site-logo img,
	.custom-logo {
		max-height: 60px;
	}
	
	.site-nav__list {
		gap: 20px;
	}
	
	.header-cta {
		display: none;
	}
	
	/* Grids */
	.categories-grid,
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
	
	.cities-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
	}
	
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	
	.about-grid {
		gap: 40px;
	}
	
	.contact-grid {
		grid-template-columns: 1fr;
	}
	
	.product-detail-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.info-cards-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	/* Products Slider */
	.products-slider-wrapper {
		padding: 0 45px;
	}
}

/* --------------------------------------------------------------------------
   MOBILE (max 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
	/* Typography */
	h1 {
		font-size: 2rem;
		line-height: 1.2;
	}
	
	h2 {
		font-size: 1.75rem;
		line-height: 1.3;
	}
	
	h3 {
		font-size: 1.35rem;
	}
	
	.section-header h2 {
		font-size: 1.75rem;
		margin-bottom: 12px;
	}
	
	.section-header p {
		font-size: 0.95rem;
	}
	
	/* Layout */
	.container {
		padding-left: 12px;
		padding-right: 12px;
	}
	
	.section-padding {
		padding: 50px 0;
	}
	
	/* Add better spacing between sections */
	.front-page section + section {
		margin-top: 0;
	}
	
	.mt-40 {
		margin-top: 25px;
	}
	
	/* Top Bar */
	.top-bar {
		font-size: 0.75rem;
		padding: 8px 0;
	}
	
	.top-bar__tagline {
		font-size: 0.7rem;
		padding-bottom: 6px;
	}
	
	.top-bar .container {
		flex-direction: column;
		gap: 10px;
	}
	
	.top-bar__left {
		width: 100%;
		justify-content: center;
		gap: 15px;
	}
	
	.top-bar__right {
		display: none;
	}
	
	/* Header - Mobile Menu */
	.site-header {
		padding: 8px 0;
	}
	
	.site-header__inner {
		padding-top: 0;
		padding-bottom: 0;
		min-height: 45px;
	}
	
	.site-header__inner .site-nav {
		margin-left: 0;
	}
	
	.site-logo {
		top: 100% !important;
		left: 10px !important;
		transform: translateY(-15px) !important;
	}
	
	.site-logo::before {
		height: 40px !important;
		top: -40px !important;
	}
	
	.site-logo::after {
		top: -43px !important;
	}
	
	.site-logo img,
	.custom-logo {
		max-height: 80px;
		padding: 10px;
	}
	
	.hero-slider-container {
		margin-top: 40px;
		padding-top: 20px;
	}
	
	.site-nav {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: var(--color-white);
		z-index: 9999;
		padding: 80px 20px 20px;
		overflow-y: auto;
	}
	
	.site-nav.is-active {
		display: block;
	}
	
	.site-nav__list {
		flex-direction: column;
		gap: 0;
		align-items: flex-start;
	}
	
	.site-nav__list li {
		width: 100%;
		border-bottom: 1px solid var(--color-bg-light);
	}
	
	.site-nav__list a {
		display: block;
		padding: 15px 10px;
		font-size: 1.1rem;
	}
	
	.site-nav .sub-menu {
		position: static;
		display: none;
		box-shadow: none;
		padding: 0 0 0 20px;
		background: transparent;
	}
	
	.site-nav__list li.menu-item-has-children > a::after {
		content: " ▼";
		font-size: 0.7rem;
		float: right;
	}
	
	.hamburger {
		display: flex;
	}
	
	/* Grids - Mobile Stack */
	.categories-grid,
	.products-grid,
	.features-grid,
	.cities-grid,
	.footer-grid,
	.about-grid,
	.info-cards-grid,
	.stats-grid,
	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	/* 2 column grids on mobile */
	.categories-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	
	.cities-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	
	/* Products grid - full width on mobile for better display */
	.products-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	/* Cards */
	.feature-card,
	.info-card {
		padding: 30px 20px;
	}
	
	.feature-card__icon,
	.info-card__icon {
		width: 55px;
		height: 55px;
		margin-bottom: 15px;
	}
	
	.city-card {
		padding: 18px;
	}
	
	.product-card__image {
		height: 220px;
	}
	
	.product-card__body {
		padding: 18px;
	}
	
	.category-card__image img {
		height: 160px;
	}
	
	.category-card__title {
		padding: 18px 15px;
	}
	
	.category-card__title h3 {
		font-size: 1.1rem;
	}
	
	/* About Section */
	.about-grid {
		gap: 30px;
	}
	
	.about-badges {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	
	/* Contact */
	.contact-info,
	.contact-form-wrapper {
		padding: 30px 20px;
	}
	
	.form-row {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	/* Buttons */
	.btn {
		padding: 12px 24px;
		font-size: 0.95rem;
	}
	
	.btn--lg {
		padding: 14px 28px;
		font-size: 1rem;
	}
	
	.btn--sm {
		padding: 8px 16px;
		font-size: 0.85rem;
	}
	
	.cta-buttons {
		flex-direction: column;
		gap: 12px;
	}
	
	.cta-buttons .btn {
		width: 100%;
	}
	
	/* CTA Banner */
	.cta-banner {
		padding: 40px 0;
	}
	
	.cta-banner h2 {
		font-size: 1.75rem;
	}
	
	/* Page Banner */
	.page-banner {
		padding: 40px 0;
	}
	
	.page-banner__title {
		font-size: 1.75rem;
	}
	
	/* Single Product */
	.product-details__title {
		font-size: 1.5rem;
	}
	
	.gallery-thumbs {
		gap: 8px;
	}
	
	.gallery-thumb {
		width: 60px;
		height: 60px;
	}
	
	/* Footer */
	.footer-main {
		padding: 40px 0 30px;
	}
	
	.footer-brand__title,
	.footer-col__title {
		font-size: 1.1rem;
		margin-bottom: 15px;
	}
	
	.footer-bottom .container {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}
	
	.footer-bottom__nav {
		flex-wrap: wrap;
		justify-content: center;
	}
	
	/* WhatsApp Float */
	.whatsapp-float {
		width: 50px;
		height: 50px;
		bottom: 20px;
		right: 20px;
	}
	
	/* Products Slider */
	.products-slider-wrapper {
		padding: 0 40px;
	}
	
	.products-slider-prev,
	.products-slider-next {
		width: 35px;
		height: 35px;
	}
	
	.products-slider-prev svg,
	.products-slider-next svg {
		width: 20px;
		height: 20px;
	}
	
	/* Blog */
	.content-with-sidebar {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.blog-card__image img {
		height: 220px;
	}
	
	.blog-card__body {
		padding: 20px;
	}
	
	.blog-card__title {
		font-size: 1.25rem;
	}
	
	/* Error 404 */
	.error-404__code {
		font-size: 4rem;
	}
	
	/* Stats */
	.stat-item__number,
	.stat-item__suffix {
		font-size: 2rem;
	}
}

/* --------------------------------------------------------------------------
   EXTRA SMALL MOBILE (max 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
	/* Typography */
	h1 {
		font-size: 1.75rem;
		line-height: 1.2;
	}
	
	h2 {
		font-size: 1.5rem;
		line-height: 1.3;
	}
	
	h3 {
		font-size: 1.2rem;
	}
	
	.section-header h2 {
		font-size: 1.5rem;
		margin-bottom: 10px;
	}
	
	.section-header p {
		font-size: 0.9rem;
		line-height: 1.5;
	}
	
	/* Layout */
	.section-padding {
		padding: 40px 0;
	}
	
	.container {
		padding-left: 15px;
		padding-right: 15px;
	}
	
	/* Single column for categories */
	.categories-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.cities-grid {
		grid-template-columns: 1fr;
	}
	
	/* Buttons */
	.btn {
		padding: 11px 20px;
		font-size: 0.9rem;
	}
	
	.btn--lg {
		padding: 13px 24px;
		font-size: 0.95rem;
	}
	
	/* Cards */
	.product-card__image {
		height: 160px;
	}
	
	.feature-card,
	.info-card,
	.city-card {
		padding: 25px 15px;
	}
	
	.category-card__image img {
		height: 140px;
	}
	
	.category-card__title {
		padding: 15px 12px;
	}
	
	.category-card__title h3 {
		font-size: 1rem;
	}
	
	/* Better visual separation between sections */
	.bg-light {
		padding: 40px 0;
	}
	
	/* CTA Banner */
	.cta-banner {
		padding: 35px 0;
	}
	
	.cta-banner h2 {
		font-size: 1.5rem;
	}
	
	/* Products Slider */
	.products-slider-wrapper {
		padding: 0 35px;
	}
	
	/* Error 404 */
	.error-404__code {
		font-size: 3.5rem;
	}
}

/* --------------------------------------------------------------------------
   MOBILE MENU TOGGLE JAVASCRIPT
   -------------------------------------------------------------------------- */
/* Note: Add to main.js:
document.querySelector('.hamburger').addEventListener('click', function() {
	this.classList.toggle('is-active');
	document.querySelector('.site-nav').classList.toggle('is-active');
	document.body.classList.toggle('menu-open');
});
*/

/* Prevent body scroll when menu open */
body.menu-open {
	overflow: hidden;
}

/* --------------------------------------------------------------------------
   ACCESSIBILITY & TOUCH IMPROVEMENTS
   -------------------------------------------------------------------------- */
@media (hover: none) and (pointer: coarse) {
	/* Better touch targets on mobile */
	.btn,
	.filter-btn,
	.slider-dot,
	.products-slider-dot,
	.hero-slider-dot {
		min-height: 44px;
		min-width: 44px;
	}
	
	.site-nav__list a {
		padding: 18px 10px;
	}
	
	/* Remove hover effects on touch devices */
	.product-card:hover,
	.category-card:hover,
	.feature-card:hover,
	.city-card:hover,
	.info-card:hover {
		transform: none;
	}
	
	/* Keep image zoom on touch */
	.product-card:active .product-card__image img,
	.category-card:active .category-card__image img {
		transform: scale(1.05);
	}
}

/* --------------------------------------------------------------------------
   LANDSCAPE ORIENTATION FIX
   -------------------------------------------------------------------------- */
@media (max-width: 768px) and (orientation: landscape) {
	.hero-slider-aspect-wrapper {
		aspect-ratio: 21 / 9;
	}
	
	.hero-slide-image {
		object-fit: contain;
		object-position: center center;
		background-color: var(--color-bg-light);
	}
	
	.section-padding {
		padding: 35px 0;
	}
}

/* --------------------------------------------------------------------------
   PRINT STYLES
   -------------------------------------------------------------------------- */
@media print {
	.site-header,
	.site-footer,
	.whatsapp-float,
	.cta-banner,
	.hamburger,
	.products-slider-prev,
	.products-slider-next,
	.hero-slider-dots {
		display: none !important;
	}
	
	body {
		font-size: 12pt;
		color: #000;
		background: #fff;
	}
	
	a {
		text-decoration: underline;
		color: #000;
	}
	
	.container {
		max-width: 100%;
	}
}


/* ==========================================================================
   ENHANCED PAGE ANIMATIONS & TRANSITIONS
   ========================================================================== */

/* Animation base classes */
.animate-on-scroll {
	opacity: 0;
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
	opacity: 1;
}

/* Fade In Animations */
.fade-in {
	opacity: 0;
	animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-up {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-down {
	opacity: 0;
	transform: translateY(-30px);
	animation: fadeInDown 0.8s ease-out forwards;
}

/* Slide Animations */
.slide-in-left {
	opacity: 0;
	transform: translateX(-50px);
	animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
	opacity: 0;
	transform: translateX(50px);
	animation: slideInRight 0.8s ease-out forwards;
}

.slide-in-up {
	opacity: 0;
	transform: translateY(40px);
	animation: slideInUp 0.7s ease-out forwards;
}

/* Scale Animations */
.scale-in {
	opacity: 0;
	transform: scale(0.9);
	animation: scaleIn 0.6s ease-out forwards;
}

.zoom-in {
	opacity: 0;
	transform: scale(0.95);
	animation: zoomIn 0.7s ease-out forwards;
}

/* Animation Delays */
.delay-1 { animation-delay: 0.1s !important; }
.delay-2 { animation-delay: 0.2s !important; }
.delay-3 { animation-delay: 0.3s !important; }
.delay-4 { animation-delay: 0.4s !important; }
.delay-5 { animation-delay: 0.5s !important; }
.delay-6 { animation-delay: 0.6s !important; }

/* Keyframes */
@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInDown {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInLeft {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes scaleIn {
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes zoomIn {
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* ==========================================================================
   ENHANCED ABOUT PAGE STYLES
   ========================================================================== */

/* About Grid Enhancements */
.about-image .image-wrapper {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image .image-wrapper:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.about-image .image-wrapper img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.6s ease;
}

.about-image .image-wrapper:hover img {
	transform: scale(1.05);
}

.about-image .image-decoration {
	position: absolute;
	bottom: -10px;
	right: -10px;
	width: 200px;
	height: 200px;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
	opacity: 0.1;
	border-radius: 50%;
	z-index: -1;
	transition: transform 0.6s ease;
}

.about-image .image-wrapper:hover .image-decoration {
	transform: scale(1.2);
}

/* Enhanced Stats Bar */
.stat-item {
	position: relative;
	padding: 20px;
	transition: transform 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-5px);
}

.stat-item .stat-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.1;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.stat-item:hover .stat-icon {
	opacity: 0.2;
}

.stat-item__number {
	display: inline-block;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	position: relative;
	z-index: 1;
}

/* Workshop Gallery Enhancements */
.gallery-grid__item {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	cursor: pointer;
}

.gallery-image-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	background: #f5f5f5;
}

.gallery-image-wrapper img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-grid__item:hover .gallery-image-wrapper img {
	transform: scale(1.1);
	filter: brightness(0.8);
}

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(45, 106, 45, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 2;
}

.gallery-grid__item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-icon {
	color: white;
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

.gallery-grid__item:hover .gallery-icon {
	transform: scale(1);
}

/* ==========================================================================
   ENHANCED CONTACT PAGE STYLES
   ========================================================================== */

.info-card {
	position: relative;
	padding: 40px 30px;
	background: white;
	border-radius: 12px;
	border: 2px solid #f0f0f0;
	text-align: center;
	transition: all 0.4s ease;
	overflow: hidden;
}

.info-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.info-card:hover::before {
	transform: scaleX(1);
}

.info-card:hover {
	border-color: var(--color-primary);
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.info-card__icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
	color: white;
	border-radius: 50%;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.info-card:hover .info-card__icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 10px 30px rgba(45, 106, 45, 0.3);
}

/* ==========================================================================
   ENHANCED PRODUCT & LANDING PAGE STYLES
   ========================================================================== */

.feature-card {
	position: relative;
	padding: 35px 25px;
	background: white;
	border-radius: 12px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid transparent;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(45, 106, 45, 0.05) 0%, rgba(85, 139, 47, 0.05) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 0;
}

.feature-card:hover::before {
	opacity: 1;
}

.feature-card:hover {
	transform: translateY(-8px);
	border-color: var(--color-primary);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.feature-card__icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
	color: white;
	border-radius: 20px;
	transition: all 0.4s ease;
	position: relative;
	z-index: 1;
}

.feature-card:hover .feature-card__icon {
	transform: scale(1.1) rotate(-5deg);
	box-shadow: 0 15px 35px rgba(45, 106, 45, 0.4);
}

.feature-card h3 {
	position: relative;
	z-index: 1;
	margin-bottom: 12px;
	color: var(--color-text);
	font-size: 1.25rem;
	font-weight: 600;
	transition: color 0.3s ease;
}

.feature-card:hover h3 {
	color: var(--color-primary);
}

.feature-card p {
	position: relative;
	z-index: 1;
	color: var(--color-text-light);
	line-height: 1.6;
	margin: 0;
}

/* Filter Bar Enhancement */
.filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-bottom: 50px;
	padding: 20px;
	background: rgba(45, 106, 45, 0.03);
	border-radius: 50px;
}

.filter-btn {
	padding: 12px 28px;
	background: white;
	border: 2px solid #e0e0e0;
	border-radius: 50px;
	color: var(--color-text);
	font-size: 0.95rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.filter-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: var(--color-primary);
	transform: translate(-50%, -50%);
	transition: width 0.4s ease, height 0.4s ease;
	z-index: 0;
}

.filter-btn:hover::before,
.filter-btn.active::before {
	width: 300px;
	height: 300px;
}

.filter-btn:hover,
.filter-btn.active {
	color: white;
	border-color: var(--color-primary);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(45, 106, 45, 0.3);
}

.filter-btn span {
	position: relative;
	z-index: 1;
}

/* Section Tags */
.section-tag {
	display: inline-block;
	padding: 8px 20px;
	background: linear-gradient(135deg, rgba(45, 106, 45, 0.1) 0%, rgba(85, 139, 47, 0.1) 100%);
	color: var(--color-primary);
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

/* Section Headers */
.section-header {
	margin-bottom: 60px;
}

.section-header.text-center {
	text-align: center;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 15px;
	line-height: 1.2;
}

.section-header p {
	font-size: 1.125rem;
	color: var(--color-text-light);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
}

/* Smooth Scroll Reveal on Load */
@media (prefers-reduced-motion: no-preference) {
	.animate-on-scroll {
		will-change: opacity, transform;
	}
}

/* Mobile Optimizations */
@media (max-width: 768px) {
	.section-header h2 {
		font-size: 1.875rem;
	}

	.section-header p {
		font-size: 1rem;
	}

	.filter-bar {
		padding: 15px;
		border-radius: 20px;
	}

	.filter-btn {
		padding: 10px 20px;
		font-size: 0.875rem;
	}

	.stat-item__number {
		font-size: 2.25rem;
	}

	.feature-card {
		padding: 30px 20px;
	}

	.feature-card__icon {
		width: 65px;
		height: 65px;
	}

	.info-card {
		padding: 30px 20px;
	}

	.info-card__icon {
		width: 60px;
		height: 60px;
	}
}


/* ==========================================================================
   ENHANCED 404 ERROR PAGE
   ========================================================================== */

.error-404__inner {
	max-width: 800px;
	margin: 0 auto;
	padding: 60px 20px;
}

.error-404__icon {
	margin-bottom: 30px;
	color: var(--color-primary);
	opacity: 0.8;
	display: inline-block;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
		opacity: 0.8;
	}
	50% {
		transform: scale(1.05);
		opacity: 1;
	}
}

.error-404__code {
	display: block;
	font-size: 8rem;
	font-weight: 900;
	line-height: 1;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 20px;
	letter-spacing: -5px;
}

.error-404__title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 20px;
	line-height: 1.3;
}

.error-404__text {
	font-size: 1.125rem;
	color: var(--color-text-light);
	max-width: 600px;
	margin: 0 auto 40px;
	line-height: 1.7;
}

.error-404__search {
	max-width: 500px;
	margin: 0 auto 40px;
}

.error-404__search .search-form {
	display: flex;
	gap: 10px;
	background: white;
	padding: 8px;
	border-radius: 50px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease;
}

.error-404__search .search-form:focus-within {
	box-shadow: 0 8px 30px rgba(45, 106, 45, 0.2);
}

.error-404__search .search-form input[type="search"] {
	flex: 1;
	border: none;
	padding: 12px 20px;
	font-size: 1rem;
	background: transparent;
	outline: none;
}

.error-404__search .search-form button {
	padding: 12px 30px;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
	color: white;
	border: none;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.error-404__search .search-form button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(45, 106, 45, 0.3);
}

.error-404__actions {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.error-404__quick-links {
	margin-top: 60px;
	padding-top: 60px;
	border-top: 2px solid #f0f0f0;
}

.error-404__quick-links h3 {
	font-size: 1.5rem;
	color: var(--color-text);
	margin-bottom: 30px;
	font-weight: 600;
}

.quick-links-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 20px;
	max-width: 600px;
	margin: 0 auto;
}

.quick-link-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 30px 20px;
	background: white;
	border: 2px solid #f0f0f0;
	border-radius: 12px;
	text-decoration: none;
	color: var(--color-text);
	transition: all 0.3s ease;
}

.quick-link-card svg {
	color: var(--color-primary);
	transition: transform 0.3s ease;
}

.quick-link-card:hover {
	border-color: var(--color-primary);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quick-link-card:hover svg {
	transform: scale(1.1);
}

.quick-link-card span {
	font-weight: 500;
	font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.error-404__code {
		font-size: 5rem;
		letter-spacing: -3px;
	}

	.error-404__title {
		font-size: 1.5rem;
	}

	.error-404__text {
		font-size: 1rem;
	}

	.error-404__actions {
		flex-direction: column;
	}

	.error-404__actions .btn {
		width: 100%;
		max-width: 300px;
	}

	.quick-links-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.error-404__icon svg {
		width: 80px;
		height: 80px;
	}
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mb-60 { margin-bottom: 60px; }

.text-center { text-align: center; }
.text-white { color: white !important; }

/* Button Enhancements */
.btn {
	display: inline-block;
	padding: 14px 32px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid transparent;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	transform: translate(-50%, -50%);
	transition: width 0.5s ease, height 0.5s ease;
	z-index: -1;
}

.btn:hover::before {
	width: 300px;
	height: 300px;
}

.btn--primary {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
	color: white;
	box-shadow: 0 4px 15px rgba(45, 106, 45, 0.2);
}

.btn--primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(45, 106, 45, 0.3);
}

.btn--outline {
	background: transparent;
	color: var(--color-primary);
	border-color: var(--color-primary);
}

.btn--outline:hover {
	background: var(--color-primary);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(45, 106, 45, 0.2);
}

.btn--secondary {
	background: var(--color-secondary);
	color: white;
}

.btn--secondary:hover {
	background: var(--color-primary);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(85, 139, 47, 0.3);
}

/* Responsive Buttons */
@media (max-width: 768px) {
	.btn {
		padding: 12px 28px;
		font-size: 0.95rem;
	}
}


/* ==========================================================================
   GENERIC PAGE CONTENT STYLES
   ========================================================================== */

.page-content__inner {
	max-width: 900px;
	margin: 0 auto;
}

.page-content article {
	background: white;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.entry-content {
	line-height: 1.8;
	color: var(--color-text);
}

.entry-content > * {
	margin-bottom: 20px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	margin-top: 30px;
	margin-bottom: 15px;
	font-weight: 600;
	color: var(--color-text);
	line-height: 1.3;
}

.entry-content h2 {
	font-size: 2rem;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--color-primary);
}

.entry-content h3 {
	font-size: 1.5rem;
}

.entry-content h4 {
	font-size: 1.25rem;
}

.entry-content p {
	margin-bottom: 20px;
}

.entry-content ul,
.entry-content ol {
	margin-left: 25px;
	margin-bottom: 20px;
}

.entry-content li {
	margin-bottom: 10px;
	line-height: 1.7;
}

.entry-content a {
	color: var(--color-primary);
	text-decoration: underline;
	transition: color 0.3s ease;
}

.entry-content a:hover {
	color: var(--color-secondary);
}

.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 20px 0;
}

.entry-content blockquote {
	margin: 30px 0;
	padding: 20px 30px;
	background: var(--color-bg-light);
	border-left: 4px solid var(--color-primary);
	font-style: italic;
	color: var(--color-text-light);
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
}

.entry-content th,
.entry-content td {
	padding: 12px;
	border: 1px solid #e0e0e0;
	text-align: left;
}

.entry-content th {
	background: var(--color-bg-light);
	font-weight: 600;
}

.page-links {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #e0e0e0;
}

.page-links-title {
	font-weight: 600;
	margin-right: 10px;
}

.page-links a {
	display: inline-block;
	padding: 5px 12px;
	margin: 0 5px;
	background: var(--color-primary);
	color: white;
	border-radius: 4px;
	text-decoration: none;
	transition: background 0.3s ease;
}

.page-links a:hover {
	background: var(--color-secondary);
}

/* Comments Section */
.comments-area {
	margin-top: 50px;
	padding-top: 40px;
	border-top: 2px solid #e0e0e0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.page-content article {
		padding: 25px 20px;
	}

	.entry-content h2 {
		font-size: 1.5rem;
	}

	.entry-content h3 {
		font-size: 1.25rem;
	}

	.entry-content blockquote {
		padding: 15px 20px;
		margin: 20px 0;
	}

	.entry-content table {
		font-size: 0.9rem;
	}

	.entry-content th,
	.entry-content td {
		padding: 8px;
	}
}


/* --------------------------------------------------------------------------
   SINGLE POST LAYOUT
   -------------------------------------------------------------------------- */
.single-post-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 50px;
	align-items: start;
}

.single-post-content {
	background: var(--color-white);
	border-radius: var(--border-radius);
	padding: 40px;
	box-shadow: var(--box-shadow);
}

/* Entry Header */
.entry-header {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 2px solid var(--color-bg-light);
}

.entry-title {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	line-height: 1.2;
	margin-bottom: 20px;
	color: var(--color-text-dark);
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 0.9rem;
	color: var(--color-text-grey);
}

.entry-meta > span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.entry-meta svg {
	flex-shrink: 0;
	opacity: 0.7;
}

.entry-meta a {
	color: var(--color-text-grey);
	transition: var(--transition);
}

.entry-meta a:hover {
	color: var(--color-primary);
}

/* Featured Image */
.entry-thumbnail {
	margin-bottom: 30px;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--box-shadow);
}

.entry-thumbnail .featured-image {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}

.entry-thumbnail:hover .featured-image {
	transform: scale(1.05);
}

/* Entry Content */
.entry-content {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--color-text-dark);
	margin-bottom: 30px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	font-family: var(--font-heading);
	margin-top: 30px;
	margin-bottom: 15px;
	color: var(--color-text-dark);
}

.entry-content h2 {
	font-size: 2rem;
}

.entry-content h3 {
	font-size: 1.6rem;
}

.entry-content p {
	margin-bottom: 20px;
}

.entry-content ul,
.entry-content ol {
	margin-bottom: 20px;
	padding-left: 25px;
}

.entry-content li {
	margin-bottom: 10px;
}

.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--border-radius);
	margin: 20px 0;
}

.entry-content blockquote {
	background: var(--color-light-green);
	border-left: 4px solid var(--color-primary);
	padding: 20px 30px;
	margin: 30px 0;
	font-style: italic;
	border-radius: var(--border-radius);
}

.entry-content code {
	background: #f5f5f5;
	padding: 3px 8px;
	border-radius: 4px;
	font-family: monospace;
	font-size: 0.9em;
}

.entry-content pre {
	background: #f5f5f5;
	padding: 20px;
	border-radius: var(--border-radius);
	overflow-x: auto;
	margin: 20px 0;
}

.entry-content pre code {
	padding: 0;
	background: none;
}

.entry-content a {
	color: var(--color-primary);
	text-decoration: underline;
	transition: var(--transition);
}

.entry-content a:hover {
	color: var(--color-primary-dark);
}

/* Page Links */
.page-links {
	margin: 30px 0;
	padding: 20px;
	background: var(--color-bg-light);
	border-radius: var(--border-radius);
	text-align: center;
}

.page-links a {
	display: inline-block;
	padding: 8px 15px;
	margin: 0 5px;
	background: var(--color-white);
	border-radius: 4px;
	transition: var(--transition);
}

.page-links a:hover {
	background: var(--color-primary);
	color: var(--color-white);
}

/* Entry Footer (Tags) */
.entry-footer {
	padding-top: 20px;
	border-top: 2px solid var(--color-bg-light);
	margin-bottom: 30px;
}

.tags-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.tags-links strong {
	color: var(--color-text-dark);
}

.tags-links a {
	display: inline-block;
	padding: 6px 14px;
	background: var(--color-light-green);
	color: var(--color-primary);
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 500;
	transition: var(--transition);
}

.tags-links a:hover {
	background: var(--color-primary);
	color: var(--color-white);
	transform: translateY(-2px);
}

/* Post Navigation (Previous/Next) */
.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin: 30px 0;
}

.post-navigation .nav-links {
	display: contents;
}

.post-navigation a {
	display: block;
	padding: 20px;
	background: var(--color-bg-light);
	border-radius: var(--border-radius);
	transition: var(--transition);
}

.post-navigation a:hover {
	background: var(--color-light-green);
	transform: translateY(-3px);
	box-shadow: var(--box-shadow);
}

.post-navigation .nav-subtitle {
	display: block;
	font-size: 0.85rem;
	color: var(--color-text-grey);
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.post-navigation .nav-title {
	display: block;
	font-weight: 600;
	color: var(--color-primary);
}

.post-navigation .nav-previous {
	text-align: left;
}

.post-navigation .nav-next {
	text-align: right;
}

/* Author Bio */
.author-bio {
	display: flex;
	gap: 20px;
	padding: 30px;
	background: var(--color-bg-light);
	border-radius: var(--border-radius);
	margin: 30px 0;
}

.author-avatar {
	flex-shrink: 0;
}

.author-avatar img {
	border-radius: 50%;
	width: 80px;
	height: 80px;
	border: 3px solid var(--color-primary);
}

.author-info {
	flex-grow: 1;
}

.author-name {
	font-size: 1.3rem;
	margin-bottom: 10px;
}

.author-name a {
	color: var(--color-primary);
	transition: var(--transition);
}

.author-name a:hover {
	color: var(--color-primary-dark);
}

.author-description {
	color: var(--color-text-grey);
	line-height: 1.6;
	margin: 0;
}

/* Responsive - Single Post */
@media (max-width: 1024px) {
	.single-post-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.single-post-content {
		padding: 30px;
	}
	
	.entry-title {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	.single-post-content {
		padding: 20px;
	}
	
	.entry-title {
		font-size: 1.75rem;
	}
	
	.entry-content {
		font-size: 1rem;
	}
	
	.entry-meta {
		gap: 15px;
		font-size: 0.85rem;
	}
	
	.post-navigation {
		grid-template-columns: 1fr;
	}
	
	.post-navigation .nav-next {
		text-align: left;
	}
	
	.author-bio {
		flex-direction: column;
		text-align: center;
		padding: 20px;
	}
	
	.author-avatar {
		margin: 0 auto;
	}
}


/* --------------------------------------------------------------------------
   INQUIRY POPUP MODAL
   -------------------------------------------------------------------------- */
.inquiry-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	overflow-y: auto;
}

.inquiry-popup.is-open {
	display: flex;
}

.inquiry-popup__overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
	animation: fadeIn 0.3s ease;
	z-index: 1;
}

.inquiry-popup__container {
	position: relative;
	width: 100%;
	max-width: 600px;
	background: var(--color-white);
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	z-index: 2;
	animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	overflow: hidden;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(50px) scale(0.9);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.inquiry-popup__close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 40px;
	height: 40px;
	border: none;
	background: rgba(255, 255, 255, 0.9);
	color: var(--color-text-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
	z-index: 10;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.inquiry-popup__close:hover {
	background: var(--color-primary);
	color: var(--color-white);
	transform: rotate(90deg) scale(1.1);
}

.inquiry-popup__content {
	padding: 40px;
}

.inquiry-popup__header {
	text-align: center;
	margin-bottom: 30px;
}

.inquiry-popup__icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	animation: pulse 2s infinite;
	box-shadow: 0 8px 25px rgba(59, 26, 64, 0.3);
}

@keyframes pulse {
	0%, 100% {
		box-shadow: 0 8px 25px rgba(59, 26, 64, 0.3);
	}
	50% {
		box-shadow: 0 8px 35px rgba(59, 26, 64, 0.5);
	}
}

.inquiry-popup__title {
	font-family: var(--font-heading);
	font-size: 2rem;
	margin: 0 0 10px 0;
	color: var(--color-text-dark);
}

.inquiry-popup__subtitle {
	color: var(--color-text-grey);
	margin: 0;
	font-size: 1rem;
}

.inquiry-popup__form {
	margin-bottom: 25px;
}

.inquiry-popup__form .form-group {
	margin-bottom: 20px;
}

.inquiry-popup__form .form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--color-text-dark);
	font-size: 0.95rem;
}

.inquiry-popup__form .required {
	color: #e74c3c;
	margin-left: 2px;
}

.inquiry-popup__form input,
.inquiry-popup__form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid var(--color-border);
	border-radius: 8px;
	font-family: var(--font-primary);
	font-size: 1rem;
	transition: var(--transition);
	background: var(--color-white);
}

.inquiry-popup__form input:focus,
.inquiry-popup__form textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 4px rgba(59, 26, 64, 0.1);
}

.inquiry-popup__form input.error,
.inquiry-popup__form textarea.error {
	border-color: #e74c3c;
}

.inquiry-popup__form textarea {
	resize: vertical;
	min-height: 100px;
}

.form-error {
	display: none;
	color: #e74c3c;
	font-size: 0.85rem;
	margin-top: 5px;
}

.form-error.is-visible {
	display: block;
}

.inquiry-popup__form .form-response {
	margin: 15px 0;
	padding: 0;
	border-radius: 8px;
	display: none;
}

.inquiry-popup__form .form-response.is-visible {
	display: block;
	padding: 12px 16px;
}

.inquiry-popup__form .form-response.success {
	background: var(--color-light-green);
	color: var(--color-primary);
	border: 2px solid var(--color-primary);
}

.inquiry-popup__form .form-response.error {
	background: #fdecea;
	color: #e74c3c;
	border: 2px solid #e74c3c;
}

.inquiry-popup__form .btn {
	margin-top: 10px;
}

.inquiry-popup__form .btn svg {
	flex-shrink: 0;
}

.inquiry-popup__form .btn.is-loading {
	pointer-events: none;
	opacity: 0.7;
}

.inquiry-popup__form .btn.is-loading span::after {
	content: '';
	display: inline-block;
	margin-left: 8px;
	width: 16px;
	height: 16px;
	border: 2px solid var(--color-white);
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 0.6s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.inquiry-popup__footer {
	border-top: 2px solid var(--color-bg-light);
	padding-top: 20px;
	text-align: center;
}

.inquiry-popup__contact-text {
	color: var(--color-text-grey);
	margin: 0 0 15px 0;
	font-size: 0.9rem;
}

.inquiry-popup__contact-links {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
}

.inquiry-contact-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	background: var(--color-bg-light);
	color: var(--color-primary);
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 500;
	transition: var(--transition);
	text-decoration: none;
}

.inquiry-contact-link:hover {
	background: var(--color-primary);
	color: var(--color-white);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(59, 26, 64, 0.2);
}

.inquiry-contact-link svg {
	flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.inquiry-popup {
		padding: 15px;
	}
	
	.inquiry-popup__content {
		padding: 30px 20px;
	}
	
	.inquiry-popup__title {
		font-size: 1.6rem;
	}
	
	.inquiry-popup__icon {
		width: 60px;
		height: 60px;
	}
	
	.inquiry-popup__icon svg {
		width: 32px;
		height: 32px;
	}
	
	.inquiry-popup__form .form-row {
		grid-template-columns: 1fr;
	}
	
	.inquiry-popup__contact-links {
		flex-direction: column;
	}
	
	.inquiry-contact-link {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.inquiry-popup__content {
		padding: 25px 15px;
	}
	
	.inquiry-popup__close {
		top: 10px;
		right: 10px;
		width: 36px;
		height: 36px;
	}
}
