/* Theme Name: Pain Virgule
Theme URI: https://painvirgule.ch
Author: Pain Virgule
Author URI: https://painvirgule.ch
Description: Thème personnalisé pour le site de Pain Virgule
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: painvirgule
*/


@font-face {
	font-family: "Roboto";
	src: url("fonts/roboto/Roboto-VariableFont_wdth,wght.ttf") format("truetype");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

/* italic */

@font-face {
	font-family: "Roboto";
	src: url("fonts/roboto/Roboto-Italic-VariableFont_wdth,wght.ttf") format("truetype");
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
}

/* playwright DESAS */

@font-face {
	font-family: "Playwright DESAS";
	src: url("fonts/playwright-desas/PlaywriteDESAS-VariableFont_wght.ttf") format("truetype");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

/* vollkorn */
@font-face {
	font-family: "Vollkorn";
	src: url("fonts/vollkorn/Vollkorn-VariableFont_wght.ttf") format("truetype");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}


/* reset styles */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body, input, button, textarea, h1, h2, h3, p, form, li, ul, ol { font-family: "Roboto", sans-serif; font-size: 1.05rem; margin: 0; padding: 0; border: none; background: none; }
a { text-decoration: none; color: #000; }
a:hover { text-decoration: underline; cursor: pointer;}
button { cursor: pointer; }
input, textarea, select { border: 1px solid #555; width: 100%; margin: 2px 0; padding: 0 5px;}
textarea { min-height: 120px; }
input:focus, textarea:focus, select:focus, button:focus { outline: none; }
input[type="checkbox"],
input[type="radio"] {
    width: auto;
}

/*webkit tweaks */
button, a, input, label, .dd-fournees-place-box, .dd-fournees-action-link, .dd-fournees-counter-btn, .dd-admin-message-item, .dd-admin-message-item .dd-admin-message-item-header  {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

:root {
	--pv-white: #ffffff;
	--pv-blue: #225b9c;
	--pv-light-blue: #f2f5f9;
	--pv-gold: #c79645;
	--pv-text: #111111;
	--pv-text-soft: #2f3a44;
	--pv-text-muted: #555555;
	--pv-message-bg: #edf2f7;
	--pv-header-height: 84px;
	--pv-radius: 10px;
	--pv-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	--pv-success: #dff2e4;
	--pv-warning: #f3e3bd;
	--pv-danger: #f1cfcf;

	--pv-border: #e4d8c8;
	--pv-border-soft: #d8dde2;
	--pv-surface-alt: #f6f8fa;
	--pv-surface-blue: #f2f5f9;
	--pv-shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.08);
}


/* smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* offset par rapport au fixed header */
[id] {
	scroll-margin-top: var(--pv-header-height);
}

/*min-height */

html, body {
	min-height: 100%;
}
/* regular pages */
body {
	padding-top: var(--pv-header-height);
	background: var(--pv-white);
	color: var(--pv-text);
	min-height: 100vh;
}

/* front page */
body.home,
body.blog.home {
	padding-top: 0;
}

html.dd-abonnements-modal-open,
body.dd-abonnements-modal-open {
	overflow: hidden;
}

html.dd-fournees-modal-open,
body.dd-fournees-modal-open {
	overflow: hidden;
}


/* prevent background scroll when menu is open */
body.pv-menu-open {
	overflow: hidden;
}



/* index page */

/* =========================
   SIMPLE PAGE (404 / fallback)
   ========================= */

.pv-simple-page {
	padding: 40px 18px 60px;
}

.pv-simple-page__inner {
	max-width: 1050px;
	min-height: 100vh;
	margin: 0 auto;
	padding: 0 42px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.pv-simple-page__title {
	font-size: clamp(2rem, 3vw, 2.5rem);
	line-height: 1.02;
	font-weight: 700;
	color: var(--pv-text);
}

/* mobile */
@media (max-width: 600px) {
	.pv-simple-page {
		padding: 28px 14px 40px;
	}

	.pv-simple-page__inner {
		padding: 0;
		gap: 14px;
	}

	.pv-simple-page__title {
		font-size: 2rem;
	}
}


/* =========================
   privacy and legal pages
   ========================= */

.pv-conditions {
	padding: 40px 18px 60px;
}

.pv-conditions__inner {
	max-width: 1050px;
	min-height: 100vh;
	margin: 0 auto;
	padding: 0 42px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}


/* =========================
   HEADER
   ========================= */

.pv-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 10px;
	z-index: 9999;
	background: var(--pv-white);
    box-shadow: none;
	transition:
		transform 0.28s ease,
		background-color 0.28s ease,
		box-shadow 0.28s ease;
}

.pv-header.pv-header--hidden {
	transform: translateY(-100%);
}

.pv-header__inner {
	max-width: 1050px;
	margin: 0 auto;
	padding: 10px 42px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
}

.pv-header__brand {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
}

.pv-header__logo {
	display: block;
	width: 54px;
	height: auto;
	object-fit: contain;

	transition: width 0.28s ease, transform 0.28s ease;
}

.pv-header__desktop {
	flex: 1 1 auto;
	display: flex;
	align-items: flex-end;
	align-content: flex-end;
	justify-content: flex-end;
	gap: 12px 16px;
	min-width: 0;
	flex-wrap: wrap;
}

.pv-header__nav {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	gap: 8px;
	flex-wrap: wrap;
	min-width: 0;
	flex: 0 1 auto;
}

.pv-header__actions {
	flex: 0 1 auto;
	display: flex;
	align-items: flex-end;
}


/* PAIN VIRGULE BTNS AND LINKS */


.pv-link,
.pv-btn,
.pv-mobile-panel__link,
.pv-burger,
.pv-mobile-panel__close {
	transition: all 0.2s ease;
}

.pv-link {
	color: var(--pv-gold);
	font-size: 1.05rem;
}

.pv-link:hover {
	text-decoration: none;
	color: var(--pv-gold);
	opacity: 0.9;
}

.pv-link--nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 12px;
	border-radius: var(--pv-radius);
	font-weight: 700;
	white-space: nowrap;
}

.pv-link--nav:hover {
	background: rgba(255, 255, 255, 0.12);
}

.pv-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border-radius: var(--pv-radius);
	line-height: 1;
	white-space: nowrap;
	text-decoration: none;
}

.pv-btn:hover {
	text-decoration: none;
}

.pv-btn--light {
	background: transparent;
    font-size: 1.05rem;
	font-weight: 700;
	color: var(--pv-gold);
}

.pv-btn--light:hover {
	color: var(--pv-gold);
	opacity: 0.9;
}

.pv-btn--small {
	padding: 2px 10px;
	font-size: 0.9rem;
    border-radius: 5px;
}

.pv-btn--primary {
	background: transparent;
	color: var(--pv-gold);
    border: 1px solid var(--pv-gold);
	padding: 10px 18px;
	width: 100%;
}

.pv-btn--primary:hover {
	background: var(--pv-light-blue);
	border: 1px solid var(--pv-light-blue);
}

/* mobile actions hidden by default */
.pv-header__mobile-actions {
	display: none;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

/* burger */
.pv-burger {
	width: 44px;
	height: 44px;
	padding: 0;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	background: transparent;
	cursor: pointer;
}

.pv-burger:hover {
	background: rgba(255, 255, 255, 0.92);
}

.pv-burger__line {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--pv-gold);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

body.pv-menu-open .pv-burger__line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

body.pv-menu-open .pv-burger__line:nth-child(2) {
	opacity: 0;
}

body.pv-menu-open .pv-burger__line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* mobile panel */
.pv-mobile-panel {
	position: fixed;
	top: 0;
	right: 0;
	width: min(86vw, 320px);
	height: 100vh;
	background: var(--pv-white);
	box-shadow: -8px 0 30px rgba(0, 0, 0, 0.14);
	padding: 88px 22px 24px;
	transform: translateX(100%);
	transition: transform 0.28s ease;
	z-index: 10001;
}

body.pv-menu-open .pv-mobile-panel {
	transform: translateX(0);
}

.pv-mobile-panel__close {
	position: absolute;
	top: 20px;
	right: 18px;
	width: 42px;
	height: 42px;
	cursor: pointer;
}

.pv-mobile-panel__close:hover {
	background: var(--pv-light-blue);
}

.pv-mobile-panel__close::before,
.pv-mobile-panel__close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 2px;
	background: var(--pv-gold);
	border-radius: 2px;
	transform-origin: center;
}

.pv-mobile-panel__close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.pv-mobile-panel__close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.pv-mobile-panel__nav {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pv-mobile-panel__link {
	display: block;
	padding: 10px 14px;
	font-size: 1.05rem;
	border-radius: var(--pv-radius);
	background: var(--pv-light-blue);
}

.pv-mobile-panel__link:hover {
	text-decoration: none;
	background: rgba(34, 91, 156, 0.12);
}

.pv-mobile-panel__link:last-child {
	background: transparent;
	color: var(--pv-gold);
	font-weight: 700;
}

/* overlay */
.pv-mobile-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.32);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.24s ease, visibility 0.24s ease;
	z-index: 10000;
}

body.pv-menu-open .pv-mobile-overlay {
	opacity: 1;
	visibility: visible;
}


/* =========================
   HERO CAROUSEL
   ========================= */

.pv-hero {
	position: relative;
	background: var(--pv-white);
}

.pv-hero__carousel {
	max-width: 1050px;
	margin: 0 auto;
}

.pv-hero__viewport {
	position: relative;
	overflow: hidden;
}

.pv-hero__track {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-areas: "stack";
	position: relative;
}

.pv-hero__slide {
	grid-area: stack;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(0px) scale(1);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease,
		visibility 0s linear 0.9s;
}

.pv-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0) scale(1);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease,
		visibility 0s linear 0s;
}

