/*--------------------------------------------------------------
# LC Decoracion Home Template Styles
--------------------------------------------------------------*/

/* Hide default Elementor header on home template */
.page-template-home .elementor-location-header,
.page-template-home .elementor-header,
.page-template-home .site-header:not(.lcd-custom-header) {
	display: none !important;
}

/* Container and Layout */
.lcd-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Hero Section */
.lcd-hero {
	background: #fefefe;
	border-bottom: 1px solid #e0e0e0;
	padding: 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.lcd-hero.scrolled {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
}

.lcd-hero-content {
	transition: all 0.3s ease;
}

.lcd-brand-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	position: relative;
}

.lcd-brand-logo {
	display: flex;
	align-items: center;
}

.lcd-logo-img {
	max-height: 60px;
	width: auto;
	transition: transform 0.3s ease, max-height 0.3s ease;
}

.lcd-logo-img:hover {
	transform: scale(1.05);
}

.lcd-hero.scrolled .lcd-logo-img {
	max-height: 40px;
}

/* Mobile Menu Toggle - Hidden on desktop by default */
.lcd-mobile-menu-toggle {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	gap: 4px;
	order: 3;
	z-index: 10003;
}

/* Mobile Header Right Container */
.lcd-mobile-header-right {
	display: flex;
	align-items: center;
	gap: 15px;
}

/* When WooCommerce is not available, ensure container still works */
.lcd-mobile-header-right:empty {
	display: flex;
}

/* Desktop styles - hide mobile elements */
@media (min-width: 769px) {
	.lcd-mobile-menu-toggle {
		display: none !important;
	}

	.lcd-mobile-header-right {
		order: 2;
	}
}

.lcd-hamburger-line {
	width: 24px;
	height: 2px;
	background: #666;
	transition: all 0.3s ease;
	transform-origin: center;
	display: block;
}

.lcd-mobile-menu-toggle.active .lcd-hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.lcd-mobile-menu-toggle.active .lcd-hamburger-line:nth-child(2) {
	opacity: 0;
}

.lcd-mobile-menu-toggle.active .lcd-hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.lcd-mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 10001;
}

.lcd-mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Mobile Menu */
.lcd-mobile-menu {
	position: fixed;
	top: 0;
	right: -320px;
	width: 320px;
	height: 100vh;
	background: #fff;
	transition: right 0.3s ease;
	z-index: 10002;
	overflow-y: auto;
}

.lcd-mobile-menu.active {
	right: 0;
}

.lcd-mobile-menu-content {
	padding: 80px 30px 30px;
}

.lcd-mobile-nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

.lcd-mobile-nav li {
	border-bottom: 1px solid #f0f0f0;
}

.lcd-mobile-nav li a {
	display: block;
	padding: 15px 0;
	color: #333;
	text-decoration: none;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: color 0.3s ease;
}

.lcd-mobile-nav li a:hover {
	color: #666;
}

/* Mobile Navigation Dropdowns */
.lcd-mobile-nav .menu-item-has-children > a::after {
	content: '▼';
	float: right;
	font-size: 0.8rem;
	transition: transform 0.3s ease;
}

.lcd-mobile-nav .menu-item-has-children.open > a::after {
	transform: rotate(180deg);
}

.lcd-mobile-nav .sub-menu {
	display: none;
	background: #f8f8f8;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lcd-mobile-nav .menu-item-has-children.open .sub-menu {
	display: block;
}

.lcd-mobile-nav .sub-menu li {
	border-bottom: 1px solid #e8e8e8;
}

.lcd-mobile-nav .sub-menu li a {
	padding: 12px 20px;
	font-size: 0.9rem;
	color: #666;
}

.lcd-mobile-nav .sub-menu li a:hover {
	color: #333;
}

.lcd-main-nav {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 30px;
}

.lcd-main-nav li {
	position: relative;
}

.lcd-main-nav li a {
	text-decoration: none;
	color: #666;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: color 0.3s ease, font-size 0.3s ease, padding 0.3s ease;
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 5px 0;
}

.lcd-hero.scrolled .lcd-main-nav li a {
	font-size: 0.85rem;
	padding: 2px 0;
}

.lcd-main-nav li a:hover {
	color: #333;
}

/* Dropdown Styles */
.lcd-main-nav .menu-item-has-children > a::after {
	content: '▼';
	font-size: 0.6rem;
	transition: transform 0.3s ease;
}

.lcd-main-nav .menu-item-has-children:hover > a::after {
	transform: rotate(180deg);
}

.lcd-main-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	list-style: none;
	padding: 10px 0;
	margin: 0;
	z-index: 1000;
}

