/* ==========================================================================
   DANIAH Florist PIK — main.css
   ========================================================================== */

:root {
	--rose-900: #4e1128;
	--rose-800: #6d1a37;
	--rose-700: #8a2346;
	--rose-500: #c2456e;
	--rose-200: #f3cdd8;
	--blush-100: #fbeef1;
	--blush-50: #fff7f5;
	--cream: #fffbf7;
	--sage-800: #2f4b35;
	--sage-600: #4f7156;
	--sage-100: #e7efe6;
	--gold: #c9a45c;
	--ink: #2b1a21;
	--text: #4a3a40;
	--muted: #7a676e;
	--line: #eedfe3;
	--white: #fff;
	--wa: #1faa59;
	--wa-dark: #178a48;
	--wa-soft: #e6f6ec;

	--font-display: "Playfair Display", Georgia, "Times New Roman", serif;
	--font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

	--radius-sm: 10px;
	--radius: 16px;
	--radius-lg: 28px;
	--shadow-sm: 0 1px 2px rgba(78, 17, 40, .06), 0 2px 8px rgba(78, 17, 40, .05);
	--shadow: 0 10px 30px -12px rgba(78, 17, 40, .22);
	--container: 1200px;
	--gutter: clamp(16px, 4vw, 32px);
}

/* Reset ringan ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--text);
	background: var(--cream);
	-webkit-font-smoothing: antialiased;
}
img, svg, video, iframe { max-width: 100%; }
img { height: auto; display: block; }
a { color: var(--rose-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--rose-900); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; }
h1, h2 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--rose-500); outline-offset: 2px; border-radius: 4px; }
[hidden] { display: none !important; }
.screen-reader-text, .skip-link:not(:focus) {
	position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link:focus { position: fixed; top: 8px; left: 8px; z-index: 1000; background: var(--white); padding: 8px 14px; border-radius: 8px; box-shadow: var(--shadow); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.muted { color: var(--muted); }
.icon { width: 1.25em; height: 1.25em; flex-shrink: 0; }

/* Tombol ------------------------------------------------------------------ */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5em;
	padding: .8em 1.3em; border-radius: 999px; border: 1.5px solid transparent;
	font-weight: 600; font-size: .95rem; line-height: 1.1; text-decoration: none; cursor: pointer;
	transition: background-color .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
	white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 1em 1.6em; font-size: 1rem; }
.btn--sm { padding: .6em 1em; font-size: .85rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--rose-700); color: var(--white); }
.btn--primary:hover { background: var(--rose-800); color: var(--white); }
.btn--wa { background: var(--wa); color: var(--white); box-shadow: 0 6px 16px -6px rgba(31, 170, 89, .6); }
.btn--wa:hover { background: var(--wa-dark); color: var(--white); }
.btn--wa-soft { background: var(--wa-soft); color: var(--wa-dark); }
.btn--wa-soft:hover { background: #d3efdd; color: var(--wa-dark); }
.btn--ghost { background: transparent; color: var(--rose-700); border-color: var(--rose-200); }
.btn--ghost:hover { border-color: var(--rose-700); color: var(--rose-800); background: var(--white); }
.btn--light { background: var(--white); color: var(--rose-800); }
.btn--light:hover { background: var(--blush-100); color: var(--rose-900); }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .45); }
.btn--outline-light:hover { background: rgba(255, 255, 255, .12); color: var(--white); border-color: var(--white); }
.btn--ig { background: linear-gradient(135deg, #7b3fbf 0%, #d6336c 55%, #f08a3c 100%); color: var(--white); }
.btn--ig:hover { color: var(--white); filter: brightness(1.06); }

.eyebrow {
	display: inline-flex; align-items: center; gap: .5em;
	font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
	color: var(--sage-600); margin-bottom: .8em;
}
.eyebrow .status__dot { align-self: flex-start; margin-top: .45em; }

/* Topbar ------------------------------------------------------------------ */
.topbar { background: var(--rose-900); color: #f5dfe6; font-size: .82rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 38px; }
.topbar a { color: inherit; text-decoration: none; }
.topbar a:hover { color: var(--white); }
.topbar__links { display: flex; gap: 18px; align-items: center; }
.topbar__links > * { display: inline-flex; align-items: center; gap: 6px; }
.topbar .icon { width: 15px; height: 15px; opacity: .8; }
.status { display: inline-flex; align-items: center; gap: 8px; }
.status__dot {
	width: 8px; height: 8px; border-radius: 50%; background: #3ddc84; flex-shrink: 0;
	box-shadow: 0 0 0 0 rgba(61, 220, 132, .6); animation: pulse 2s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 7px rgba(61, 220, 132, 0); } 100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0); } }

