/* =========================================================
   Osobná Značka Shop — Brand Stylesheet
   Boho-ženský štýl: krémová / terakotová / jemná ruža,
   kaligrafický akcent + serifové nadpisy, oblúkové fotky.
   Zámerne strídme dekorácie — čisto, nie preplácané.
   ========================================================= */

:root {
	--ozs-ivory: #FBF6EF;
	--ozs-cream: #F5ECE0;
	--ozs-sand: #E9DCC9;
	--ozs-rose: #C08974;
	--ozs-rose-dark: #A66C58;
	--ozs-blush: #EFD6CD;
	--ozs-text: #4A3F38;
	--ozs-text-light: #7A6D63;
	--ozs-white: #FFFFFF;
	--ozs-radius: 16px;
	--ozs-radius-arch: 200px 200px 16px 16px;
	--ozs-shadow: 0 10px 32px rgba(74, 63, 56, 0.09);
	--ozs-font-script: 'Parisienne', cursive;
	--ozs-font-heading: 'Playfair Display', Georgia, serif;
	--ozs-font-body: 'Lato', -apple-system, sans-serif;
	--ozs-max-width: 1180px;
}

* { box-sizing: border-box; }

body {
	background: var(--ozs-ivory);
	color: var(--ozs-text);
	font-family: var(--ozs-font-body);
	font-weight: 300;
	line-height: 1.65;
}

h1, h2, h3, h4 {
	font-family: var(--ozs-font-heading);
	font-weight: 500;
	color: var(--ozs-text);
	letter-spacing: 0.2px;
}

h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 0.6em; }
a { color: inherit; text-decoration: none; }

.ozs-eyebrow {
	display: block;
	font-size: 0.72rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--ozs-rose-dark);
	margin-bottom: 10px;
}

/* ---------- Layout helpers ---------- */
.ozs-section { max-width: var(--ozs-max-width); margin: 0 auto; padding: 60px 24px; }
.ozs-section--narrow { max-width: 760px; }
.ozs-section--tinted { background: var(--ozs-cream); max-width: 100%; border-radius: 0; }
.ozs-section--tinted > * { max-width: var(--ozs-max-width); margin-left: auto; margin-right: auto; }
.ozs-center { text-align: center; }
.ozs-section--split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ozs-section--reverse { direction: rtl; }
.ozs-section--reverse > * { direction: ltr; }

/* ---------- Buttons ---------- */
.ozs-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 999px;
	font-family: var(--ozs-font-body);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	transition: all 0.25s ease;
	border: 1px solid transparent;
	cursor: pointer;
}
.ozs-btn--primary { background: var(--ozs-rose); color: var(--ozs-white); }
.ozs-btn--primary:hover { background: var(--ozs-rose-dark); transform: translateY(-2px); }
.ozs-btn--ghost { background: transparent; border-color: var(--ozs-rose); color: var(--ozs-rose-dark); }
.ozs-btn--ghost:hover { background: var(--ozs-rose); color: var(--ozs-white); }
.ozs-btn--lg { padding: 16px 34px; }
.ozs-btn::after { content: '\2192'; font-size: 0.95rem; }

/* ---------- Header ---------- */
.ozs-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: rgba(251, 246, 239, 0.94);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--ozs-sand);
	transition: box-shadow 0.3s ease;
}
.ozs-header.is-scrolled { box-shadow: var(--ozs-shadow); }
.ozs-header__inner {
	max-width: var(--ozs-max-width);
	margin: 0 auto;
	padding: 14px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.ozs-logo { text-align: left; line-height: 1.1; }
.ozs-logo__script {
	display: block;
	font-family: var(--ozs-font-script);
	font-size: 1.9rem;
	color: var(--ozs-text);
}
.ozs-logo__sub {
	display: block;
	font-size: 0.62rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--ozs-text-light);
}
.ozs-nav__list {
	display: flex; gap: 30px; list-style: none; margin: 0; padding: 0;
	font-family: var(--ozs-font-heading);
	font-size: 0.78rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}
.ozs-nav__list a { padding: 6px 2px; border-bottom: 1px solid transparent; transition: border-color 0.2s ease; }
.ozs-nav__list a:hover { border-color: var(--ozs-rose); }
.ozs-header__actions { display: flex; align-items: center; gap: 18px; font-size: 1.05rem; }
.ozs-lang-switch { border: 1px solid var(--ozs-sand); border-radius: 999px; padding: 5px 13px; font-size: 0.72rem; letter-spacing: 1px; }
.ozs-icon { position: relative; }
.ozs-cart-count {
	position: absolute; top: -8px; right: -12px;
	background: var(--ozs-rose); color: #fff;
	font-size: 0.62rem; width: 17px; height: 17px;
	border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
}
.ozs-menu-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; cursor: pointer; }
.ozs-menu-toggle span { width: 24px; height: 2px; background: var(--ozs-text); }