.pv-hero__slide-inner {
	display: flex;
	flex-direction: column;
}

.pv-hero__media-wrap {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.pv-hero__media {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #ddd;
}

.pv-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transform: scale(1.02);
	transition: transform 1.1s ease;
}

.pv-hero__slide.is-active .pv-hero__image {
	transform: scale(1);
}



.pv-hero__overlay-text {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 18px 16px 16px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.05), transparent);
}

.pv-hero__title {
	color: var(--pv-white);
	font-size: 2rem;
	line-height: 1.08;
	font-weight: 700;
	max-width: 14ch;
	transform: translateY(16px);
	opacity: 0;
	transition:
		transform 0.8s ease 0.12s,
		opacity 0.8s ease 0.12s;
}

.pv-hero__title--desktop {
	display: none;
	color: var(--pv-text);
	max-width: 12ch;
}

.pv-hero__slide.is-active .pv-hero__title {
	transform: translateY(0);
	opacity: 1;
}

.pv-hero__content {
	padding: 10px 14px 0;
}

.pv-hero__text {
	font-size: .9rem;
	line-height: 1.5;
	color: #2a2a2a;
	max-width: 60ch;
	margin-bottom: 14px;
	transform: translateY(12px);
	opacity: 0;
	transition:
		transform 0.8s ease 0.2s,
		opacity 0.8s ease 0.2s;
}

.pv-hero__cta-wrap {
	margin-top: 0;
	transform: translateY(12px);
	opacity: 0;
	transition:
		transform 0.8s ease 0.28s,
		opacity 0.8s ease 0.28s;
}

.pv-hero__slide.is-active .pv-hero__text,
.pv-hero__slide.is-active .pv-hero__cta-wrap {
	transform: translateY(0);
	opacity: 1;
}



.pv-hero__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 10px 14px 14px;
}

.pv-hero__arrow {
	width: 28px;
	height: 28px;
	padding: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--pv-gold);
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: none;
	opacity: 0.9;
	transition:
		color 0.2s ease,
		opacity 0.2s ease,
		transform 0.2s ease;
}

.pv-hero__arrow:hover {
	color: #b88635;
	opacity: 1;
	transform: translateY(-1px);
}

.pv-hero__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.pv-hero__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border-radius: 50%;
	background: rgba(199, 150, 69, 0.28);
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		opacity 0.2s ease;
}

