:root {
	--primary: #ff4fa3;
	--primary-rgb: 255, 79, 163;
	--bg: #f7f7fb;
	--surface: #ffffff;
	--surface-2: #ffffff;
	--text: #0f172a;
	--muted: #475569;
	--border: rgba(2, 6, 23, 0.08);
	--shadow: 0 12px 30px rgba(2, 6, 23, 0.12);
	--radius: 16px;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
		"Apple Color Emoji", "Segoe UI Emoji";
	background: radial-gradient(1200px 600px at 20% 10%, rgba(var(--primary-rgb), 0.20), transparent 55%),
		radial-gradient(900px 500px at 80% 0%, rgba(99, 102, 241, 0.10), transparent 55%),
		linear-gradient(180deg, var(--bg), #ffffff 65%);
	color: var(--text);
	padding-top: 78px;
}

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

.container {
	max-width: 1140px;
}

/* Material-ish surfaces */
.surface {
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	backdrop-filter: blur(10px);
}

.navbar {
	background: rgba(255, 255, 255, 0.75);
	border-bottom: 1px solid var(--border);
	backdrop-filter: blur(12px);
}

.navbar .navbar-brand {
	color: var(--text);
	display: inline-flex;
	align-items: center;
}

.navbar .navbar-brand:hover {
	color: var(--text);
}

.brand-badge img {
	flex: 0 0 auto;
}

.brand-badge span {
	white-space: nowrap;
	color: var(--text);
	font-weight: 900;
	letter-spacing: 0.3px;
	text-shadow: 0 1px 10px rgba(2, 6, 23, 0.18);
}

.navbar .navbar-toggler {
	border-color: rgba(2, 6, 23, 0.18);
}

.navbar .navbar-toggler-icon {
	filter: none;
}

.navbar .nav-link {
	color: rgba(15, 23, 42, 0.86);
	border-radius: 999px;
	padding: 0.5rem 0.9rem;
}

.navbar .nav-link:hover {
	background: rgba(var(--primary-rgb), 0.12);
	color: var(--text);
}

.navbar .nav-link.active {
	background: rgba(var(--primary-rgb), 0.22);
	color: var(--text);
	border: 1px solid rgba(var(--primary-rgb), 0.35);
}

.brand-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-weight: 800;
	letter-spacing: 0.2px;
}

.brand-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--primary);
	box-shadow: 0 0 0 6px rgba(var(--primary-rgb), 0.18);
}

.hero {
	padding: 5.5rem 0 2.5rem;
}

.hero-title {
	font-weight: 900;
	line-height: 1.05;
}

.hero-subtitle {
	color: var(--muted);
	max-width: 52ch;
}

.btn-primary {
	background: var(--primary);
	border-color: var(--primary);
	box-shadow: 0 10px 18px rgba(var(--primary-rgb), 0.25);
}

.btn-primary:hover {
	background: #ff2f93;
	border-color: #ff2f93;
}

.btn-outline-light {
	border-color: rgba(255, 255, 255, 0.2);
}

.icon-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.75rem;
	border-radius: 999px;
	background: rgba(2, 6, 23, 0.04);
	border: 1px solid var(--border);
	color: rgba(15, 23, 42, 0.92);
}

.section {
	padding: 2.5rem 0;
}

.section-title {
	font-weight: 800;
}

.section-lead {
	color: var(--muted);
	max-width: 70ch;
}

.feature-card {
	padding: 1.25rem;
}

.feature-icon {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: rgba(var(--primary-rgb), 0.14);
	border: 1px solid rgba(var(--primary-rgb), 0.25);
}

.product-card {
	overflow: hidden;
}

.product-card img {
	width: 100%;
	height: 190px;
	object-fit: cover;
}

.badge-soft {
	background: rgba(var(--primary-rgb), 0.16);
	border: 1px solid rgba(var(--primary-rgb), 0.28);
	color: var(--text);
	font-weight: 600;
}

.price {
	font-weight: 800;
	color: var(--text);
}

.muted {
	color: var(--muted);
}

.divider {
	height: 1px;
	background: var(--border);
	margin: 1.5rem 0;
}

.footer {
	margin-top: 2.5rem;
	padding: 2.5rem 0 1.25rem;
	border-top: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.65);
}

.social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(2, 6, 23, 0.04);
	border: 1px solid var(--border);
}

.social a:hover {
	background: rgba(var(--primary-rgb), 0.14);
	border-color: rgba(var(--primary-rgb), 0.35);
}

.map-embed {
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border);
}

.form-control,
.form-select {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--border);
	color: var(--text);
}

.form-control:focus,
.form-select:focus {
	border-color: rgba(var(--primary-rgb), 0.6);
	box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.18);
	background: rgba(255, 255, 255, 0.98);
	color: var(--text);
}

.form-control::placeholder {
	color: rgba(156, 163, 175, 0.75);
}

.toast-container {
	z-index: 1080;
}

@media (max-width: 991.98px) {
	.hero {
		padding-top: 4.75rem;
	}
}
