* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--accent: #e5c795; /* beige */
	--chocolate: #442a18; /* background */
	--text: #ffffff;
}

body {
	font-family: 'Montserrat', 'Arial', sans-serif;
	background-color: var(--chocolate); /* chocolate fallback */
	background-image: url('img/FondoWeb.png');
	/* Tile the background image to form a denser mosaic */
	background-repeat: repeat;
	background-size: 999px; /* smaller tile for more repetition */
	background-position: top left;
	color: #ffffff; /* default to white text */
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	background-color: rgba(0,0,0,0.06); /* subtle wrap so content reads on dark bg */
	padding: 18px;
	border-radius: 8px;
}

/* Normalize vertical spacing for all main sections inside the container */
.container > section {
	padding: 48px 20px; /* consistent vertical rhythm */
	margin-bottom: 32px; /* gap between sections */
}

/* Consistent spacing for section headings */
.container > section h2,
.container > section .section-title-main,
.container > section h3 {
	margin-bottom: 24px;
}

/* Header */
.header-info {
	background-color: transparent;
	padding: 8px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	color: #ffffff;
}

.phone {
	display: flex;
	align-items: center;
}

.phone::before {
	content: "📞";
	margin-right: 5px;
}

/* Navigation */
.nav-bar {
	background-color: transparent;
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-links {
	display: flex;
	gap: 40px;
}

.nav-links a {
	color: #ffffff;
	text-decoration: none;
	font-size: 18px;
	font-weight: 600;
}

.logo {
	width: 60px;
	height: 60px;
	background: none;
	border-radius: 50%;
	display: block;
	object-fit: contain;
	box-shadow: none;
	margin: 0 20px;
}

/* Hero Section */
.hero {
	padding: 0; /* slider will control height */
	text-align: center;
	position: relative;
}

.hero h1 {
	font-size: 48px;
	color: #ffffff;
	margin-bottom: 20px;
}

/* Hero video slider - responsive to 1920x800 source, without changing site centering */
.hero-slider {
	position: relative;
	width: 100%;
	max-width: 1920px; /* don't upscale past source */
	margin: 0 auto; /* keep whole site sections centered */
	aspect-ratio: 1920 / 800; /* maintain exact source proportion */
	height: auto; /* let aspect-ratio determine height */
	overflow: hidden;
	display: block;
	background: transparent; /* no black frame around hero */
}

.hero-slider .slide {
	/* Fill the hero container but show the full video without cropping */
	position: absolute;
	inset: 0; /* top:0; right:0; bottom:0; left:0 */
	width: 100%;
	height: 100%;
	object-fit: contain; /* show entire 1920x800 frame */
	object-position: center center;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	background: transparent; /* prevent white initially */
	z-index: 1; /* base layer for videos */
}

.hero-slider .slide.active {
	opacity: 1;
}

/* canvas-based chroma-keyed video overlay */
.hero-canvas {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	display: block;
	z-index: 3;
	pointer-events: none; /* allow hover on hero to still work */
	background: transparent; /* ensure no white bg */
	mix-blend-mode: normal;
}

.hero-canvas-wrap { position: absolute; inset: 0; }

/* keep previous smaller-screen behavior: a shorter fixed height on narrow devices */
@media (max-width: 768px) {
	.hero-slider { aspect-ratio: auto; height: 320px; }
}

.hero-content {
	position: absolute;
	top: 50%;
	left: 50px;
	transform: translateY(-50%);
	z-index: 5;
	text-align: left;
}

.hero-content h1 {
	color: #ffffff;
	font-size: 48px;
	margin: 0;
	text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.cake-display {
	position: absolute;
	right: 50px;
	top: 20px;
	width: 200px;
	height: 150px;
	background: linear-gradient(45deg, 
		#ff6b6b 0%, #ff6b6b 16.66%, 
		#ffa500 16.66%, #ffa500 33.33%, 
		#ffff00 33.33%, #ffff00 50%, 
		#00ff00 50%, #00ff00 66.66%, 
		#00bfff 66.66%, #00bfff 83.33%, 
		#8a2be2 83.33%, #8a2be2 100%);
	border-radius: 10px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Catalog Section */
.catalog {
	padding: 40px 20px;
	background: transparent;
}

.catalog h2 {
	text-align: center;
	font-size: 32px;
	color: #ffffff;
	margin-bottom: 40px;
}

.flavor-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 50px;
}

.flavor-card {
	/* warmer, low-contrast card that reads on the chocolate background */
	background: linear-gradient(180deg, rgba(229,199,149,0.03), rgba(0,0,0,0.04));
	border-radius: 14px;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	text-align: center;
	border: 1px solid rgba(255,255,255,0.04);
	box-shadow: 0 8px 26px rgba(0,0,0,0.28);
}

.flavor-card:hover {
	transform: translateY(-5px);
}

.flavor-image {
	width: 100%;
	height: 200px;
}

.flavor-info {
	padding: 15px;
}

.flavor-name {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #ffffff;
}

.flavor-price {
	font-size: 16px;
	color: var(--text); /* keep prices high-contrast rather than yellow */
}

/* Decorations Section */
.decorations-title {
	text-align: center;
	font-size: 28px;
	color: #ffffff;
	margin: 40px 0;
}

.decoration-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 20px;
}

.decoration-card {
	background: linear-gradient(180deg, rgba(229,199,149,0.02), rgba(0,0,0,0.04));
	border-radius: 14px;
	overflow: hidden;
	text-align: center;
	border: 1px solid rgba(255,255,255,0.04);
	box-shadow: 0 8px 22px rgba(0,0,0,0.20);
}

.decoration-image {
	width: 100%;
	height: 150px;
}

.decoration-info {
	padding: 10px;
}

.decoration-name {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #ffffff;
}

.decoration-price {
	font-size: 14px;
	color: var(--text);
}

.note {
	text-align: center;
	font-size: 12px;
	color: rgba(255,255,255,0.9);
	margin: 20px 0;
	font-style: italic;
}

/* Chocolateria section */
.chocolateria {
	padding: 40px 20px;
}

.section-title-main {
	text-align: center;
	font-size: 32px;
	color: var(--chocolate);
	margin-bottom: 30px;
	font-family: 'Playlist Script', cursive;
	font-size: 48px;
	letter-spacing: 1px;
}

.chocolate-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: stretch;
}

/* row wrapper for the last two desayunos images so they center cleanly */
.desayunos-row {
	display: flex;
	gap: 20px;
	justify-content: center;
	grid-column: 1 / -1; /* span full width of the grid */
}
.desayunos-row .choco-card { width: calc(50% - 10px); max-width: 420px; }


/* Desayunos layout for wide screens: force items 1-3 to top row and keep the .desayunos-row on row 2 */
@media (min-width: 769px) {
	.desayunos .chocolate-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.desayunos .choco-card:nth-child(1) { grid-column: 1 / 2; }
	.desayunos .choco-card:nth-child(2) { grid-column: 2 / 3; }
	.desayunos .choco-card:nth-child(3) { grid-column: 3 / 4; }
	/* ensure the wrapped row stays on the second row and spans full width */
	.desayunos-row { grid-column: 1 / -1; justify-content: center; }
	.desayunos-row .choco-card { width: calc(50% - 10px); max-width: 420px; }
}

.choco-card {
	/* warmer card surface that pairs with the chocolate background */
	background: linear-gradient(180deg, rgba(229,199,149,0.02), rgba(0,0,0,0.05));
	border-radius: 12px;
	overflow: hidden;
	display: block;
	position: relative;
	padding: 0;
	transition: transform 0.28s cubic-bezier(.2,.9,.2,1), box-shadow 0.28s ease;
	box-shadow: 0 8px 24px rgba(0,0,0,0.22);
	border: 1px solid rgba(255,255,255,0.04);
}

.choco-card::after {
	/* subtle gradient overlay at the bottom for depth */
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 40%;
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.18) 100%);
	pointer-events: none;
}

