:root {
	--grocery-primary: #16a34a;
	--grocery-primary-dark: #15803d;
	--grocery-accent: #f97316;
	--grocery-accent-dark: #ea580c;
	--grocery-surface: #ffffff;
	--grocery-muted: #f5fdf7;
	--grocery-stroke: rgba(22, 163, 74, 0.12);
	--grocery-text: #1f2937;
	--grocery-subtle: #6b7280;
	--grocery-radius-xl: 2rem;
	--grocery-radius-lg: 1.25rem;
	--grocery-radius-md: 0.875rem;
	color-scheme: light;
	font-family: 'Inter', Arial, sans-serif;
}

* {
	box-sizing: border-box;
}
.btn-primary.hidden {
	display: none !important;
}

.quantity-controls.hidden {
	display: none !important;
}

body {
	font-family: 'Inter', Arial, sans-serif;
	background: radial-gradient(circle at 0% 0%, rgba(34, 197, 94, 0.12) 0%, transparent 55%),
		radial-gradient(circle at 100% 0%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
		linear-gradient(180deg, #f2fbf4 0%, #ffffff 45%, #fdfdfd 100%);
	color: var(--grocery-text);
	min-height: 100vh;
}

.grocery-page {
	background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.14) 0%, transparent 45%),
		radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.12) 0%, transparent 50%),
		linear-gradient(180deg, #f5fdf7 0%, #ffffff 60%, #f9fafb 100%);
}

.grocery-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(22, 163, 74, 0.92) 0%, rgba(34, 197, 94, 0.85) 48%, rgba(249, 115, 22, 0.78) 100%);
	border-radius: var(--grocery-radius-xl);
	color: var(--grocery-text);
	box-shadow: 0 36px 80px -48px rgba(15, 118, 110, 0.45);
}

.grocery-hero::before,
.grocery-hero::after {
	content: none;
}

.grocery-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	background: rgba(22, 163, 74, 0.12);
	border: 1px solid rgba(22, 163, 74, 0.24);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}



@keyframes floatY {
	0%,
	100% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(18px) scale(1.04);
	}
}

.category-row {
	display: flex;
	overflow-x: auto;
	gap: 0.75rem;
	padding: 0.5rem 0;
	scroll-snap-type: x mandatory;
}

.category-pill {
	scroll-snap-align: start;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.65rem 1.1rem;
	border-radius: 999px;
	background: rgba(15, 118, 110, 0.08);
	color: var(--grocery-primary-dark);
	font-weight: 600;
	font-size: 0.9375rem;
	border: 1px solid rgba(22, 163, 74, 0.16);
	transition: all 0.3s ease;
	white-space: nowrap;
}

.category-pill:hover,
.category-pill:focus-visible {
	background: var(--grocery-primary);
	color: #f8fafc;
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-1px) scale(1.02);
	box-shadow: 0 16px 30px -16px rgba(22, 163, 74, 0.5);
}

.category-pill svg {
	width: 1.15rem;
	height: 1.15rem;
}

.product-card {
	background: rgba(255, 255, 255, 0.92);
	border-radius: var(--grocery-radius-lg);
	border: 1px solid rgba(148, 163, 184, 0.18);
	box-shadow: 0 12px 30px -18px rgba(15, 118, 110, 0.35);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 28px 44px -26px rgba(15, 118, 110, 0.45);
	border-color: rgba(22, 163, 74, 0.22);
}

.product-card__thumb {
	position: relative;
	aspect-ratio: 1 / 1;
	border-radius: calc(var(--grocery-radius-lg) - 0.25rem);
	margin: 0.65rem;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(236, 253, 245, 1) 0%, rgba(240, 253, 244, 0.6) 100%);
}

.product-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.product-card:hover .product-card__thumb img {
	transform: scale(1.06);
}

.floating-badge {
	position: absolute;
	top: 0.1rem;
	right: 0.1rem;
	background: rgb(255, 0, 0);
	/* color: var(--grocery-primary-dark); */
	color: #ffffff;

	font-weight: 750;
	font-size: 1rem;
	letter-spacing: 0.07em;
	padding: 0.30rem 0.70rem;
	border-radius: 999px;
	border: 1px solid rgba(125, 125, 125, 0.18);
	backdrop-filter: blur(7px);
	z-index: 5;
	pointer-events: none;
}

.product-card__info {
	padding: 0 1.1rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex: 1;
}

.product-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--grocery-text);
	margin: 0;
	line-height: 1.25;
	min-height: 2.6em; /* reserve space for two lines to keep buttons aligned */
	line-clamp: 2;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-card__meta {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
}

.product-card__price {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--grocery-primary-dark);
}

.product-card__price--muted {
	font-size: 0.95rem;
	color: #94a3b8;
	text-decoration: line-through;
}