.pv-hero__dot:hover {
	background: rgba(199, 150, 69, 0.55);
}

.pv-hero__dot.is-active {
	background: var(--pv-gold);
}


/* =========================
   MOBILE
   ========================= */
@media (max-width: 768px) {
	:root {
		--pv-header-height: 74px;
	}

	.pv-header__inner {
		padding: 10px 14px;
		align-items: center;
	}

	.pv-header__logo {
		width: 46px;
	}

	.pv-header__desktop {
		display: none;
	}

	.pv-header__mobile-actions {
		display: inline-flex;
	}

	.pv-mobile-panel,
	.pv-mobile-overlay {
		display: block;
	}
}

@media (max-width: 600px) {
	.pv-header--front {
		background: transparent;
		box-shadow: none;
	}

	.pv-header--front.pv-header--solid,
	body.pv-menu-open .pv-header--front {
		background: var(--pv-white);
		box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
	}

	.pv-header--front:not(.pv-header--solid) .pv-header__logo {
		width: 70px;
		filter: brightness(0) invert(1);
	}

	.pv-header--front:not(.pv-header--solid) .pv-btn--light {
		border-color: rgba(255, 255, 255, 0.7);
		color: var(--pv-white);
	}

	.pv-header--front:not(.pv-header--solid) .pv-burger__line {
		background: var(--pv-white);
	}
}
@media (min-width: 601px) {
	.pv-header--front {
		background: var(--pv-white);
		box-shadow: none;
	}

	.pv-header__logo {
		filter: none;
	}

	.pv-btn--light {
		color: var(--pv-gold);
		border-color: var(--pv-gold);
	}

	.pv-burger__line {
		background: var(--pv-gold);
	}
}



@media (max-width: 600px) {
	.pv-hero {
		margin-top: 0;
	}

	.pv-hero__media {
		height: 410px;
	}

	.pv-hero__image {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: var(--pv-image-position-mobile, center center);
		transform: scale(1.02);
		transition: transform 1.1s ease;
	}

	.pv-hero__viewport {
		min-height: 0px;
	}

	.pv-hero__content {
		min-height: 0px;
		padding: 8px 14px 0;
	}

	.pv-hero__controls {
		padding-top: 6px;
		padding-bottom: 10px;
		gap: 12px;
	}
}

/* =========================
   DESKTOP
   ========================= */



/* ========================= DESKTOP ========================= */

@media (min-width: 769px) {
	.pv-mobile-panel,
	.pv-mobile-overlay {
		display: none;
	}
}

@media (min-width: 601px) { 
    .pv-hero { padding-top: calc(var(--pv-header-height) + 20px); }
    .pv-hero__carousel { padding-left: 42px; padding-right: 42px; }
    .pv-hero__slide-inner {
        
        display: flex;
		flex-direction: column;
		align-items: center;
		text-align: left;
        min-height: 450px; }

    .pv-hero__content { order: 1; padding: 0 0 18px; min-width: 0; max-width: none; }
    .pv-hero__media-wrap { order: 2; width: 100%; min-width: 300px; align-self: center; }
    .pv-hero__media { width: 100%; min-width: 300px; max-width: none; height: 420px; margin-left: auto; border-radius: 0; box-shadow: var(--pv-shadow); }
    .pv-hero__image { object-position: var(--pv-image-position-desktop, center center); }
    .pv-hero__overlay-text { display: none; }
    .pv-hero__title--desktop { display: block; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.02; margin: 18px 0; max-width: 100%; }
    .pv-hero__text { font-size: 1.05rem; max-width: 34ch; }
    .pv-hero__controls { padding-top: 18px; padding-bottom: 16px; }
	.pv-hero__body {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 24px;
		align-items: start;
	}

	.pv-hero__text {
		margin: 0;
		max-width: none;
	}

	.pv-hero__cta-wrap {
		margin-top: 0;
		justify-self: start;
		align-self: start;
	}
}

.pv-hero__slide:not(.is-active) * {
	pointer-events: none;
}



/* =========================
   PAGE HERO LIKE IMAGE
   ========================= */

.pv-page-hero-image {
	background: var(--pv-white);
	padding: 0 14px 28px;
}

.pv-page-hero-image__inner {
	max-width: 966px;
	margin: 0 auto;
	overflow: hidden;
	box-shadow: var(--pv-shadow);
	background: #ddd;
}

.pv-page-hero-image__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

/* Match carousel image crops */
.pv-page-hero-image--abonnements .pv-page-hero-image__image {
	object-position: center 55%;
}

.pv-page-hero-image--fournees .pv-page-hero-image__image {
	object-position: center 60%;
}

.pv-page-hero-image--apropos .pv-page-hero-image__image {
	object-position: center 40%;
}


/* Mobile */
@media (max-width: 600px) {
	.pv-page-hero-image {
		padding: 0 0 22px;
	}

	.pv-page-hero-image__inner {
		max-width: none;
		box-shadow: none;
	}

	.pv-page-hero-image__image {
		height: 330px;
	}

	.pv-page-hero-image--abonnements .pv-page-hero-image__image {
		object-position: center 30%;
	}

	.pv-page-hero-image--fournees .pv-page-hero-image__image {
		object-position: center 70%;
	}

	.pv-page-hero-image--apropos .pv-page-hero-image__image {
		object-position: center 70%;
	}
}

/* Desktop */
@media (min-width: 601px) {
	.pv-page-hero-image {
		padding: 10px 42px 40px;
	}

	.pv-page-hero-image__image {
		height: 420px;
	}
}






/* =========================
   HOME CTA CARDS
   ========================= */
.pv-home-cta-cards {
	padding: 10px 18px 36px;
}

.pv-home-cta-cards__inner {
	max-width: 1050px;
	padding: 0 42px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}

.pv-cta-card {
	min-width: 0;
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
	will-change: transform, opacity;
}

.pv-home-cta-cards.is-visible .pv-cta-card {
	opacity: 1;
	transform: translateY(0);
}

.pv-home-cta-cards.is-visible .pv-cta-card:nth-child(2) {
	transition-delay: 0.12s;
}