/* Header ------------------------------------------------------------------ */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(255, 251, 247, .92); backdrop-filter: saturate(1.4) blur(10px);
	border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 20px -16px rgba(78, 17, 40, .4); }
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 0; } }
.header__inner { display: flex; align-items: center; gap: 24px; min-height: 84px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand__logo { height: 66px; width: auto; display: block; }
.brand__tag { align-self: center; padding-left: 14px; margin-left: 2px; border-left: 1px solid var(--line); line-height: 1.3; white-space: nowrap; }
.footer__brand img { height: 80px; width: auto; display: block; }
.brand__mark {
	display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
	background: var(--rose-700); color: var(--white);
}
.brand__mark .icon { width: 24px; height: 24px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--ink); letter-spacing: .02em; }
.brand__name em { font-style: italic; font-weight: 500; color: var(--rose-700); }
.brand__tag { font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

.main-nav .menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.main-nav .menu a {
	display: block; padding: .55em .85em; border-radius: 999px;
	color: var(--ink); font-weight: 500; font-size: .95rem; text-decoration: none;
}
.main-nav .menu a:hover, .main-nav .current-menu-item > a { background: var(--blush-100); color: var(--rose-800); }
.main-nav .menu li { position: relative; }
.main-nav .sub-menu {
	list-style: none; margin: 0; padding: 8px; position: absolute; top: 100%; left: 0; min-width: 220px;
	background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow);
	opacity: 0; visibility: hidden; transform: translateY(6px); transition: .18s;
}
.main-nav li:hover > .sub-menu, .main-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.nav__cta { display: none; }
.nav-toggle {
	display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line);
	background: var(--white); color: var(--ink); cursor: pointer; place-items: center;
}
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

/* Hero -------------------------------------------------------------------- */
.hero {
	position: relative; overflow: hidden;
	background:
		radial-gradient(900px 500px at 100% 0%, var(--blush-100), transparent 60%),
		radial-gradient(520px 360px at 0% 70%, var(--sage-100), transparent 70%),
		var(--cream);
	padding-block: clamp(40px, 7vw, 88px);
}
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__title { font-size: clamp(2.1rem, 4.6vw, 3.6rem); line-height: 1.08; margin-bottom: .45em; }
.hero__title em { font-style: italic; color: var(--rose-700); font-weight: 500; }
.hero__lead { font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--text); max-width: 34em; margin-bottom: 1.6em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero__badges { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero__badges li { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--ink); }
.hero__badges .icon { color: var(--sage-600); }