.product-card__actions {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.quantity-controls {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(241, 245, 249, 0.85);
	border-radius: 999px;
	border: 1px solid rgba(15, 118, 110, 0.14);
	padding: 0.25rem 0.35rem;
	min-height: 44px;
	transition: box-shadow 0.2s ease, border 0.2s ease;
}

.quantity-controls button {
	width: 2.25rem;
	height: 2.25rem;
	font-weight: 700;
	border: none;
	background: transparent;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.quantity-controls button[data-action="decrement"] {
	background: rgba(22, 163, 74, 0.1);
	color: var(--grocery-primary-dark);
	border-radius: 999px;
}

.quantity-controls button[data-action="decrement"]:hover {
	background: rgba(22, 163, 74, 0.16);
}

.quantity-controls button[data-action="increment"] {
	background: var(--grocery-primary);
	color: #ffffff;
	border-radius: 999px;
}

.quantity-controls button[data-action="increment"]:hover {
	filter: brightness(1.08);
}

.quantity-controls [data-quantity-display] {
	min-width: 2rem;
	text-align: center;
	line-height: 1;
}

.quantity-controls:hover {
	border-color: rgba(22, 163, 74, 0.22);
	box-shadow: 0 16px 32px -22px rgba(15, 118, 110, 0.45);
}


.btn-primary {
	background: var(--grocery-primary);
	color: #f8fafc;
	font-weight: 600;
	padding: 0.6rem 1.35rem;
	border-radius: 999px;
	text-align: center;
	border: 1px solid rgba(15, 118, 110, 0.16);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	min-height: 44px;
	font-size: 0.9rem;
	box-shadow: 0 16px 28px -18px rgba(22, 163, 74, 0.45);
}

.btn-primary.w-full {
	display: flex;
	width: 100%;
}

.btn-primary:hover {
	background: var(--grocery-primary-dark);
	box-shadow: 0 18px 32px -18px rgba(22, 163, 74, 0.55);
	transform: translateY(-1px);
}

.btn-primary[disabled],
.btn-secondary[disabled] {
	opacity: 0.55;
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}

.btn-primary[disabled]:hover {
	background: var(--grocery-primary);
}

.btn-secondary[disabled]:hover {
	border-color: rgba(148, 163, 184, 0.26);
	color: var(--grocery-text);
}


.btn-secondary {
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(148, 163, 184, 0.26);
	color: var(--grocery-text);
	font-weight: 600;
	padding: 0.6rem 1.35rem;
	border-radius: 999px;
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	min-height: 42px;
	transition: all 0.2s ease;
}

.btn-secondary.w-full {
	display: flex;
	width: 100%;
}

@media (max-width: 480px) {
	.btn-primary {
		padding: 0.55rem 1.25rem;
		min-height: 40px;
		font-size: 0.88rem;
		gap: 0.35rem;
	}

	.quantity-controls {
		width: 100%;
		min-height: 40px;
		gap: 0.35rem;
		padding: 0.2rem 0.3rem;
	}


@media (max-width: 400px) {
	/* Keep action buttons and quantity controls the same height on very small screens */
	.product-card__actions .btn-primary {
		min-height: 46px;
		font-size: 0.9rem;
		padding: 0.55rem 1.1rem;
	}

	.product-card__actions .quantity-controls {
		min-height: 46px;
		padding: 0.3rem 0.4rem;
		gap: 0.4rem;
	}

	.quantity-controls button {
		width: 2.4rem;
		height: 2.4rem;
	}

	.quantity-controls [data-quantity-display] {
		font-size: 1rem;
	}
}
	.quantity-controls button {
		width: 2rem;
		height: 2rem;
	}

	.btn-secondary {
		padding: 0.55rem 1.25rem;
		min-height: 38px;
		font-size: 0.88rem;
		gap: 0.35rem;
	}
}

.btn-secondary:hover {
	border-color: rgba(22, 163, 74, 0.25);
	color: var(--grocery-primary-dark);
}

.glass-card {
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(226, 232, 240, 0.6);
	border-radius: var(--grocery-radius-lg);
	box-shadow: 0 20px 50px -40px rgba(15, 118, 110, 0.45);
	backdrop-filter: blur(12px);
}

.grocery-section-title {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.grocery-section-title h2 {
	font-size: clamp(1.4rem, 2.5vw + 0.6rem, 2rem);
	font-weight: 800;
	color: var(--grocery-text);
}

.grocery-section-title p {
	color: var(--grocery-subtle);
}

.sidebar-scroll {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.sidebar-scroll::-webkit-scrollbar {
	display: none;
}

.sidebar-nav-link {
	border: 1px solid rgba(255, 255, 255, 0.35);
	background-color: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(6px);
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sidebar-nav-link--default:hover,
.sidebar-nav-link--default:focus-visible,
.sidebar-nav-link--default.touch-active {
	background-color: rgba(255, 255, 255, 0.95);
	border-color: rgba(255, 255, 255, 0.95);
	color: #047857;
	box-shadow: 0 18px 36px -20px rgba(15, 118, 110, 0.45);
}

.sidebar-nav-link--active,
.sidebar-nav-link--active:hover,
.sidebar-nav-link--active:focus-visible,
.sidebar-nav-link--active.touch-active {
	background-color: #ffffff;
	border-color: rgba(255, 255, 255, 0.95);
	color: #047857;
	box-shadow: 0 20px 40px -22px rgba(15, 118, 110, 0.5);
}

.sidebar-nav-link--danger {
	color: #fecaca;
}

.sidebar-nav-link--danger:hover,
.sidebar-nav-link--danger:focus-visible,
.sidebar-nav-link--danger.touch-active {
	background-color: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 192, 203, 0.5);
	color: #ffffff;
	box-shadow: 0 18px 36px -20px rgba(185, 28, 28, 0.45);
}

.sidebar-nav-link__title {
	font-weight: 600;
}

.sidebar-nav-link--active .sidebar-nav-link__title {
	color: #065f46;
	font-weight: 700;
}

.sidebar-nav-link__subtitle {
	font-size: 0.75rem;
	margin-top: 0.25rem;
	color: rgba(255, 255, 255, 0.7);
}

.sidebar-nav-link--default:hover .sidebar-nav-link__subtitle,
.sidebar-nav-link--default:focus-visible .sidebar-nav-link__subtitle,
.sidebar-nav-link--default.touch-active .sidebar-nav-link__subtitle {
	color: rgba(4, 120, 87, 0.7) !important;
}

.sidebar-nav-link--active .sidebar-nav-link__subtitle {
	color: rgba(4, 120, 87, 0.7) !important;
}

.sidebar-nav-link--danger .sidebar-nav-link__subtitle {
	color: rgba(254, 202, 202, 0.75);
}

.mobile-menu-link {
	display: block;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background-color: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(6px);
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link:focus-visible {
	background-color: rgba(255, 255, 255, 0.45);
	border-color: rgba(255, 255, 255, 0.75);
	color: #f8fafc;
	box-shadow: 0 14px 32px -18px rgba(15, 118, 110, 0.45);
}

.mobile-menu-link.touch-active {
	background-color: rgba(255, 255, 255, 0.45) !important;
	border-color: rgba(255, 255, 255, 0.75) !important;
	color: #f8fafc !important;
	box-shadow: 0 14px 32px -18px rgba(15, 118, 110, 0.45) !important;
}

.mobile-menu-link--active {
	background-color: #ffffff;
	border-color: rgba(255, 255, 255, 0.95);
	color: #047857;
	box-shadow: 0 18px 38px -20px rgba(15, 118, 110, 0.5);
}

.mobile-menu-link--danger {
	color: #fecaca;
}

.mobile-menu-link--danger:hover,
.mobile-menu-link--danger:focus-visible,
.mobile-menu-link--danger.touch-active {
	color: #ffffff !important;
}

.mobile-menu-link--cta {
	background-color: rgba(255, 255, 255, 0.96);
	border-color: rgba(255, 255, 255, 0.96);
	color: #065f46;
	box-shadow: 0 18px 38px -18px rgba(15, 118, 110, 0.35);
}

.mobile-menu-link--cta:hover,
.mobile-menu-link--cta:focus-visible {
	background-color: #ffffff;
	color: #047857;
	box-shadow: 0 20px 42px -20px rgba(15, 118, 110, 0.4);
}

.floating-filter {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.85rem 1.2rem;
	background: rgba(255, 255, 255, 0.75);
	border-radius: 1.5rem;
	border: 1px solid rgba(22, 163, 74, 0.16);
	box-shadow: 0 20px 46px -28px rgba(15, 118, 110, 0.35);
}

.auth-page {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(3rem, 6vw, 6rem) 1.5rem;
	background: radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.12), transparent 55%),
		radial-gradient(circle at 80% 10%, rgba(249, 115, 22, 0.16), transparent 60%),
		linear-gradient(180deg, #f2fbf4 0%, #ffffff 55%, #f9fafb 100%);
	overflow: hidden;
}

.auth-page--compact {
	padding: clamp(1.75rem, 4vw, 3rem) 1.25rem;
	min-height: min(100vh, 760px);
}

.auth-page__shape {
	position: absolute;
	border-radius: 999px;
	opacity: 0.45;
	filter: blur(0px);
	pointer-events: none;
	animation: floatY 14s ease-in-out infinite;
}

.auth-page__shape--1 {
	width: 420px;
	height: 420px;
	background: radial-gradient(circle at center, rgba(34, 197, 94, 0.32), transparent 65%);
	top: -160px;
	left: -100px;
}

.auth-page__shape--2 {
	width: 360px;
	height: 360px;
	background: radial-gradient(circle at center, rgba(249, 115, 22, 0.28), transparent 68%);
	bottom: -140px;
	right: -80px;
	animation-delay: -4s;
}

.auth-page__shape--3 {
	width: 280px;
	height: 280px;
	background: radial-gradient(circle at center, rgba(14, 165, 233, 0.22), transparent 70%);
	top: 35%;
	left: 55%;
	transform: translate(-50%, -50%);
	animation-delay: -7s;
}

.auth-page--compact .auth-page__shape--1 {
	width: 320px;
	height: 320px;
}

.auth-page--compact .auth-page__shape--2 {
	width: 260px;
	height: 260px;
}

.auth-page--compact .auth-page__shape--3 {
	width: 220px;
	height: 220px;
}

.auth-page__container {
	position: relative;
	z-index: 10;
	width: min(1080px, 100%);
	display: grid;
	gap: clamp(2rem, 5vw, 3.25rem);
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	align-items: stretch;
}

.auth-page__container--single {
	max-width: 520px;
	display: flex;
	justify-content: center;
}

.auth-intro {
	position: relative;
	background: linear-gradient(135deg, rgba(22, 163, 74, 0.96) 0%, rgba(34, 197, 94, 0.88) 48%, rgba(56, 189, 248, 0.78) 100%);
	border-radius: var(--grocery-radius-xl);
	padding: clamp(2.5rem, 5vw, 3.4rem);
	color: #f8fafc;
	overflow: hidden;
	box-shadow: 0 32px 68px -36px rgba(15, 118, 110, 0.55);
}

.auth-intro::after {
	content: '';
	position: absolute;
	inset: 18% 6% auto;
	height: 220px;
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 65%),
		radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2), transparent 65%);
	filter: blur(0px);
	opacity: 0.45;
	pointer-events: none;
}

.auth-brand-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.35);
	font-weight: 800;
	font-size: 1.2rem;
}