.lcd-main-nav .menu-item-has-children:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.lcd-main-nav .sub-menu li {
	width: 100%;
}

.lcd-main-nav .sub-menu li a {
	padding: 12px 20px;
	display: block;
	color: #666;
	font-size: 0.85rem;
	text-transform: none;
	letter-spacing: 0.5px;
	border-bottom: 1px solid #f5f5f5;
}

.lcd-main-nav .sub-menu li:last-child a {
	border-bottom: none;
}

.lcd-main-nav .sub-menu li a:hover {
	background: #f8f8f8;
	color: #333;
}

.lcd-user-actions {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: font-size 0.3s ease, gap 0.3s ease;
	order: 2;
}

.lcd-hero.scrolled .lcd-user-actions {
	font-size: 0.8rem;
	gap: 15px;
}

/* Icons and Text - updated for Heroicons SVG */

/* Heroicons SVG styles */
.lcd-user-actions .lcd-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	transition: all 0.3s ease;
	display: inline-block;
	vertical-align: middle;
	color: currentColor;
}

.lcd-hamburger-icon {
	width: 24px;
	height: 24px;
	color: #666;
	transition: color 0.3s ease;
}

/* Ensure SVG icons inherit text color */
.lcd-user-actions svg {
	color: inherit;
}

.lcd-mobile-menu-toggle:hover .lcd-hamburger-icon {
	color: #333;
}

.lcd-user-actions a:hover .lcd-icon {
	color: #333;
}