.pv-cta-card__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 220px;
	height: 100%;
	padding: 18px 18px 20px;
	border: 1px solid var(--pv-border-soft);
	border-radius: var(--pv-radius);
	background: var(--pv-white);
	overflow: hidden;
	text-decoration: none;
	transition:
		transform 0.24s ease,
		border-color 0.24s ease,
		box-shadow 0.24s ease,
		background-color 0.24s ease;
}

.pv-cta-card__inner:hover {
	text-decoration: none;
	transform: translateY(-2px);
	border-color: var(--pv-text-muted);
	box-shadow: var(--pv-shadow-soft);
}

.pv-cta-card__title {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: clamp(1.5rem, 2vw, 2rem);
	line-height: 1.06;
	font-weight: 700;
	color: var(--pv-text);
}

.pv-cta-card__title::before {
	content: "→";
	display: inline-block;
	font-size: 0.9em;
	font-weight: 400;
	color: var(--pv-gold);
	transition: transform 0.22s ease;
}

.pv-cta-card__inner:hover .pv-cta-card__title::before {
	transform: translateX(3px);
}

.pv-cta-card__body {
	margin-top: 24px;
}

.pv-cta-card__text {
	font-size: 1.05rem;
	line-height: 1.5;
	color: #2a2a2a;
	max-width: 30ch;
}