.auth-intro__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(248, 250, 252, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 999px;
	padding: 0.45rem 0.95rem;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.auth-intro__title {
	font-size: clamp(2rem, 3vw, 2.45rem);
	font-weight: 800;
	line-height: 1.25;
}

.auth-intro__text {
	color: rgba(248, 250, 252, 0.8);
	font-size: 0.98rem;
	line-height: 1.6;
}

.auth-intro__features {
	list-style: none;
	margin: 1.75rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.85rem;
}

.auth-intro__features li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background: rgba(15, 118, 110, 0.16);
	border-radius: 1rem;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.auth-intro__icon {
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fef08a;
}

.auth-form {
	background: rgba(255, 255, 255, 0.94);
	border-radius: var(--grocery-radius-xl);
	border: 1px solid rgba(148, 163, 184, 0.18);
	box-shadow: 0 32px 60px -38px rgba(15, 118, 110, 0.46);
	padding: clamp(2.1rem, 4vw, 3rem);
	backdrop-filter: blur(12px);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.auth-form--single {
	width: 100%;
	max-width: 480px;
}

.auth-form__header {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.auth-form__badge {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	background: rgba(22, 163, 74, 0.14);
	color: var(--grocery-primary-dark);
	border: 1px solid rgba(22, 163, 74, 0.22);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.06em;
}

.auth-form__title {
	font-size: clamp(1.7rem, 2.3vw, 2.05rem);
	font-weight: 800;
	color: var(--grocery-text);
}

.auth-form__text {
	color: var(--grocery-subtle);
	font-size: 0.95rem;
	line-height: 1.55;
}

.auth-group {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.auth-label {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--grocery-subtle);
}

.auth-input {
	width: 100%;
	border-radius: 1rem;
	border: 1px solid rgba(148, 163, 184, 0.25);
	background: rgba(255, 255, 255, 0.9);
	padding: 0.85rem 1rem;
	font-size: 0.95rem;
	color: var(--grocery-text);
	transition: border 0.2s ease, box-shadow 0.2s ease;
}

.auth-input:focus {
	border-color: rgba(22, 163, 74, 0.45);
	box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
	outline: none;
}

.auth-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.9rem;
	color: var(--grocery-subtle);
	line-height: 1.5;
	cursor: pointer;
}

.auth-checkbox {
	appearance: none;
	width: 1.2rem;
	height: 1.2rem;
	border: 2px solid rgba(148, 163, 184, 0.4);
	border-radius: 0.375rem;
	background: rgba(255, 255, 255, 0.9);
	position: relative;
	cursor: pointer;
	flex-shrink: 0;
	margin-top: 0.125rem;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.auth-checkbox:checked {
	border-color: #16a34a;
	background-color: #16a34a;
}

.auth-checkbox:checked::after {
	content: '';
	position: absolute;
	left: 0.25rem;
	top: 0.125rem;
	width: 0.375rem;
	height: 0.625rem;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.auth-checkbox:focus {
	outline: none;
	box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.auth-checkbox-text {
	flex: 1;
}

/* Banner Section Styles */
.banner-section {
	margin: 0.5rem 0;
}

/* .banner-container {
	position: relative;
	/* max-width: 72rem; */
	/* margin: 0 auto; */
	/* padding: 0 1rem; */
/* }  */

.banner-section {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
}

.banner-container {
	position: relative;
	width: 100%;
}

.banner-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: auto;
	aspect-ratio: 1200 / 500;
	border-radius: calc(var(--grocery-radius-xl) - 0.5rem);
	box-shadow: 0 14px 40px rgba(12, 74, 43, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Desktop banner styling */
@media (min-width: 1024px) {
	.banner-slider {
		aspect-ratio: 1200 / 500;
	}
	.banner-content {
		padding: 3rem 3.5rem;
	}
	.banner-text {
		max-width: 46%;
	}
}

/* Mobile banner - adjust aspect ratio for better fit */
@media (max-width: 768px) {
	.banner-slider {
		aspect-ratio: 800 / 500;
		max-height: none;
		height: auto;
	}
}

.banner-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
	transform: translateX(100%);
	opacity: 0;
	will-change: transform, opacity;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
	overflow: hidden;
}

.banner-slide .banner-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* object-fit: none; */
	/* object-position: inherit; */
	filter: brightness(0.98);
}

@media (max-width: 768px) {
	.banner-slide .banner-img {
		object-position: center top;
	}
}

.banner-slide.active {
	transform: translateX(0);
	z-index: 3;
	opacity: 1;
}

/* Add subtle scale on hover for active slides */
.banner-slide.active:hover {
	transform: translateX(0) scale(1.02);
}

.banner-slide.prev {
	transform: translateX(-100%);
	z-index: 2;
}

.banner-slide.next {
	transform: translateX(100%);
	z-index: 1;
}

.banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.12) 50%, rgba(0, 0, 0, 0.25) 100%);
	/* Allow clicks to reach arrows, dots, and slide CTAs */
	pointer-events: none;
	z-index: 1;
}

.banner-content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	height: 100%;
	padding: 2rem;
	color: white;
}