/* ---------- Hero ---------- */
.ozs-hero {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 40px;
	align-items: center;
	max-width: var(--ozs-max-width);
	margin: 0 auto;
	padding: 56px 24px 72px;
	position: relative;
}
.ozs-hero--funnel { padding-top: 40px; }
.ozs-hero__script-title {
	font-family: var(--ozs-font-script);
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	line-height: 1.15;
	color: var(--ozs-text);
	margin: 0 0 18px;
}
.ozs-hero__tagline {
	font-family: var(--ozs-font-heading);
	font-size: 0.95rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--ozs-text-light);
	margin-bottom: 28px;
}
.ozs-hero__content p:not(.ozs-hero__tagline) { color: var(--ozs-text-light); margin-bottom: 28px; max-width: 46ch; }
.ozs-hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.ozs-placeholder-img {
	background: linear-gradient(135deg, var(--ozs-blush), var(--ozs-sand));
	border-radius: var(--ozs-radius-arch);
	min-height: 400px;
	display: flex; align-items: center; justify-content: center;
	color: var(--ozs-text-light);
	font-size: 0.85rem;
	box-shadow: var(--ozs-shadow);
	position: relative;
}
.ozs-placeholder-img--book { min-height: 400px; max-width: 300px; margin: 0 auto; border-radius: var(--ozs-radius); }
.ozs-placeholder-img--page { min-height: 200px; border-radius: var(--ozs-radius); }

.ozs-hero__quote {
	position: absolute;
	top: 32px; right: 0;
	max-width: 200px;
	background: var(--ozs-white);
	border-radius: var(--ozs-radius);
	padding: 18px 20px;
	box-shadow: var(--ozs-shadow);
	font-family: var(--ozs-font-heading);
	font-style: italic;
	font-size: 0.95rem;
	color: var(--ozs-rose-dark);
}

/* ---------- Divider (single, subtle botanical accent) ---------- */
.ozs-divider { display: flex; justify-content: center; padding: 6px 0 28px; }
.ozs-divider svg { width: 90px; height: 20px; }

/* ---------- Category / Product cards ---------- */
.ozs-category-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
	max-width: var(--ozs-max-width); margin: 0 auto; padding: 0 24px 60px;
}
.ozs-category-card { text-align: center; }
.ozs-category-card .ozs-placeholder-img { min-height: 220px; margin-bottom: 16px; }
.ozs-category-card h3 { font-size: 1rem; margin-bottom: 4px; }
.ozs-category-card p { font-size: 0.8rem; color: var(--ozs-text-light); margin-bottom: 6px; }

ul.products { display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 24px; list-style: none; padding: 0; margin: 28px 0; }
ul.products li.product { text-align: center; }
ul.products li.product img { border-radius: var(--ozs-radius-arch); box-shadow: var(--ozs-shadow); }

/* ---------- Value icons row (Ručná práca / Prírodné materiály ...) ---------- */
.ozs-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; border-top: 1px solid var(--ozs-sand); padding-top: 40px; }
.ozs-values__item .ozs-values__icon { font-size: 1.5rem; margin-bottom: 10px; display: block; }
.ozs-values__item p { font-size: 0.82rem; color: var(--ozs-text-light); margin: 0; }

/* ---------- Testimonials ---------- */
.ozs-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 24px; }
.ozs-testimonial { background: var(--ozs-white); border-radius: var(--ozs-radius); padding: 26px; box-shadow: var(--ozs-shadow); font-style: italic; }
.ozs-testimonial cite { display: block; margin-top: 12px; color: var(--ozs-rose-dark); font-style: normal; font-weight: 600; }

/* ---------- Newsletter / feature banner ---------- */
.ozs-newsletter {
	text-align: left;
	background: var(--ozs-blush);
	border-radius: var(--ozs-radius);
	max-width: var(--ozs-max-width);
	display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
	padding: 48px;
}
.ozs-newsletter h2 { font-family: var(--ozs-font-script); font-size: 2.2rem; }
.ozs-newsletter__form { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 6px; }
.ozs-newsletter__form input { padding: 12px 18px; border-radius: 999px; border: 1px solid var(--ozs-sand); min-width: 200px; flex: 1; }
.ozs-note { font-size: 0.78rem; color: var(--ozs-text-light); }