@media (max-width: 600px) {
	.pv-home-cta-cards {
		padding: 8px 14px 30px;
	}

	.pv-home-cta-cards__inner {
		padding: 0;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.pv-cta-card__inner {
		min-height: 180px;
		padding: 14px 12px 14px;
	}

	.pv-cta-card__title {
		font-size: clamp(1.05rem, 3vw, 1.2rem);
		line-height: 1.1;
	}

	.pv-cta-card__body {
		margin-top: 16px;
	}

	.pv-cta-card__text {
		font-size: 1.05rem;
		line-height: 1.42;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pv-cta-card,
	.pv-cta-card__inner,
	.pv-cta-card__title::before {
		transition: none !important;
		transform: none !important;
	}

	.pv-cta-card {
		opacity: 1 !important;
	}
}



/* =========================
   ABOUT
   ========================= */

.pv-about {
	padding: 10px 18px 40px;
	overflow: hidden;
}

.pv-about__inner {
	max-width: 1050px;
	margin: 0 auto;
	padding: 0 42px;
}

.pv-about__content {
	display: grid;
	gap: 18px;
}

.pv-about__title {
	font-size: clamp(2rem, 3.5vw, 2.5rem);
	line-height: 1.02;
	font-weight: 700;
	color: var(--pv-text);
	margin: 0 0 1.05rem;
}

.pv-about__text {
	font-size: 1.05rem;
	line-height: 1.6;
	color: #2a2a2a;
	max-width: 42ch;
	margin: 0;
}

.pv-about__media {
	width: 100%;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: #ddd;
	box-shadow: var(--pv-shadow);
}

.pv-about__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pv-about__instagram {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	width: fit-content;
	color: var(--pv-gold);
	border: 1px solid var(--pv-gold);
	border-radius: 999px;
	padding: 5px 12px;
	text-decoration: none;
}

.pv-about__instagram-icon {
	display: inline-flex;
	width: 1.15rem;
	height: 1.15rem;
}

.pv-about__instagram-icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

/* reveal */
.pv-about__title,
.pv-about__text,
.pv-about__media,
.pv-about__instagram {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.75s ease,
		transform 0.75s ease;
	will-change: transform, opacity;
}

.pv-about.is-visible .pv-about__title,
.pv-about.is-visible .pv-about__text,
.pv-about.is-visible .pv-about__media,
.pv-about.is-visible .pv-about__instagram {
	opacity: 1;
	transform: translateY(0);
}

.pv-about.is-visible .pv-about__text--one {
	transition-delay: 0.08s;
}

.pv-about.is-visible .pv-about__media {
	transition-delay: 0.16s;
}

.pv-about.is-visible .pv-about__text--two {
	transition-delay: 0.24s;
}

.pv-about.is-visible .pv-about__instagram {
	transition-delay: 0.30s;
}

.pv-about.is-visible .pv-about__text--three {
	transition-delay: 0.36s;
}

/* mobile */
@media (max-width: 600px) {
	.pv-about {
		padding: 8px 0 30px;
	}

	.pv-about__inner {
		padding: 0;
	}

	.pv-about__content {
		gap: 14px;
	}

	.pv-about__title,
	.pv-about__text,
	.pv-about__instagram {
		margin-left: 14px;
		margin-right: 14px;
	}

	.pv-about__title {
		font-size: 2rem;
		margin-bottom: 1.05rem;
	}

	.pv-about__text {
		font-size: 1.05rem;
		line-height: 1.5;
		max-width: none;
	}

	.pv-about__media {
		width: 100vw;
		box-shadow: none;
	}
}

/* tablet / narrow desktop: avoid squeezed text */
@media (min-width: 601px) and (max-width: 999px) {
	.pv-about {
		padding: 14px 18px 42px;
	}

	.pv-about__inner {
		padding: 0 24px;
	}

	.pv-about__content {
		grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
		column-gap: 32px;
		row-gap: 18px;
		align-items: start;
	}

	.pv-about__media {
		grid-column: 1;
		grid-row: 1 / span 3;
	}

	.pv-about__title,
	.pv-about__text--one,
	.pv-about__text--two,
	.pv-about__instagram {
		grid-column: 2;
	}

	.pv-about__text--three {
		grid-column: 1 / -1;
		max-width: 62ch;
		margin-top: 8px;
	}

	.pv-about__title {
		margin-bottom: 0.5rem;
	}

	.pv-about__text {
		font-size: 1.02rem;
		line-height: 1.52;
		max-width: none;
	}
}

/* desktop */
@media (min-width: 1000px) {
	.pv-about {
		padding: 14px 18px 48px;
	}

	.pv-about__content {
		grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
		column-gap: 54px;
		row-gap: 20px;
		align-items: start;
	}

	.pv-about__media {
		grid-column: 1;
		grid-row: 1 / span 6;
		align-self: start;
	}

	.pv-about__title,
	.pv-about__text,
	.pv-about__instagram {
		grid-column: 2;
	}

	.pv-about__text {
		font-size: 1.05rem;
		line-height: 1.62;
	}

	.pv-about__text--one {
		margin-left: 0;
	}

	.pv-about__text--two {
		margin-left: 34px;
	}

	.pv-about__instagram {
		margin-left: 18px;
	}

	.pv-about__text--three {
		margin-left: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pv-about__title,
	.pv-about__text,
	.pv-about__media,
	.pv-about__image,
	.pv-about__instagram {
		transition: none !important;
		transform: none !important;
		opacity: 1 !important;
	}
}

.pv-hero__media {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #e7e1d7;
}

.pv-hero__media::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(255,255,255,0.06) 0%,
		rgba(255,255,255,0.18) 50%,
		rgba(255,255,255,0.06) 100%
	);
	transform: translateX(-100%);
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.pv-hero__media:not(.is-loaded)::before {
	animation: pv-hero-shimmer 1.4s linear infinite;
}

.pv-hero__media.is-loaded::before {
	opacity: 0;
	animation: none;
}


.pv-hero__image[data-loaded="true"] {
	opacity: 1;
}

.pv-hero__slide.is-active .pv-hero__image {
	transform: scale(1);
}

.pv-hero__progress {
	position: relative;
	height: 2px;
	width: 100%;
	background: rgba(255, 255, 255, 0.9);
	overflow: hidden;
}

.pv-hero__progress-bar {
	display: block;
	width: 100%;
	height: 100%;
	background: #d7c2a2;
	transform: scaleX(0);
	transform-origin: left center;
	will-change: transform;
}

@keyframes pv-hero-shimmer {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

@media (min-width: 601px) {
	.pv-hero__content {
		order: 1;
	}

	.pv-hero__media-wrap {
		order: 2;
	}

	.pv-hero__progress {
		order: 3;
	}
}

.pv-about__content,
.pv-about__media {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.75s ease,
		transform 0.75s ease;
	will-change: transform, opacity;
}

.pv-about.is-visible .pv-about__content,
.pv-about.is-visible .pv-about__media {
	opacity: 1;
	transform: translateY(0);
}

.pv-about.is-visible .pv-about__media {
	transition-delay: 0.12s;
}



/* =========================
   DELIVERY PLACES
   ========================= */

.pv-delivery-places {
	padding: 24px 18px 44px;
	overflow: hidden;
}

.pv-delivery-places__inner {
	max-width: 1050px;
	margin: 0 auto;
	padding: 0 42px;
}

.pv-delivery-places__intro {
	margin-bottom: 2rem;
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.75s ease,
		transform 0.75s ease;
	will-change: transform, opacity;
}

.pv-delivery-places.is-visible .pv-delivery-places__intro {
	opacity: 1;
	transform: translateY(0);
}

.pv-delivery-places__title {
	font-size: clamp(2rem, 3.5vw, 2.5rem);
	line-height: 1.02;
	font-weight: 700;
	color: var(--pv-text);
}

.pv-delivery-places__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) clamp(120px, 18vw, 220px);
	gap: 24px;
	align-items: stretch;
}

.pv-delivery-places__grid {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.pv-delivery-places__art {
	display: flex;
	justify-content: flex-end;
	align-items: stretch;
	min-height: 100%;
}

.pv-fl {
	height: 100%;
	width: auto;
	transform: scale(1.5);
	transform-origin: top right ;
}

.pv-fl .flower {
	fill: var(--pv-gold);
}

.pv-delivery-place-card {
	background: transparent;
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.75s ease,
		transform 0.75s ease;
	will-change: transform, opacity;
}

.pv-delivery-places.is-visible .pv-delivery-place-card {
	opacity: 1;
	transform: translateY(0);
}

.pv-delivery-places.is-visible .pv-delivery-place-card:nth-of-type(2) {
	transition-delay: 0.08s;
}

.pv-delivery-places.is-visible .pv-delivery-place-card:nth-of-type(3) {
	transition-delay: 0.14s;
}

.pv-delivery-places.is-visible .pv-delivery-place-card:nth-of-type(4) {
	transition-delay: 0.2s;
}

.pv-delivery-place-card__main {
	display: grid;
	grid-template-columns: minmax(120px, 1.1fr) minmax(220px, 2fr) minmax(150px, 1.1fr);
	align-items: center;
	column-gap: 20px;
	padding: 18px 0;
}

.pv-delivery-place-card__description,
.pv-delivery-place-card__name,
.pv-delivery-place-card__day {
	min-width: 0;
}

.pv-delivery-place-card__description {
	font-size: 0.88rem;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--pv-gold);
}

.pv-delivery-place-card__name {
	font-size: 1.05rem;
	line-height: 1.06;
	font-weight: 700;
	color: var(--pv-text);
}

.pv-delivery-place-card__day {
	font-size: 1.05rem;
	line-height: 1.45;
	color: #2a2a2a;
	justify-self: start;
}

/* tablet + mobile */
@media (max-width: 768px) {
	.pv-delivery-places {
		padding: 14px 14px 32px;
	}

	.pv-delivery-places__inner {
		padding: 0;
	}

	.pv-delivery-places__intro {
		margin-bottom: 1.5rem;
	}

	.pv-delivery-places__title {
		font-size: 2rem;
	}

	.pv-delivery-places__layout {
		grid-template-columns: minmax(0, 1fr) clamp(120px, 18vw, 220px);
	}

	.pv-delivery-place-card__main {
		grid-template-columns: 1fr;
		row-gap: 6px;
		padding: 14px 0;
	}

	.pv-delivery-place-card__description {
		font-size: 0.88rem;
	}

	.pv-delivery-place-card__name {
		font-size: 1.05rem;
	}

	.pv-delivery-place-card__day {
		font-size: 0.88rem;
	}
}

/* =========================
   FAQ 
   ========================= */

.pv-faq {
	padding: 90px 18px 36px;
}

.pv-faq--small {
	padding: 60px 18px 24px;
}
.pv-faq__inner {
	max-width: 1050px;
	margin: 0 auto;
	padding: 0 42px;
}

/* intro */

.pv-faq__intro {
	margin-bottom: 2rem;
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}

.pv-faq.is-visible .pv-faq__intro {
	opacity: 1;
	transform: translateY(0);
}

.pv-faq__title {
	font-size: clamp(2rem, 3.5vw, 2.5rem);
	line-height: 1.05;
	font-weight: 700;
	color: var(--pv-text);
}

/* list */

.pv-faq__list {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

/* item */

.pv-faq__item {
	border-top: 1px solid var(--pv-border-soft);
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}

.pv-faq__item:last-child {
	border-bottom: 1px solid var(--pv-border-soft);
}

.pv-faq.is-visible .pv-faq__item {
	opacity: 1;
	transform: translateY(0);
}

/* stagger (lighter) */
.pv-faq.is-visible .pv-faq__item:nth-child(2) { transition-delay: 0.06s; }
.pv-faq.is-visible .pv-faq__item:nth-child(3) { transition-delay: 0.1s; }
.pv-faq.is-visible .pv-faq__item:nth-child(4) { transition-delay: 0.14s; }

/* question */

.pv-faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 14px 0;
	text-align: left;
	background: transparent;
	color: var(--pv-text);
}

.pv-faq__question:hover {
	text-decoration: none;
}

.pv-faq__question-text {
	font-size: 1.05rem;
	line-height: 1.25;
	color: var(--pv-text);
}

/* icon */

.pv-faq__icon {
	position: relative;
	flex: 0 0 14px;
	width: 14px;
	height: 14px;
}

.pv-faq__icon::before,
.pv-faq__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 1px;
	background: var(--pv-gold);
	transform: translate(-50%, -50%);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.pv-faq__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.pv-faq__item.is-open .pv-faq__icon::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(90deg) scaleX(0.5);
}

