:root {
	--bg: #ffffff;
	--text: #111111;
	--muted: #6f6f6f;
	--surface: #f6f6f4;
	--accent: #111111;
	--line: #e9e9e7;
	--shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Poppins", sans-serif;
	background: radial-gradient(circle at top right, #f6f6f4 0, #ffffff 45%);
	color: var(--text);
	line-height: 1.6;
}

img {
	display: block;
	width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: min(1120px, 92%);
	margin: 0 auto;
}

.section {
	padding: 96px 0;
}

.section-light {
	background: var(--surface);
}

.eyebrow {
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.78rem;
	margin-bottom: 0.8rem;
}

.navbar {
	position: sticky;
	top: 0;
	z-index: 10;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-inner {
	min-height: 76px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1rem;
}

.main-nav {
	justify-self: center;
}

.brand {
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	justify-self: start;
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	font-size: 1rem;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: clamp(1.1rem, 2vw, 2rem);
	font-weight: 500;
	font-size: 0.94rem;
	justify-content: center;
}

.nav-links a {
	position: relative;
}

.nav-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 0;
	height: 1.5px;
	background: var(--accent);
	transition: width 0.25s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

.cart-toggle {
	position: relative;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: #fff;
	display: grid;
	place-items: center;
	font-size: 1rem;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	justify-self: end;
}

.cart-toggle:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

.cart-count {
	position: absolute;
	top: -6px;
	right: -6px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #111;
	color: #fff;
	font-size: 0.72rem;
	display: grid;
	place-items: center;
	font-weight: 600;
}

.hero {
	padding: 56px 0 68px;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	align-items: stretch;
	gap: 1.2rem;
	padding: clamp(0.85rem, 2vw, 1.4rem);
	border-radius: 24px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	background: linear-gradient(120deg, #ffffff 5%, #f8f8f7 62%, #f4f4f3 100%);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.07);
}

.hero-content {
	padding: clamp(0.55rem, 1.3vw, 1rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero-content h1 {
	font-size: clamp(2.35rem, 4.2vw, 4.2rem);
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin-bottom: 0.75rem;
}

.hero-content p {
	max-width: 520px;
	color: #444;
	margin-bottom: 1.1rem;
}

.hero-image-wrap {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow);
	animation: heroFloat 6s ease-in-out infinite;
	margin-top: -14px;
}

.hero-image {
	min-height: 510px;
	object-fit: cover;
	object-position: center 22%;
}

.btn {
	display: inline-block;
	padding: 0.9rem 1.8rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-weight: 600;
	transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-primary {
	background: var(--accent);
	color: #fff;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
	box-shadow: 0 16px 28px rgba(0, 0, 0, 0.26);
}

.section-heading {
	margin-bottom: 2rem;
}

.section-heading h2 {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	margin-bottom: 0.4rem;
	letter-spacing: -0.01em;
}

.section-heading p {
	color: var(--muted);
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.product-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
	aspect-ratio: 3 / 4;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.product-card:hover {
	transform: translateY(-7px);
	box-shadow: var(--shadow);
}

.product-card:hover img {
	transform: scale(1.05);
}

.product-info {
	padding: 0.95rem 0.95rem 1.1rem;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	flex: 1;
}

.product-info h3 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.product-info p {
	color: var(--muted);
	font-weight: 500;
}

.add-to-cart {
	width: 100%;
	margin-top: auto;
	padding: 0.62rem 0.8rem;
	border-radius: 10px;
	border: 1px solid #111;
	background: #fff;
	font-family: inherit;
	font-size: 0.88rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.add-to-cart:hover {
	background: #111;
	color: #fff;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.category-card {
	position: relative;
	min-height: 320px;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.category-card img {
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.category-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.08));
}

.category-card span {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	z-index: 1;
	color: #fff;
	font-size: 1.05rem;
	font-weight: 600;
}

.category-card:hover img {
	transform: scale(1.06);
}

.about-box {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 2.2rem;
	align-items: center;
	padding: 2.4rem;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: #fff;
}

.about-box h2 {
	font-size: clamp(1.7rem, 2.4vw, 2.3rem);
	line-height: 1.25;
}

.about-box p {
	color: #3f3f3f;
}

.cta {
	padding-top: 0;
}

.cta-inner {
	background: #111;
	color: #fff;
	border-radius: 16px;
	padding: 3rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.cta-inner h2 {
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	max-width: 540px;
}

.btn-outline {
	border-color: rgba(255, 255, 255, 0.7);
	color: #fff;
}

.btn-outline:hover {
	background: #fff;
	color: #111;
}

.footer {
	border-top: 1px solid var(--line);
	padding: 2.2rem 0;
}

.cart-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.36);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
	z-index: 16;
}

.cart-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}

.cart-drawer {
	position: fixed;
	top: 0;
	right: 0;
	width: min(420px, 92vw);
	height: 100dvh;
	background: #fff;
	border-left: 1px solid var(--line);
	box-shadow: -14px 0 36px rgba(0, 0, 0, 0.12);
	padding: 1rem;
	display: grid;
	grid-template-rows: auto 1fr auto;
	transform: translateX(105%);
	transition: transform 0.28s ease;
	z-index: 17;
}

.cart-drawer.is-open {
	transform: translateX(0);
}

.cart-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.3rem 0.2rem 0.9rem;
	border-bottom: 1px solid var(--line);
}

.cart-header h3 {
	font-size: 1.3rem;
}

.cart-close {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: #fff;
	cursor: pointer;
}

.cart-items {
	overflow: auto;
	padding: 1rem 0.2rem;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.cart-empty {
	color: var(--muted);
	margin-top: 1rem;
}

.cart-item {
	display: grid;
	grid-template-columns: 72px 1fr auto;
	gap: 0.8rem;
	padding-bottom: 0.8rem;
	border-bottom: 1px solid var(--line);
}

.cart-item img {
	width: 72px;
	height: 88px;
	object-fit: cover;
	border-radius: 9px;
}

.cart-item h4 {
	font-size: 0.95rem;
	line-height: 1.3;
	margin-bottom: 0.2rem;
}

.cart-item p {
	font-size: 0.9rem;
	color: var(--muted);
	margin-bottom: 0.55rem;
}

.qty-controls {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--line);
	border-radius: 999px;
	overflow: hidden;
}

.qty-controls button {
	width: 28px;
	height: 28px;
	border: 0;
	background: #fff;
	cursor: pointer;
}

.qty-controls span {
	min-width: 26px;
	text-align: center;
	font-size: 0.85rem;
	font-weight: 600;
}

.remove-item {
	background: transparent;
	border: 0;
	color: #888;
	font-size: 0.82rem;
	cursor: pointer;
	margin-top: 0.2rem;
}

.cart-footer {
	border-top: 1px solid var(--line);
	padding: 0.95rem 0.2rem 0.2rem;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 0.6rem;
}

.cart-footer p {
	color: var(--muted);
}

.cart-footer strong {
	font-size: 1.15rem;
}

.cart-checkout {
	grid-column: 1 / -1;
	text-align: center;
	border-radius: 10px;
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.footer-links {
	display: flex;
	list-style: none;
	gap: 1.4rem;
	color: #2d2d2d;
	font-weight: 500;
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	text-align: center;
}

.footer-contact a {
	color: var(--muted);
	font-weight: 500;
	transition: color 0.2s ease;
}

.footer-contact a:hover {
	color: #111;
}

.social-links {
	display: flex;
	gap: 0.8rem;
}

.social-links a {
	width: 38px;
	height: 38px;
	border: 1px solid var(--line);
	border-radius: 50%;
	display: grid;
	place-items: center;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
	background: #111;
	color: #fff;
	transform: translateY(-2px);
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	pointer-events: none;
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

@keyframes heroFloat {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

@media (max-width: 1024px) {
	.product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.9rem;
	}

	.product-info {
		padding: 0.8rem;
	}

	.product-info h3 {
		font-size: 0.92rem;
		line-height: 1.35;
	}

	.product-info p {
		font-size: 0.88rem;
	}

	.add-to-cart {
		padding: 0.56rem 0.6rem;
		font-size: 0.8rem;
	}

	.nav-inner {
		grid-template-columns: 1fr auto auto;
		gap: 0.55rem;
		padding: 0.8rem 0;
		position: relative;
	}

	.main-nav {
		justify-self: stretch;
		grid-column: 1 / -1;
		display: none;
		padding: 0.45rem 0 0.15rem;
	}

	.main-nav.is-open {
		display: block;
	}

	.nav-toggle {
		display: grid;
		place-items: center;
		order: 2;
	}

	.nav-links {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.8rem;
		padding: 0.9rem 1rem;
		border: 1px solid var(--line);
		border-radius: 14px;
		background: #fff;
		box-shadow: var(--shadow);
	}

	.hero-grid,
	.about-box {
		grid-template-columns: 1fr;
	}

	.hero {
		padding: 36px 0 46px;
	}

	.hero-grid {
		gap: 0.7rem;
		padding: 0.75rem;
		border-radius: 18px;
	}

	.hero-content {
		padding: 0.3rem;
	}

	.hero-content h1 {
		margin-bottom: 0.6rem;
	}

	.hero-content p {
		margin-bottom: 0.95rem;
	}

	.hero-image-wrap {
		margin-top: 0;
	}

	.hero-image {
		min-height: 350px;
		object-position: center 18%;
	}

	.cta-inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 2.2rem;
	}
}

@media (max-width: 640px) {
	.hero {
		padding: 26px 0 36px;
	}

	.hero-grid {
		gap: 0.55rem;
		padding: 0.58rem;
	}

	.hero-content {
		padding: 0.2rem;
	}

	.hero-content p {
		margin-bottom: 0.82rem;
	}

	.hero-image {
		min-height: 300px;
		object-position: center 14%;
	}

	.section {
		padding: 76px 0;
	}

	.nav-links {
		gap: 1rem;
		font-size: 0.88rem;
		padding: 0.8rem;
	}

	.nav-inner {
		min-height: 70px;
	}

	.product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.category-grid {
		grid-template-columns: 1fr;
	}

	.category-card {
		min-height: 260px;
	}
}

@media (max-width: 420px) {
	.product-grid {
		gap: 0.7rem;
	}

	.product-card {
		border-radius: 12px;
	}

	.product-info {
		padding: 0.7rem;
	}

	.product-info h3 {
		font-size: 0.86rem;
	}

	.add-to-cart {
		font-size: 0.76rem;
		padding: 0.5rem 0.45rem;
	}
}