.hero__visual { position: relative; }
.hero__frame {
	position: relative; aspect-ratio: 6 / 7; max-width: 460px; margin-left: auto;
	border-radius: 240px 240px var(--radius-lg) var(--radius-lg); overflow: hidden;
	box-shadow: var(--shadow); background: var(--blush-100);
	outline: 1px solid rgba(138, 35, 70, .08); outline-offset: 10px;
}
.hero__frame img, .hero__frame .ph-svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__chip {
	position: absolute; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
	padding: 12px 16px; font-size: .85rem; line-height: 1.35; color: var(--text);
}
.hero__chip strong { color: var(--ink); }
.hero__chip--price { top: 14%; left: 0; display: flex; flex-direction: column; }
.hero__chip--ig { top: 14%; left: 0; display: flex; gap: 12px; align-items: center; text-decoration: none; transition: transform .2s; }
.hero__chip--ig:hover { transform: translateY(-2px); }
.hero__chip--ig small { display: block; font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.hero__chip .hero__chip-icon--ig { background: linear-gradient(135deg, #7b3fbf, #d6336c 55%, #f08a3c); color: var(--white); }
.hero__chip--price span { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.hero__chip--price strong { font-family: var(--font-display); font-size: 1.35rem; color: var(--rose-700); }
.hero__chip--ship { bottom: 8%; left: -4%; display: flex; gap: 12px; align-items: center; }
.hero__chip-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--sage-100); color: var(--sage-800); }

/* Keunggulan -------------------------------------------------------------- */
.usp { position: relative; z-index: 2; margin-top: -1px; padding-block: 8px 0; }
.usp__grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
	background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
	overflow: hidden;
}
.usp__item { display: flex; gap: 14px; padding: 24px 22px; }
.usp__item + .usp__item { border-left: 1px solid var(--line); }
.usp__icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--blush-100); color: var(--rose-700); flex-shrink: 0; }
.usp__title { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin-bottom: .25em; }
.usp__item p { font-size: .88rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* Section umum ------------------------------------------------------------ */
.section { padding-block: clamp(56px, 8vw, 96px); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(28px, 4vw, 44px); }
.section__head--left { text-align: left; margin-left: 0; }
.section__title { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
.section__sub { color: var(--muted); font-size: 1.02rem; margin: 0; }
.section__more { text-align: center; margin-top: 40px; }
.section__more { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.section__more .muted { flex-basis: 100%; margin: 2px 0 0; font-size: .92rem; }

/* Filter chips */
.filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 32px; }
.filter__btn {
	padding: .55em 1.1em; border-radius: 999px; border: 1px solid var(--line); background: var(--white);
	color: var(--text); font-weight: 600; font-size: .88rem; cursor: pointer; text-decoration: none; transition: .18s;
}
.filter__btn:hover { border-color: var(--rose-200); color: var(--rose-800); }
.filter__btn.is-active { background: var(--rose-700); border-color: var(--rose-700); color: var(--white); }

/* Grid & kartu produk ----------------------------------------------------- */
.grid { display: grid; gap: clamp(16px, 2.2vw, 28px); }
.grid--products { grid-template-columns: repeat(4, 1fr); }
.grid--posts { grid-template-columns: repeat(3, 1fr); }
.grid--testi { grid-template-columns: repeat(3, 1fr); }

.card {
	display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius);
	border: 1px solid var(--line); overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card.is-hidden { display: none; }
.card__media { position: relative; display: block; aspect-ratio: 1; overflow: hidden; background: var(--blush-100); }
.card__media img, .card__media .ph-svg { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card__media img, .card:hover .card__media .ph-svg { transform: scale(1.04); }
.card__label {
	position: absolute; top: 12px; left: 12px; background: var(--rose-700); color: var(--white);
	font-size: .72rem; font-weight: 700; letter-spacing: .04em; padding: .35em .8em; border-radius: 999px;
}
.card__body { display: flex; flex-direction: column; gap: 4px; padding: 16px 16px 18px; flex: 1; }
.card__cat { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sage-600); }
.card__title { font-family: var(--font-body); font-size: 1.02rem; font-weight: 700; line-height: 1.35; margin: 0; }
.card__title a { color: var(--ink); text-decoration: none; }
.card__title a:hover { color: var(--rose-700); }
.card__size { font-size: .82rem; color: var(--muted); margin: 0; }
.price { margin: 6px 0 12px; }
.price strong { font-size: 1.12rem; color: var(--rose-700); font-weight: 700; }
.price del { color: var(--muted); font-size: .85rem; margin-right: 4px; }
.price__ask { font-weight: 700; color: var(--rose-700); }
.card__actions { display: grid; grid-template-columns: 1fr 1.25fr; gap: 8px; margin-top: auto; padding-top: 12px; }

/* Cara pesan -------------------------------------------------------------- */
.section--steps { background: var(--white); border-block: 1px solid var(--line); }
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: s; }
.steps__item { position: relative; padding: 28px 22px 24px; border-radius: var(--radius); background: var(--cream); border: 1px solid var(--line); }
.steps__num {
	position: absolute; top: 18px; right: 20px; font-family: var(--font-display); font-size: 2.4rem; line-height: 1;
	color: var(--rose-200); font-weight: 700;
}
.steps__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--rose-700); color: var(--white); margin-bottom: 16px; }
.steps__item h3 { font-size: 1.05rem; margin-bottom: .35em; }
.steps__item p { font-size: .9rem; color: var(--muted); margin: 0; }

