/* Одностраничний лендинг LLC MIRIS PERFUME UKRAINE */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Source+Sans+3:wght@400;500;600&display=swap");

:root {
	--llc-bg: #f9f6f1;
	--llc-ink: #1c1917;
	--llc-muted: #57534e;
	--llc-accent: #9a7b4f;
	--llc-accent-dark: #6d5638;
	--llc-card: #ffffff;
	--llc-border: rgba(28, 25, 23, 0.08);
}

.llc-body {
	margin: 0;
	font-family: "Source Sans 3", system-ui, sans-serif;
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--llc-ink);
	background: var(--llc-bg);
	min-height: 100vh;
}

.llc-body a {
	color: var(--llc-accent-dark);
	text-decoration: none;
	transition: color 0.2s ease;
}

.llc-body a:hover {
	color: var(--llc-accent);
}

.llc-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(249, 246, 241, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--llc-border);
}

.llc-header__inner {
	max-width: 56rem;
	margin: 0 auto;
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.llc-logo {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 1.75rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--llc-ink);
}

.llc-logo span {
	color: var(--llc-accent-dark);
}

.llc-header__right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.45rem;
}

.llc-header__tag {
	font-size: 0.8rem;
	color: var(--llc-muted);
	text-align: right;
	max-width: 16rem;
	line-height: 1.35;
	margin: 0;
}

.llc-lang {
	display: inline-flex;
	align-items: center;
	gap: 0.15rem;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.04em;
}

.llc-lang__link {
	color: var(--llc-muted);
	padding: 0.15rem 0.35rem;
	border-radius: 4px;
}

.llc-lang__link:hover {
	color: var(--llc-accent-dark);
}

.llc-lang__link.is-active {
	color: var(--llc-ink);
	font-weight: 600;
}

.llc-lang__sep {
	color: var(--llc-muted);
	opacity: 0.45;
	user-select: none;
}

.llc-page {
	max-width: 56rem;
	margin: 0 auto;
	padding: 0 1.5rem 4rem;
}

.llc-hero {
	padding: 3.5rem 0 2.5rem;
	text-align: center;
	border-bottom: 1px solid var(--llc-border);
}

.llc-hero h1 {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 500;
	margin: 0 0 1rem;
	letter-spacing: 0.02em;
}

.llc-hero__lead {
	font-size: 1.15rem;
	color: var(--llc-muted);
	max-width: 36rem;
	margin: 0 auto;
}

.llc-section {
	padding: 2.75rem 0;
}

.llc-section h2 {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 1.65rem;
	font-weight: 600;
	margin: 0 0 1rem;
	color: var(--llc-ink);
}

.llc-section p {
	margin: 0 0 1rem;
	color: var(--llc-muted);
}

.llc-section p:last-child {
	margin-bottom: 0;
}

.llc-formats-intro {
	margin-bottom: 0.25rem;
}

.llc-packaging-note {
	margin: 0.85rem 0 0;
	color: var(--llc-muted);
	line-height: 1.65;
}

/* Формати 100 / 10 / 3 мл — без каталогу, лише візуал */
.llc-formats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-top: 1.5rem;
}

.llc-format {
	background: var(--llc-card);
	border-radius: 12px;
	border: 1px solid var(--llc-border);
	padding: 1.5rem 1rem 1.25rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 1px 3px rgba(28, 25, 23, 0.06);
}

