/* ===== RESET & VARIABLES ===== */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Light Theme (Default) */
	--cream: #ffead3;
	--deep-red: #9e3b3b;
	--coral: #d25353;
	--soft-pink: #ea7b7b;
	--dark: #2c1810;
	--white: #ffffff;
	--cream-dark: #f5dcc0;
	--shadow-sm: 0 2px 8px rgba(158, 59, 59, 0.08);
	--shadow-md: 0 8px 24px rgba(158, 59, 59, 0.12);
	--shadow-lg: 0 16px 48px rgba(158, 59, 59, 0.18);
	--shadow-xl: 0 24px 64px rgba(158, 59, 59, 0.22);

	/* Semantic Colors */
	--bg-color: var(--cream);
	--bg-alt: var(--cream-dark);
	--text-color: var(--dark);
	--text-muted: rgba(44, 24, 16, 0.7);
	--card-bg: var(--white);
	--card-border: rgba(158, 59, 59, 0.05);
	--nav-bg: rgba(158, 59, 59, 0.95);

	--radius-sm: 8px;
	--radius-md: 16px;
	--radius-lg: 24px;
	--radius-xl: 32px;
	--transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
	/* Dark Theme */
	--bg-color: #1a0f0f;
	--bg-alt: #241414;
	--text-color: #f5dcc0;
	--text-muted: rgba(245, 220, 192, 0.7);
	--card-bg: #2a1818;
	--card-border: rgba(220, 100, 100, 0.15);
	--nav-bg: rgba(26, 15, 15, 0.95);

	--cream: #1a0f0f;
	--deep-red: #ea7b7b;
	--coral: #d25353;
	--shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
	--shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
	--shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
	--shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.8);
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

body {
	font-family:
		"Inter",
		-apple-system,
		BlinkMacSystemFont,
		sans-serif;
	color: var(--text-color);
	background-color: var(--bg-color);
	line-height: 1.7;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	transition:
		background-color 0.4s ease,
		color 0.4s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Outfit", sans-serif;
	line-height: 1.2;
}

.container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
}

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

a {
	text-decoration: none;
	color: inherit;
}

/* ===== NAVIGATION ===== */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 0.8rem 0;
	background: var(--nav-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(234, 123, 123, 0.15);
	transition: var(--transition);
}

[data-theme="dark"] .navbar {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
	padding: 0.5rem 0;
	box-shadow: var(--shadow-lg);
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	color: #ffead3;
	/* Logo always light cream */
	cursor: pointer;
	transition: var(--transition);
}

.logo:hover {
	transform: scale(1.02);
}

.logo-img {
	width: 48px;
	height: 48px;
	border-radius: var(--radius-sm);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
	transition: var(--transition);
}

.logo-text h1 {
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 0.1rem;
}

.logo-text p {
	font-size: 0.72rem;
	letter-spacing: 2.5px;
	opacity: 0.85;
	text-transform: uppercase;
	font-weight: 300;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-link {
	color: #ffead3;
	/* Always light */
	font-size: 0.92rem;
	font-weight: 500;
	position: relative;
	padding: 0.4rem 0;
	transition: var(--transition);
	letter-spacing: 0.3px;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #ea7b7b, #d25353);
	/* Always hardcoded to pink/coral */
	border-radius: 1px;
	transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.nav-link:hover {
	color: #ea7b7b;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.theme-toggle,
.lang-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 234, 211, 0.12);
	border: 1px solid rgba(255, 234, 211, 0.25);
	color: #ffead3;
	border-radius: 50px;
	cursor: pointer;
	transition: var(--transition);
}

.theme-toggle {
	width: 38px;
	height: 38px;
	font-size: 1.1rem;
}

.lang-toggle {
	padding: 0.4rem 0.8rem;
	gap: 0.4rem;
	font-size: 0.82rem;
	font-weight: 600;
	font-family: "Inter", sans-serif;
}

.theme-toggle:hover,
.lang-toggle:hover {
	background: rgba(255, 234, 211, 0.22);
	border-color: rgba(255, 234, 211, 0.4);
	transform: translateY(-1px);
}

.lang-flag {
	font-size: 1.1rem;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
	padding: 4px;
	background: transparent;
	border: none;
}

.hamburger span {
	width: 24px;
	height: 2.5px;
	background: #ffead3;
	border-radius: 2px;
	transition: var(--transition);
	transform-origin: center;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding: 120px 24px 60px;
	cursor: none;
	/* For custom glow cursor */
}

.hero-cursor {
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		rgba(234, 123, 123, 0.15) 0%,
		transparent 60%
	);
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	transform: translate(-50%, -50%);
	z-index: 2;
	transition: opacity 0.3s ease;
	opacity: 0;
}