/* Form pesan -------------------------------------------------------------- */
.section--order { background: linear-gradient(180deg, var(--blush-50), var(--cream)); }
.order__grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
.order-form {
	display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px 18px;
	background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
	padding: clamp(20px, 3vw, 34px); box-shadow: var(--shadow-sm);
}
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field--full, .order-form .btn, .order-form__note, .order-form__error { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
	width: 100%; padding: .75em .9em; border: 1.5px solid var(--line); border-radius: 12px; background: var(--cream);
	transition: border-color .18s, background-color .18s, box-shadow .18s; min-height: 48px;
}
.field textarea { resize: vertical; min-height: 0; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--rose-500); background: var(--white); box-shadow: 0 0 0 4px rgba(194, 69, 110, .12); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #c0392b; background: #fff5f4; }
.order-form__error { margin: 0; color: #b03a2e; font-weight: 600; font-size: .9rem; }
.order-form__note { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 0; font-size: .82rem; color: var(--muted); text-align: center; }
.order-form__note .icon { width: 16px; height: 16px; color: var(--sage-600); }

.order__info { display: grid; gap: 18px; position: sticky; top: 100px; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; }
.info-card h3 { font-size: 1.1rem; margin-bottom: 14px; }
.info-card .btn + .btn { margin-top: 10px; }
.info-card--soft { background: var(--sage-100); border-color: transparent; }
.info-card--soft p { margin: 0; font-size: .92rem; }
.info-card__list { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 14px; }
.info-card__list li { display: flex; gap: 12px; align-items: center; }
.info-card__list small { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; }
.info-card__list a { color: var(--ink); font-weight: 700; text-decoration: none; }
.info-card__list a:hover { color: var(--rose-700); }
.info-card__icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--blush-100); color: var(--rose-700); flex-shrink: 0; }

