	:root {
		--navy: #0a1f44;
		--ocean: #1565c0;
		--sky: #42a5f5;
		--frost: #e3f2fd;
		--ice: #f0f8ff;
		--white: #ffffff;
		--accent: #00bcd4;
		--gold: #f9a825;
		--text: #1a2a4a;
		--muted: #607d8b;
	}

	* {
		box-sizing: border-box;
	}

	body {
		font-family: 'DM Sans', sans-serif;
		color: var(--text);
		background: var(--white);
		overflow-x: hidden;
	}

	h1,
	h2,
	h3,
	h4 {
		font-family: 'Playfair Display', serif;
	}

	/* ── NAVBAR ── */
	.navbar {
		background: rgba(10, 31, 68, 0.95);
		backdrop-filter: blur(12px);
		padding: 1rem 0;
		border-bottom: 1px solid rgba(66, 165, 245, 0.2);
		position: sticky;
		top: 0;
		z-index: 1000;
	}

	.navbar-brand {
		font-family: 'Playfair Display', serif;
		font-size: 1.6rem;
		color: var(--white) !important;
		letter-spacing: 1px;
	}

	.navbar-brand span {
		color: var(--accent);
	}

	.navbar .nav-link {
		color: rgba(255, 255, 255, 0.8) !important;
		font-weight: 500;
		font-size: 0.9rem;
		letter-spacing: 0.5px;
		padding: 0.4rem 1rem !important;
		border-radius: 20px;
		transition: all 0.3s;
	}

	.navbar .nav-link:hover {
		color: var(--white) !important;
		background: rgba(66, 165, 245, 0.2);
	}

	.btn-nav {
		background: linear-gradient(135deg, var(--accent), var(--sky));
		color: white !important;
		border-radius: 25px !important;
		padding: 0.4rem 1.4rem !important;
		font-weight: 600 !important;
		transition: transform 0.2s, box-shadow 0.2s !important;
	}

	.btn-nav:hover {
		transform: translateY(-2px);
		box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4) !important;
	}

	/* ── HERO ── */
	.hero {
		min-height: 100vh;
		background:
			linear-gradient(160deg, rgba(10, 31, 68, 0.92) 0%, rgba(21, 101, 192, 0.85) 60%, rgba(0, 188, 212, 0.7) 100%),
			url('https://images.unsplash.com/photo-1510130387422-82bed34b37e9?w=1600&q=80') center/cover no-repeat;
		display: flex;
		align-items: center;
		position: relative;
		overflow: hidden;
	}

	.hero::before {
		content: '';
		position: absolute;
		inset: 0;
		background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2342a5f5' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	}

	.hero-badge {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		background: rgba(0, 188, 212, 0.2);
		border: 1px solid rgba(0, 188, 212, 0.5);
		color: var(--accent);
		padding: 6px 18px;
		border-radius: 30px;
		font-size: 0.82rem;
		font-weight: 600;
		letter-spacing: 1.5px;
		text-transform: uppercase;
		margin-bottom: 1.5rem;
	}

	.hero h1 {
		font-size: clamp(2.5rem, 6vw, 4.5rem);
		color: white;
		line-height: 1.1;
		margin-bottom: 1.5rem;
		text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
	}

	.hero h1 span {
		color: var(--accent);
	}

	.hero p {
		font-size: 1.15rem;
		color: rgba(255, 255, 255, 0.85);
		max-width: 520px;
		line-height: 1.7;
		margin-bottom: 2.5rem;
	}

	.btn-hero-primary {
		background: linear-gradient(135deg, var(--accent) 0%, #0097a7 100%);
		color: white;
		padding: 0.9rem 2.2rem;
		border-radius: 50px;
		font-weight: 600;
		font-size: 1rem;
		border: none;
		box-shadow: 0 8px 30px rgba(0, 188, 212, 0.4);
		transition: all 0.3s;
		text-decoration: none;
		display: inline-block;
	}

	.btn-hero-primary:hover {
		transform: translateY(-3px);
		box-shadow: 0 12px 40px rgba(0, 188, 212, 0.5);
		color: white;
	}

	.btn-hero-ghost {
		background: transparent;
		color: white;
		padding: 0.9rem 2.2rem;
		border-radius: 50px;
		font-weight: 500;
		font-size: 1rem;
		border: 1.5px solid rgba(255, 255, 255, 0.5);
		transition: all 0.3s;
		text-decoration: none;
		display: inline-block;
		margin-left: 1rem;
	}

	.btn-hero-ghost:hover {
		background: rgba(255, 255, 255, 0.1);
		color: white;
		border-color: white;
	}

	.hero-stats {
		display: flex;
		gap: 2.5rem;
		margin-top: 3rem;
		padding-top: 2rem;
		border-top: 1px solid rgba(255, 255, 255, 0.15);
	}

	.hero-stat-num {
		font-family: 'Playfair Display', serif;
		font-size: 2rem;
		color: white;
		font-weight: 700;
	}

	.hero-stat-label {
		font-size: 0.8rem;
		color: rgba(255, 255, 255, 0.6);
		text-transform: uppercase;
		letter-spacing: 1px;
	}

	.hero-float-card {
		background: rgba(255, 255, 255, 0.1);
		backdrop-filter: blur(20px);
		border: 1px solid rgba(255, 255, 255, 0.2);
		border-radius: 20px;
		padding: 1.5rem;
		color: white;
		max-width: 280px;
		position: absolute;
		right: 8%;
		top: 55%;
		transform: translateY(-50%);
		box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	}

	.temp-badge {
		background: linear-gradient(135deg, #0097a7, #006064);
		border-radius: 12px;
		padding: 0.8rem 1.2rem;
		margin-bottom: 1rem;
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.temp-badge .temp {
		font-size: 1.8rem;
		font-weight: 700;
		font-family: 'Playfair Display', serif;
	}

	.scroll-indicator {
		position: absolute;
		bottom: 2rem;
		left: 50%;
		transform: translateX(-50%);
		color: rgba(255, 255, 255, 0.5);
		text-align: center;
		animation: bounce 2s infinite;
	}

	@keyframes bounce {

		0%,
		100% {
			transform: translateX(-50%) translateY(0);
		}

		50% {
			transform: translateX(-50%) translateY(-8px);
		}
	}

	/* ── SECTION PRODUITS ── */
	.section-label {
		font-size: 0.78rem;
		font-weight: 700;
		letter-spacing: 3px;
		text-transform: uppercase;
		color: var(--accent);
		margin-bottom: 0.5rem;
	}

	.section-title {
		font-size: clamp(1.8rem, 4vw, 2.8rem);
		color: var(--navy);
		margin-bottom: 1rem;
	}

	.section-subtitle {
		color: var(--muted);
		font-size: 1.05rem;
		max-width: 550px;
		margin: 0 auto;
	}

	.product-card {
		border-radius: 20px;
		overflow: hidden;
		box-shadow: 0 4px 20px rgba(10, 31, 68, 0.08);
		transition: all 0.35s cubic-bezier(.25, .8, .25, 1);
		border: none;
		background: white;
	}

	.product-card:hover {
		transform: translateY(-8px);
		box-shadow: 0 20px 60px rgba(21, 101, 192, 0.15);
	}

	.product-card .img-wrapper {
		position: relative;
		overflow: hidden;
		height: 220px;
	}

	.product-card img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s;
	}

	.product-card:hover img {
		transform: scale(1.07);
	}

	.product-tag {
		position: absolute;
		top: 12px;
		left: 12px;
		background: var(--accent);
		color: white;
		padding: 4px 12px;
		border-radius: 30px;
		font-size: 0.72rem;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 1px;
	}

	.product-badge-cold {
		position: absolute;
		top: 12px;
		right: 12px;
		background: rgba(10, 31, 68, 0.85);
		color: var(--sky);
		padding: 4px 10px;
		border-radius: 20px;
		font-size: 0.7rem;
		display: flex;
		align-items: center;
		gap: 4px;
	}

	.product-body {
		padding: 1.4rem;
	}

	.product-name {
		font-family: 'Playfair Display', serif;
		font-size: 1.15rem;
		color: var(--navy);
		margin-bottom: 0.3rem;
	}

	.product-origin {
		font-size: 0.8rem;
		color: var(--muted);
		margin-bottom: 0.8rem;
	}

	.product-price {
		font-size: 1.4rem;
		font-weight: 700;
		color: var(--ocean);
	}

	.product-price span {
		font-size: 0.85rem;
		color: var(--muted);
		font-weight: 400;
	}

	.product-footer {
		padding: 0 1.4rem 1.4rem;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.stars {
		color: var(--gold);
		font-size: 0.8rem;
	}

	.btn-add {
		background: linear-gradient(135deg, var(--ocean), var(--sky));
		color: white;
		border: none;
		border-radius: 25px;
		padding: 0.45rem 1.2rem;
		font-size: 0.85rem;
		font-weight: 600;
		transition: all 0.2s;
		cursor: pointer;
	}

	.btn-add:hover {
		transform: scale(1.05);
		box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
	}

	/* ── COLD EXPERTISE ── */
	.expertise-section {
		background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 60%, #1976d2 100%);
		position: relative;
		overflow: hidden;
	}

	.expertise-section::before {
		content: '';
		position: absolute;
		top: -50%;
		right: -10%;
		width: 600px;
		height: 600px;
		background: radial-gradient(circle, rgba(0, 188, 212, 0.15), transparent 70%);
		border-radius: 50%;
	}

	.expertise-card {
		background: rgba(255, 255, 255, 0.08);
		backdrop-filter: blur(10px);
		border: 1px solid rgba(255, 255, 255, 0.15);
		border-radius: 20px;
		padding: 2rem;
		transition: all 0.3s;
		height: 100%;
	}

	.expertise-card:hover {
		background: rgba(255, 255, 255, 0.13);
		transform: translateY(-5px);
		border-color: rgba(0, 188, 212, 0.4);
	}

	.expertise-icon {
		width: 60px;
		height: 60px;
		background: linear-gradient(135deg, var(--accent), #0097a7);
		border-radius: 16px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.5rem;
		color: white;
		margin-bottom: 1.2rem;
		box-shadow: 0 8px 25px rgba(0, 188, 212, 0.3);
	}

	.expertise-card h5 {
		color: white;
		font-family: 'Playfair Display', serif;
		margin-bottom: 0.7rem;
	}

	.expertise-card p {
		color: rgba(255, 255, 255, 0.7);
		font-size: 0.9rem;
		line-height: 1.6;
		margin: 0;
	}

	.guarantee-banner {
		background: rgba(0, 188, 212, 0.15);
		border: 1px solid rgba(0, 188, 212, 0.4);
		border-radius: 20px;
		padding: 2rem;
		display: flex;
		align-items: center;
		gap: 2rem;
		margin-top: 3rem;
	}

	.guarantee-banner .g-icon {
		font-size: 3rem;
		color: var(--accent);
		flex-shrink: 0;
	}

	.guarantee-banner h4 {
		color: white;
		font-family: 'Playfair Display', serif;
		margin-bottom: 0.5rem;
	}

	.guarantee-banner p {
		color: rgba(255, 255, 255, 0.7);
		margin: 0;
		font-size: 0.95rem;
	}

	.cold-chain-img {
		border-radius: 24px;
		overflow: hidden;
		box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
		position: relative;
	}

	.cold-chain-img img {
		width: 100%;
		height: 400px;
		object-fit: cover;
	}

	.cold-chain-overlay {
		position: absolute;
		bottom: 1.5rem;
		left: 1.5rem;
		right: 1.5rem;
		background: rgba(10, 31, 68, 0.85);
		backdrop-filter: blur(10px);
		border-radius: 14px;
		padding: 1.2rem;
		display: flex;
		align-items: center;
		gap: 1rem;
		border: 1px solid rgba(66, 165, 245, 0.3);
	}

	.temp-display {
		font-size: 2rem;
		font-weight: 700;
		color: var(--accent);
		font-family: 'Playfair Display', serif;
		line-height: 1;
	}

	/* ── LOCALISATION ── */
	.location-section {
		background: var(--ice);
	}

	.map-container {
		border-radius: 24px;
		overflow: hidden;
		box-shadow: 0 15px 50px rgba(10, 31, 68, 0.12);
		height: 380px;
		position: relative;
		background: linear-gradient(135deg, #e3f2fd, #bbdefb);
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.map-placeholder {
		text-align: center;
		color: var(--muted);
	}

	.map-pin {
		position: absolute;
		width: 50px;
		height: 50px;
		background: linear-gradient(135deg, var(--ocean), var(--accent));
		border-radius: 50% 50% 50% 0;
		transform: rotate(-45deg);
		top: 40%;
		left: 48%;
		box-shadow: 0 10px 30px rgba(21, 101, 192, 0.4);
		display: flex;
		align-items: center;
		justify-content: center;
		animation: ping 2s infinite;
	}

	.map-pin::after {
		content: '';
		position: absolute;
		width: 20px;
		height: 20px;
		background: white;
		border-radius: 50%;
	}

	@keyframes ping {
		0% {
			box-shadow: 0 10px 30px rgba(21, 101, 192, 0.4);
		}

		50% {
			box-shadow: 0 10px 30px rgba(21, 101, 192, 0.4), 0 0 0 20px rgba(21, 101, 192, 0.1);
		}

		100% {
			box-shadow: 0 10px 30px rgba(21, 101, 192, 0.4);
		}
	}

	.map-roads {
		position: absolute;
		inset: 0;
		opacity: 0.15;
		background-image:
			linear-gradient(var(--ocean) 1px, transparent 1px),
			linear-gradient(90deg, var(--ocean) 1px, transparent 1px);
		background-size: 40px 40px;
	}

	.address-card {
		background: white;
		border-radius: 20px;
		padding: 2.5rem;
		height: 100%;
		box-shadow: 0 8px 30px rgba(10, 31, 68, 0.08);
	}

	.address-item {
		display: flex;
		gap: 1rem;
		padding: 1rem 0;
		border-bottom: 1px solid var(--frost);
	}

	.address-item:last-child {
		border-bottom: none;
	}

	.address-icon {
		width: 44px;
		height: 44px;
		border-radius: 12px;
		background: var(--frost);
		color: var(--ocean);
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.1rem;
		flex-shrink: 0;
	}

	.address-label {
		font-size: 0.75rem;
		color: var(--muted);
		text-transform: uppercase;
		letter-spacing: 1px;
	}

	.address-value {
		font-weight: 600;
		color: var(--navy);
		font-size: 0.95rem;
	}

	/* ── FOOTER ── */
	footer {
		background: var(--navy);
		padding: 4rem 0 2rem;
	}

	footer .brand {
		font-family: 'Playfair Display', serif;
		font-size: 1.6rem;
		color: white;
		margin-bottom: 0.8rem;
	}

	footer .brand span {
		color: var(--accent);
	}

	footer p {
		color: rgba(255, 255, 255, 0.5);
		font-size: 0.9rem;
	}

	footer h6 {
		color: white;
		font-weight: 600;
		letter-spacing: 1px;
		margin-bottom: 1.2rem;
		text-transform: uppercase;
		font-size: 0.78rem;
	}

	footer a {
		color: rgba(255, 255, 255, 0.55);
		text-decoration: none;
		display: block;
		margin-bottom: 0.5rem;
		font-size: 0.9rem;
		transition: color 0.2s;
	}

	footer a:hover {
		color: var(--accent);
	}

	.footer-bottom {
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		padding-top: 1.5rem;
		margin-top: 2rem;
	}

	.social-btn {
		width: 38px;
		height: 38px;
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.08);
		border: 1px solid rgba(255, 255, 255, 0.15);
		color: rgba(255, 255, 255, 0.7);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		margin-right: 8px;
		text-decoration: none !important;
		transition: all 0.2s;
	}

	.social-btn:hover {
		background: var(--accent);
		border-color: var(--accent);
		color: white !important;
	}

	/* ── UTILS ── */
	.bg-ice {
		background: var(--ice);
	}

	.section-py {
		padding: 6rem 0;
	}

	.divider {
		width: 60px;
		height: 4px;
		background: linear-gradient(135deg, var(--accent), var(--sky));
		border-radius: 2px;
		margin: 1rem 0 1.5rem;
	}

	.divider-center {
		margin: 1rem auto 1.5rem;
	}

	@media (max-width: 768px) {
		.hero-float-card {
			display: none;
		}

		.hero-stats {
			gap: 1.5rem;
		}

		.btn-hero-ghost {
			margin-left: 0;
			margin-top: 0.8rem;
		}

		.guarantee-banner {
			flex-direction: column;
			text-align: center;
		}
	}