.hero:hover .hero-cursor {
	opacity: 1;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		#9e3b3b 0%,
		#7a2d2d 30%,
		#d25353 60%,
		#9e3b3b 100%
	);
	z-index: 0;
}

[data-theme="dark"] .hero-bg {
	background: linear-gradient(
		135deg,
		#3a1515 0%,
		#200a0a 30%,
		#5c2020 60%,
		#3a1515 100%
	);
}

.hero-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			ellipse at 20% 50%,
			rgba(234, 123, 123, 0.3) 0%,
			transparent 60%
		),
		radial-gradient(
			ellipse at 80% 20%,
			rgba(210, 83, 83, 0.25) 0%,
			transparent 50%
		),
		radial-gradient(
			ellipse at 50% 80%,
			rgba(158, 59, 59, 0.2) 0%,
			transparent 60%
		);
	animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(
			circle at 25% 25%,
			rgba(255, 234, 211, 0.04) 1px,
			transparent 1px
		),
		radial-gradient(
			circle at 75% 75%,
			rgba(255, 234, 211, 0.03) 1px,
			transparent 1px
		);
	background-size:
		60px 60px,
		40px 40px;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(44, 24, 16, 0.15) 0%,
		rgba(44, 24, 16, 0.05) 50%,
		rgba(44, 24, 16, 0.3) 100%
	);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 10;
	text-align: center;
	max-width: 880px;
	margin: 0 auto;
}

.hero-title {
	color: #ffead3;
	margin-bottom: 1.5rem;
}

.hero-title .line {
	display: block;
	font-size: 4rem;
	font-weight: 800;
	letter-spacing: -1px;
	text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-title .line.accent {
	background: linear-gradient(135deg, #ffead3, #ea7b7b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	color: rgba(255, 234, 211, 0.9);
	font-size: 1.15rem;
	max-width: 600px;
	margin: 0 auto 2.5rem;
	line-height: 1.8;
	font-weight: 300;
}

.hero-cta {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	padding: 0.9rem 2rem;
	border-radius: var(--radius-xl);
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	border: none;
	font-family: "Inter", sans-serif;
	letter-spacing: 0.3px;
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: linear-gradient(135deg, #ffead3 0%, #f5dcc0 100%);
	color: #9e3b3b;
	box-shadow: 0 4px 20px rgba(255, 234, 211, 0.35);
}

[data-theme="dark"] .btn-primary {
	background: linear-gradient(135deg, var(--coral), var(--deep-red));
	color: var(--bg-color);
	box-shadow: 0 4px 20px rgba(210, 83, 83, 0.35);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(255, 234, 211, 0.5);
}

.btn-outline {
	background: transparent;
	color: #ffead3;
	border: 2px solid rgba(255, 234, 211, 0.4);
}

.btn-outline:hover {
	background: rgba(255, 234, 211, 0.1);
	border-color: #ffead3;
	transform: translateY(-3px);
}

/* Hero Marquee */
.hero-marquee {
	width: 100vw;
	margin-top: 2rem;
	margin-left: calc(-50vw + 50%);
	padding: 1.5rem 0;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(44, 24, 16, 0.3),
		transparent
	);
	overflow: hidden;
	white-space: nowrap;
	border-top: 1px solid rgba(255, 234, 211, 0.1);
	border-bottom: 1px solid rgba(255, 234, 211, 0.1);
}

.marquee-content {
	display: inline-block;
	animation: scroll 30s linear infinite;
	color: #ffead3;
	font-size: 1.1rem;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.marquee-content span {
	display: inline-block;
	padding: 0 1rem;
}

.marquee-content .dot {
	color: #ea7b7b;
	font-weight: bold;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* WhatsApp Button */
.whatsapp-btn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #25d366;
	color: white;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
	transform: scale(1.1);
}

/* Hero scroll indicator */
.hero-scroll {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	animation: scrollBounce 2s ease-in-out infinite;
}

.mouse {
	width: 26px;
	height: 40px;
	border: 2px solid rgba(255, 234, 211, 0.4);
	border-radius: 20px;
	display: flex;
	justify-content: center;
	padding-top: 8px;
}

.wheel {
	width: 4px;
	height: 8px;
	background: #ffead3;
	border-radius: 4px;
	animation: wheelScroll 1.5s ease-in-out infinite;
}

/* ===== SECTION HEADERS ===== */
.section-header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.section-tag {
	display: inline-block;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--coral);
	margin-bottom: 0.8rem;
}

.section-title {
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--deep-red);
	margin-bottom: 1rem;
	letter-spacing: -0.5px;
}

.title-decoration {
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, var(--coral), var(--soft-pink));
	border-radius: 2px;
	margin: 0 auto;
}