/* ---------- Instagram grid ---------- */
.ozs-instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.ozs-instagram-grid__item { min-height: 130px; border-radius: 10px; }

/* ---------- Final CTA ---------- */
.ozs-final-cta { background: var(--ozs-rose); color: var(--ozs-white); text-align: center; padding: 72px 24px; }
.ozs-final-cta h2 { font-family: var(--ozs-font-script); font-size: 2.4rem; color: var(--ozs-white); }
.ozs-final-cta p { color: var(--ozs-white); }
.ozs-final-cta .ozs-btn--primary { background: var(--ozs-white); color: var(--ozs-rose-dark); }

/* ---------- Funnel extras ---------- */
.ozs-benefits { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: var(--ozs-max-width); margin: 0 auto; }
.ozs-chapters { max-width: 600px; margin: 0 auto; }
.ozs-faq { max-width: 700px; margin: 0 auto 14px; background: var(--ozs-white); border-radius: 12px; padding: 16px 20px; box-shadow: var(--ozs-shadow); }
.ozs-faq summary { cursor: pointer; font-weight: 600; }
.ozs-price { font-family: var(--ozs-font-script); font-size: 2.4rem; color: var(--ozs-rose-dark); }
.ozs-order-block { text-align: center; }

/* ---------- Contact form ---------- */
.ozs-contact-form { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.ozs-contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.9rem; }
.ozs-contact-form input, .ozs-contact-form textarea { padding: 12px 16px; border-radius: 12px; border: 1px solid var(--ozs-sand); font-family: inherit; }
.ozs-checkbox { flex-direction: row !important; align-items: center; gap: 10px !important; }
.ozs-notice { padding: 16px; border-radius: 12px; }
.ozs-notice--success { background: var(--ozs-blush); color: var(--ozs-rose-dark); }

/* ---------- Cookie banner ---------- */
.ozs-cookie-banner {
	position: fixed; bottom: 20px; left: 20px; right: 20px;
	max-width: 500px; margin: 0 auto;
	background: var(--ozs-white);
	border-radius: var(--ozs-radius);
	box-shadow: var(--ozs-shadow);
	padding: 18px 22px;
	display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
	z-index: 1000;
}
.ozs-cookie-banner p { margin: 0; font-size: 0.82rem; flex: 1 1 240px; }

/* ---------- Footer (full-bleed photo w/ overlay, like the reference) ---------- */
.ozs-footer {
	position: relative;
	margin-top: 40px;
	background: linear-gradient(180deg, rgba(74,63,56,0.55), rgba(74,63,56,0.75)), var(--ozs-sand);
	color: var(--ozs-ivory);
}
.ozs-footer__inner {
	max-width: var(--ozs-max-width);
	margin: 0 auto;
	padding: 56px 24px 28px;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 32px;
}
.ozs-footer h4 { color: var(--ozs-ivory); margin-bottom: 12px; font-size: 0.95rem; }
.ozs-footer p { color: rgba(251,246,239,0.85); }
.ozs-footer__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: 0.88rem; }
.ozs-footer__list a { color: rgba(251,246,239,0.85); }
.ozs-footer__social { display: flex; gap: 12px; margin-top: 10px; }
.ozs-footer__bottom {
	text-align: center; padding: 18px; font-family: var(--ozs-font-script); font-size: 1.1rem;
	border-top: 1px solid rgba(251,246,239,0.2);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.ozs-hero, .ozs-section--split, .ozs-newsletter { grid-template-columns: 1fr; }
	.ozs-section--reverse { direction: ltr; }
	.ozs-hero__quote { position: static; margin-top: 20px; max-width: 100%; }
	.ozs-nav { position: fixed; top: 66px; left: 0; right: 0; background: var(--ozs-ivory); padding: 20px; display: none; border-bottom: 1px solid var(--ozs-sand); }
	.ozs-nav.is-open { display: block; }
	.ozs-nav__list { flex-direction: column; gap: 16px; }
	.ozs-menu-toggle { display: flex; }
	.ozs-category-grid, ul.products { grid-template-columns: repeat(2, 1fr); }
	.ozs-testimonials { grid-template-columns: 1fr; }
	.ozs-instagram-grid { grid-template-columns: repeat(3, 1fr); }
	.ozs-benefits, .ozs-values { grid-template-columns: 1fr 1fr; }
	.ozs-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
	.ozs-footer__inner, .ozs-values { grid-template-columns: 1fr; }
	.ozs-category-grid, ul.products { grid-template-columns: 1fr; }
}
