* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	background: #f2f2f2;
	color: #111;
}

.page {
	width: 480px;
	max-width: 100%;
	margin: 0 auto;
	background: #fff;
	min-height: 100vh;
	padding-bottom: 120px;
}

/* HEADER */
.header {
	height: 56px;
	display: flex;
	align-items: center;
	padding: 0 24px;
	border-bottom: 1px solid #eee;
	background: #fff;
}

.header-inner {
	display: flex;
	align-items: center;
}

/* LOGO (Tailwind-like) */
.logo {
	display: flex;
	align-items: center;
	gap: 8px;
}

.logo-icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: #111;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 16px;
	line-height: 1;
}

.logo-text {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.03em; /* tracking-tight */
}

/* HERO */
.hero img,
.block-image img {
	width: 100%;
	display: block;
}

/* COMMON */
.container {
	padding: 20px 24px;
}

section {
	margin-bottom: 22px;
}

h2 {
	font-size: 20px;
	margin-bottom: 10px;
}

ul, ol {
	padding-left: 18px;
}

li {
	margin-bottom: 8px;
	line-height: 1.4;
}

/* PRICE BOX */
.price-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f6f7f9;
	border-radius: 14px;
	padding: 14px 16px;
	margin: 16px 24px 22px;
}

.price-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.old-price {
	color: #9aa0a6;
	text-decoration: line-through;
	font-size: 14px;
}

.discount {
	background: #ffb703;
	color: #000;
	font-size: 14px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 999px;
}

.price-right .new-price {
	font-size: 26px;
	font-weight: 700;
	color: #1a73e8;
}

/* IMAGE BETWEEN BLOCKS */
.block-image {
	margin: 14px 0 18px;
}

/* FORM */
form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

input {
	padding: 14px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 6px;
}

button {
	padding: 14px;
	font-size: 16px;
	background: #ffb703;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
}

.note {
	font-size: 14px;
	color: #666;
	margin-top: 8px;
	text-align: center;
}

/* PAYMENT & DELIVERY */
.delivery {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid #eee;
	font-size: 14px;
	color: #444;
}

.delivery h3 {
	font-size: 16px;
	margin-bottom: 8px;
}

.delivery ul {
	list-style: none;
	padding-left: 0;
}

.delivery li {
	margin-bottom: 6px;
}

/* FOOTER */
.footer {
	background: #0e0e0e;
	color: #aaa;
	font-size: 14px;
	text-align: center;
	padding: 36px 24px 24px;
}

.footer-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}

.footer .logo-icon {
	background: #fff;
	color: #000;
}

.footer .logo-text {
	color: #fff;
}

.footer-info {
	line-height: 1.7;
	margin-bottom: 16px;
}

.footer a {
	color: #aaa;
	text-decoration: underline;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* STICKY BAR */
.sticky-bar {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 480px;
	max-width: 100%;
	background: #fff;
	border-top: 1px solid #ddd;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 12px;
	gap: 10px;
	z-index: 999;
}

.sticky-prices {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
}

.sticky-prices .old {
	color: #999;
	text-decoration: line-through;
}

.sticky-prices .new {
	color: #1a73e8;
	font-weight: 700;
}

.sticky-timer {
	font-size: 12px;
	color: #666;
}

.sticky-btn {
	background: #ffb703;
	border: none;
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
}