.section-desc {
	font-size: 1.1rem;
	color: var(--text-muted);
	max-width: 560px;
	margin: 1.5rem auto 0;
	font-style: italic;
}

/* ===== ABOUT SECTION ===== */
.about {
	padding: 7rem 0;
	background: linear-gradient(
		180deg,
		var(--bg-color) 0%,
		var(--bg-alt) 50%,
		var(--bg-color) 100%
	);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.about-text p {
	font-size: 1.05rem;
	margin-bottom: 1.5rem;
	color: var(--text-muted);
	line-height: 1.9;
}

.about-delivery {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: linear-gradient(
		135deg,
		rgba(210, 83, 83, 0.08),
		rgba(234, 123, 123, 0.05)
	);
	border: 1px solid var(--card-border);
	border-radius: var(--radius-md);
	padding: 1.5rem;
	margin-top: 1.5rem;
}

[data-theme="dark"] .about-delivery {
	background: rgba(210, 83, 83, 0.1);
}

.delivery-icon {
	font-size: 2rem;
	flex-shrink: 0;
}

.about-delivery p {
	margin: 0;
	font-size: 0.95rem;
	color: var(--text-color);
}

.about-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.2rem;
}

.feature-card {
	background: var(--card-bg);
	padding: 2rem 1.5rem;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	text-align: center;
	transition: var(--transition);
	border: 1px solid var(--card-border);
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--deep-red),
		var(--coral),
		var(--soft-pink)
	);
	transform: scaleX(0);
	transition: transform 0.4s ease;
	transform-origin: left;
}

.feature-card:hover::before {
	transform: scaleX(1);
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.feature-icon {
	font-size: 2.5rem;
	margin-bottom: 0.8rem;
	display: block;
}

.feature-card h3 {
	font-size: 1.1rem;
	color: var(--deep-red);
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.feature-card p {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.6;
}

/* ===== PRODUCTS SECTION ===== */
.products {
	padding: 7rem 0;
	background: var(--bg-color);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.product-card {
	background: var(--card-bg);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	border: 1px solid var(--card-border);
}

.product-card:hover {
	transform: translateY(-12px);
	box-shadow: var(--shadow-xl);
}

.product-image {
	position: relative;
	overflow: hidden;
	height: 280px;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
	transform: scale(1.1);
}

.product-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		transparent 0%,
		rgba(26, 15, 15, 0.85) 100%
	);
	display: flex;
	align-items: flex-end;
	padding: 1.5rem;
	opacity: 0;
	transition: opacity 0.4s ease;
}

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

.product-category {
	color: #ffead3;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	background: rgba(255, 234, 211, 0.15);
	padding: 0.4rem 1rem;
	border-radius: 50px;
	backdrop-filter: blur(6px);
}

.product-info {
	padding: 1.5rem;
	text-align: center;
}

.product-info h3 {
	font-size: 1.15rem;
	color: var(--deep-red);
	margin-bottom: 0.4rem;
	font-weight: 600;
}

.product-info p {
	color: var(--text-muted);
	font-size: 0.88rem;
	margin-bottom: 0.8rem;
	line-height: 1.5;
}

.price {
	display: none;
}

/* ===== PHOTO GALLERY (NEW) ===== */
.photo-gallery {
	padding: 7rem 0;
	background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-color) 100%);
}

.gallery-masonry {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	grid-auto-rows: 250px;
	grid-auto-flow: dense;
	gap: 1.5rem;
}

.gallery-item {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
}

.gallery-item:nth-child(1) {
	grid-column: span 2;
	grid-row: span 2;
}

.gallery-item:nth-child(2) {
	grid-row: span 2;
}

.gallery-item:nth-child(4) {
	grid-row: span 2;
}