/* Area -------------------------------------------------------------------- */
.areas__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.chips { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
	display: inline-flex; align-items: center; gap: 6px; padding: .45em .9em; border-radius: 999px;
	background: var(--white); border: 1px solid var(--line); font-size: .88rem; font-weight: 600; color: var(--ink); text-decoration: none;
}
.chip .icon { width: 14px; height: 14px; color: var(--rose-500); }
a.chip:hover { border-color: var(--rose-500); color: var(--rose-800); }
.areas__subtitle { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; }
.checklist .icon { color: var(--sage-600); margin-top: 2px; }
.map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); aspect-ratio: 4 / 3.4; background: var(--sage-100); }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Galeri ------------------------------------------------------------------ */
.section--gallery { padding-top: 0; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery__item { display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; background: var(--blush-100); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery__item:hover img { transform: scale(1.05); }
.lightbox { border: 0; padding: 0; background: transparent; max-width: min(92vw, 1000px); max-height: 90vh; }
.lightbox::backdrop { background: rgba(30, 10, 18, .85); }
.lightbox img { max-height: 86vh; width: auto; border-radius: 12px; margin: auto; }
.lightbox__close { position: fixed; top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--white); cursor: pointer; display: grid; place-items: center; }

/* Testimoni --------------------------------------------------------------- */
.testi { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; }
.testi__stars { display: flex; gap: 2px; margin-bottom: 12px; }
.testi__stars .icon { width: 18px; height: 18px; color: var(--line); fill: currentColor; stroke: none; }
.testi__stars .icon.is-on { color: var(--gold); }
.testi blockquote { margin: 0 0 18px; font-size: .98rem; }
.testi blockquote p:last-child { margin: 0; }
.testi figcaption { margin-top: auto; display: flex; flex-direction: column; }
.testi figcaption strong { color: var(--ink); }
.testi figcaption span { font-size: .85rem; color: var(--muted); }

/* FAQ --------------------------------------------------------------------- */
.faq__wrap { max-width: 860px; }
.faq { display: grid; gap: 12px; }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.faq__item summary {
	list-style: none; cursor: pointer; padding: 18px 56px 18px 22px; position: relative;
	font-weight: 700; color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
	content: ""; position: absolute; right: 22px; top: 50%; width: 22px; height: 22px; margin-top: -11px; border-radius: 50%;
	background: var(--blush-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a2346' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 7v10M7 12h10'/%3E%3C/svg%3E") center / 14px no-repeat;
	transition: transform .2s;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer { padding: 0 22px 18px; color: var(--text); }
.faq__answer p { margin: 0; }

/* Prose / teks ------------------------------------------------------------ */
.section--seo { padding-top: 0; }
.prose { color: var(--text); font-size: 1.02rem; }
.prose--narrow { max-width: 780px; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 1.4em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.25rem; margin-top: 1.4em; }
.prose img { border-radius: var(--radius); }
.prose blockquote { margin: 1.5em 0; padding: .5em 1.2em; border-left: 3px solid var(--rose-500); background: var(--blush-50); }
.prose table { width: 100%; border-collapse: collapse; display: block; overflow-x: auto; }
.prose th, .prose td { border: 1px solid var(--line); padding: .6em .8em; text-align: left; }
.prose__cover { margin: 0 0 1.5em; }
.section--seo .prose--narrow { margin-inline: auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 44px); }

/* CTA band ---------------------------------------------------------------- */
.cta { padding-block: 0 clamp(56px, 8vw, 96px); }
.cta__inner {
	display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
	background: radial-gradient(500px 240px at 100% 0%, rgba(255, 255, 255, .12), transparent 70%), var(--rose-800);
	color: #f7e1e8; border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px);
}
.cta__title { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: .25em; }
.cta__inner p { margin: 0; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Halaman dalam ----------------------------------------------------------- */
.page-hero { background: linear-gradient(180deg, var(--blush-100), var(--cream)); padding-block: 36px 44px; }
.page-hero__title { font-size: clamp(1.9rem, 4vw, 3rem); margin: .2em 0 .3em; }
.page-hero__sub { color: var(--muted); max-width: 720px; margin: 0; }
.breadcrumbs ol { list-style: none; padding: 0; margin: 12px 0; display: flex; flex-wrap: wrap; gap: 6px; font-size: .85rem; color: var(--muted); }
.breadcrumbs li + li::before { content: "›"; margin-right: 6px; color: var(--rose-200); }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--rose-700); }
.layout-side { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(28px, 4vw, 56px); align-items: start; }
.sidebar { display: grid; gap: 18px; position: sticky; top: 100px; }
.side-links { list-style: none; padding: 0; margin: 0; }
.side-links a { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; color: var(--ink); text-decoration: none; font-weight: 600; border-bottom: 1px solid rgba(47, 75, 53, .12); }
.side-links .icon { width: 16px; height: 16px; color: var(--sage-600); }

.post-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.post-card__media { aspect-ratio: 16 / 10; overflow: hidden; display: block; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 20px; }
.post-card__meta { font-size: .8rem; color: var(--muted); margin-bottom: 6px; }
.post-card__title { font-family: var(--font-body); font-size: 1.1rem; font-weight: 700; }
.post-card__title a { color: var(--ink); text-decoration: none; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; text-decoration: none; }
.link-arrow .icon { width: 16px; height: 16px; }

.nav-links { display: flex; gap: 6px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.nav-links .page-numbers { min-width: 42px; height: 42px; display: grid; place-items: center; padding: 0 12px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); text-decoration: none; color: var(--ink); font-weight: 600; }
.nav-links .page-numbers.current { background: var(--rose-700); color: var(--white); border-color: var(--rose-700); }
.post-navigation .nav-links { justify-content: space-between; }

/* Detail produk */
.product { padding-top: 12px; }
.product__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: start; margin-top: 12px; }
.product__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1; background: var(--blush-100); }
.product__media img, .product__media .ph-svg { width: 100%; height: 100%; object-fit: cover; }
.product__title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.product__price strong { font-size: 1.7rem; font-family: var(--font-display); }
.product__size { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.product__size .icon { width: 18px; height: 18px; }
.product__desc { margin: 16px 0 20px; }
.product__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.product__ig { display: flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--muted); font-size: .92rem; }
.product__ig .icon { width: 18px; height: 18px; color: var(--rose-500); }
.section--related { padding-top: 0; }