/* Ensure CTA is clickable when an overlay exists on the slide */
.banner-cta {
	pointer-events: auto;
	z-index: 4;
}

.banner-text {
	flex: 1;
	max-width: 50%;
}

.banner-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.9);
	color: #1f2937;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.banner-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	line-height: 1.1;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-desc {
	font-size: 1.125rem;
	opacity: 0.95;
	line-height: 1.5;
	margin-bottom: 1.5rem;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.banner-cta {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(90deg, #ff6b35 0%, #ff8d5a 100%);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.25s ease;
	box-shadow: 0 8px 24px rgba(255, 107, 53, 0.14);
	border: none;
}

.banner-cta:hover {
	background: #e55a2b;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.banner-dots {
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	z-index: 20; /* ensure dots float above overlays */
}

.banner-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	/* Transparent background to make it visible but unobtrusive */
	background: rgba(255, 255, 255, 0.5);
	border: 2px solid rgba(255, 255, 255, 0.75);
	border-radius: 50%;
	color: #1f2937;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease, transform 0.15s ease;
	z-index: 20;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	/* Make center icons slightly more prominent */
	opacity: 0.95;
}

.banner-arrow:hover {
	/* Solid background when hovering to improve visibility */
	background: rgba(255, 255, 255, 0.95);
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 8px 26px rgba(0, 0, 0, 0.22);
}