.choco-card img {
	width: 100%;
	height: auto; /* let aspect-ratio control size */
	aspect-ratio: 3 / 4; /* portrait crop */
	object-fit: cover;
	display: block;
	transition: transform 0.45s cubic-bezier(.2,.9,.2,1), filter 0.35s ease;
	transform-origin: center center;
	filter: saturate(0.96) contrast(1.02) brightness(0.98);
	max-height: 520px; /* limit very tall crops on large screens */
}

.choco-card:hover {
	transform: translateY(-6px) scale(1.01);
	box-shadow: 0 22px 52px rgba(0,0,0,0.32);
	border-color: rgba(229,199,149,0.14);
}

.choco-card:hover img {
	transform: scale(1.06);
	filter: saturate(1.08) contrast(1.06) brightness(1.02);
}

/* keep chocolate grid at 3 columns on wide screens */

/* Mobile carousel for product galleries - desktop unchanged */
@media (max-width: 768px) {
	.choco-card img { aspect-ratio: 3 / 4; max-height: 280px; }
	
	/* Transform product grids into horizontal carousels on mobile only */
	.chocolate-grid {
		display: flex !important;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 16px;
		padding: 0 20px 20px 20px;
		margin: 0 -20px;
		-webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
	}
	
	/* Custom scrollbar for mobile carousel */
	.chocolate-grid::-webkit-scrollbar {
		height: 4px;
	}
	
	.chocolate-grid::-webkit-scrollbar-track {
		background: rgba(255,255,255,0.1);
		border-radius: 2px;
	}
	
	.chocolate-grid::-webkit-scrollbar-thumb {
		background: var(--accent);
		border-radius: 2px;
	}
	
	/* Fixed-width cards for carousel */
	.choco-card {
		flex: 0 0 260px; /* fixed width cards */
		scroll-snap-align: center;
		margin-bottom: 0;
	}
	
	/* Special handling for desayunos row in mobile carousel */
	.desayunos-row { 
		display: flex !important;
		gap: 16px;
		justify-content: flex-start;
		width: auto;
	}
	.desayunos-row .choco-card { 
		flex: 0 0 260px;
		width: 260px;
	}
	
	/* Add subtle scroll hint for mobile carousels */
	.section-title-main::after {
		content: "← Desliza para ver más →";
		display: block;
		font-family: 'Montserrat', sans-serif;
		font-size: 12px;
		font-weight: 400;
		color: rgba(255,255,255,0.7);
		margin-top: 8px;
		letter-spacing: 0.5px;
	}
}

