/* ============================================================
   Gifts page — "The Art of Gifting"
   Source of truth: _build/specs/gifts.md. Exact px/hex from the prototype.
   Class prefixes: gift- (layout), gift-card / gift-cardblock (cards).
   ============================================================ */

.arkan-gifts {
	background: var(--cream);
}

/* Shared section shell — side padding 48px, dropping to 20px ≤900px. */
.gift-sec {
	width: 100%;
	background: var(--cream);
	padding-left: 48px;
	padding-right: 48px;
}

/* ---------- 3A. Hero ---------- */
.gift-hero-sec {
	padding-top: 40px;
	padding-bottom: 20px;
}

.gift-hero {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(45, 10, 18, 0.1);
}

.gift-hero__text {
	background: var(--maroon);
	padding: 64px 56px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.gift-hero__eyebrow {
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.28em;
	color: var(--rose);
	text-transform: uppercase;
	margin-bottom: 20px;
}

.gift-hero__title {
	font-family: var(--serif);
	font-size: clamp(40px, 4.6vw, 60px);
	font-weight: 500;
	color: #f6ede0;
	line-height: 1.08;
	margin-bottom: 20px;
}

.gift-hero__body {
	font-family: var(--sans);
	font-size: 14px;
	font-weight: 300;
	color: rgba(246, 237, 224, 0.8);
	line-height: 1.9;
	max-width: 400px;
	margin-bottom: 34px;
}

.gift-hero__cta {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--gold);
	color: var(--maroon);
	font-family: var(--sans);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 15px 34px;
	border-radius: 30px;
}

.gift-hero-img {
	background-color: var(--well);
	background-size: cover;
	background-position: center;
	min-height: 420px;
}

/* ---------- 3B. Curated Gift Sets ---------- */
.gift-anchor {
	scroll-margin-top: 90px;
}

.gift-sets-sec {
	padding-top: 60px;
	padding-bottom: 30px;
}

.gift-sets__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.gift-sets__head {
	text-align: center;
	margin-bottom: 48px;
}

.gift-sets__head .arkan-divider {
	gap: 14px;
	margin-bottom: 18px;
}

.gift-sets__head .arkan-divider__line {
	width: 46px;
}

.gift-sets__head .arkan-divider__line--l {
	background: linear-gradient(to right, transparent, rgba(107, 29, 44, 0.45));
}

.gift-sets__head .arkan-divider__line--r {
	background: linear-gradient(to left, transparent, rgba(107, 29, 44, 0.45));
}

.gift-sets__head .arkan-divider__gem {
	width: 8px;
	height: 8px;
}

.gift-sets__title {
	font-family: var(--serif);
	font-size: clamp(32px, 4vw, 46px);
	font-weight: 500;
	color: var(--ink);
	line-height: 1.1;
}

.gift-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* Gift-set card */
.gift-card {
	background: #fff;
	border: 1px solid rgba(45, 10, 18, 0.06);
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(45, 10, 18, 0.05);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.gift-card__media {
	position: relative;
	background: var(--well);
	aspect-ratio: 4 / 3;
}

.gift-card__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	font-family: var(--sans);
	font-size: 8.5px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
	padding: 5px 11px;
	border-radius: 20px;
}