.gallery-item:nth-child(5) {
	grid-column: span 2;
}

@media (max-width: 768px) {
	.gallery-item:nth-child(1),
	.gallery-item:nth-child(5) {
		grid-column: span 1;
	}
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.gallery-item:hover {
	transform: scale(1.02);
	box-shadow: var(--shadow-xl);
	z-index: 2;
}

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

/* ===== TESTIMONIALS (NEW) ===== */
.testimonials {
	padding: 7rem 0;
	background: var(--bg-color);
	position: relative;
	overflow: hidden;
}

.testimonials::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 100%;
	height: 100%;
	background: radial-gradient(
		circle,
		rgba(210, 83, 83, 0.05) 0%,
		transparent 60%
	);
	pointer-events: none;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	position: relative;
	z-index: 1;
}

.testimonial-card {
	background: var(--card-bg);
	border-radius: var(--radius-lg);
	padding: 2.5rem 2rem;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--card-border);
	position: relative;
	transition: var(--transition);
}

.testimonial-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.quote-icon {
	font-size: 4rem;
	font-family: Georgia, serif;
	color: var(--coral);
	opacity: 0.2;
	position: absolute;
	top: 10px;
	right: 20px;
	line-height: 1;
}

.test-text {
	font-size: 1.05rem;
	color: var(--text-color);
	font-style: italic;
	margin-bottom: 2rem;
	line-height: 1.8;
	position: relative;
	z-index: 2;
}

.test-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--coral), var(--soft-pink));
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.1rem;
	overflow: hidden;
}

.avatar-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.local-guide {
	display: inline-block;
	font-size: 0.7rem;
	color: var(--text-muted);
	font-weight: 500;
	margin-top: 0.1rem;
}

.author-info strong {
	display: block;
	color: var(--deep-red);
	font-size: 1rem;
}

.stars {
	color: #ffb800;
	font-size: 0.9rem;
	letter-spacing: 2px;
}

.google-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.75rem;
	color: var(--text-muted);
	margin-bottom: 0.8rem;
	font-weight: 500;
}

.review-time {
	display: block;
	font-size: 0.78rem;
	color: var(--text-muted);
	margin-top: 0.2rem;
}

/* ===== GIFT BASKETS ===== */
.gift-baskets {
	padding: 7rem 0;
	background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-color) 100%);
}

.baskets-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.basket-item {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-lg);
	aspect-ratio: 1 / 1;
	cursor: pointer;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.basket-item:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: var(--shadow-xl);
}

.basket-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.basket-item:hover img {
	transform: scale(1.12);
}

.basket-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		transparent 30%,
		rgba(26, 15, 15, 0.9) 100%
	);
	display: flex;
	align-items: flex-end;
	padding: 1.5rem;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.basket-item:hover .basket-overlay {
	opacity: 1;
}

.basket-overlay h4 {
	color: #ffead3;
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 0.5px;
}

/* ===== CONTACT SECTION ===== */
.contact {
	padding: 7rem 0;
	background: var(--bg-color);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 3rem;
	align-items: start;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.2rem;
	background: var(--card-bg);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	border: 1px solid var(--card-border);
}

.contact-item:hover {
	transform: translateX(6px);
	box-shadow: var(--shadow-md);
	border-color: rgba(210, 83, 83, 0.3);
}

.contact-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(210, 83, 83, 0.08);
	border-radius: var(--radius-sm);
}

.contact-item strong {
	display: block;
	font-size: 0.85rem;
	color: var(--deep-red);
	margin-bottom: 0.2rem;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.contact-item p {
	font-size: 0.95rem;
	color: var(--text-color);
	opacity: 0.8;
}

.contact-item a {
	color: var(--coral);
	font-weight: 600;
	transition: var(--transition);
}

.contact-item a:hover {
	color: var(--deep-red);
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--card-border);
}

.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	transition: var(--transition);
	box-shadow: var(--shadow-sm);
}

.social-icon.facebook {
	background: #1877f2;
	color: white;
}

.social-icon.instagram {
	background: linear-gradient(
		45deg,
		#f09433,
		#e6683c,
		#dc2743,
		#cc2366,
		#bc1888
	);
	color: white;
}

.social-icon:hover {
	transform: translateY(-4px) scale(1.08);
	box-shadow: var(--shadow-md);
}

.contact-map {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	border: 3px solid var(--card-bg);
}