.banner-arrow:focus {
	outline: none;
	transform: translateY(-50%) scale(1.05);
	box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

.banner-arrow:focus {
	outline: none;
	box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

.banner-arrow-prev {
	left: 1rem;
}

.banner-arrow-next {
	right: 1rem;
}

.banner-arrow svg {
	width: 20px;
	height: 20px;
}

.banner-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	border: 2px solid rgba(255, 255, 255, 0.8);
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}

.banner-dot::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
	opacity: 0;
}

.banner-dot.active {
	background: #ffffff;
	transform: scale(1.35);
	box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.banner-dot.active::before {
	opacity: 1;
	background: #ffffff;
}

.banner-dot:hover {
	background: rgba(255, 255, 255, 0.8);
	transform: scale(1.3);
	box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

/* Responsive Banner Styles */
@media (max-width: 768px) {
	/* .banner-slider {
		height: 300px;
	} */

	.banner-content {
		padding: 1.5rem;
	}

	.banner-text {
		max-width: 100%;
		text-align: center;
	}

	.banner-title {
		font-size: 1.75rem;
	}

	.banner-desc {
		font-size: 1rem;
	}

	.banner-cta {
		margin: 0 auto;
	}

	.banner-arrow {
		width: 40px;
		height: 40px;
	}

	.banner-arrow svg {
		width: 16px;
		height: 16px;
	}

	.banner-arrow-prev {
		left: 0.5rem;
	}

	.banner-arrow-next {
		right: 0.5rem;
	}
}

@media (max-width: 480px) {

	/* .banner-container {
	position: relative;
	width: 512px;
} */
	/* .banner-slider {
		height: 288px;
	} */

	.banner-content {
		padding: 1rem;
	}

	.banner-title {
		font-size: 1.5rem;
	}

	.banner-desc {
		font-size: 0.9rem;
		margin-bottom: 1rem;
	}

	.banner-badge {
		font-size: 0.75rem;
		padding: 0.4rem 0.8rem;
	}

	.banner-arrow {
		width: 36px;
		height: 36px;
	}

	.banner-arrow svg {
		width: 14px;
		height: 14px;
	}

	.banner-arrow-prev {
		left: 0.25rem;
	}

	.banner-arrow-next {
		right: 0.25rem;
	}
}

.otp-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 0.75rem;
	margin-top: 0.5rem;
}

.otp-input {
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	padding: 0.75rem 0;
	border-radius: 0.9rem;
	border: 1px solid rgba(148, 163, 184, 0.28);
	background: rgba(255, 255, 255, 0.92);
	transition: border 0.2s ease, box-shadow 0.2s ease;
}

.otp-input:focus {
	border-color: rgba(22, 163, 74, 0.5);
	box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16);
	outline: none;
}