/* clickable trigger styles */
.choco-trigger {
	border: 0;
	background: transparent;
	padding: 0;
	width: 100%;
	display: block;
	cursor: pointer;
	position: relative;
}
.choco-trigger:focus { outline: 2px solid rgba(229,199,149,0.3); }

/* lightbox */
.lightbox {
	position: fixed;
	inset: 0;
	display: grid;
	place-items: center;
	background: rgba(0,0,0,0.8);
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}
.lightbox.visible { opacity: 1; pointer-events: auto; }
.lightbox .lb-image {
	max-width: 92vw;
	max-height: 86vh;
	box-shadow: 0 18px 60px rgba(0,0,0,0.6);
	border-radius: 8px;
}
.lightbox .lb-close {
	position: absolute;
	top: 28px;
	right: 28px;
	background: rgba(255,255,255,0.06);
	color: #fff;
	border: none;
	padding: 8px 12px;
	font-size: 18px;
	border-radius: 6px;
	cursor: pointer;
}
.lightbox .lb-close:hover { background: rgba(255,255,255,0.12); }


/* Order Form */
.order-form {
	/* warm 'cafecito' surface similar to the footer */
	background: linear-gradient(180deg, rgba(68,42,24,0.96), rgba(68,42,24,0.82));
	padding: 42px 26px;
	margin: 40px 0;
	border-radius: 14px;
	border: 1px solid rgba(255,255,255,0.04);
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 0 14px 44px rgba(0,0,0,0.48);
	color: #ffffff; /* ensure white text inside the form */
}

.order-form h3 {
	text-align: center;
	font-size: 28px;
	color: #ffffff;
	margin-bottom: 30px;
}

.order-form h3 {
	font-family: 'Playlist Script', cursive;
	font-size: 40px;
	letter-spacing: 0.6px;
	color: #ffffff;
	text-shadow: 0 4px 18px rgba(0,0,0,0.45);
}

.form-group {
	margin-bottom: 20px;
}

.form-group input {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 10px;
	font-size: 18px;
	background: rgba(255,255,255,0.03);
	color: #ffffff;
	transition: box-shadow 0.14s ease, border-color 0.12s ease;
}