.pv-faq__item.is-open .pv-faq__question-text {
	font-weight: 700;
}
/* answer */

.pv-faq__answer {
	display: none;
}

.pv-faq__answer-inner {
	padding: 0 0 16px;
	max-width: 56ch;
}

.pv-faq__text {
	font-size: 1.05rem;
	line-height: 1.55;
	color: var(--pv-text);
}

/* groups */

.pv-faq__group + .pv-faq__group {
	margin-top: 20px;
}

.pv-faq__group-title {
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--pv-text-muted);
	margin-bottom: 8px;
}

/* mobile */

@media (max-width: 600px) {
	.pv-faq {
		padding: 90px 14px 28px;
	}
	.pv-faq--small {
		padding: 60px 14px 18px;
	}

	.pv-faq__inner {
		padding: 0;
	}

	.pv-faq__title {
		font-size: 2rem;
	}

	.pv-faq__question {
		padding: 12px 0;
		gap: 10px;
	}

	.pv-faq__question-text {
		font-size: 1.05rem;
		line-height: 1.3;
	}

	.pv-faq__answer-inner {
		padding: 0 0 14px;
	}

	.pv-faq__text {
		font-size: 1.05rem;
	}

	.pv-faq-group-title {
		font-size: 1.05rem;
	}
}

/* reduced motion */

@media (prefers-reduced-motion: reduce) {
	.pv-faq__intro,
	.pv-faq__item,
	.pv-faq__icon::before,
	.pv-faq__icon::after {
		transition: none !important;
		transform: none !important;
		opacity: 1 !important;
	}
}

/* =========================
   PAGE INTRO / SHORTCODE WRAPPER
   ========================= */

.pv-about--page-intro {
	padding-top: 28px;
	padding-bottom: 10px;
}

.pv-about__intro--stack {
	display: block;
}

.pv-about__copy .pv-about__text {

	max-width: none;
}


.pv-about__copy .pv-about__text + .pv-about__text {
	margin-top: 14px;
}

.pv-about__link {
	color: var(--pv-gold);
	text-decoration: none;
	transition: opacity 0.2s ease, color 0.2s ease;
}

.pv-about__link:hover {
	color: var(--pv-gold);
	text-decoration: none;
	opacity: 0.75;
}



@media (max-width: 600px) {
	.pv-about--page-intro {
		padding-top: 18px;
		padding-bottom: 6px;
	}

}


.pv-page-shortcode--logout {
	max-width: 1050px;
	display: flex;
	justify-content: flex-end;
	margin: 0 auto;
	padding: 18px 42px;
}

@media (max-width: 600px) {
	.pv-page-shortcode--logout {
		padding: 14px 14px;
	}
}



	.dd-user-logout-btn {
		font-size: 1.05rem;
		color: var(--pv-text-soft);
	}
	.dd-user-logout-btn:hover {
		color: var(--pv-text-soft);
		opacity: 0.75;
		text-decoration: underline;
	}

	@media (max-width: 600px) {
		.dd-user-logout-btn {
			padding: 8px 14px;
			font-size: 1.05rem;
		}
	}



/* =========================
   PAGE INTRO
   ========================= */

.pv-intro {
	padding: 34px 18px 24px;
}

.pv-intro__inner {
	max-width: 1050px;
	margin: 0 auto;
	padding: 0 42px;
}

.pv-intro__content {
	max-width: 760px;
}

.pv-intro__title {
	font-size: clamp(2rem, 3.5vw, 2.5rem);
	line-height: 1.02;
	font-weight: 700;
	color: var(--pv-text);
	margin-bottom: 2rem;
}

.pv-intro__text {
	font-size: 1.05rem;
	line-height: 1.58;
	color: var(--pv-text-soft);
}

.pv-intro__text + .pv-intro__text {
	margin-top: 14px;
}

.pv-intro__text a {
	color: var(--pv-gold);
	text-decoration: none;
}

.pv-intro__text a:hover {
	color: var(--pv-gold);
	text-decoration: none;
	opacity: 0.75;
}

.pv-intro__content {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.75s ease,
		transform 0.75s ease;
	will-change: transform, opacity;
}

.pv-intro.is-visible .pv-intro__content {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.pv-intro__content {
		transition: none !important;
		transform: none !important;
		opacity: 1 !important;
	}
}