.auth-alert {
	border-radius: 1rem;
	padding: 0.9rem 1rem;
	font-size: 0.9rem;
	font-weight: 600;
}

.auth-alert--error {
	background: rgba(248, 113, 113, 0.12);
	color: #b91c1c;
	border: 1px solid rgba(239, 68, 68, 0.22);
}

.auth-alert--success {
	background: rgba(34, 197, 94, 0.12);
	color: var(--grocery-primary-dark);
	border: 1px solid rgba(34, 197, 94, 0.24);
}

.auth-meta {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	font-size: 0.9rem;
	color: var(--grocery-subtle);
	text-align: center;
}

.auth-meta a {
	color: var(--grocery-primary);
	font-weight: 600;
	transition: color 0.2s ease;
}

.auth-meta a:hover {
	color: var(--grocery-primary-dark);
}

.auth-footnote {
	font-size: 0.8rem;
	color: rgba(71, 85, 105, 0.75);
}

@media (max-width: 480px) {
	.otp-grid {
		gap: 0.55rem;
	}

	.otp-input {
		font-size: 1.35rem;
		padding: 0.65rem 0;
	}
}

@media (max-width: 960px) {
	.auth-page__shape--3 {
		opacity: 0.3;
	}
}

@media (max-width: 768px) {
	.auth-page {
		padding: 3rem 1.1rem;
	}

	.auth-intro {
		order: 2;
		text-align: center;
	}

	.auth-intro__badge {
		justify-content: center;
	}

	.auth-intro__features li {
		justify-content: center;
		text-align: left;
	}
}

.grocery-footer {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(22, 163, 74, 0.92) 0%, rgba(34, 197, 94, 0.85) 48%, rgba(249, 115, 22, 0.78) 100%);
	color: rgba(248, 250, 252, 0.92);
	box-shadow: 0 36px 72px -40px rgba(15, 118, 110, 0.46);
	border: 1px solid rgba(255, 255, 255, 0.18);
	width: calc(100% - 1rem);
	max-width: 80rem;
	margin: 0 auto;
	border-radius: var(--grocery-radius-xl);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

@media (min-width: 768px) {
	.grocery-footer {
		width: calc(100% - 2rem);
		border-radius: var(--grocery-radius-xl);
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}
}

.grocery-footer__links {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-areas:
		"shop"
		"support";
	gap: 1.25rem;
}

.grocery-footer__section--shop {
	grid-area: shop;
}

.grocery-footer__section--support {
	grid-area: support;
}

@media (min-width: 640px) {
	.grocery-footer__links {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
		grid-template-areas: "shop support";
	}
}

.grocery-footer__heading {
	font-weight: 700;
	color: rgba(255, 255, 255, 0.94);
	margin-bottom: 0.75rem;
}

.grocery-footer__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.95rem;
	transition: color 0.2s ease;
}

.grocery-footer__link:hover {
	color: #ffffff;
}

.footer-dev-card {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 0;
	max-width: 320px;
}

.footer-dev-card--center {
	margin: 0 auto;
	align-items: center;
}

.footer-dev-card__tag {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--grocery-primary-dark);
	opacity: 0.8;
}

.footer-dev-card__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.25rem;
}

.footer-dev-card__logo img {
	max-height: 40px;
	width: auto;
	object-fit: contain;
}

.footer-dev-card__copy {
	text-align: center;
}