.form-group input::placeholder { color: rgba(255,255,255,0.65); }
.form-group input:focus { outline: none; box-shadow: 0 6px 20px rgba(229,199,149,0.12); border-color: rgba(229,199,149,0.22); }

.form-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin: 30px 0;
}

.section-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #ffffff;
}

.checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.checkbox-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.checkbox-item input[type="checkbox"] {
	width: auto;
}

.comments {
	margin: 20px 0;
}

.comments textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 8px;
	font-size: 16px;
	resize: vertical;
	min-height: 100px;
	background: rgba(255,255,255,0.03);
	color: #ffffff;
}

.terms {
	margin: 20px 0;
}

.terms label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	color: rgba(255,255,255,0.9);
}

.terms { margin-top: 18px; }

/* Style anchor-based submit as CTA button */
.submit-btn {
	background-color: var(--accent); /* beige accent */
	color: var(--chocolate); /* dark text on beige button */
	border: none;
	padding: 16px 28px;
	font-size: 18px;
	border-radius: 10px;
	cursor: pointer;
	display: inline-block;
	margin: 26px auto 0;
	transition: transform 0.12s ease, box-shadow 0.15s ease;
	text-align: center;
	text-decoration: none;
}

.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(68,42,24,0.16); }
.submit-btn:active { transform: translateY(-1px); }
.submit-btn:focus { outline: 3px solid rgba(229,199,149,0.28); }

.submit-btn {
	background-color: var(--accent); /* beige accent */
	color: var(--chocolate); /* dark text on beige button */
	border: none;
	padding: 15px 40px;
	font-size: 18px;
	border-radius: 8px;
	cursor: pointer;
	display: block;
	margin: 30px auto;
	transition: transform 0.12s ease, opacity 0.15s ease;
}

.submit-btn:hover {
	transform: translateY(-2px);
	opacity: 0.98;
}

/* Products Grid (from previous sections) */
.products {
	padding: 40px 20px;
}

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