.lcd-user-actions a,
.lcd-user-actions .lcd-currency {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.lcd-user-actions a:hover {
	color: #333;
}

.lcd-user-actions .lcd-text {
	transition: opacity 0.3s ease;
}

.lcd-cart-count {
	font-weight: normal;
}

.lcd-currency {
	color: #666;
}

/* Products Grid Section */
.lcd-products-grid {
	padding: 40px 0;
	background: #fff;
}

.lcd-products-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

/* Loading States */
.lcd-loading,
.lcd-no-more-products {
	text-align: center;
	padding: 40px 20px;
	color: #666;
	font-size: 1rem;
}

/* Lazy Loading Styles */
.lcd-product-img.lazy {
	opacity: 0;
	transition: opacity 0.3s ease;
}

.lcd-product-img:not(.lazy) {
	opacity: 1;
}

/* Loading placeholder animation */
.lcd-loading-placeholder {
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: loading 1.5s infinite;
}

@keyframes loading {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

/* Product Card */
.lcd-product-card {
	position: relative;
	background: #f8f8f8;
	border: 1px solid #efefef;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Product variations in grid */
.lcd-product-variations-grid {
	padding: 8px;
    position: absolute;
    z-index: 999;
    width: 100%;
    bottom: 92px;
}

.lcd-variation-grid-item {
	margin-bottom: 6px;
}

.lcd-variation-grid-item:last-child {
	margin-bottom: 0;
}

.lcd-variation-label {
	font-size: 0.7rem;
	color: #666;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: block;
	margin-bottom: 3px;
}

.lcd-variation-options-grid {
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
}

.lcd-variation-option-grid {
	font-size: 0.65rem;
	background: #f8f8f8;
	border: 1px solid #ddd;
	padding: 2px 6px;
	border-radius: 2px;
	color: #333;
	font-weight: 400;
}

.lcd-variation-more {
	font-size: 0.65rem;
	background: #666;
	color: #fff;
	padding: 2px 6px;
	border-radius: 2px;
	font-weight: 500;
}

.lcd-product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.lcd-product-image {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
}

.lcd-product-img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	transition: transform 0.3s ease;
}

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

.lcd-product-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.1);
	opacity: 0;
	transition: opacity 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lcd-product-card:hover .lcd-product-overlay {
	opacity: 1;
}

.lcd-view-product-btn {
	background: rgba(255, 255, 255, 0.95);
	color: #333;
	border: 1px solid #ddd;
	padding: 12px 24px;
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	cursor: pointer;
	border-radius: 2px;
}

.lcd-view-product-btn:hover {
	background: #333;
	color: #fff;
	border-color: #333;
}

/* Product Info */
.lcd-product-info {
	padding: 20px;
	position: relative;
}

.lcd-product-title {
	margin: 0 0 5px 0;
	font-size: 0.9rem;
	font-weight: 400;
	line-height: 1.3;
}

.lcd-product-title a {
	color: #333;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.lcd-product-title a:hover {
	color: #666;
}

.lcd-product-price-container {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 8px;
}

.lcd-product-price {
	font-size: 0.85rem;
	color: #666;
	font-weight: 500;
	display: flex; /* Always use flex for alignment */
	justify-content: center; /* Center horizontally */
    gap: 5px; /* Add 5px gap */
}

.lcd-product-price .price { /* Target the inner div.price */
    display: flex; /* Make the inner price div a flex container */
    align-items: center; /* Align items vertically in the middle */
    flex-direction: column; /* Default to column for all prices within .price */
    gap: 10px; /* Add 10px gap for stacked prices */
}

.lcd-product-price ins {
    /* Sale price styles - keep it prominent */
    font-size: 1rem; /* Slightly larger for sale price */
    font-weight: 600;
    color: #e74c3c; /* Red for sale price */
    text-decoration: none; /* Remove underline from ins */
}

.lcd-product-price del {
    /* Regular price styles - smaller and lighter */
    font-size: 0.75rem; /* Smaller than sale price */
    color: #999; /* Lighter color */
    font-weight: 400; /* Lighter font weight */
    text-decoration: line-through; /* Keep the line-through */
}

/* Sale price container (left side - red) */
.lcd-price-sale-container {
	display: flex;
	align-items: center;
	gap: 4px;
}

.lcd-sale-price-grid {
	font-size: 1rem;
	font-weight: 600;
	color: #e74c3c;
}

/* Regular price container (right side - gray, crossed) */
.lcd-price-regular-container {
	display: flex;
	align-items: center;
	gap: 4px;
}

.lcd-regular-price-grid {
	font-size: 0.8rem;
	font-weight: 400;
	color: #999;
	text-decoration: line-through;
}

.lcd-currency-symbol-regular {
	font-size: 0.8rem;
	font-weight: 400;
	color: #999;
	text-decoration: line-through;
}

.lcd-currency-code-regular {
	font-size: 0.65rem;
	color: #999;
	font-weight: 400;
	text-decoration: line-through;
}

/* Normal price (when not on sale) */
.lcd-price-normal {
	font-size: 0.85rem;
	font-weight: 500;
	color: #666;
}

.lcd-currency-symbol {
	font-size: 1rem;
	font-weight: 600;
	color: #333;
}

.lcd-currency-code {
	font-size: 0.7rem;
	color: #999;
	font-weight: 400;
}

.lcd-added-pill {
	background: #27ae60;
	color: #fff;
	font-size: 0.7rem;
	padding: 3px 8px;
	border-radius: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.lcd-sale-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #161f28;
	color: #fff;
	padding: 5px 10px;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 20px;
}

/* No Products State */
.lcd-no-products {
	text-align: center;
	padding: 60px 20px;
	color: #666;
}

.lcd-shop-button {
	display: inline-block;
	margin-top: 20px;
	padding: 15px 30px;
	background: #333;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.9rem;
	transition: background 0.3s ease;
}

.lcd-shop-button:hover {
	background: #555;
}

/* Newsletter Section */
.lcd-newsletter {
	background: #f8f8f8;
	padding: 60px 0;
	border-top: 1px solid #e0e0e0;
}

.lcd-newsletter-content {
	text-align: center;
	max-width: 500px;
	margin: 0 auto;
}

.lcd-newsletter-title {
	font-size: 1.8rem;
	font-weight: 300;
	margin-bottom: 10px;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.lcd-newsletter-subtitle {
	color: #666;
	margin-bottom: 30px;
	font-size: 0.95rem;
}

.lcd-newsletter-form {
	display: flex;
	gap: 0;
	max-width: 400px;
	margin: 0 auto;
}

.lcd-newsletter-input {
	flex: 1;
	padding: 15px 20px;
	border: 1px solid #ddd;
	border-right: none;
	font-size: 0.9rem;
	outline: none;
}

.lcd-newsletter-button {
	background: #333;
	color: #fff;
	border: 1px solid #333;
	padding: 15px 25px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.85rem;
	cursor: pointer;
	transition: background 0.3s ease;
}

.lcd-newsletter-button:hover {
	background: #555;
	border-color: #555;
}

/* Footer Info Section */
.lcd-footer-info {
	background: #333;
	color: #fff;
	padding: 60px 0 40px;
}

.lcd-footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.lcd-footer-column h3 {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
	font-weight: 500;
}

.lcd-footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.lcd-footer-menu li {
	margin-bottom: 10px;
}

.lcd-footer-menu a {
	color: #ccc;
	text-decoration: none;
	font-size: 0.85rem;
	transition: color 0.3s ease;
}

.lcd-footer-menu a:hover {
	color: #fff;
}

.lcd-footer-bottom {
	border-top: 1px solid #555;
	padding-top: 20px;
	text-align: center;
}

.lcd-footer-legal {
	font-size: 0.8rem;
	color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
	.lcd-container {
		padding: 0 15px !important;
	}

	.lcd-hero,
	.site-header.lcd-hero {
		padding: 12px 0 !important;
	}

	.lcd-hero.scrolled,
	.site-header.lcd-hero.scrolled {
		padding: 8px 0 !important;
	}

	.lcd-logo-img {
		max-height: 45px !important;
	}

	.lcd-hero.scrolled .lcd-logo-img,
	.site-header.lcd-hero.scrolled .lcd-logo-img {
		max-height: 35px !important;
	}

	.lcd-hero.scrolled .lcd-main-nav li a {
		font-size: 0.8rem;
		padding: 1px 0;
		min-height: 40px;
	}

	.lcd-hero.scrolled .lcd-user-actions {
		font-size: 0.75rem;
		gap: 12px;
	}

	.lcd-brand-section {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		text-align: left;
		gap: 15px;
	}

	.lcd-brand-logo {
		order: 1;
		flex-shrink: 0;
	}

	.lcd-mobile-header-right {
		display: flex !important;
		align-items: center;
		order: 2;
		gap: 15px;
		visibility: visible !important;
	}

	.lcd-user-actions {
		display: flex;
		align-items: center;
		gap: 12px;
	}

	.lcd-mobile-menu-toggle {
		display: flex !important;
	}

	.lcd-brand-nav {
		display: none;
	}

	/* Hide text, show only icons in mobile */
	.lcd-user-actions .lcd-text {
		display: none;
	}

	.lcd-user-actions {
		gap: 12px;
	}

	.lcd-user-actions .lcd-icon {
		width: 24px;
		height: 24px;
	}

	.lcd-cart-count {
		position: absolute;
		top: -8px;
		right: -8px;
		background: #e74c3c;
		color: white;
		border-radius: 10px;
		padding: 2px 6px;
		font-size: 0.7rem;
		line-height: 1;
		min-width: 16px;
		text-align: center;
	}

	.lcd-cart-link {
		position: relative;
	}

	
	.lcd-user-actions {
		gap: 15px;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.lcd-products-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	.lcd-newsletter-form {
		flex-direction: column;
		gap: 10px;
	}
	
	.lcd-newsletter-input {
		border-right: 1px solid #ddd;
	}
	
	.lcd-footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
}

@media (max-width: 480px) {
	.lcd-products-container {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.lcd-footer-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
}

/*--------------------------------------------------------------
# Tailwind-inspired Utility Classes for Hero Sections
--------------------------------------------------------------*/

/* Layout */
.relative { position: relative; }
.absolute { position: absolute; }
.inset-y-0 { top: 0; bottom: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.right-0 { right: 0; }
.left-0 { left: 0; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.z-10 { z-index: 10; }
.overflow-hidden { overflow: hidden; }

/* Background */
.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-900 { background-color: #111827; }
.bg-opacity-50 { background-color: rgba(17, 24, 39, 0.5) !important; }

/* Width & Height */
.max-w-7xl { max-width: 80rem; }
.max-w-xl { max-width: 36rem; }
.max-w-md { max-width: 28rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.w-48 { width: 12rem; }
.h-full { height: 100%; }
.h-56 { height: 14rem; }
.h-48 { height: 12rem; }

/* Transform */
.transform { transform: translateX(0) translateY(0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1); }
.translate-x-1\/2 { transform: translateX(50%); }

/* Spacing */
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-16 { padding-top: 4rem; }
.pt-20 { padding-top: 5rem; }
.pt-32 { padding-top: 8rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-12 { margin-top: 3rem; }
.ml-3 { margin-left: 0.75rem; }

/* Typography */
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.font-extrabold { font-weight: 800; }
.font-medium { font-weight: 500; }
.tracking-tight { letter-spacing: -0.025em; }
.text-center { text-align: center; }

/* Colors */
.text-gray-900 { color: #111827; }
.text-gray-500 { color: #6b7280; }
.text-gray-300 { color: #d1d5db; }
.text-white { color: #ffffff; }
.text-amber-400 { color: #fbbf24; }
.text-amber-500 { color: #f59e0b; }
.text-amber-600 { color: #d97706; }
.text-amber-700 { color: #b45309; }
.bg-amber-100 { background-color: #fef3c7; }
.bg-amber-200 { background-color: #fde68a; }
.bg-amber-400 { background-color: #fbbf24; }
.bg-amber-500 { background-color: #f59e0b; }
.bg-amber-600 { background-color: #d97706; }
.bg-amber-700 { background-color: #b45309; }

/* Borders */
.border { border-width: 1px; }
.border-transparent { border-color: transparent; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }

/* Effects */
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

/* Flexbox */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }

/* Display */
.block { display: block; }
.hidden { display: none; }

/* Object Fit */
.object-cover { object-fit: cover; }

/* Transitions */
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; }
.duration-300 { transition-duration: 300ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* Grid */
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gap-1 { gap: 0.25rem; }

/* Aspect Ratio */
.aspect-w-3 {
	position: relative;
	width: 100%;
}
.aspect-w-3::before {
	content: "";
	display: block;
	padding-bottom: 66.666667%; /* 3:2 aspect ratio */
}
.aspect-h-2 > * {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}

/* Hover effects */
.hover\:bg-amber-400:hover { background-color: #fbbf24; }
.hover\:bg-amber-700:hover { background-color: #b45309; }
.hover\:bg-amber-200:hover { background-color: #fde68a; }
.hover\:bg-gray-50:hover { background-color: #f9fafb; }
.hover\:scale-105:hover { transform: scale(1.05); }

/* Responsive breakpoints */
@media (min-width: 640px) {
	.sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
	.sm\:pb-16 { padding-bottom: 4rem; }
	.sm\:pb-24 { padding-bottom: 6rem; }
	.sm\:pt-24 { padding-top: 6rem; }
	.sm\:pt-40 { padding-top: 10rem; }
	.sm\:text-5xl { font-size: 3rem; line-height: 1; }
	.sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
	.sm\:text-center { text-align: center; }
	.sm\:mt-5 { margin-top: 1.25rem; }
	.sm\:mt-8 { margin-top: 2rem; }
	.sm\:mt-0 { margin-top: 0; }
	.sm\:ml-3 { margin-left: 0.75rem; }
	.sm\:flex { display: flex; }
	.sm\:justify-center { justify-content: center; }
	.sm\:max-w-xl { max-width: 36rem; }
	.sm\:max-w-lg { max-width: 32rem; }
	.sm\:mx-auto { margin-left: auto; margin-right: auto; }
	.sm\:h-72 { height: 18rem; }
}

@media (min-width: 768px) {
	.md\:pb-20 { padding-bottom: 5rem; }
	.md\:text-6xl { font-size: 3.75rem; line-height: 1; }
	.md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
	.md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
	.md\:mt-5 { margin-top: 1.25rem; }
	.md\:mt-8 { margin-top: 2rem; }
	.md\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
	.md\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
	.md\:h-96 { height: 24rem; }
	.md\:max-w-3xl { max-width: 48rem; }
}

@media (min-width: 1024px) {
	.lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
	.lg\:pb-28 { padding-bottom: 7rem; }
	.lg\:pt-16 { padding-top: 4rem; }
	.lg\:pt-24 { padding-top: 6rem; }
	.lg\:pt-32 { padding-top: 8rem; }
	.lg\:max-w-2xl { max-width: 42rem; }
	.lg\:max-w-md { max-width: 28rem; }
	.lg\:max-w-none { max-width: none; }
	.lg\:w-full { width: 100%; }
	.lg\:w-1\/2 { width: 50%; }
	.lg\:h-full { height: 100%; }
	.lg\:text-left { text-align: left; }
	.lg\:justify-start { justify-content: flex-start; }
	.lg\:mx-0 { margin-left: 0; margin-right: 0; }
	.lg\:mt-16 { margin-top: 4rem; }
	.lg\:absolute { position: absolute; }
	.lg\:inset-y-0 { top: 0; bottom: 0; }
	.lg\:right-0 { right: 0; }
	.lg\:block { display: block; }
	.lg\:flex { display: flex; }
	.lg\:col-span-6 { grid-column: span 6 / span 6; }
}

@media (min-width: 1280px) {
	.xl\:pb-32 { padding-bottom: 8rem; }
	.xl\:inline { display: inline; }
}

/*--------------------------------------------------------------
# Hero Mobile Styles - Remove background overlay
--------------------------------------------------------------*/
@media (max-width: 768px) {
	/* Hero angled - Background and overlay handled by JavaScript */
	#hero svg {
		display: none !important;
	}

	/* Hero tiles - Remove gradient background in mobile */
	#hero > .absolute[data-parallax] {
		background: transparent !important;
	}

	/* Hero centered - Remove dark overlay in mobile */
	#hero > .absolute.bg-opacity-50 {
		background-color: transparent !important;
		opacity: 0 !important;
	}
}