.shyno-logo {
	max-height: 80px;
	width: auto;
	object-fit: contain;
}

.footer-brand {
	align-self: center;
	justify-content: center;
}

/* Admin banner card styles for list view */
.banner-card {
	background: linear-gradient(180deg, #ffffff 0%, #fcfdfd 100%);
	border-radius: 1rem;
	border: 1px solid rgba(15, 118, 110, 0.06);
	overflow: hidden;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.18s ease;
	box-shadow: 0 10px 26px rgba(8, 18, 25, 0.04);
}
.banner-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 44px rgba(8, 18, 25, 0.08);
	border-color: rgba(15, 118, 110, 0.12);
}
.banner-card__media {
	position: relative;
	overflow: hidden;
	height: 0;
	padding-top: 56%; /* larger aspect for fuller image display */
	background: #f8fafc;
}
.banner-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease, filter 0.3s ease;
}
.banner-card__media:hover img {
	transform: scale(1.05);
}
.banner-card__meta {
	padding: 0.9rem 1rem;
	display: flex;
	align-items: start;
	gap: 0.75rem;
	justify-content: space-between;
}
.banner-card__meta .title { font-weight: 700; font-size: 0.95rem; color: var(--grocery-text); }
.banner-card__meta .desc { font-size: 0.85rem; color: #6b7280; margin-top: 0.25rem; }
.banner-card__meta .meta-right { margin-left: auto; display: flex; gap: 0.6rem; align-items: center; }
.banner-card__status { position: absolute; top: 0.5rem; right: 0.5rem; background: rgba(239,68,68,0.92); color: white; padding: 0.25rem 0.5rem; font-size: 0.68rem; border-radius: 999px; box-shadow: 0 6px 20px rgba(239,68,68,0.08); }
.banner-card__tag { font-size: 0.75rem; padding: 0.25rem 0.45rem; border-radius: 999px; background: rgba(34,197,94,0.08); color: var(--grocery-primary-dark); border: 1px solid rgba(34,197,94,0.08); }

/* Overlay for title/description and action buttons positioned on image */
.banner-card__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0.6rem 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	justify-content: space-between;
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.56) 100%);
	color: #fff;
	opacity: 0;
	transition: opacity 0.22s ease, transform 0.22s ease;
}
.banner-card:hover .banner-card__overlay {
	opacity: 1;
}
.banner-card__overlay.overlay-actions-only { opacity: 1; }
.banner-card__overlay .overlay-text h3 { margin: 0; font-weight: 700; font-size: 1rem; color: #fff; }
.banner-card__overlay .overlay-text p { margin: 0.25rem 0 0; font-size: 0.85rem; color: rgba(255,255,255,0.9); }
.banner-card__overlay .overlay-actions a, .banner-card__overlay .overlay-actions button { font-size: 0.82rem; }
.banner-card__overlay .overlay-actions a:hover, .banner-card__overlay .overlay-actions button:hover { transform: translateY(-1px); }

/* Compact display when only actions are present (no text) */
.banner-card__overlay.overlay-actions-only { justify-content: flex-end; background: linear-gradient(0deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.2) 100%); }

/* Small screens: compact layout and smaller hover effect */
@media (max-width: 640px) {
	.banner-card { border-radius: 0.75rem; }
	.banner-card__media { padding-top: 56%; }
	.banner-card__meta { padding: 0.6rem 0.75rem; }
}


@media (min-width: 1024px) {
	.footer-brand {
		align-self: flex-start;
		justify-content: flex-start;
		margin-left: 0;
	}

	.footer-dev-card {
		align-items: center;
		flex-direction: row;
		gap: 0.8rem;
		margin-top: 0;
	}

	.footer-dev-card--center {
		margin-left: 0;
		margin-right: 0;
		align-items: center;
	}

	.footer-dev-card__logo {
		margin-bottom: 0;
	}

	.footer-dev-card__copy {
		text-align: left;
	}
}

.product-grid {
	display: grid;
}

@media (max-width: 520px) {
	.product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem;
	}

	.product-card {
		min-width: 0;
	}

	.product-card__actions .btn-primary,
	.product-card__actions .btn-secondary {
		width: 100%;
	}
}

.hero-search {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	width: 100%;
}

.hero-search {
	position: relative; /* ensures z-index works */
	z-index: 30;
}