.contact-map iframe {
	width: 100%;
	height: 100%;
	min-height: 450px;
	border: none;
	display: block;
}

/* ===== FOOTER ===== */
footer {
	background: linear-gradient(
		135deg,
		rgba(158, 59, 59, 1) 0%,
		rgba(122, 45, 45, 1) 100%
	);
	color: #ffead3;
	padding: 3rem 0 2rem;
	border-top: 3px solid #d25353;
}

[data-theme="dark"] footer {
	background: linear-gradient(135deg, #200a0a 0%, #150505 100%);
}

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

.footer-logo h3 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 0.3rem;
}

.footer-logo p {
	font-size: 0.85rem;
	opacity: 0.7;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.footer-legal {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.footer-legal a {
	color: rgba(255, 234, 211, 0.5);
	font-size: 0.82rem;
	transition: var(--transition);
	font-weight: 400;
}

.footer-legal a:hover {
	color: #ffead3;
}

.footer-links a {
	color: rgba(255, 234, 211, 0.7);
	font-size: 0.9rem;
	transition: var(--transition);
	font-weight: 500;
}

.footer-links a:hover {
	color: #ffead3;
}

.footer-copy {
	font-size: 0.82rem;
	opacity: 0.6;
	margin-bottom: 0.3rem;
}

.footer-location {
	font-size: 0.82rem;
	opacity: 0.5;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	width: 56px;
	height: 56px;
	background: #25d366;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
	z-index: 999;
	transition: var(--transition);
}

.whatsapp-btn:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--deep-red), var(--coral));
	color: #ffead3;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: var(--transition);
	z-index: 999;
}

.scroll-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-top:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-xl);
}

/* ===== ANIMATIONS ===== */
@keyframes heroGlow {
	0% {
		opacity: 0.6;
	}

	100% {
		opacity: 1;
	}
}

@keyframes scrollBounce {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(10px);
	}
}

@keyframes wheelScroll {
	0% {
		opacity: 1;
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		transform: translateY(10px);
	}
}

@keyframes countUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Fade-up animation base state */
.fade-up {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}

.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Ripple effect */
.btn .ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	pointer-events: none;
	animation: ripple-expand 0.6s ease-out;
}

@keyframes ripple-expand {
	from {
		transform: scale(0);
		opacity: 1;
	}

	to {
		transform: scale(4);
		opacity: 0;
	}
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

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

	.about-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.hero-title .line {
		font-size: 3.2rem;
	}
}

@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 75%;
		max-width: 320px;
		height: 100vh;
		background: linear-gradient(180deg, var(--nav-bg) 0%, #1a0f0f 100%);
		flex-direction: column;
		padding: 5rem 2rem 2rem;
		gap: 1.2rem;
		transition: right 0.4s ease;
		box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
		z-index: 999;
	}

	.nav-menu.active {
		right: 0;
	}

	.hamburger {
		display: flex;
		z-index: 1001;
	}

	.hero {
		padding: 100px 20px 40px;
		min-height: 100svh;
	}

	.hero-title .line {
		font-size: 2.4rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.hero-stats {
		gap: 1.2rem;
	}

	.stat-number {
		font-size: 1.8rem;
	}

	.stat-divider {
		height: 30px;
	}

	.section-title {
		font-size: 2rem;
	}

	.products-grid {
		grid-template-columns: 1fr;
	}

	.baskets-gallery {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.contact-map iframe {
		min-height: 300px;
	}

	.about-features {
		grid-template-columns: 1fr 1fr;
	}

	.btn {
		padding: 0.8rem 1.5rem;
		font-size: 0.88rem;
	}
}

@media (max-width: 480px) {
	.hero-title .line {
		font-size: 1.9rem;
	}

	.hero-badge {
		font-size: 0.75rem;
		padding: 0.4rem 1rem;
	}

	.hero-cta {
		flex-direction: column;
		align-items: center;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1rem;
	}

	.stat-divider {
		width: 40px;
		height: 1px;
	}

	.about-features {
		grid-template-columns: 1fr;
	}

	.baskets-gallery {
		grid-template-columns: 1fr;
	}

	.logo-text h1 {
		font-size: 1.2rem;
	}

	.logo-text p {
		font-size: 0.65rem;
	}

	.footer-links {
		gap: 1rem;
	}

	.section-title {
		font-size: 1.7rem;
	}
}