@media (max-width: 600px) {
	.pv-intro {
		padding: 22px 14px 16px;
	}

	.pv-intro__inner {
		padding: 0;
	}

	.pv-intro__title {
		font-size: 2rem;
		margin-bottom: 1.5rem;
	}

	.pv-intro__text {
		font-size: 1.05rem;
		line-height: 1.52;
		max-width: none;
	}

	.pv-intro__text + .pv-intro__text {
		margin-top: 10px;
	}
}

.pv-intro--sub {
	padding-top: 4px;
	padding-bottom: 8px;
}

.pv-intro__title--small {
	font-size: clamp(2rem, 3.5vw, 2.5rem);
}

/* =========================
   INTRO FEATURES (✓ lines)
   ========================= */

.pv-intro__text--feature {
	position: relative;
	padding-left: 26px;
	display: block;
}

.pv-intro__text--feature::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 10px;
	font-size: 1.05rem;
	line-height: 1;
	color: var(--pv-gold);
}

.pv-intro__feature-main {
	display: block;
	font-size: 1.05rem;
	line-height: 1.5;
	color: var(--pv-text-soft);
}

.pv-intro__feature-sub {
	display: block;
	margin-top: 4px;
	font-size: 0.8rem;
	line-height: 1.4;
	color: var(--pv-text-muted);
}

.pv-intro__feature-sub a {
	margin-left: 6px;
}

/* mobile */
@media (max-width: 600px) {
	.pv-intro__text--feature {
		padding-left: 22px;
	}


	.pv-intro__feature-main {
		font-size: 1.05rem;
		line-height: 1.45;
	}

	.pv-intro__feature-sub {
		font-size: 0.8rem;
		line-height: 1.4;
	}
}


/* =========================
   FOOTER
   ========================= */

.pv-footer {
	padding: 18px 18px 20px;
	background: rgba(34, 91, 156, 0.06);
}

.pv-footer__inner {
	max-width: 1050px;
	margin: 0 auto;
	padding: 0 42px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.pv-footer__top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 24px;
}

.pv-footer__identity,
.pv-footer__contact {
	min-width: 0;
}

.pv-footer__identity {
	display: flex;
	flex-direction: column;
	gap: 0px;}

.pv-footer__brand {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--pv-text-soft);
}

.pv-footer__address,
.pv-footer__ide,
.pv-footer__meta,
.pv-footer__link {
	font-size: 1.05rem;
	color: var(--pv-text-soft);
}

.pv-footer__btn {
	width: 100%;
	padding: 2px 20px;
	font-size: 1.05rem;
	border-radius: 3px;
	background: transparent;
	border: 1px solid var(--pv-text-soft);
	color: var(--pv-text-soft);
	transition:
		background-color 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease;
}

.pv-footer__ide,
.pv-footer__meta {
	color: var(--pv-text-soft	);
}

.pv-footer__contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.pv-footer__link {
	transition: color 0.2s ease, opacity 0.2s ease;
}

.pv-footer__link:hover {
	color: var(--pv-gold);
	text-decoration: none;
}

.pv-footer__social {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.pv-footer__social-icon {
	display: inline-flex;
	width: 16px;
	height: 16px;
	color: var(--pv-gold);
	flex: 0 0 auto;
}

.pv-footer__social-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.pv-footer__social-icon rect,
.pv-footer__social-icon circle {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.pv-footer__bottom {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 16px 24px;
	padding-top: 10px;
	flex-wrap: wrap;
}

.pv-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 0px;

}

.pv-footer__legal .pv-footer__link {
	color: var(--pv-text);
	font-size: .9rem;
}

.pv-footer__legal .pv-footer__link:after {
	content: "|";
	display: inline-block;
	color: var(--pv-text);
	margin: 0 10px;
}
.pv-footer__legal .pv-footer__link:last-child:after {
	content: "";
	margin: 0;
}

@media (max-width: 600px) {
	.pv-footer {
		padding: 16px 14px 18px;
	}

	.pv-footer__inner {
		padding: 0;
		gap: 14px;
	}

	.pv-footer__top {
		flex-direction: column-reverse;
		gap: 14px;
	}

	.pv-footer__contact {
		gap: 6px;
	}

	.pv-footer__bottom {
		gap: 10px;
	}

	.pv-footer__legal {
		flex-direction: row-reverse;
		gap: 6px;
	}

	.pv-footer__legal .pv-footer__link {
		color: var(--pv-text);
		font-size: .8rem;
	}
	
	.pv-footer__legal .pv-footer__link:after {
		content: "";
		display: inline-block;
		color: var(--pv-text-soft);
		margin: 0px;
	}

	.pv-footer__address,
	.pv-footer__ide,
	.pv-footer__meta,
	.pv-footer__link {
		line-height: 1.4;
		font-size: 0.8rem;
	}

	.pv-footer__btn {
		font-size: 0.8rem;
	}
}


/* =========================
   AUTH PAGE
   ========================= */


.pv-auth-page {
	min-height: 100vh;
	padding: 32px 18px 48px;
	background: var(--pv-white);
}

.pv-auth-page__inner {
	max-width: 1050px;
	margin: 0 auto;
	padding: 0 42px;
}

.pv-auth-page__shortcode {
	max-width: 640px;
}

.dd-login-root,
.dd-login-page-wrap {
	width: 100%;
}

.dd-login-page-card,
.dd-login-page-card-single {
	background: var(--pv-white);
	border: none;
	padding: 0;
}

.dd-login-page-card h2 {
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1.04;
	font-weight: 700;
	color: var(--pv-text-soft);
	margin-bottom: 12px;
}

.dd-login-panel-switches {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
	margin-bottom: 16px;
}

.dd-login-panel-switch {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--pv-gold);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.dd-login-panel-switch:hover {
	color: var(--pv-gold);
	opacity: 0.82;
}


.dd-login-panel-text {
	font-size: 1.05rem;
	line-height: 1.5;
	color: var(--pv-text-soft);
	margin-bottom: 20px;
	max-width: 54ch;
}

.dd-login-tabs {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.dd-login-tabs__panel {
	display: none;
}

.dd-login-tabs__panel.is-active {
	display: block;
}

.dd-login-form-block {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 520px;
}

.dd-login-form-block input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--pv-light-blue);
	border-radius: var(--pv-radius);
	background: var(--pv-white);
	color: var(--pv-text-soft);
	font-size: 1.05rem;
}