.gift-card__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.gift-card__body {
	padding: 24px 24px 26px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.gift-card__name {
	font-family: var(--serif);
	font-size: 27px;
	font-weight: 500;
	color: var(--ink);
	line-height: 1.1;
	margin-bottom: 8px;
}

.gift-card__desc {
	font-family: var(--sans);
	font-size: 12.5px;
	font-weight: 400;
	color: var(--body-2);
	line-height: 1.7;
	margin-bottom: 16px;
}

.gift-card__price-row {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-bottom: 18px;
	margin-top: auto;
}

.gift-card__price {
	font-family: var(--serif);
	font-size: 26px;
	font-weight: 600;
	color: var(--burgundy);
}

.gift-card__was {
	font-family: var(--sans);
	font-size: 12.5px;
	font-weight: 400;
	color: var(--muted-2);
	text-decoration: line-through;
}

.gift-card__add {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	background: var(--burgundy);
	color: #fff;
	border: none;
	border-radius: 28px;
	height: 48px;
	font-family: var(--sans);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.25s;
}

.gift-card__add:hover {
	background: var(--burgundy-dark);
}

/* ---------- 3C. Gifting features ---------- */
.gift-feats-sec {
	background: var(--cream-2);
	padding-top: 60px;
	padding-bottom: 60px;
}

.gift-feats {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.gift-feat {
	text-align: center;
}

.gift-feat__disc {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	box-shadow: 0 6px 20px rgba(45, 10, 18, 0.06);
}

.gift-feat__title {
	font-family: var(--serif);
	font-size: 23px;
	font-weight: 500;
	color: var(--ink);
	line-height: normal;
	margin-bottom: 7px;
}

.gift-feat__text {
	font-family: var(--sans);
	font-size: 12.5px;
	font-weight: 400;
	color: var(--body-2);
	line-height: 1.75;
}

/* ---------- 3D. Digital Gift Card ---------- */
.gift-card-sec {
	padding-top: 70px;
	padding-bottom: 90px;
}

.gift-cardblock {
	max-width: 1000px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid rgba(45, 10, 18, 0.06);
	border-radius: 20px;
	box-shadow: 0 16px 50px rgba(45, 10, 18, 0.06);
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.gift-cardblock__visual {
	background: linear-gradient(150deg, var(--burgundy), #3d0f19);
	padding: 54px 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.gift-cardblock__faux {
	width: 100%;
	max-width: 280px;
	aspect-ratio: 1.6 / 1;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(232, 201, 138, 0.35);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.gift-cardblock__brand {
	font-family: var(--serif);
	font-size: 26px;
	font-weight: 600;
	letter-spacing: 0.24em;
	color: #f6ede0;
}

.gift-cardblock__kind {
	font-family: var(--sans);
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.3em;
	color: var(--rose);
	text-transform: uppercase;
}

.gift-cardblock__panel {
	padding: 44px 44px;
}

.gift-cardblock__eyebrow {
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	color: var(--burgundy);
	text-transform: uppercase;
	margin-bottom: 14px;
}

.gift-cardblock__title {
	font-family: var(--serif);
	font-size: 34px;
	font-weight: 500;
	color: var(--ink);
	line-height: 1.1;
	margin-bottom: 12px;
}

.gift-cardblock__body {
	font-family: var(--sans);
	font-size: 13px;
	font-weight: 400;
	color: var(--body-2);
	line-height: 1.8;
	margin-bottom: 26px;
}

.gift-amounts {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 26px;
}

.gift-amount {
	min-width: 78px;
	border-radius: 12px;
	padding: 14px 16px;
	font-family: var(--sans);
	font-size: 13px;
	font-weight: 600;
	background: #fff;
	color: var(--ink);
	border: 1.5px solid rgba(26, 22, 20, 0.18);
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.gift-amount.is-active {
	background: var(--burgundy);
	color: #fff;
	border-color: var(--burgundy);
}

.gift-cardblock__add {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	background: var(--burgundy);
	color: #fff;
	border: none;
	border-radius: 10px;
	height: 52px;
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.25s;
}

.gift-cardblock__add:hover {
	background: var(--burgundy-dark);
}

/* ============================================================
   Responsive — single breakpoint at 900px (matches the prototype).
   ============================================================ */
@media (max-width: 900px) {
	.gift-sec {
		padding-left: 20px;
		padding-right: 20px;
	}

	.gift-hero {
		grid-template-columns: 1fr;
	}

	.gift-hero-img {
		min-height: 260px;
	}

	.gift-grid {
		grid-template-columns: 1fr;
	}

	.gift-feats {
		grid-template-columns: 1fr;
	}

	/* Gift-card block (3D) stacks, matching .gift-hero above. The prototype has
	   no responsive rule here, but spec §8 Gotcha #1 flags that as an oversight
	   and recommends stacking: left at 1fr 1fr the panel overflows the card's
	   overflow:hidden and the amount picker + "Add Gift Card" CTA get clipped. */
	.gift-cardblock {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   RTL — mirror the directional geometry (spec §8 Gotcha #9).
   ============================================================ */
html[dir='rtl'] .gift-card__badge {
	left: auto;
	right: 14px;
}

html[dir='rtl'] .gift-hero__cta,
html[dir='rtl'] .gift-cardblock__faux,
html[dir='rtl'] .gift-feat {
	direction: rtl;
}