.llc-format__visual {
	width: 100%;
	max-width: 140px;
	margin: 0 auto 1rem;
	aspect-ratio: 120 / 280;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.llc-format--10 .llc-format__visual {
	aspect-ratio: 120 / 200;
	max-width: 120px;
}

.llc-format--3 .llc-format__visual {
	aspect-ratio: 120 / 160;
	max-width: 100px;
}

/* Реальні фото з білого фону — більша картка */
.llc-format__visual--photo {
	max-width: 200px;
	min-height: 200px;
	aspect-ratio: auto;
	align-items: center;
	background: #fff;
	border-radius: 10px;
	padding: 0.75rem;
	box-shadow: inset 0 0 0 1px var(--llc-border);
}

.llc-format--10 .llc-format__visual--photo {
	max-width: 180px;
	min-height: 200px;
}

.llc-format--3 .llc-format__visual--photo {
	max-width: 160px;
	min-height: 200px;
}

.llc-format__visual img {
	width: 100%;
	height: auto;
	max-height: 220px;
	object-fit: contain;
	display: block;
}

.llc-format__visual--photo img {
	max-height: 280px;
}

.llc-format--10 .llc-format__visual--photo img {
	max-height: 260px;
}

.llc-format--3 .llc-format__visual--photo img {
	max-height: 240px;
}

.llc-catalog-request {
	margin: 1.75rem 0 0;
	padding: 1.1rem 1.15rem;
	background: rgba(255, 255, 255, 0.75);
	border-radius: 10px;
	border: 1px solid var(--llc-border);
	color: var(--llc-muted);
	line-height: 1.6;
	text-align: center;
}

.llc-catalog-request a {
	font-weight: 600;
}

.llc-format__label {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--llc-ink);
	letter-spacing: 0.06em;
}

@media (max-width: 640px) {
	.llc-formats {
		grid-template-columns: 1fr;
		max-width: 280px;
		margin-left: auto;
		margin-right: auto;
	}
}

.llc-section--verify {
	padding-top: 2.5rem;
	border-top: 1px solid var(--llc-border);
}

.llc-verify-list {
	margin: 1rem 0 0;
	padding-left: 1.2rem;
	color: var(--llc-muted);
	line-height: 1.65;
}

.llc-verify-list li {
	margin-bottom: 0.65rem;
}

.llc-verify-list li:last-child {
	margin-bottom: 0;
}

/* Специфічність вища за `.llc-section p { margin: 0 0 1rem }`, інакше margin-top зникає */
.llc-section .llc-verify-edrpou {
	margin: 2.5rem 0 1rem;
	font-weight: 500;
	color: var(--llc-ink);
}

.llc-section .llc-verify-vat {
	margin: 0.5rem 0 1rem;
	font-weight: 500;
	color: var(--llc-ink);
}

.llc-section .llc-verify-docs {
	margin: 1rem 0 0;
	margin-bottom: 0;
	color: var(--llc-muted);
}

.llc-card {
	background: var(--llc-card);
	border-radius: 12px;
	padding: 1.75rem 1.5rem;
	box-shadow: 0 1px 3px rgba(28, 25, 23, 0.06);
	border: 1px solid var(--llc-border);
}

.llc-legal-name {
	font-weight: 600;
	color: var(--llc-ink);
	font-size: 1.1rem;
	margin-bottom: 1rem;
}

.llc-address {
	font-style: normal;
	white-space: pre-line;
	color: var(--llc-muted);
	margin-bottom: 1.25rem;
	line-height: 1.6;
}

.llc-contacts {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.llc-contacts a {
	font-weight: 500;
	font-size: 1.05rem;
}

.llc-footer {
	margin-top: 2rem;
	padding: 2rem 1.5rem 2.5rem;
	border-top: 1px solid var(--llc-border);
	background: rgba(255, 255, 255, 0.5);
}

.llc-footer__inner {
	max-width: 56rem;
	margin: 0 auto;
	text-align: center;
	font-size: 0.9rem;
	color: var(--llc-muted);
}

.llc-footer__inner strong {
	display: block;
	color: var(--llc-ink);
	margin-bottom: 0.35rem;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 1.1rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

@media (max-width: 600px) {
	.llc-header__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.llc-header__right {
		align-items: flex-start;
		width: 100%;
	}

	.llc-header__tag {
		text-align: left;
		max-width: none;
	}
}

/* Cookie banner під лендинг */
.cookie-banner {
	font-size: 0.9rem;
}