.dd-login-form-block input::placeholder {
	color: rgba(47, 58, 68, 0.62);
}

.dd-login-form-block input:focus {
	border-color: var(--pv-text-soft);
	outline: none;
}

.dd-login-form-messages {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 6px;
}

.dd-login-message {
	padding: 12px 14px;
	border: none;
	border-radius: 10px;
	background: var(--pv-message-bg);
	font-size: 1.05rem;
	line-height: 1.45;
	color: var(--pv-text-soft);
}

.dd-login-message-error,
.dd-login-message-success {
	background: var(--pv-message-bg);
	color: var(--pv-text-soft);
}

.dd-login-message-error {
	background: none;
	color: #a13838;
	animation: shake 0.5s ease;
}

.dd-login-form-block button.pv-btn,
.dd-login-dashboard-link {
	align-self: flex-start;
	margin-top: 4px;
}

.dd-login-dashboard-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border-radius: var(--pv-radius);
	border: 1px solid var(--pv-gold);
	background: transparent;
	color: var(--pv-gold);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.dd-login-dashboard-link:hover {
	background: var(--pv-gold);
	color: var(--pv-white);
	text-decoration: none;
}

@media (max-width: 600px) {
	.pv-auth-page {
		padding: 24px 14px 36px;
	}

	.pv-auth-page__inner {
		padding: 0;
	}

	.pv-auth-page__shortcode {
		max-width: none;
	}

	.dd-login-page-card h2 {
		font-size: 1.3rem;
	}

	.dd-login-panel-switches {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.dd-login-panel-switch {
		font-size: 1.05rem;
	}

	.dd-login-form-block input {
		font-size: 1.05rem;
	}
}

/* =========================
   AUTH PANEL ANIMATION 
   ========================= */

.dd-login-tabs__panel {
	display: none;
	opacity: 0;
}

.dd-login-tabs__panel.is-active {
	display: block;
	animation: pv-auth-fade-in 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes pv-auth-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
	.dd-login-tabs__panel {
		animation: none !important;
		opacity: 1 !important;
	}
}


/* =========================================================
   ATTERRISSAGE / CONFIRMATION PAGE
========================================================= */

.dd-atterrissage {
	width: 100%;
	color: var(--pv-text);
	background: var(--pv-white);
}

.dd-atterrissage-content {
	width: 100%;
}

/* floating message, if ever used */
.dd-atterrissage-message {
	position: fixed;
	top: 12px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 11050;
	width: min(calc(100% - 28px), 760px);
	margin: 0;
	padding: 14px 16px;
	border-radius: 14px;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.45;
	background: var(--pv-message-bg);
	color: var(--pv-text);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.dd-atterrissage-message.is-success {
	background: var(--pv-success);
}

.dd-atterrissage-message.is-error {
	background: var(--pv-danger);
}

.dd-atterrissage-message.is-info {
	background: var(--pv-warning);
}

/* loadbar */
.dd-atterrissage-loadbar {
	width: 100%;
	max-width: 520px;
	margin: 0 0 18px;
}

.dd-atterrissage-loadbar-track {
	position: relative;
	width: 100%;
	height: 2px;
	overflow: hidden;
	background: var(--pv-light-blue);
	border-radius: 999px;
}

.dd-atterrissage-loadbar-fill {
	position: absolute;
	top: 0;
	left: -35%;
	width: 35%;
	height: 100%;
	background: var(--pv-gold);
	border-radius: 999px;
	animation: dd-atterrissage-solid-load 1.4s linear infinite;
}

@keyframes dd-atterrissage-solid-load {
	0% { left: -35%; }
	100% { left: 100%; }
}

/* card */
.dd-atterrissage-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
	max-width: 520px;
	padding: 0;
	background: var(--pv-white);
	border: none;
	color: var(--pv-text);
	animation: dd-atterrissage-fade-in 0.45s ease-out both;
}

.dd-atterrissage-card--loading {
	opacity: 0.96;
}

.dd-atterrissage-eyebrow {
	font-size: 0.85rem;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--pv-gold);
}

.dd-atterrissage-title {
	margin: 0;
	font-size: 2rem;
	line-height: 1.04;
	font-weight: 700;
	color: var(--pv-text-soft);
}

.dd-atterrissage-text {
	margin: 0;
	max-width: 54ch;
	font-size: 1.05rem;
	line-height: 1.55;
	color: var(--pv-text-soft);
}

.dd-atterrissage-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
	padding-top: 4px;
}

.dd-atterrissage-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 12px 18px;
	border: 1px solid var(--pv-gold);
	border-radius: var(--pv-radius);
	background: transparent;
	color: var(--pv-gold);
	font-size: 1.05rem;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.dd-atterrissage-btn:hover {
	background: var(--pv-light-blue);
	border: 1px solid var(--pv-light-blue);
	color: var(--pv-gold);
	text-decoration: none;
}

/* state accents */
.dd-atterrissage-card--success .dd-atterrissage-eyebrow {
	color: #227a4e;
}

.dd-atterrissage-card--error .dd-atterrissage-eyebrow {
	color: #a13838;
}

/* entry animation */
@keyframes dd-atterrissage-fade-in {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.dd-atterrissage-card {
		animation: none;
	}
}

/* mobile */
@media (max-width: 600px) {
	.dd-atterrissage-message {
		top: 10px;
		width: calc(100% - 20px);
		padding: 12px 14px;
		font-size: 0.93rem;
		border-radius: 12px;
	}

	.dd-atterrissage-loadbar,
	.dd-atterrissage-card {
		max-width: none;
	}

	.dd-atterrissage-title {
		font-size: 1.3rem;
	}

	.dd-atterrissage-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.dd-atterrissage-btn {
		width: 100%;
	}
}

