/* Listing system (auth, dashboard, builder, rich editor, single) — split
   out of main.css, enqueued only on listing/account pages + single listings. */
/* ============================================================
   Listing system — auth pages, dashboard, frontend form, single
   ============================================================ */

.dd-container--narrow { max-width: 540px; margin-inline: auto; }

/* Flash messages */
.dd-flash {
	margin: 0 0 1.5rem;
	padding: 0.9rem 1.1rem;
	border-radius: 4px;
	font-size: 0.95rem;
	border: 1px solid transparent;
}
.dd-flash--error   { background: rgba(180, 30, 30, 0.08);  border-color: rgba(180, 30, 30, 0.3);  color: #7a1a1a; }
.dd-flash--success { background: rgba(34, 120, 60, 0.08);  border-color: rgba(34, 120, 60, 0.3);  color: #1b5a32; }

/* Auth pages (create-account, log-in) */
.dd-auth-page { padding: 4rem 0; background: #f8f4ec; min-height: 60vh; }
.dd-auth-page__head { text-align: center; margin-bottom: 2rem; }
.dd-auth-page__head h1 { font-family: var(--dd-font-display); font-size: 2rem; margin: 0 0 0.5rem; }
.dd-auth-page__head p  { color: rgba(13, 27, 46, 0.7); margin: 0; }
.dd-auth-form {
	display: grid; gap: 1rem;
	background: #fff; padding: 2rem; border-radius: 6px;
	box-shadow: 0 24px 60px -28px rgba(13, 27, 46, 0.25);
	border: 1px solid var(--dd-color-line);
}
.dd-auth-form .dd-field { display: flex; flex-direction: column; gap: 0.4rem; }
.dd-auth-form .dd-field span {
	font-size: 0.78rem; font-weight: 700;
	letter-spacing: 0.14em; text-transform: uppercase;
	color: rgba(13, 27, 46, 0.7);
}
.dd-auth-form .dd-field input {
	padding: 0.75rem 0.9rem;
	border: 1px solid var(--dd-color-line);
	border-radius: 3px;
	font: inherit; font-size: 1rem;
	color: var(--dd-color-ink);
	background: #fff;
}
.dd-auth-form .dd-field input::placeholder { color: rgba(13, 27, 46, 0.45); }
.dd-auth-form .dd-field input:focus {
	outline: none; border-color: var(--dd-color-accent);
	box-shadow: 0 0 0 3px rgba(205, 170, 103, 0.18);
}
.dd-auth-form button[type="submit"] { margin-top: 0.5rem; }
.dd-auth-form__alt { text-align: center; font-size: 0.95rem; margin: 0; }
.dd-auth-form__alt a { color: var(--dd-color-accent); font-weight: 700; }

/* Dashboard */
.dd-dashboard { padding: 3rem 0 4rem; background: #f8f4ec; min-height: 60vh; }
.dd-dashboard__head {
	display: flex; justify-content: space-between; align-items: end; gap: 1.5rem;
	margin-bottom: 2rem; flex-wrap: wrap;
}
.dd-dashboard__head h1 { font-family: var(--dd-font-display); font-size: 1.9rem; margin: 0; }
.dd-dashboard__head p  { margin: 0.25rem 0 0; color: rgba(13, 27, 46, 0.65); }
.dd-dashboard__actions { display: flex; gap: 0.6rem; }
.dd-dashboard__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; }
.dd-dashboard__item {
	background: #fff; padding: 1rem 1.25rem; border-radius: 10px;
	border: 1px solid var(--dd-color-line);
	display: grid; grid-template-columns: 96px minmax(0, 1fr) auto;
	gap: 1.25rem; align-items: center;
	box-shadow: 0 14px 34px -32px rgba(13, 27, 46, 0.3);
	transition: border-color 180ms ease, box-shadow 180ms ease;
}
.dd-dashboard__item:hover { border-color: rgba(205, 170, 103, 0.4); box-shadow: 0 22px 48px -34px rgba(13, 27, 46, 0.4); }
.dd-dashboard__thumb {
	display: flex; align-items: center; justify-content: center;
	width: 96px; height: 96px; overflow: hidden; border-radius: 8px;
	background: linear-gradient(135deg, rgba(205, 170, 103, 0.16), rgba(204, 85, 0, 0.08));
	border: 1px solid rgba(205, 170, 103, 0.25);
	color: rgba(205, 170, 103, 0.7);
}
.dd-dashboard__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dd-dashboard__thumb.is-empty .dd-icon { width: 32px; height: 32px; }
.dd-dashboard__item-body { min-width: 0; }
.dd-dashboard__item h2 { font-family: var(--dd-font-display); font-size: 1.2rem; margin: 0.15rem 0 0.4rem; line-height: 1.2; }
.dd-dashboard__type {
	display: inline-block;
	font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--dd-color-accent); font-weight: 700;
}
.dd-dashboard__status {
	display: inline-block; padding: 0.2rem 0.55rem; border-radius: 2px;
	font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
}
.dd-dashboard__status--publish { background: rgba(34, 120, 60, 0.12); color: #1b5a32; }
.dd-dashboard__status--pending { background: rgba(205, 170, 103, 0.18); color: #6b4f10; }
.dd-dashboard__status--draft   { background: rgba(13, 27, 46, 0.1); color: #2c3e60; }
.dd-dashboard__meta {
	display: flex; flex-wrap: wrap; gap: 0.5rem;
	margin-top: 0.35rem; align-items: center;
}
.dd-dashboard__plan {
	display: inline-block;
	padding: 0.22rem 0.55rem;
	border-radius: 2px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.dd-dashboard__plan.is-active  { background: rgba(34, 120, 60, 0.12); color: #1b5a32; }
.dd-dashboard__plan.is-expired { background: rgba(180, 30, 30, 0.12); color: #8a1f1f; }
.dd-dashboard__notice {
	margin: 0.65rem 0 0;
	padding: 0.65rem 0.85rem;
	background: rgba(205, 170, 103, 0.12);
	border-left: 3px solid var(--dd-color-accent);
	font-size: 0.9rem;
	color: var(--dd-color-ink);
	border-radius: 2px;
}
.dd-dashboard__notice a { color: var(--dd-color-accent); font-weight: 700; }

.dd-dashboard__row-actions { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.dd-dashboard__delete { margin: 0; display: inline; }
.dd-btn--danger { color: #8a1f1f; border-color: rgba(138, 31, 31, 0.4); }
.dd-btn--danger:hover { background: #8a1f1f; color: #fff; border-color: #8a1f1f; }
.dd-dashboard__empty { background: #fff; padding: 2rem; border-radius: 5px; text-align: center; }
.dd-dashboard__empty a { color: var(--dd-color-accent); font-weight: 700; }

/* Account settings (change password) on the dashboard */
/* ===========================================================
   Blacklisted clients (Gold+ perk)
   =========================================================== */
.dd-bl { background: var(--dd-color-bg); padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 8vw, 5rem); }
.dd-bl__head { text-align: center; max-width: 720px; margin: 0 auto 2rem; }
.dd-bl__crumbs { display: flex; justify-content: center; margin-bottom: 0.9rem; font-size: 0.85rem; }
.dd-bl__crumbs a { color: rgba(13, 27, 46, 0.7); text-decoration: none; font-weight: 700; }
.dd-bl__crumbs a:hover { color: var(--dd-color-accent); }
.dd-bl__eyebrow {
	display: inline-flex; align-items: center; gap: 0.5rem;
	color: var(--dd-color-accent); font-weight: 700;
	font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 0.7rem;
}
.dd-bl__eyebrow .dd-hairline { width: 24px; height: 1px; background: var(--dd-color-gold); }
.dd-bl h1 { font-family: var(--dd-font-display); color: var(--dd-color-primary); font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0 0 0.6rem; line-height: 1.1; }
.dd-bl__head p { color: rgba(13, 27, 46, 0.7); margin: 0; max-width: 580px; margin-inline: auto; }

/* Upgrade card */
.dd-bl__upgrade {
	display: flex; gap: 1rem; align-items: flex-start;
	max-width: 640px; margin: 1.5rem auto 0;
	padding: 1.4rem 1.5rem;
	background: rgba(205, 170, 103, 0.1);
	border: 1px dashed rgba(205, 170, 103, 0.55);
	border-radius: 14px;
}
.dd-bl__upgrade-ic {
	flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	background: rgba(205, 170, 103, 0.2); color: var(--dd-color-gold);
}
.dd-bl__upgrade strong { display: block; font-family: var(--dd-font-display); font-size: 1.1rem; color: var(--dd-color-primary); margin-bottom: 0.2rem; }
.dd-bl__upgrade p { margin: 0; color: rgba(13, 27, 46, 0.7); }
.dd-bl__upgrade a { color: var(--dd-color-accent); font-weight: 700; }

/* Search */
.dd-bl__search {
	display: flex; gap: 0.6rem; align-items: stretch;
	max-width: 720px; margin: 0 auto 1.5rem;
}
.dd-bl__search-field {
	flex: 1; display: flex; align-items: center; gap: 0.45rem;
	padding: 0 0.7rem; background: #fff; border: 1px solid var(--dd-color-line);
	border-radius: 8px; transition: border-color 180ms ease, box-shadow 180ms ease;
}
.dd-bl__search-field:focus-within { border-color: var(--dd-color-accent); box-shadow: 0 0 0 3px rgba(205, 170, 103, 0.22); }
.dd-bl__search-ic { display: inline-flex; color: var(--dd-color-accent); flex-shrink: 0; }
.dd-bl__search-field input { flex: 1; min-width: 0; border: 0; background: transparent; padding: 0.7rem 0; font: inherit; font-size: 0.95rem; color: var(--dd-color-ink); outline: none; }
.dd-bl__search-field input::-webkit-search-cancel-button { -webkit-appearance: none; appearance: none; }
.dd-bl__search-clear { align-self: center; font-size: 0.85rem; font-weight: 700; color: rgba(13, 27, 46, 0.6); text-decoration: none; }
.dd-bl__search-clear:hover { color: var(--dd-color-accent); }

/* Add form */
.dd-bl__add { max-width: 920px; margin: 0 auto 2rem; padding: 1.4rem 1.5rem; background: #fff; border: 1px solid var(--dd-color-line); border-radius: 14px; box-shadow: 0 20px 50px -38px rgba(13, 27, 46, 0.32); }
.dd-bl__add-head { margin-bottom: 1rem; }
.dd-bl__add-head h2 { font-family: var(--dd-font-display); color: var(--dd-color-primary); font-size: 1.2rem; margin: 0 0 0.3rem; }
.dd-bl__add-head p { margin: 0; color: rgba(13, 27, 46, 0.6); font-size: 0.9rem; }
.dd-bl__add-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; margin-bottom: 0.9rem; }
.dd-bl__add-field { display: flex; flex-direction: column; gap: 0.3rem; min-width: 0; }
.dd-bl__add-field--wide { margin-bottom: 1rem; }
.dd-bl__add-field > span { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(13, 27, 46, 0.6); font-weight: 700; }
.dd-bl__add-field input, .dd-bl__add-field textarea {
	padding: 0.65rem 0.85rem; border-radius: 6px; border: 1px solid var(--dd-color-line);
	background: #fff; font: inherit; font-size: 0.94rem; color: var(--dd-color-ink);
	transition: border-color 180ms ease, box-shadow 180ms ease;
}
.dd-bl__add-field input:focus, .dd-bl__add-field textarea:focus {
	outline: none; border-color: var(--dd-color-accent);
	box-shadow: 0 0 0 3px rgba(205, 170, 103, 0.22);
}
.dd-bl__add-actions { display: flex; justify-content: flex-end; }

/* List */
.dd-bl__list-section { max-width: 920px; margin: 0 auto; }
.dd-bl__list-head { margin-bottom: 1rem; }
.dd-bl__list-head h2 { font-family: var(--dd-font-display); color: var(--dd-color-primary); font-size: 1.2rem; margin: 0; }
.dd-bl__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; }
.dd-bl__row {
	display: grid; grid-template-columns: minmax(0, 1fr) 220px;
	gap: 1.25rem;
	padding: 1.1rem 1.3rem; background: #fff; border: 1px solid var(--dd-color-line);
	border-radius: 10px;
	box-shadow: 0 14px 34px -32px rgba(13, 27, 46, 0.3);
}
.dd-bl__row.is-mine { border-color: rgba(204, 85, 0, 0.4); }
.dd-bl__row-main { min-width: 0; }
.dd-bl__row-main h3 { font-family: var(--dd-font-display); font-size: 1.15rem; margin: 0 0 0.45rem; color: var(--dd-color-primary); }
.dd-bl__row-facts {
	margin: 0 0 0.6rem; padding: 0;
	display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem;
}
.dd-bl__row-facts > div { display: inline-flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.dd-bl__row-facts dt { display: inline-flex; align-items: center; gap: 0.35rem; margin: 0; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dd-color-accent); font-weight: 700; }
.dd-bl__row-facts dt .dd-icon { color: var(--dd-color-gold); }
.dd-bl__row-facts dd { margin: 0; font-weight: 700; overflow-wrap: anywhere; }
.dd-bl__row-facts dd a { color: var(--dd-color-primary); text-decoration: none; }
.dd-bl__row-facts dd a:hover { color: var(--dd-color-accent); text-decoration: underline; }
.dd-bl__row-reason { margin: 0; padding: 0.6rem 0.9rem; background: rgba(13, 27, 46, 0.04); border-left: 3px solid rgba(205, 170, 103, 0.55); border-radius: 4px; color: rgba(13, 27, 46, 0.85); font-size: 0.93rem; line-height: 1.5; }
.dd-bl__row-side { display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-end; text-align: right; }
.dd-bl__row-by { font-size: 0.78rem; color: rgba(13, 27, 46, 0.65); }
.dd-bl__row-by-label { display: block; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dd-color-accent); font-weight: 700; margin-bottom: 0.1rem; }
.dd-bl__row-by strong { display: block; color: var(--dd-color-primary); overflow-wrap: anywhere; }
.dd-bl__row-by time { display: block; font-size: 0.72rem; color: rgba(13, 27, 46, 0.5); margin-top: 0.2rem; }
.dd-bl__row-rm { margin: 0; }
.dd-bl__row-rm-btn { width: 32px; height: 32px; border-radius: 50%; background: rgba(176, 47, 47, 0.08); border: 1px solid rgba(176, 47, 47, 0.25); color: #a03333; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.dd-bl__row-rm-btn:hover { background: rgba(176, 47, 47, 0.18); }

.dd-bl__empty {
	max-width: 920px; margin: 0 auto;
	padding: 2rem; text-align: center;
	background: #fff; border: 1px dashed var(--dd-color-line); border-radius: 12px;
	color: rgba(13, 27, 46, 0.65);
}

.dd-bl__pagination { display: flex; justify-content: center; gap: 0.4rem; margin-top: 1.5rem; }
.dd-bl__page {
	display: inline-flex; align-items: center; justify-content: center;
	width: 34px; height: 34px; border-radius: 50%; text-decoration: none;
	color: var(--dd-color-primary); background: #fff; border: 1px solid var(--dd-color-line);
	font-weight: 700;
}
.dd-bl__page:hover { border-color: var(--dd-color-accent); }
.dd-bl__page.is-active { background: var(--dd-color-primary); color: #fff; border-color: var(--dd-color-primary); }

@media (max-width: 760px) {
	.dd-bl__add-grid { grid-template-columns: 1fr; }
	.dd-bl__row { grid-template-columns: 1fr; }
	.dd-bl__row-side { align-items: flex-start; text-align: left; flex-direction: row; justify-content: space-between; width: 100%; }
	.dd-bl__search { flex-wrap: wrap; }
	.dd-bl__search .dd-btn { flex: 1; justify-content: center; }
}

/* ----- Account settings ----- */
.dd-account-settings { margin-top: clamp(2.5rem, 6vw, 4rem); }
.dd-account-settings__head { text-align: center; max-width: 640px; margin: 0 auto 1.5rem; }
.dd-account-settings__eyebrow {
	display: inline-flex; align-items: center; gap: 0.5rem;
	color: var(--dd-color-accent); font-weight: 700;
	font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 0.7rem;
}
.dd-account-settings__eyebrow .dd-hairline { width: 24px; height: 1px; background: var(--dd-color-gold); }
.dd-account-settings h2 {
	font-family: var(--dd-font-display); color: var(--dd-color-primary);
	font-size: clamp(1.35rem, 2.4vw, 1.7rem); margin: 0 0 0.5rem;
}
.dd-account-settings__head p { color: rgba(13, 27, 46, 0.65); margin: 0; }

.dd-account-settings__card {
	max-width: 720px; margin: 0 auto;
	background: #fff; border: 1px solid var(--dd-color-line); border-radius: 14px;
	padding: clamp(1.4rem, 3vw, 2rem);
	box-shadow: 0 20px 50px -36px rgba(13, 27, 46, 0.32);
}
.dd-account-settings__facts {
	margin: 0 0 1.4rem; padding: 0 0 1.4rem;
	display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 0.9rem 1.5rem;
	border-bottom: 1px solid var(--dd-color-line);
}
.dd-account-settings__facts > div { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.dd-account-settings__facts dt {
	display: inline-flex; align-items: center; gap: 0.4rem; margin: 0;
	font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
	color: var(--dd-color-accent); font-weight: 700;
}
.dd-account-settings__facts dt .dd-icon { color: var(--dd-color-gold); }
.dd-account-settings__facts dd { margin: 0; font-weight: 700; color: var(--dd-color-primary); overflow-wrap: anywhere; }

.dd-account-form__grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.2rem;
}
.dd-account-form__field { display: flex; flex-direction: column; gap: 0.35rem; }
.dd-account-form__field > span {
	font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
	color: rgba(13, 27, 46, 0.65); font-weight: 700;
	display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem;
}
.dd-account-form__field > span small {
	font-size: 0.72rem; letter-spacing: 0; text-transform: none;
	color: rgba(13, 27, 46, 0.5); font-weight: 600;
}
.dd-account-form__field input {
	padding: 0.7rem 0.9rem; border-radius: 6px; border: 1px solid var(--dd-color-line);
	background: #fff; font: inherit; font-size: 0.95rem; color: var(--dd-color-ink);
	transition: border-color 180ms ease, box-shadow 180ms ease;
}
.dd-account-form__field input:focus {
	outline: none; border-color: var(--dd-color-accent);
	box-shadow: 0 0 0 3px rgba(205, 170, 103, 0.22);
}
.dd-account-form button[type="submit"] { padding: 0.85rem 1.6rem; }

@media (max-width: 600px) {
	.dd-account-form__grid { grid-template-columns: 1fr; }
	.dd-account-form button[type="submit"] { width: 100%; }
}

/* Create listing page */
.dd-listing-page { background: #f8f4ec; min-height: 60vh; }
.dd-req { color: #b32a2a; }

/* ===========================================================
   CPT Picker — /create-listing/ (no ?type=)
   =========================================================== */
.dd-picker__head { text-align: center; padding: 3rem 0 1.5rem; max-width: 640px; margin: 0 auto; }
.dd-picker__head h1 {
	font-family: var(--dd-font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	margin: 0.5rem 0 0.75rem;
}
.dd-picker__head p { color: rgba(13, 27, 46, 0.7); margin: 0; font-size: 1.05rem; }
.dd-picker__eyebrow {
	display: inline-block;
	font-size: 0.7rem; font-weight: 700;
	letter-spacing: 0.22em; text-transform: uppercase;
	color: var(--dd-color-accent);
}
.dd-picker__grid {
	list-style: none; margin: 0 0 3rem; padding: 0;
	display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 0.85rem;
}
.dd-picker__card {
	display: flex; align-items: center; gap: 0.9rem;
	background: #fff;
	padding: 1.25rem 1.4rem;
	border-radius: 5px;
	border: 1px solid var(--dd-color-line);
	text-decoration: none; color: inherit;
	transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.dd-picker__card:hover {
	transform: translateY(-2px);
	border-color: var(--dd-color-accent);
	box-shadow: 0 18px 40px -18px rgba(13, 27, 46, 0.28);
}
.dd-picker__card-icon {
	flex-shrink: 0;
	width: 48px; height: 48px;
	display: grid; place-items: center;
	color: var(--dd-color-accent);
	background: rgba(204, 85, 0, 0.08);
	border-radius: 50%;
}
.dd-picker__card-body { flex: 1; display: flex; flex-direction: column; gap: 0.15rem; }
.dd-picker__card-body strong { font-family: var(--dd-font-display); font-size: 1.2rem; }
.dd-picker__card-copy { color: rgba(13, 27, 46, 0.65); font-size: 0.88rem; }
.dd-picker__card-arrow {
	color: rgba(13, 27, 46, 0.35);
	font-size: 1.2rem;
	transition: transform 200ms ease, color 200ms ease;
}
.dd-picker__card:hover .dd-picker__card-arrow { color: var(--dd-color-accent); transform: translateX(3px); }
.dd-picker__alt { text-align: center; margin: 0 0 2rem; font-size: 0.95rem; }
.dd-picker__alt a { color: var(--dd-color-ink); }
.dd-listing-page__crumbs {
	padding: 1.25rem 0 0;
	font-size: 0.85rem;
}
.dd-listing-page__crumbs a { color: rgba(13, 27, 46, 0.7); text-decoration: none; }
.dd-listing-page__crumbs a:hover { color: var(--dd-color-accent); }

/* ===========================================================
   Builder — /create-listing/?type=… and /create-listing/?listing=…
   =========================================================== */
.dd-builder { display: block; }

/* Sticky topbar */
.dd-builder__topbar {
	position: sticky;
	top: var(--dd-header-height);
	z-index: 30;
	background: rgba(248, 244, 236, 0.94);
	backdrop-filter: saturate(140%) blur(10px);
	-webkit-backdrop-filter: saturate(140%) blur(10px);
	border-bottom: 1px solid var(--dd-color-line);
}
.dd-builder__topbar-inner {
	display: grid;
	grid-template-columns: 1fr auto auto;
	align-items: center;
	gap: 1rem;
	padding: 0.85rem 0;
}
.dd-builder__crumbs {
	display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap;
	font-size: 0.85rem; color: rgba(13, 27, 46, 0.55);
}
.dd-builder__crumbs a { color: rgba(13, 27, 46, 0.75); text-decoration: none; font-weight: 700; }
.dd-builder__crumbs a:hover { color: var(--dd-color-accent); }
.dd-builder__type {
	display: inline-flex; align-items: center; gap: 0.35rem;
	color: var(--dd-color-ink); font-weight: 700;
}
.dd-builder__type .dd-icon { color: var(--dd-color-accent); }
.dd-builder__statusrow {
	display: inline-flex; align-items: center; gap: 0.6rem;
	font-size: 0.85rem;
}
.dd-builder__view {
	color: var(--dd-color-accent); font-weight: 700;
	text-decoration: none;
	font-size: 0.82rem;
}
.dd-builder__view:hover { text-decoration: underline; }
.dd-builder__saved-hint {
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	color: rgba(13, 27, 46, 0.55);
	padding: 0.2rem 0.55rem;
	border-radius: 99px;
	background: rgba(13, 27, 46, 0.06);
}
.dd-builder__saved-hint.is-dirty { background: rgba(180, 90, 0, 0.12); color: #8a4a00; }
.dd-builder__saved-hint.is-saved { background: rgba(34, 120, 60, 0.12); color: #1b5a32; }
.dd-builder__actions .dd-btn { padding: 0.7rem 1.4rem; font-size: 0.78rem; }

/* Status pill */
.dd-status-pill {
	display: inline-block;
	padding: 0.22rem 0.6rem;
	border-radius: 2px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.dd-status-pill--publish { background: rgba(34, 120, 60, 0.14); color: #1b5a32; }
.dd-status-pill--pending { background: rgba(205, 170, 103, 0.22); color: #6b4f10; }
.dd-status-pill--draft   { background: rgba(13, 27, 46, 0.1); color: #2c3e60; }
.dd-status-pill--private { background: rgba(120, 60, 180, 0.14); color: #5a1b8a; }

/* Main */
.dd-builder__main { padding: 2rem 0 5rem; }

/* Intro card (title + description) */
.dd-builder__intro {
	background: #fff;
	padding: 1.75rem;
	border-radius: 6px;
	border: 1px solid var(--dd-color-line);
	box-shadow: 0 14px 36px -22px rgba(13, 27, 46, 0.25);
	margin-bottom: 1.5rem;
	display: grid; gap: 1.25rem;
}
.dd-builder .dd-field { display: flex; flex-direction: column; gap: 0.4rem; }
.dd-builder .dd-field > span {
	font-size: 0.78rem; font-weight: 700;
	letter-spacing: 0.14em; text-transform: uppercase;
	color: rgba(13, 27, 46, 0.7);
}
.dd-builder .dd-field--lg > span { font-size: 0.85rem; }
.dd-builder .dd-field--lg input[type="text"] {
	font-family: var(--dd-font-display);
	font-size: 1.6rem;
	padding: 0.7rem 0.9rem;
}
.dd-builder input[type="text"],
.dd-builder input[type="email"],
.dd-builder input[type="tel"],
.dd-builder input[type="url"],
.dd-builder input[type="number"],
.dd-builder input[type="date"],
.dd-builder input[type="datetime-local"],
.dd-builder input[type="password"],
.dd-builder input[type="search"],
.dd-builder textarea,
.dd-builder select {
	width: 100%;
	padding: 0.65rem 0.85rem;
	border: 1px solid var(--dd-color-line);
	border-radius: 3px;
	font: inherit; font-size: 0.95rem;
	color: var(--dd-color-ink);
	background: #fff;
	transition: border-color 200ms ease, box-shadow 200ms ease;
}
.dd-builder input::placeholder,
.dd-builder textarea::placeholder { color: rgba(13, 27, 46, 0.42); }
.dd-builder input:focus,
.dd-builder textarea:focus,
.dd-builder select:focus {
	outline: none; border-color: var(--dd-color-accent);
	box-shadow: 0 0 0 3px rgba(205, 170, 103, 0.18);
}

/* Success banner (after save) */
.dd-builder__success {
	background: #fff;
	padding: 1.25rem 1.4rem;
	border-radius: 5px;
	border: 1px solid rgba(34, 120, 60, 0.22);
	box-shadow: 0 14px 36px -22px rgba(34, 120, 60, 0.3);
	margin-bottom: 1.5rem;
	display: flex; align-items: center; gap: 1rem;
}
.dd-builder__success-check {
	flex-shrink: 0;
	width: 40px; height: 40px;
	display: grid; place-items: center;
	background: rgba(34, 120, 60, 0.12);
	color: #1b5a32;
	border-radius: 50%;
	font-size: 1.15rem; font-weight: 700;
}
.dd-builder__success strong { font-family: var(--dd-font-display); font-size: 1.15rem; }
.dd-builder__success p { margin: 0.2rem 0 0; color: rgba(13, 27, 46, 0.7); font-size: 0.92rem; }

/* Bottom bar */
.dd-builder__bottom {
	margin-top: 2rem;
	display: flex; justify-content: flex-end; gap: 0.75rem;
	flex-wrap: wrap;
}
.dd-builder__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* Disabled buttons (e.g. "Submit for review" until required fields are set) */
.dd-btn:disabled,
.dd-btn[disabled] {
	opacity: 0.45;
	cursor: not-allowed;
	pointer-events: none;
}
.dd-btn:disabled:hover,
.dd-btn[disabled]:hover { transform: none; }

/* Mini rich editor — bold / italic / underline / bullet list only. */
.dd-rich-editor {
	border: 1px solid var(--dd-color-line);
	border-radius: 3px;
	background: #fff;
	overflow: hidden;
}
.dd-rich-editor:focus-within {
	border-color: var(--dd-color-accent);
	box-shadow: 0 0 0 3px rgba(205, 170, 103, 0.18);
}
.dd-rich-editor__toolbar {
	display: flex;
	gap: 0.2rem;
	padding: 0.4rem 0.5rem;
	border-bottom: 1px solid var(--dd-color-line);
	background: rgba(13, 27, 46, 0.03);
}
.dd-rich-editor__btn {
	width: 32px; height: 32px;
	border: 0; background: transparent;
	color: var(--dd-color-ink);
	border-radius: 2px;
	cursor: pointer;
	font: inherit; font-size: 0.95rem;
	line-height: 1;
	display: inline-grid; place-items: center;
	transition: background 150ms ease;
}
.dd-rich-editor__btn:hover  { background: rgba(13, 27, 46, 0.08); }
.dd-rich-editor__btn:active { background: rgba(205, 170, 103, 0.25); }
.dd-rich-editor__btn.is-bold      { font-weight: 700; }
.dd-rich-editor__btn.is-italic    { font-style: italic; }
.dd-rich-editor__btn.is-underline { text-decoration: underline; }
.dd-rich-editor__btn.is-bullets   { font-size: 1.2rem; }
.dd-rich-editor__area {
	min-height: 9rem;
	padding: 0.75rem 0.9rem;
	color: var(--dd-color-ink);
	font: inherit; font-size: 0.95rem;
	outline: none;
	line-height: 1.55;
}
.dd-rich-editor__area:empty::before {
	content: attr(data-placeholder);
	color: rgba(13, 27, 46, 0.4);
}
.dd-rich-editor__area b,
.dd-rich-editor__area strong { font-weight: 700; }
.dd-rich-editor__area i,
.dd-rich-editor__area em     { font-style: italic; }
.dd-rich-editor__area u      { text-decoration: underline; }
.dd-rich-editor__area ul {
	list-style: disc; margin: 0.5rem 0 0.5rem 1.5rem; padding: 0;
}
.dd-rich-editor__area p { margin: 0 0 0.5rem; }

/* ===========================================================
   Tabbed form — sidebar nav (desktop) + horizontal scroll (mobile)
   =========================================================== */
.dd-listing-form {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	gap: 1.5rem;
	align-items: start;
	min-width: 0;
}
.dd-listing-form__nav { position: sticky; top: calc(var(--dd-header-height) + 88px); }
.dd-listing-form__tabs {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-direction: column; gap: 0.25rem;
	background: #fff;
	border: 1px solid var(--dd-color-line);
	border-radius: 6px;
	padding: 0.4rem;
}
.dd-listing-form__tab {
	width: 100%;
	display: flex; align-items: center; gap: 0.55rem;
	background: transparent; border: 0;
	padding: 0.6rem 0.75rem;
	font: inherit; font-size: 0.88rem;
	color: var(--dd-color-ink); cursor: pointer;
	border-radius: 3px;
	text-align: left;
	transition: background 180ms ease, color 180ms ease;
}
.dd-listing-form__tab:hover { background: rgba(13, 27, 46, 0.05); }
.dd-listing-form__tab.is-active {
	background: rgba(204, 85, 0, 0.1);
	color: var(--dd-color-accent);
	font-weight: 700;
}
.dd-listing-form__tab-icon {
	display: inline-grid; place-items: center;
	width: 26px; height: 26px;
	flex-shrink: 0;
	color: rgba(13, 27, 46, 0.55);
}
.dd-listing-form__tab.is-active .dd-listing-form__tab-icon { color: var(--dd-color-accent); }
.dd-listing-form__tab-label { flex: 1; }
.dd-listing-form__tab-status {
	flex-shrink: 0;
	min-width: 22px; height: 22px;
	display: inline-grid; place-items: center;
	border-radius: 50%;
	font-size: 0.72rem; font-weight: 700;
	color: rgba(13, 27, 46, 0.45);
}
.dd-listing-form__tab.has-missing .dd-listing-form__tab-status {
	background: rgba(180, 30, 30, 0.12);
	color: #8a1f1f;
}
.dd-listing-form__tab.is-complete .dd-listing-form__tab-status {
	background: rgba(34, 120, 60, 0.14);
	color: #1b5a32;
}

.dd-listing-form__panels { display: block; min-width: 0; }
.dd-listing-form__panel { display: none; }
.dd-listing-form__panel.is-active {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
	min-width: 0;
	gap: 1.1rem 1.4rem;
	background: #fff;
	padding: 1.5rem 1.75rem 1.75rem;
	border: 1px solid var(--dd-color-line);
	border-radius: 6px;
	box-shadow: 0 14px 36px -22px rgba(13, 27, 46, 0.18);
}
.dd-listing-form__panel-head {
	grid-column: 1 / -1;
	margin: 0 0 0.25rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--dd-color-line);
}
.dd-listing-form__panel-head h2 {
	font-family: var(--dd-font-display);
	font-size: 1.35rem;
	margin: 0;
}
.dd-listing-form__field {
	display: flex; flex-direction: column; gap: 0.4rem; margin: 0; position: relative;
	min-width: 0;
}
/* Wide-format fields span the whole tab grid */
.dd-listing-form__field--gallery,
.dd-listing-form__field--file,
.dd-listing-form__field--textarea,
.dd-listing-form__field--location,
.dd-listing-form__field--checkbox,
.dd-listing-form__field--repeater {
	grid-column: 1 / -1;
}
.dd-listing-form__label {
	font-size: 0.75rem; font-weight: 700;
	letter-spacing: 0.16em; text-transform: uppercase;
	color: rgba(13, 27, 46, 0.65);
}
.dd-listing-form__help { font-size: 0.82rem; color: rgba(13, 27, 46, 0.6); margin: 0.15rem 0 0; }

/* Repeater (per-country Outcall / FMTY rates) */
.dd-repeater { display: flex; flex-direction: column; gap: 0.9rem; }
.dd-repeater__items { display: flex; flex-direction: column; gap: 0.9rem; }
.dd-repeater__item {
	border: 1px solid var(--dd-color-line);
	border-radius: 6px;
	padding: 0.4rem 1.1rem 1.1rem;
	background: rgba(13, 27, 46, 0.02);
}
.dd-repeater__item-head { display: flex; justify-content: flex-end; min-height: 1.4rem; }
.dd-repeater__remove {
	border: 0; background: none; cursor: pointer; line-height: 1;
	font-size: 1.5rem; color: rgba(13, 27, 46, 0.4); padding: 0 0.15rem;
	transition: color 200ms ease;
}
.dd-repeater__remove:hover { color: var(--dd-color-accent); }
.dd-repeater__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
	gap: 0.7rem 0.9rem;
}
.dd-repeater__field { display: flex; flex-direction: column; gap: 0.3rem; min-width: 0; }
.dd-repeater__flabel {
	font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
	text-transform: uppercase; color: rgba(13, 27, 46, 0.6);
}
.dd-repeater__add { align-self: flex-start; }

.dd-field-checks {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
	gap: 0.5rem 1rem;
	padding: 0.75rem 1rem;
	background: rgba(13, 27, 46, 0.03);
	border: 1px solid var(--dd-color-line);
	border-radius: 4px;
}
.dd-field-check { display: flex; align-items: center; gap: 0.45rem; font-size: 0.92rem; color: var(--dd-color-ink); cursor: pointer; }
.dd-field-check input { accent-color: var(--dd-color-accent); }

/* ---------- Taxonomy picker (multi-select as checkbox grid) ---------- */
.dd-tax-picker { display: flex; flex-direction: column; gap: 0.6rem; }
.dd-tax-picker__search {
	width: 100%;
	padding: 0.55rem 0.8rem;
	border: 1px solid var(--dd-color-line);
	border-radius: 4px;
	font: inherit; font-size: 0.9rem;
}
.dd-tax-picker__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(160px, 100%), 1fr));
	gap: 0.35rem 0.9rem;
	padding: 0.85rem 1rem;
	background: rgba(13, 27, 46, 0.03);
	border: 1px solid var(--dd-color-line);
	border-radius: 4px;
}
.dd-tax-picker__grid.is-scroll { max-height: 280px; overflow-y: auto; }
.dd-tax-picker__opt {
	display: flex; align-items: center; gap: 0.5rem;
	font-size: 0.9rem; color: var(--dd-color-ink); cursor: pointer;
	padding: 0.25rem 0;
}
.dd-tax-picker__opt input { accent-color: var(--dd-color-accent); flex-shrink: 0; }
.dd-tax-picker__opt:hover { color: var(--dd-color-accent); }

/* Country, City — geo autocomplete row (icon + input + locate button),
   matching the homepage hero / archive sidebar city search. */
.dd-field-location {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: #fff;
	border: 1px solid var(--dd-color-line);
	border-radius: 4px;
	padding: 0 0.7rem;
	transition: border-color 200ms ease, box-shadow 200ms ease;
}
.dd-field-location:focus-within {
	border-color: var(--dd-color-accent);
	box-shadow: 0 0 0 3px rgba(205, 170, 103, 0.18);
}
.dd-field-location__icon { color: var(--dd-color-accent); flex-shrink: 0; }
.dd-field-location input[type="text"] {
	flex: 1;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0.65rem 0;
	background: transparent;
}
.dd-field-location__locate {
	flex-shrink: 0;
	display: inline-grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid var(--dd-color-line);
	background: transparent;
	color: var(--dd-color-primary);
	border-radius: 50%;
	cursor: pointer;
	padding: 0;
	transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 400ms cubic-bezier(.2,.7,.2,1);
}
.dd-field-location__locate:hover {
	background: var(--dd-color-accent);
	color: #fff;
	border-color: var(--dd-color-accent);
}
.dd-field-location__locate.is-locating { animation: ddPulseLocate 900ms ease-in-out infinite; }
@keyframes ddPulseLocate {
	0%, 100% { transform: scale(1); }
	50%      { transform: scale(1.12); }
}

/* ---------- File field (video) ---------- */
.dd-field-file { display: flex; flex-direction: column; gap: 0.6rem; }
.dd-field-file__drop {
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: 0.45rem;
	padding: 1.5rem 1rem;
	border: 2px dashed rgba(13, 27, 46, 0.18);
	border-radius: 6px;
	background: rgba(13, 27, 46, 0.02);
	color: rgba(13, 27, 46, 0.7);
	cursor: pointer;
	transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
	text-align: center;
}
.dd-field-file__drop:hover {
	border-color: var(--dd-color-accent);
	background: rgba(204, 85, 0, 0.04);
	color: var(--dd-color-ink);
}
.dd-field-file__drop.is-dropping {
	border-color: var(--dd-color-accent);
	background: rgba(204, 85, 0, 0.08);
	color: var(--dd-color-ink);
}
.dd-field-file__drop-icon { color: var(--dd-color-accent); }
.dd-field-file__drop-label { font-weight: 700; letter-spacing: 0.03em; }
.dd-field-file__drop-hint { font-size: 0.82rem; color: rgba(13, 27, 46, 0.55); }
.dd-field-file__current-row {
	display: flex; align-items: center; gap: 0.6rem;
	padding: 0.5rem 0.75rem;
	background: #fff;
	border: 1px solid var(--dd-color-line);
	border-radius: 4px;
	font-size: 0.9rem;
}
.dd-field-file__current-row[hidden] { display: none; }
.dd-field-file__current-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dd-field-file__current-link { color: var(--dd-color-accent); font-weight: 700; }
.dd-field-file__rm {
	border: 0; background: transparent; cursor: pointer;
	width: 24px; height: 24px; border-radius: 50%;
	color: rgba(13, 27, 46, 0.65); font-size: 1.05rem; line-height: 1;
}
.dd-field-file__rm:hover { background: rgba(180, 30, 30, 0.1); color: #8a1f1f; }

/* ---------- Gallery ---------- */
/* Plan-gated field placeholder (eg. Video → Gold+) */
.dd-field-locked {
	display: flex; gap: 0.85rem; align-items: flex-start;
	padding: 1rem 1.1rem;
	border: 1px dashed rgba(205, 170, 103, 0.55);
	border-radius: 6px;
	background: rgba(205, 170, 103, 0.08);
	color: var(--dd-color-ink);
}
.dd-field-locked__ic {
	flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	background: rgba(205, 170, 103, 0.18); color: var(--dd-color-gold);
}
.dd-field-locked__body strong { display: block; font-family: var(--dd-font-display); font-size: 1.05rem; color: var(--dd-color-primary); margin-bottom: 0.2rem; }
.dd-field-locked__body p { margin: 0; font-size: 0.88rem; color: rgba(13, 27, 46, 0.7); }
.dd-field-locked__body a { color: var(--dd-color-accent); font-weight: 700; }

.dd-field-gallery { display: flex; flex-direction: column; gap: 0.75rem; }
.dd-field-gallery__list {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(auto-fill, minmax(min(110px, 100%), 1fr)); gap: 0.6rem;
}
.dd-field-gallery__list:empty { display: none; }
.dd-field-gallery__list li {
	position: relative; aspect-ratio: 1 / 1; overflow: hidden;
	border-radius: 4px;
	border: 1px solid var(--dd-color-line);
	background: #f5efe2;
	cursor: grab;
	transition: transform 150ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.dd-field-gallery__list li:hover { border-color: rgba(13, 27, 46, 0.3); }
.dd-field-gallery__list li.is-dragging { opacity: 0.4; cursor: grabbing; }
.dd-field-gallery__list img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }

/* Cover indicator on the first thumbnail */
.dd-field-gallery__list li[data-id]:first-child {
	border-color: var(--dd-color-accent);
	box-shadow: 0 0 0 2px var(--dd-color-accent), 0 12px 28px -14px rgba(204, 85, 0, 0.55);
}
.dd-field-gallery__list li[data-id]:first-child::before {
	content: 'Cover';
	position: absolute;
	top: 6px; left: 6px;
	background: var(--dd-color-accent);
	color: #fff;
	font-size: 0.62rem; font-weight: 700;
	letter-spacing: 0.16em; text-transform: uppercase;
	padding: 3px 7px;
	border-radius: 2px;
	z-index: 2;
}
.dd-field-gallery__pending {
	border: 2px dashed rgba(204, 85, 0, 0.5) !important;
	box-shadow: none !important;
	cursor: default;
}
.dd-field-gallery__pending-tag {
	position: absolute; bottom: 6px; left: 6px;
	background: rgba(13, 27, 46, 0.78); color: #fff;
	font-size: 0.6rem; font-weight: 700;
	letter-spacing: 0.16em; text-transform: uppercase;
	padding: 2px 6px; border-radius: 2px;
}
.dd-field-gallery__rm {
	position: absolute; top: 4px; right: 4px;
	width: 22px; height: 22px;
	border: 0; background: rgba(13, 27, 46, 0.78); color: #fff;
	border-radius: 50%; cursor: pointer; line-height: 1; font-size: 0.95rem;
	z-index: 2;
}
.dd-field-gallery__rm:hover { background: rgba(180, 30, 30, 0.9); }

.dd-field-gallery__drop {
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: 0.45rem;
	padding: 1.5rem 1rem;
	border: 2px dashed rgba(13, 27, 46, 0.18);
	border-radius: 6px;
	background: rgba(13, 27, 46, 0.02);
	color: rgba(13, 27, 46, 0.7);
	cursor: pointer;
	transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
	text-align: center;
}
.dd-field-gallery__drop:hover {
	border-color: var(--dd-color-accent);
	background: rgba(204, 85, 0, 0.04);
	color: var(--dd-color-ink);
}
.dd-field-gallery__drop.is-dropping {
	border-color: var(--dd-color-accent);
	background: rgba(204, 85, 0, 0.1);
	color: var(--dd-color-ink);
	transform: scale(1.005);
}
.dd-field-gallery__drop-icon { color: var(--dd-color-accent); }
.dd-field-gallery__drop-label { font-weight: 700; letter-spacing: 0.03em; }
.dd-field-gallery__drop-hint { font-size: 0.82rem; color: rgba(13, 27, 46, 0.55); }

/* ===========================================================
   Single listing — luxury product page on the brand's light canvas
   (Warm Ivory bg, midnight text, gold + burnt-orange accents).
   =========================================================== */
.dd-lux { position: relative; background: var(--dd-color-bg); color: var(--dd-color-ink); }
.dd-lux__decor {
	position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background:
		radial-gradient(ellipse at 12% 1%, rgba(205, 170, 103, 0.10) 0%, transparent 26%),
		radial-gradient(ellipse at 92% 14%, rgba(204, 85, 0, 0.05) 0%, transparent 30%);
}
/* Full-bleed alternating bands, à la homepage (warm ivory ↔ #FBF7F0). */
.dd-band { position: relative; z-index: 1; padding-block: clamp(3rem, 6vw, 4.5rem); }
.dd-band > .dd-container { max-width: 1320px; }
.dd-band:nth-of-type(odd)  { background: var(--dd-color-bg); }
.dd-band:nth-of-type(even) { background: #FBF7F0; }
.dd-band--prod { padding-block: clamp(2.25rem, 4vw, 3rem) clamp(2.5rem, 5vw, 4rem); }
.dd-band--cta  { padding-block: clamp(3rem, 6vw, 4.5rem) clamp(4rem, 8vw, 6rem); }

/* ghost-light only used on the dark closing CTA band */
.dd-btn--ghost-light { background: rgba(255, 255, 255, 0.12); color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.dd-btn--ghost-light:hover { background: #fff; color: var(--dd-color-primary); }

/* ----- Product top: gallery + buy-box ----- */
.dd-prod {
	display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(320px, 1fr);
	gap: clamp(1.5rem, 4vw, 3rem); align-items: start; margin-bottom: clamp(3rem, 7vw, 5rem);
}

/* Gallery — images shown in full (never cropped) on a clean frame */
.dd-prod__gallery { display: grid; gap: 0.7rem; min-width: 0; }
.dd-prod__stage {
	margin: 0; border-radius: 14px; overflow: hidden; background: #fff;
	border: 1px solid var(--dd-color-line); box-shadow: 0 24px 60px -34px rgba(13, 27, 46, 0.3);
}
.dd-prod__stage-btn { display: block; width: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; position: relative; }
.dd-prod__stage img { display: block; width: 100%; height: clamp(360px, 56vh, 640px); object-fit: contain; background: #fff; }
.dd-prod__zoom {
	position: absolute; right: 0.8rem; bottom: 0.8rem; width: 38px; height: 38px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	background: rgba(13, 27, 46, 0.78); color: #fff; border: 1px solid rgba(255, 255, 255, 0.2);
}
.dd-prod__stage--empty { display: flex; align-items: center; justify-content: center; height: 360px; background: #fff; color: rgba(13, 27, 46, 0.3); }
.dd-prod__thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: 0.5rem; }
.dd-prod__thumb {
	padding: 0; border-radius: 8px; overflow: hidden; cursor: pointer; aspect-ratio: 1 / 1;
	background: #fff; border: 1px solid var(--dd-color-line); transition: border-color 0.2s ease, transform 0.2s ease;
}
.dd-prod__thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.dd-prod__thumb:hover { transform: translateY(-2px); }
.dd-prod__thumb.is-active { border-color: var(--dd-color-accent); }

/* Buy-box (sticky info + contact) */
.dd-prod__buy {
	position: sticky; top: calc(var(--dd-header-height) + 1rem);
	background: #fff; border: 1px solid var(--dd-color-line); border-radius: 16px;
	padding: clamp(1.4rem, 3vw, 2rem); box-shadow: 0 24px 60px -36px rgba(13, 27, 46, 0.28);
}
.dd-prod__eyebrow {
	display: inline-flex; align-items: center; gap: 0.5rem; color: var(--dd-color-accent);
	font-weight: 700; font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 0.7rem;
}
.dd-prod__eyebrow .dd-icon { color: var(--dd-color-gold); }
.dd-prod__title { font-family: var(--dd-font-display); color: var(--dd-color-primary); font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.08; margin: 0; }
.dd-prod__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-top: 0.9rem; }
.dd-prod__place { display: inline-flex; align-items: center; gap: 0.35rem; font-weight: 700; color: rgba(13, 27, 46, 0.8); }
.dd-prod__place .dd-icon { color: var(--dd-color-accent); }
.dd-prod__chip {
	display: inline-flex; align-items: center; padding: 0.28rem 0.75rem; border-radius: 999px;
	background: rgba(205, 170, 103, 0.16); border: 1px solid rgba(205, 170, 103, 0.45);
	font-size: 0.8rem; font-weight: 700; color: #8a6a28;
}
.dd-prod__price { font-family: var(--dd-font-display); color: var(--dd-color-primary); font-size: 1.85rem; margin: 1.1rem 0 0; }
.dd-prod__cta { display: grid; gap: 0.6rem; margin-top: 1.3rem; }
.dd-prod__cta .dd-btn { width: 100%; justify-content: center; }
.dd-prod__contact { list-style: none; margin: 1.3rem 0 0; padding: 1.3rem 0 0; display: grid; gap: 0.7rem; border-top: 1px solid var(--dd-color-line); }
.dd-prod__contact li { display: flex; align-items: center; gap: 0.7rem; min-width: 0; }
.dd-prod__contact-ic {
	flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	background: rgba(204, 85, 0, 0.1); color: var(--dd-color-accent);
}
.dd-prod__contact-val { min-width: 0; overflow-wrap: anywhere; font-weight: 600; color: var(--dd-color-ink); }
.dd-prod__contact-val a { color: var(--dd-color-primary); text-decoration: none; }
.dd-prod__contact-val a:hover { color: var(--dd-color-accent); text-decoration: underline; }

/* ----- Sections ----- */
.dd-lux-sec__head { text-align: center; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.dd-lux-sec__eyebrow {
	display: inline-block; color: var(--dd-color-accent); font-weight: 700;
	font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 0.7rem;
}
.dd-lux-sec__title { font-family: var(--dd-font-display); color: var(--dd-color-primary); font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 0; line-height: 1.12; }
.dd-lux-sec__rule { display: block; width: 64px; height: 3px; margin: 1rem auto 0; border-radius: 2px; background: var(--dd-gradient-gilded, linear-gradient(135deg, var(--dd-color-gold), var(--dd-color-accent))); }

/* Panels / prose */
.dd-lux-panel { background: #fff; border: 1px solid var(--dd-color-line); border-radius: 16px; padding: clamp(1.6rem, 3.5vw, 2.5rem); box-shadow: 0 18px 44px -34px rgba(13, 27, 46, 0.25); }
.dd-lux-prose { line-height: 1.8; color: var(--dd-color-ink); font-size: 1.02rem; }
.dd-lux-prose p { margin: 0 0 1rem; }
.dd-lux-prose > :last-child { margin-bottom: 0; }
.dd-lux-prose a { color: var(--dd-color-accent); }

/* ----- About — editorial intro ----- */
.dd-lux-about { max-width: 760px; margin-inline: auto; text-align: center; }
.dd-lux-about__mark {
	display: block; font-family: var(--dd-font-display); color: var(--dd-color-gold);
	font-size: 4.5rem; line-height: 0.5; height: 2.2rem;
}
.dd-lux-about__body { text-align: left; font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.95; color: rgba(13, 27, 46, 0.86); }
.dd-lux-about__body p { margin: 0 0 1.1rem; }
.dd-lux-about__body > :last-child { margin-bottom: 0; }
.dd-lux-about__body p:first-of-type::first-letter {
	font-family: var(--dd-font-display); color: var(--dd-color-accent);
	font-size: 3.4rem; line-height: 0.78; float: left; margin: 0.12em 0.55rem 0 0;
}

/* Video */
.dd-lux-video { border-radius: 14px; overflow: hidden; background: #000; border: 1px solid var(--dd-color-line); box-shadow: 0 24px 60px -34px rgba(13, 27, 46, 0.3); }
.dd-lux-video video { width: 100%; display: block; max-height: 75vh; }

/* At a glance — smart grid:
   N ≤ 4   → one row with exactly N columns.
   N ≥ 5   → first row with the remainder (1..4), rest as 4-col rows.
   The first row's max-width is clamped to (cols / 4) of the wrapper so
   every tile keeps the same width as the rows below. */
.dd-lux-facts { display: grid; gap: 1rem; max-width: 1080px; margin-inline: auto; }
.dd-lux-facts__row {
	list-style: none; margin: 0 auto; padding: 0; width: 100%;
	display: grid; gap: 1rem;
	grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr));
}
.dd-lux-facts__row[data-cols="1"] { --cols: 1; max-width: calc(25% - 0.75rem); }
.dd-lux-facts__row[data-cols="2"] { --cols: 2; max-width: calc(50% - 0.5rem); }
.dd-lux-facts__row[data-cols="3"] { --cols: 3; max-width: calc(75% - 0.25rem); }
.dd-lux-facts__row[data-cols="4"] { --cols: 4; }
.dd-lux-fact {
	display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 0.25rem 0.9rem;
	padding: 1.15rem 1.3rem; border-radius: 14px;
	background: #fff; border: 1px solid var(--dd-color-line);
	box-shadow: 0 14px 34px -32px rgba(13, 27, 46, 0.3);
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.dd-lux-fact:hover { transform: translateY(-3px); border-color: rgba(205, 170, 103, 0.5); box-shadow: 0 22px 44px -28px rgba(13, 27, 46, 0.4); }
.dd-lux-fact__ic { grid-row: span 2; width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(205, 170, 103, 0.16); color: var(--dd-color-gold); }
.dd-lux-fact__label { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dd-color-accent); font-weight: 700; }
.dd-lux-fact__value { font-weight: 700; color: var(--dd-color-primary); overflow-wrap: anywhere; }
.dd-lux-fact__value a { color: var(--dd-color-accent); }

/* Services & options — gold tag cloud (distinct from the spec sheet) */
.dd-lux-pills { list-style: none; margin: 0 auto; padding: 0; max-width: 880px; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
.dd-lux-pills li {
	display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.55rem 1.1rem 0.55rem 0.6rem;
	border-radius: 999px; background: rgba(205, 170, 103, 0.14); border: 1px solid rgba(205, 170, 103, 0.42);
	font-size: 0.95rem; font-weight: 600; color: var(--dd-color-primary); transition: background 0.2s ease, transform 0.2s ease;
}
.dd-lux-pills li:hover { background: rgba(205, 170, 103, 0.24); transform: translateY(-2px); }
.dd-lux-pill__ic { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--dd-color-accent); color: #fff; }

/* Languages — proficiency meters (distinct again) */
.dd-lux-langs { list-style: none; margin: 0 auto; padding: 0; max-width: 760px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem 2.5rem; }
.dd-lux-lang { display: block; }
.dd-lux-lang__top { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.6rem; }
.dd-lux-lang__ic { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(205, 170, 103, 0.16); color: var(--dd-color-gold); }
.dd-lux-lang__name { font-weight: 700; color: var(--dd-color-primary); font-size: 1.05rem; margin-right: auto; }
.dd-lux-lang__lvl { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--dd-color-accent); }
.dd-lux-lang__bar { display: block; height: 8px; border-radius: 999px; background: rgba(13, 27, 46, 0.08); overflow: hidden; }
.dd-lux-lang__fill { display: block; height: 100%; border-radius: 999px; background: var(--dd-gradient-gilded, linear-gradient(135deg, var(--dd-color-gold), var(--dd-color-accent))); }

/* Rates */
.dd-lux-rates { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; max-width: 820px; margin-inline: auto; }
.dd-lux-rate { background: #fff; border: 1px solid var(--dd-color-line); border-radius: 16px; overflow: hidden; box-shadow: 0 24px 60px -38px rgba(13, 27, 46, 0.32); }
.dd-lux-rate__title { display: flex; align-items: center; gap: 0.6rem; margin: 0; padding: 1rem 1.3rem; font-family: var(--dd-font-display); font-size: 1.2rem; color: #fff; background: var(--dd-color-primary); }
.dd-lux-rate__ic { display: inline-flex; color: var(--dd-color-gold); }
.dd-lux-rate__list { list-style: none; margin: 0; padding: 0.4rem 1.3rem 0.8rem; }
.dd-lux-rate__list li { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--dd-color-line); }
.dd-lux-rate__list li:last-child { border-bottom: 0; }
.dd-lux-rate__dur { color: rgba(13, 27, 46, 0.7); font-weight: 600; }
.dd-lux-rate__price { font-family: var(--dd-font-display); font-size: 1.4rem; font-weight: 700; color: var(--dd-color-accent); white-space: nowrap; }

/* Closing CTA — midnight band for contrast on the light page */
.dd-lux-cta { position: relative; overflow: hidden; text-align: center; padding: clamp(2.75rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem); border-radius: 20px; background: var(--dd-color-primary); color: #fff; box-shadow: 0 30px 80px -44px rgba(13, 27, 46, 0.6); }
.dd-lux-cta::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 50% 0%, rgba(205, 170, 103, 0.22) 0%, transparent 60%); }
.dd-lux-cta > * { position: relative; }
.dd-lux-cta__eyebrow { display: inline-block; color: var(--dd-color-gold); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 0.8rem; }
.dd-lux-cta__title { font-family: var(--dd-font-display); color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin: 0; line-height: 1.1; }
.dd-lux-cta__sub { color: rgba(246, 241, 232, 0.8); margin: 0.7rem 0 1.6rem; font-size: 1.02rem; }
.dd-lux-cta__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

/* Image viewer (lightbox) — stays dark for focus */
body.dd-lightbox-open { overflow: hidden; }
.dd-lightbox { position: fixed; inset: 0; z-index: 100000; display: flex; align-items: center; justify-content: center; background: rgba(13, 27, 46, 0.95); padding: clamp(1rem, 4vw, 3rem); }
.dd-lightbox[hidden] { display: none; }
.dd-lightbox__figure { margin: 0; max-width: 100%; max-height: 100%; display: flex; }
.dd-lightbox__figure img { max-width: 92vw; max-height: 88vh; width: auto; height: auto; object-fit: contain; border-radius: 6px; box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.8); }
.dd-lightbox__close, .dd-lightbox__nav { position: absolute; z-index: 2; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.12); color: #fff; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50%; transition: background 0.2s ease, color 0.2s ease; }
.dd-lightbox__close:hover, .dd-lightbox__nav:hover { background: #fff; color: var(--dd-color-primary); }
.dd-lightbox__close { top: 1.1rem; right: 1.1rem; width: 44px; height: 44px; }
.dd-lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; line-height: 1; padding-bottom: 4px; }
.dd-lightbox__nav--prev { left: 1rem; }
.dd-lightbox__nav--next { right: 1rem; }

/* Single — responsive */
@media (max-width: 860px) {
	.dd-prod { grid-template-columns: 1fr; }
	.dd-prod__buy { position: static; }
}
@media (max-width: 700px) {
	.dd-dashboard__item { grid-template-columns: 72px minmax(0, 1fr); grid-template-areas: "thumb body" "actions actions"; gap: 1rem; }
	.dd-dashboard__thumb { width: 72px; height: 72px; grid-area: thumb; }
	.dd-dashboard__item-body { grid-area: body; }
	.dd-dashboard__row-actions { grid-area: actions; width: 100%; justify-content: stretch; }
	.dd-dashboard__row-actions .dd-btn, .dd-dashboard__row-actions form { flex: 1; }
	.dd-dashboard__row-actions form .dd-btn { width: 100%; }
}
@media (max-width: 900px) {
	/* Smart facts grid: collapse to 2 cols on tablet, drop the row max-widths
	   so the first row spans full width like the rest. */
	.dd-lux-facts__row,
	.dd-lux-facts__row[data-cols="1"],
	.dd-lux-facts__row[data-cols="2"],
	.dd-lux-facts__row[data-cols="3"],
	.dd-lux-facts__row[data-cols="4"] { --cols: 2; max-width: none; }
}
@media (max-width: 560px) {
	.dd-prod__thumbs { grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); }
	.dd-lux-rates { grid-template-columns: 1fr; }
	.dd-lux-facts__row,
	.dd-lux-facts__row[data-cols="1"],
	.dd-lux-facts__row[data-cols="2"],
	.dd-lux-facts__row[data-cols="3"],
	.dd-lux-facts__row[data-cols="4"] { --cols: 1; }
	.dd-lightbox__nav { width: 42px; height: 42px; font-size: 1.6rem; }
	.dd-lightbox__nav--prev { left: 0.4rem; }
	.dd-lightbox__nav--next { right: 0.4rem; }
}

/* ===========================================================
   Builder responsive (mobile breakdown)
   =========================================================== */
@media (max-width: 900px) {
	/* Slim topbar: keep breadcrumb + status on one line; the duplicated
	   action buttons are hidden (they live in the bottom action bar). */
	.dd-builder__topbar-inner {
		grid-template-columns: 1fr auto;
		gap: 0.5rem;
		padding: 0.55rem 0;
	}
	.dd-builder__crumbs { font-size: 0.78rem; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
	.dd-builder__crumbs a, .dd-builder__crumbs span { white-space: nowrap; }
	.dd-builder__statusrow { justify-self: end; gap: 0.4rem; }
	.dd-builder__actions { display: none; }

	/* Form layout: tabs above panel, no double-sticky stack. */
	.dd-listing-form { grid-template-columns: minmax(0, 1fr); gap: 0.85rem; min-width: 0; }
	.dd-listing-form__nav { position: static; padding: 0; margin: 0; background: transparent; }
	.dd-listing-form__tabs {
		flex-direction: row;
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		gap: 0.3rem;
		padding: 0.4rem 0;
		border-radius: 0;
		border-left: 0; border-right: 0; border-top: 0;
	}
	.dd-listing-form__tabs::-webkit-scrollbar { display: none; }
	.dd-listing-form__tab { flex-shrink: 0; white-space: nowrap; }
	.dd-listing-form__tab-label { flex: initial; }

	.dd-listing-form__panel.is-active { padding: 1.25rem 1rem 1.5rem; grid-template-columns: minmax(0, 1fr); }
	.dd-builder__intro { padding: 1.25rem 1rem; }
	.dd-builder .dd-field--lg input[type="text"] { font-size: 1.25rem; }

	/* Bottom action bar: full-width stack, primary on top, cancel last. */
	.dd-builder__bottom { flex-direction: column-reverse; gap: 0.55rem; align-items: stretch; }
	.dd-builder__bottom .dd-btn { width: 100%; justify-content: center; padding-block: 0.9rem; }

	.dd-picker__head h1 { font-size: 1.6rem; }
}

/* Builder — fine tuning for small phones */
@media (max-width: 600px) {
	.dd-builder__main { padding: 1rem 0 3.5rem; }
	.dd-builder__intro { padding: 1rem 0.9rem; }
	.dd-listing-form__panel.is-active { padding: 1rem 0.85rem 1.25rem; }
	.dd-listing-form__panel-head { padding-bottom: 0.6rem; }
	.dd-listing-form__panel-head h2 { font-size: 1.05rem; }
	.dd-builder .dd-field--lg input[type="text"] { font-size: 1.1rem; }
	.dd-listing-form__tab { padding: 0.5rem 0.7rem; font-size: 0.78rem; }
	.dd-field-gallery__list { grid-template-columns: repeat(auto-fill, minmax(82px, 1fr)); gap: 0.4rem; }
	.dd-field-checks { grid-template-columns: 1fr 1fr; }
	.dd-tax-picker__grid { grid-template-columns: 1fr; }
	.dd-picker__grid { grid-template-columns: 1fr; }
	.dd-builder__success { flex-direction: column; align-items: flex-start; text-align: left; gap: 0.6rem; }
	.dd-builder__view { font-size: 0.75rem; }
	.dd-status-pill { font-size: 0.7rem; padding: 0.18rem 0.55rem; }
}

/* Guard against horizontal overflow from nested wide grids on phones and
   tablets. The min-width:0 chain lets the grid/flex tracks actually shrink
   to the viewport; overflow-x:clip is a belt-and-braces backstop. */
@media (max-width: 900px) {
	.dd-builder, .dd-builder__main, .dd-builder__topbar { overflow-x: clip; max-width: 100%; }
	.dd-listing-form,
	.dd-listing-form__panels,
	.dd-listing-form__panel,
	.dd-listing-form__field { min-width: 0; }
	.dd-builder input, .dd-builder textarea, .dd-builder select {
		max-width: 100%; min-width: 0; box-sizing: border-box;
	}
	/* Long unbroken strings (URLs, emails) must wrap instead of pushing width. */
	.dd-listing-form__help,
	.dd-field-file__current-name,
	.dd-rich-editor__area { overflow-wrap: anywhere; word-break: break-word; }
	.dd-rich-editor, .dd-field-gallery, .dd-field-file { max-width: 100%; }
}

/* ============================================================
   Saving overlay — shown while a listing form submits
   ============================================================ */
html.dd-saving-lock { overflow: hidden; }
.dd-saving {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	background: rgba( 13, 27, 46, 0.92 );
	-webkit-backdrop-filter: blur( 3px );
	backdrop-filter: blur( 3px );
	animation: dd-saving-fade .25s ease both;
}
@keyframes dd-saving-fade { from { opacity: 0; } to { opacity: 1; } }
.dd-saving__card { max-width: 420px; width: 100%; text-align: center; color: #fff; }
.dd-saving__spinner {
	width: 44px; height: 44px;
	margin: 0 auto 1.25rem;
	border: 3px solid rgba( 255, 255, 255, .25 );
	border-top-color: #CC5500;
	border-radius: 50%;
	animation: dd-saving-spin .8s linear infinite;
}
@keyframes dd-saving-spin { to { transform: rotate( 360deg ); } }
.dd-saving__title {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.4rem;
	margin: 0 0 1rem;
}
.dd-saving__bar {
	height: 4px;
	max-width: 280px;
	margin: 0 auto 1rem;
	border-radius: 4px;
	background: rgba( 255, 255, 255, .18 );
	overflow: hidden;
}
.dd-saving__bar span {
	display: block;
	height: 100%;
	width: 40%;
	border-radius: 4px;
	background: #CC5500;
	animation: dd-saving-bar 1.3s ease-in-out infinite;
}
@keyframes dd-saving-bar {
	0%   { margin-left: -40%; }
	100% { margin-left: 100%; }
}
.dd-saving__note {
	margin: 0;
	font-size: .85rem;
	line-height: 1.55;
	color: rgba( 255, 255, 255, .75 );
}
@media ( prefers-reduced-motion: reduce ) {
	.dd-saving,
	.dd-saving__spinner,
	.dd-saving__bar span { animation: none; }
}

/* Upload validation messages (size / unsupported format) */
.dd-field-gallery__error,
.dd-field-file__error {
	margin: .6rem 0 0;
	padding: .55rem .8rem;
	border-radius: 4px;
	background: rgba( 204, 85, 0, .1 );
	border: 1px solid rgba( 204, 85, 0, .35 );
	color: #8a3b00;
	font-size: .85rem;
	line-height: 1.45;
}