.hero-search__input input {
	background: rgba(255,255,255,0.96);
	border: 1px solid rgba(148,163,184,0.18);
	box-shadow: 0 10px 30px rgba(8,18,25,0.04);
	min-height: 48px;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.hero-search__input input:focus {
	box-shadow: 0 12px 36px rgba(8,18,25,0.06), 0 0 0 6px rgba(34,197,94,0.06);
	border-color: rgba(22,163,74,0.24);
}

.hero-search-card {
	min-height: clamp(320px, 42vh, 380px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}

@media (max-width: 768px) {
	.hero-search-card {
		min-height: auto;
	}
}

@media (min-width: 1024px) {
	.hero-search {
		flex-direction: row;
		align-items: center;
	}
}


.hero-search__input {
	flex: 1 1 auto;
}

.hero-search__select {
	flex: 0 0 auto;
	width: clamp(220px, 24vw, 320px);
}

.hero-search__input input,
.hero-search__select select {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(148, 163, 184, 0.26);
	transition: border 0.2s ease, box-shadow 0.2s ease;
}

.hero-search__input input:focus,
.hero-search__select select:focus {
	box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
	border-color: rgba(22, 163, 74, 0.28);
}

.hero-search__actions {
	flex: 0 0 auto;
}

@media (max-width: 1023px) {
	.hero-search__input,
	.hero-search__select {
		width: 100%;
	}

	.hero-search__actions {
		width: 100%;
		margin-left: auto;
	}
}

@media (min-width: 1024px) {
	.hero-search__actions {
		margin-left: auto;
		align-self: center;
	}
}

@media (max-width: 640px) {
	.footer-dev-card {
		margin: 0 auto;
		text-align: center;
	}

	.footer-dev-card__logo {
		margin: 0 auto;
	}

	.footer-dev-card__tag {
		justify-content: center;
	}
}

.grocery-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.85rem;
	font-weight: 600;
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	background: rgba(34, 197, 94, 0.15);
	color: var(--grocery-primary-dark);
	border: 1px solid rgba(22, 163, 74, 0.18);
}

.status-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.8rem;
	font-weight: 600;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	background: rgba(15, 118, 110, 0.08);
	color: var(--grocery-primary-dark);
}

.status-chip--warning {
	background: rgba(249, 115, 22, 0.12);
	color: var(--grocery-accent-dark);
}

.status-chip--danger {
	background: rgba(248, 113, 113, 0.15);
	color: #b91c1c;
}

.grocery-shadow {
	box-shadow: 0 28px 72px -48px rgba(15, 118, 110, 0.6);
}

@media (max-width: 640px) {
	.grocery-hero {
		border-radius: var(--grocery-radius-lg);
	}

	.category-row {
		margin: 0 -1rem;
		padding: 0.5rem 1rem;
	}

	.product-card {
		border-radius: var(--grocery-radius-md);
	}

	.product-card__thumb {
		margin: 0.5rem;
		border-radius: calc(var(--grocery-radius-md) - 0.25rem);
	}

	.btn-secondary {
		width: 100%;
	}

	.quantity-controls {
		width: 100%;
	}
}

/* Header Search Styles */
.header-search {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	max-width: 500px;
	width: 100%;
}

.header-search__input {
	flex: 1 1 auto;
	position: relative;
}

.header-search__input input {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(148, 163, 184, 0.26);
	border-radius: 9999px;
	padding: 0.5rem 1rem 0.5rem 2.5rem;
	transition: border 0.2s ease, box-shadow 0.2s ease;
	font-size: 0.875rem;
}

.header-search__input input:focus {
	box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
	border-color: rgba(22, 163, 74, 0.28);
}

.header-search__select {
	flex: 0 0 auto;
	position: relative;
}

.header-search__select select {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(148, 163, 184, 0.26);
	border-radius: 9999px;
	padding: 0.5rem 2rem 0.5rem 0.75rem;
	transition: border 0.2s ease, box-shadow 0.2s ease;
	font-size: 0.875rem;
	appearance: none;
}

.header-search__select select:focus {
	box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
	border-color: rgba(22, 163, 74, 0.28);
}

/* Mobile Search Styles */
.mobile-search {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.mobile-search__input {
	position: relative;
}

.mobile-search__input input {
	width: 100%;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(148, 163, 184, 0.18);
	border-radius: 9999px;
	box-shadow: 0 10px 30px rgba(8, 18, 25, 0.04);
	min-height: 48px;
	padding: 0.75rem 1rem 0.75rem 3rem;
	font-size: 1rem;
}

.mobile-search__input input:focus {
	box-shadow: 0 12px 36px rgba(8, 18, 25, 0.06), 0 0 0 6px rgba(34, 197, 94, 0.06);
	border-color: rgba(22, 163, 74, 0.24);
}

.mobile-search__select {
	position: relative;
}

.mobile-search__select select {
	width: 100%;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(148, 163, 184, 0.26);
	border-radius: 9999px;
	padding: 0.75rem 2rem 0.75rem 3rem;
	font-size: 1rem;
	appearance: none;
	transition: border 0.2s ease, box-shadow 0.2s ease;
}

.mobile-search__select select:focus {
	box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
	border-color: rgba(22, 163, 74, 0.28);
}

/* Mobile Search Overlay Animation */
@keyframes slideInUp {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.animate-slide-in {
	animation: slideInUp 0.4s ease-out;
}