.notfound { text-align: center; }
.notfound .prose--narrow { margin-inline: auto; }
.notfound__code { font-family: var(--font-display); font-size: clamp(4rem, 12vw, 7rem); color: var(--rose-200); line-height: 1; margin: 0; }
.notfound__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.empty { text-align: center; color: var(--muted); }
.search-form { display: flex; gap: 8px; justify-content: center; }
.search-form input[type="search"] { padding: .7em 1em; border-radius: 999px; border: 1.5px solid var(--line); min-width: 0; }
.search-form input[type="submit"] { padding: .7em 1.2em; border-radius: 999px; border: 0; background: var(--rose-700); color: var(--white); font-weight: 600; cursor: pointer; }

.comments { margin-block: 40px; }
.comments__list { list-style: none; padding: 0; }
.comments__list .comment-body { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 12px; }
.comments__list .avatar { border-radius: 50%; float: left; margin-right: 10px; }
.comment-form input:not([type="submit"]):not([type="checkbox"]), .comment-form textarea { width: 100%; padding: .7em .9em; border: 1.5px solid var(--line); border-radius: 12px; background: var(--white); }
/* Kode <div> halaman otomatis (Generator Halaman) ----------------------- */
.section--article { padding-top: clamp(8px, 2vw, 24px); }
.dnh-article { display: grid; gap: 30px; }
.dnh-article > div > h2 { margin-top: 0; }
.dnh-intro p:first-child { font-size: 1.1rem; color: var(--ink); }
.prose .dnh-check { list-style: none; padding: 0; margin: 14px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 22px; }
.dnh-check li { position: relative; padding-left: 28px; }
.dnh-check li::before {
	content: ""; position: absolute; left: 0; top: .2em; width: 18px; height: 18px; border-radius: 50%;
	background: var(--sage-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234f7156' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.dnh-tips ol { list-style: none; counter-reset: tip; padding: 0; margin: 0; display: grid; gap: 10px; }
.dnh-tips li { counter-increment: tip; position: relative; padding: 12px 16px 12px 52px; background: var(--blush-50); border: 1px solid var(--line); border-radius: 12px; }
.dnh-tips li::before { content: counter(tip); position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 26px; height: 26px; border-radius: 50%; background: var(--rose-700); color: var(--white); font-weight: 700; font-size: .85rem; display: grid; place-items: center; }
.dnh-cats { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; margin-top: 14px; }
.prose .dnh-cat { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; text-decoration: none; color: var(--ink); transition: transform .2s, box-shadow .2s; }
.dnh-cat:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.prose .dnh-cat img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 0; background: var(--blush-100); }
.dnh-cat span { padding: 10px 12px; font-weight: 700; font-size: .9rem; line-height: 1.3; }
.dnh-cta { background: var(--rose-800); color: #f7e1e8; border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 32px); }
.prose .dnh-cta h2 { color: var(--white); margin: 0 0 .3em; }
.dnh-cta p { margin: 0 0 16px; }
.prose .dnh-cta .btn { color: var(--white); text-decoration: none; }
.dnh-related h2 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 700; margin: 0 0 12px; }
.prose .dnh-chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.prose .dnh-chips a { display: inline-block; padding: .45em .9em; border-radius: 999px; background: var(--blush-50); border: 1px solid var(--line); font-size: .88rem; font-weight: 600; color: var(--rose-800); text-decoration: none; }
.prose .dnh-chips a:hover { border-color: var(--rose-500); background: var(--white); }
@media (max-width: 640px) { .prose .dnh-check { grid-template-columns: minmax(0, 1fr); } }

.admin-hint { margin: 16px 0; padding: 14px 18px; border: 2px dashed var(--gold); background: #fffaf0; border-radius: 12px; font-size: .92rem; color: #6b5320; }

/* Footer ------------------------------------------------------------------ */
.site-footer { background: var(--rose-900); color: #e9cfd8; font-size: .92rem; }
.site-footer a { color: #fbe9ef; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-block: 64px 40px; }
.footer__brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: .6em; }
.footer__about p { max-width: 32ch; }
.footer__about .btn { margin-top: 6px; }
.site-footer .btn--wa:hover { text-decoration: none; }
.footer__title { font-family: var(--font-body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--white); font-weight: 700; margin-bottom: 16px; }
.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__list li { display: flex; gap: 10px; align-items: flex-start; }
.footer__list .icon { width: 17px; height: 17px; margin-top: 3px; opacity: .7; }
.footer__network { display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; padding-block: 18px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .85rem; }
.footer__network span { color: #c9a9b5; }
.footer__menu { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 0; padding: 0; }
.footer__bottom { background: rgba(0, 0, 0, .18); font-size: .82rem; color: #c9a9b5; }
.footer__bottom .container { display: flex; justify-content: space-between; gap: 12px; padding-block: 16px; flex-wrap: wrap; }

/* WA melayang ------------------------------------------------------------- */
.wa-float {
	position: fixed; right: 20px; bottom: 20px; z-index: 60; display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.wa-float__btn {
	display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: var(--wa); color: var(--white);
	box-shadow: 0 10px 24px -6px rgba(23, 138, 72, .6); position: relative;
}
.wa-float__btn::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa); animation: ring 2.2s infinite; }
@keyframes ring { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }
.wa-float__btn .icon { width: 30px; height: 30px; }
.wa-float__bubble {
	background: var(--white); color: var(--text); padding: 10px 14px; border-radius: 14px 14px 4px 14px; font-size: .85rem;
	box-shadow: var(--shadow); opacity: 0; transform: translateX(8px); transition: .3s; pointer-events: none; white-space: nowrap;
}
.wa-float__bubble strong { color: var(--wa-dark); }
.wa-float.show-bubble .wa-float__bubble, .wa-float:hover .wa-float__bubble { opacity: 1; transform: none; }
.wa-float:hover { color: inherit; }

.mobile-bar { display: none; }

/* Responsif --------------------------------------------------------------- */
@media (max-width: 1100px) {
	.grid--products { grid-template-columns: repeat(3, 1fr); }
	.usp__grid { grid-template-columns: repeat(2, 1fr); }
	.usp__item:nth-child(3) { border-left: 0; }
	.usp__item:nth-child(n+3) { border-top: 1px solid var(--line); }
	.header__cta span { display: none; }
	.brand__tag { display: none; }
	.header__cta { padding: .8em; }
}

@media (max-width: 960px) {
	.nav-toggle { display: grid; }
	.header__cta { display: none; }
	.site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--cream); }
	.main-nav {
		visibility: hidden; transition: transform .28s ease, visibility 0s .28s;
		position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); background: var(--cream); z-index: 70;
		padding: 88px 24px 24px; transform: translateX(100%); overflow-y: auto;
		box-shadow: -20px 0 40px -20px rgba(0, 0, 0, .25); display: flex; flex-direction: column; gap: 20px;
	}
	.main-nav.is-open { transform: none; visibility: visible; transition: transform .28s ease, visibility 0s; }
	.main-nav .menu { flex-direction: column; gap: 2px; }
	.main-nav .menu a { padding: .8em 1em; font-size: 1.05rem; border-radius: 12px; }
	.main-nav .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 0 12px; background: transparent; }
	.nav__cta { display: inline-flex; }
	.nav-toggle { position: relative; z-index: 80; }
	body.nav-open { overflow: hidden; }
	body.nav-open .site-header { z-index: 90; }
	body.nav-open::after { content: ""; position: fixed; inset: 0; background: rgba(30, 10, 18, .4); z-index: 85; }

	.hero__grid { grid-template-columns: 1fr; }
	.hero__visual { max-width: 420px; margin-inline: auto; width: 100%; }
	.hero__frame { margin-inline: auto; }
	.steps { grid-template-columns: repeat(2, 1fr); }
	.order__grid, .areas__grid, .product__grid, .layout-side { grid-template-columns: minmax(0, 1fr); }
	.order__info, .sidebar { position: static; }
	.grid--testi, .grid--posts { grid-template-columns: repeat(2, 1fr); }
	.footer__grid { grid-template-columns: 1fr 1fr; }
	.gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
	body { font-size: 15.5px; padding-bottom: 64px; }
	.topbar__hours, .topbar__ig span { display: none; }
	.topbar { font-size: .76rem; }
	.topbar__inner { white-space: nowrap; gap: 10px; }
	.topbar__links { gap: 12px; }
	.hero__chip--ig { top: 4%; }
	.header__inner { min-height: 64px; }
	.brand__mark { width: 38px; height: 38px; }
	.brand__logo { height: 52px; }
	.brand__tag { display: none; }
	.brand__name { font-size: 1.15rem; }
	.hero__actions .btn { flex: 1 1 100%; }
	.hero__chip--ship { left: 0; }
	.hero__chip--price { left: auto; right: 0; top: 6%; }
	.usp__grid { grid-template-columns: 1fr; }
	.usp__item + .usp__item { border-left: 0; border-top: 1px solid var(--line); }
	.grid--products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.card__body { padding: 12px 12px 14px; }
	.card__title { font-size: .92rem; }
	.card__actions { grid-template-columns: 1fr; }
	.price strong { font-size: 1rem; }
	.steps, .grid--testi, .grid--posts { grid-template-columns: 1fr; }
	.order-form { grid-template-columns: minmax(0, 1fr); }
	.footer__grid { grid-template-columns: 1fr; gap: 28px; }
	.gallery { grid-template-columns: repeat(2, 1fr); }
	.cta__actions, .cta__actions .btn { width: 100%; }
	.wa-float { bottom: 76px; right: 14px; }
	.wa-float__btn { width: 54px; height: 54px; }
	.wa-float__bubble { display: none; }

	.mobile-bar {
		display: grid; grid-template-columns: 1fr 1fr 1.3fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 58;
		background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -8px 20px -14px rgba(0, 0, 0, .3);
		padding-bottom: env(safe-area-inset-bottom);
	}
	.mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 6px; height: 60px; font-weight: 700; font-size: .88rem; color: var(--ink); text-decoration: none; }
	.mobile-bar .icon { width: 20px; height: 20px; }
	.mobile-bar__wa { background: var(--wa); color: var(--white) !important; }
}

@media (max-width: 380px) {
	.topbar__ig { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
