/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; }

/* ===== VARIABLES ===== */
:root {
	--cream:      #faf6f0;
	--sand:       #f0e8d8;
	--warm-tan:   #d4b896;
	--honey:      #c4925a;
	--honey-dark: #a0743c;
	--brown:      #5c3d1e;
	--text-dark:  #2e1f0e;
	--text-mid:   #6b4e2e;
	--text-light: #9c7a5a;
	--white:      #ffffff;
	--accent:     #b8621a;
	--green:      #6a8a5c;

	--font-main:  'Montserrat', sans-serif;
	--font-serif: 'Cormorant Garamond', serif;

	--radius-sm:  8px;
	--radius-md:  14px;
	--radius-lg:  20px;

	--shadow-soft: 0 4px 20px rgba(90,50,10,0.10);
	--shadow-card: 0 2px 12px rgba(90,50,10,0.08);
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }
body {
	background: var(--cream);
	font-family: var(--font-main);
	color: var(--text-dark);
	font-size: 14px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
.main_wrapper {
	max-width: 480px;
	margin: 0 auto;
	overflow: hidden;
}

/* ===== SHARED ===== */
.section_title {
	font-family: var(--font-serif);
	font-size: 26px;
	font-weight: 600;
	color: var(--brown);
	line-height: 1.25;
	text-align: center;
	margin-bottom: 14px;
	padding: 0 20px;
}
.section_desc {
	font-size: 14px;
	color: var(--text-mid);
	text-align: center;
	line-height: 1.65;
	padding: 0 24px;
	margin-bottom: 18px;
}
.content_img {
	width: 100%;
	object-fit: contain;
	display: block;
}

/* ===== BUTTONS ===== */
.btn {
	display: block;
	width: calc(100% - 40px);
	margin: 20px 20px;
	padding: 16px 20px;
	border-radius: var(--radius-md);
	font-family: var(--font-main);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-align: center;
	cursor: pointer;
	border: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:active { transform: scale(0.98); }
.btn_primary {
	background: linear-gradient(135deg, var(--honey) 0%, var(--honey-dark) 100%);
	color: var(--white);
	box-shadow: 0 6px 24px rgba(160,116,60,0.4);
}
.btn_primary:active { box-shadow: 0 3px 12px rgba(160,116,60,0.35); }
.btn_outline {
	background: transparent;
	color: var(--honey-dark);
	border: 2px solid var(--honey);
}

/* ===== PRICE ===== */
.price_block {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 20px 20px;
	width: 100%;
}
.price_block.centered { justify-content: center; flex-wrap: wrap; }
.old_price_wrap {
	display: flex;
	flex-direction: column;
}
.old_price_label {
	font-size: 10px;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 0.8px;
}
.old_price {
	font-size: 16px;
	font-weight: 500;
	color: var(--text-light);
	text-decoration: line-through;
}
.new_price_wrap {
	display: flex;
	align-items: center;
	gap: 8px;
}
.discount_pill {
	background: #e8f0e0;
	color: var(--green);
	font-size: 12px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 20px;
}
.new_price {
	font-size: 24px;
	font-weight: 800;
	color: var(--accent);
}

/* ===== TIMER ===== */
.timer_block {
	background: var(--brown);
	margin: 0;
	padding: 18px 20px;
	text-align: center;
	width: 100%;
}
.timer_label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 11px;
	color: var(--warm-tan);
	letter-spacing: 0.6px;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.timer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
.timer_unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}
.t_val {
	background: rgba(255,255,255,0.12);
	color: var(--white);
	font-size: 28px;
	font-weight: 800;
	font-family: var(--font-main);
	width: 64px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	letter-spacing: 3px;
}
.t_label {
	font-size: 9px;
	color: var(--warm-tan);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.t_sep {
	color: var(--warm-tan);
	font-size: 24px;
	font-weight: 300;
	margin-bottom: 14px;
}

/* ===== STOCK BADGE ===== */
.stock_badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: #fff8f0;
	color: var(--accent);
	font-size: 13px;
	font-weight: 600;
	padding: 14px 20px;
	border-top: 1px solid #f0e0cc;
	width: 100%;
}
.stock_badge svg { flex-shrink: 0; }

/* ===== HERO ===== */
.hero_section {
	background: linear-gradient(180deg, #fff9f2 0%, var(--sand) 100%);
	padding: 30px 0 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.hero_badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	background: #fff3e0;
	color: var(--honey-dark);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.5px;
	padding: 6px 16px;
	border-radius: 20px;
	width: fit-content;
	margin: 0 auto 20px;
}
.hero_title {
	font-family: var(--font-serif);
	font-size: 42px;
	font-weight: 600;
	color: var(--brown);
	text-align: center;
	line-height: 1.1;
	letter-spacing: 1px;
	padding: 0 20px;
	margin-bottom: 16px;
}
.hero_sub {
	font-size: 14px;
	color: var(--text-mid);
	text-align: center;
	line-height: 1.55;
	padding: 0 28px;
	margin-bottom: 28px;
}
.product_image_wrap {
	position: relative;
	background: var(--sand);
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 20px 0;
}
.before_after_badge {
	position: absolute;
	top: 16px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 6px;
	background: rgba(255,255,255,0.9);
	border-radius: 20px;
	padding: 5px 14px;
	font-size: 12px;
	font-weight: 600;
	z-index: 2;
	box-shadow: var(--shadow-card);
	white-space: nowrap;
}
.ba_before { color: #b45a5a; }
.ba_divider { color: var(--text-light); }
.ba_after  { color: var(--green); }
.hero_product_img {
	width: 100%;
	max-width: 400px;
	object-fit: contain;
	margin: 0 auto;
}

/* ===== BEFORE/AFTER SECTION ===== */
.before_after_section {
	padding: 40px 0 30px;
	background: var(--white);
}
.ba_image_wrap {
	position: relative;
	margin: 0;
}
.ba_label_left,
.ba_label_right {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0,0,0,0.55);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 6px;
	z-index: 2;
}
.ba_label_left { left: 14px; }
.ba_label_right { right: 14px; }

/* ===== BENEFITS ===== */
.benefits_section {
	padding: 40px 0;
	background: var(--cream);
}
.benefits_list {
	padding: 20px 20px 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.benefit_item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: var(--white);
	border-radius: var(--radius-md);
	padding: 16px;
	box-shadow: var(--shadow-card);
}
.benefit_icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	background: #fff8f0;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.benefit_icon svg {
	width: 22px;
	height: 22px;
	stroke: var(--honey);
}
.benefit_text {
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.benefit_text strong {
	font-size: 14px;
	font-weight: 700;
	color: var(--brown);
}
.benefit_text span {
	font-size: 12px;
	color: var(--text-mid);
	line-height: 1.5;
}

/* ===== HOW TO ===== */
.howto_section {
	padding: 40px 0;
	background: var(--sand);
}
.steps_howto {
	padding: 20px 20px 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}
.step_howto {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	position: relative;
	padding-bottom: 20px;
}
.step_howto:not(:last-child)::after {
	content: '';
	position: absolute;
	left: 17px;
	top: 36px;
	bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, var(--warm-tan) 0%, transparent 100%);
}
.step_num {
	width: 36px;
	height: 36px;
	min-width: 36px;
	border-radius: 50%;
	background: var(--honey);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 800;
}
.step_content {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding-top: 6px;
}
.step_content strong {
	font-size: 14px;
	font-weight: 700;
	color: var(--brown);
}
.step_content span {
	font-size: 12px;
	color: var(--text-mid);
	line-height: 1.5;
}

/* ===== SPECS ===== */
.specs_section {
	padding: 40px 0;
	background: var(--white);
}
.specs_table {
	margin: 20px 20px 0;
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-card);
}
.spec_row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 16px;
	border-bottom: 1px solid var(--sand);
}
.spec_row:last-child { border-bottom: none; }
.spec_row:nth-child(odd) { background: var(--cream); }
.spec_row:nth-child(even) { background: var(--white); }
.spec_key {
	font-size: 12px;
	font-weight: 700;
	color: var(--text-mid);
	min-width: 100px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}