.product-card {
	background: rgba(255,255,255,0.04);
	border-radius: 15px;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

.product-card:hover {
	transform: translateY(-5px);
}

.product-image {
	width: 100%;
	height: 200px;
	background-size: cover;
	background-position: center;
}

.cake1 { 
	background: radial-gradient(circle at center, white 40%, #ff6b6b 70%);
	position: relative;
}

.cake1::after {
	content: "";
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 20px;
	background: #ff0000;
	border-radius: 50px;
	box-shadow: 
		-20px 10px 0 #ff3333,
		20px 10px 0 #ff3333,
		0px 20px 0 #ff6666,
		-40px 20px 0 #ff6666,
		40px 20px 0 #ff6666;
}

.cake2 { 
	background: linear-gradient(180deg, #ffd700 0%, #ffeb3b 100%);
	position: relative;
}

.cake2::after {
	content: "";
	position: absolute;
	top: 30px;
	left: 20px;
	right: 20px;
	height: 3px;
	background: repeating-linear-gradient(
		90deg,
		#8b4513 0px,
		#8b4513 10px,
		transparent 10px,
		transparent 20px
	);
}

.cake3 { 
	background: linear-gradient(180deg, #8b4513 0%, #deb887 100%);
	position: relative;
}

.cake3::after {
	content: "";
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	height: 40px;
	background: #654321;
	border-radius: 10px;
}

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

.product-category {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	position: relative;
}

.category-image {
	width: 100%;
	height: 150px;
	background-size: cover;
	background-position: center;
}

.pays { 
	background: radial-gradient(circle at center, #8b4513 30%, #f5deb3 70%);
	position: relative;
}

.pays::after {
	content: "";
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	height: 20px;
	background: #000080;
	border-radius: 50px;
}

.muffins { 
	background: linear-gradient(45deg, #8b0000 30%, #fff 70%);
	position: relative;
}

.muffins::after {
	content: "";
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 60px;
	background: #ff69b4;
	border-radius: 50%;
}

.sin-azucar { 
	background: linear-gradient(180deg, #f5f5dc 0%, #fff8dc 100%);
	position: relative;
}

.sin-azucar::after {
	content: "";
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	bottom: 20px;
	background: repeating-linear-gradient(
		45deg,
		#ddd 0px,
		#ddd 5px,
		transparent 5px,
		transparent 10px
	);
}

.category-label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(68,42,24,0.85);
	color: var(--accent);
	text-align: center;
	padding: 10px;
	font-size: 18px;
	font-weight: 700;
}

/* Footer */

/* legacy .footer styles left for reference; new full-width footer below */

/* full-width site footer */
.site-footer {
	width: 100%;
	background: linear-gradient(180deg, rgba(68,42,24,1), rgba(48,30,18,1));
	color: #fff;
	padding: 36px 0;
	border-top: 4px solid rgba(229,199,149,0.06);
}
.site-footer .footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 18px;
}
.footer-address h3 { margin-bottom: 10px; font-size: 20px; color: var(--accent); }
.footer-address p { margin: 6px 0; color: rgba(255,255,255,0.95); }
.footer-address a { color: var(--accent); font-weight: 700; text-decoration: none; }
.footer-address a:hover { text-decoration: underline; color: rgba(68,42,24,1); }

/* Footer layout with 3 equal columns */
.site-footer .footer-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.footer-address,
.social-links,
.footer-logo {
	flex: 1;
	text-align: center;
}
.footer-logo img {
	width: 180px;
	height: auto;
	display: block;
	margin: 0 auto;
	border-radius: 50%;
	background: rgba(255,255,255,0.03);
	padding: 6px;
}

@media (max-width: 768px) {
	.site-footer .footer-inner { flex-direction: column; align-items: center; text-align: center; }
	.footer-logo { margin-top: 12px; }
	.footer-logo img { width: 140px; }
}

/* Social Links */
.social-links {
	display: flex;
	gap: 15px;
	justify-content: center;
	align-items: center;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.1);
	border-radius: 8px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.social-links a:hover {
	background: var(--accent);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.social-links a:hover svg {
	fill: var(--chocolate);
}

.social-links svg {
	transition: fill 0.3s ease;
}

@media (max-width: 768px) {
	.social-links {
		gap: 20px;
		margin-bottom: 20px;
	}
}


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

.map-placeholder {
	background: linear-gradient(45deg, #87ceeb, #98fb98);
	border-radius: 10px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	position: relative;
	overflow: hidden;
}

.map-placeholder::before {
	content: "🗺️";
	font-size: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.products-grid,
	.products-grid-bottom,
	.flavor-grid,
	.decoration-grid {
		grid-template-columns: 1fr;
	}
    
	.footer {
		grid-template-columns: 1fr;
	}
    
	.form-section {
		grid-template-columns: 1fr;
	}

	.order-form { padding: 26px 18px; }
	.submit-btn { width: 100%; }
    
	.nav-links {
		gap: 20px;
	}
    
	.hero h1 {
		font-size: 32px;
	}
	.cake-display {
		position: static;
		width: 150px;
		height: 100px;
		margin: 20px auto;
	}

	/* reduce hero height on small screens */
	.hero-slider {
		height: 320px;
	}
}

/* Map section styles */
.map-section { padding: 28px 20px 6px; }
.map-wrap {
	/* match the content width inside .container so it aligns with the photo grids */
	max-width: 100%;
	width: 100%;
	margin: 0 0 18px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.06);
	box-shadow: 0 12px 36px rgba(0,0,0,0.36);
	background: linear-gradient(180deg, rgba(68,42,24,0.95), rgba(68,42,24,0.9));
	padding: 8px;
}
.map-embed {
	width: 100%;
	height: 420px;
	border: 0;
	display: block;
	border-radius: 8px;
}
.map-note { text-align: center; color: rgba(255,255,255,0.86); margin-top: 8px; font-size: 14px; }
.map-note a {
	color: var(--accent);
	font-weight: 700;
	text-decoration: none;
}
.map-note a:hover,
.map-note a:focus {
	text-decoration: underline;
	color: rgba(68,42,24,1);
}

@media (max-width: 768px) {
	.map-embed { height: 300px; }
	.map-section { padding: 18px 12px 6px; }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
	.hero-slider .slide,
	.flavor-card,
	.product-card,
	.decoration-card,
	.submit-btn {
		transition: none !important;
	}
	.hero-slider .slide { animation: none; }
}