.spec_val {
	font-size: 13px;
	color: var(--text-dark);
	line-height: 1.4;
}

.progress_block {
	padding: 24px 20px 0;
}
.progress_title {
	font-size: 13px;
	font-weight: 700;
	color: var(--brown);
	margin-bottom: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.progress_item {
	margin-bottom: 14px;
}
.progress_label {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: var(--text-mid);
	margin-bottom: 5px;
}
.progress_label span:last-child {
	font-weight: 700;
	color: var(--honey-dark);
}
.progress_bar {
	height: 6px;
	background: var(--sand);
	border-radius: 10px;
	overflow: hidden;
}
.progress_fill {
	height: 100%;
	background: linear-gradient(90deg, var(--warm-tan) 0%, var(--honey) 100%);
	border-radius: 10px;
	transition: width 1s ease;
}

/* ===== REVIEWS ===== */
.reviews_section {
	padding: 40px 0 30px;
	background: var(--cream);
}
.reviews_list {
	padding: 20px 20px 20px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.review_card {
	background: var(--white);
	border-radius: var(--radius-md);
	padding: 18px;
	box-shadow: var(--shadow-card);
}
.review_top {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}
.reviewer_avatar {
	width: 48px;
	height: 48px;
	min-width: 48px;
	border-radius: 50%;
	overflow: hidden;
}
.reviewer_avatar svg { width: 100%; height: 100%; }
.reviewer_info {
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.reviewer_name {
	font-size: 14px;
	font-weight: 700;
	color: var(--brown);
}
.stars {
	display: flex;
	gap: 2px;
}
.stars svg {
	width: 13px;
	height: 13px;
}
.review_text {
	font-size: 13px;
	color: var(--text-mid);
	line-height: 1.6;
}
.review_photo {
	margin-top: 12px;
	border-radius: var(--radius-sm);
	width: 100%;
	object-fit: contain;
}

/* ===== ORDER STEPS ===== */
.order_steps_section {
	padding: 40px 0;
	background: var(--sand);
}
.steps_grid {
	display: flex;
	align-items: center;
	padding: 16px 16px 0;
	gap: 4px;
	overflow-x: auto;
}
.step_card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	background: var(--white);
	border-radius: var(--radius-md);
	padding: 14px 10px;
	min-width: 76px;
	box-shadow: var(--shadow-card);
	text-align: center;
}
.step_icon {
	width: 44px;
	height: 44px;
	background: #fff8f0;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.step_icon svg {
	width: 26px;
	height: 26px;
	stroke: var(--honey);
}
.step_label {
	font-size: 11px;
	font-weight: 700;
	color: var(--brown);
}
.step_desc {
	font-size: 10px;
	color: var(--text-light);
	line-height: 1.3;
}
.step_arrow {
	flex-shrink: 0;
	color: var(--warm-tan);
}
.step_arrow svg {
	width: 18px;
	height: 18px;
	stroke: var(--warm-tan);
}

.guarantees_block {
	padding: 20px 20px 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.guarantee_item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: var(--white);
	border-radius: var(--radius-md);
	padding: 14px 16px;
	box-shadow: var(--shadow-card);
}
.guar_icon {
	width: 40px;
	height: 40px;
	min-width: 40px;
	background: #e8f4e0;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.guar_icon svg {
	width: 22px;
	height: 22px;
	stroke: var(--green);
}
.guar_text {
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.guar_text strong {
	font-size: 13px;
	font-weight: 700;
	color: var(--brown);
}
.guar_text span {
	font-size: 12px;
	color: var(--text-mid);
	line-height: 1.4;
}

/* ===== LAST OFFER ===== */
.last_offer_section {
	background: linear-gradient(180deg, #fff9f2 0%, var(--sand) 100%);
	padding: 40px 0 0;
}
.last_offer_inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.last_product_img {
	width: 100%;
	object-fit: contain;
}
.last_title {
	font-family: var(--font-serif);
	font-size: 34px;
	font-weight: 600;
	color: var(--brown);
	text-align: center;
	letter-spacing: 1px;
	margin: 20px 0 6px;
}
.last_sub {
	font-size: 14px;
	color: var(--text-mid);
	text-align: center;
	padding: 0 30px;
	margin-bottom: 4px;
}

/* ===== FORM ===== */
.order_form {
	width: 100%;
	padding: 20px 20px 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.input_field {
	width: 100%;
	height: 52px;
	background: var(--white);
	border: 1.5px solid var(--warm-tan);
	border-radius: var(--radius-sm);
	padding: 0 16px;
	font-family: var(--font-main);
	font-size: 14px;
	color: var(--text-dark);
	outline: none;
	transition: border-color 0.2s;
}
.input_field::placeholder { color: var(--text-light); }
.input_field:focus { border-color: var(--honey); }
.order_form .btn { margin: 4px 0 0; width: 100%; }

/* ===== FOOTER ===== */
.site_footer {
	background: var(--brown);
	padding: 24px 20px;
	text-align: center;
}
.site_footer p {
	font-size: 11px;
	color: var(--warm-tan);
	line-height: 1.6;
	margin-bottom: 4px;
}
.site_footer a {
	font-size: 11px;
	color: var(--warm-tan);
	text-decoration: underline;
	display: block;
	margin: 6px 0;
}
.footer_copy {
	margin-top: 12px !important;
	font-size: 10px !important;
	color: rgba(196,168,130,0.6) !important;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(20px); }
	to   { opacity: 1; transform: translateY(0); }
}
.hero_section > * {
	animation: fadeInUp 0.5s ease both;
}
.hero_badge    { animation-delay: 0.05s; }
.hero_title    { animation-delay: 0.1s; }
.hero_sub      { animation-delay: 0.15s; }
.product_image_wrap { animation-delay: 0.2s; }
.price_block   { animation-delay: 0.25s; }
.timer_block   { animation-delay: 0.3s; }
.btn           { animation-delay: 0.35s; }
.stock_badge   { animation-delay: 0.4s; }
