/*
 * Guest Video Booth — website sections.
 * Ported from the approved reference homepage. Solid colors only — no
 * gradients. Everything scoped under .gvbs-page so theme/Divi styles
 * never collide.
 */

.gvbs-page{
	--gvb-teal:      #164e4e;
	--gvb-coral:     #f2a094;
	--gvb-cream:     #f4eee0;
	--gvb-aqua:      #82c0c7;
	--gvb-sand:      #fdd79a;
	--gvb-teal-dark: #0e3434;
	--gvb-coral-text:#c65f4f;
	--gvb-ink:       #313131;
	--gvb-body:      #666666;
	--gvb-white:     #ffffff;

	--font-heading: "DM Serif Text", Georgia, serif;
	--font-body:    "Montserrat", Helvetica, Arial, sans-serif;
	--font-accent:  "Calistoga", fantasy;

	--radius-card: 14px;
	--shadow-soft: 0 10px 30px rgba(22, 78, 78, .10);
	--shadow-lift: 0 18px 44px rgba(22, 78, 78, .16);
	--pad-x: 22px;

	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--gvb-body);
	background: var(--gvb-white);
	-webkit-font-smoothing: antialiased;
}

.gvbs-page *, .gvbs-page *::before, .gvbs-page *::after { box-sizing: border-box; }
.gvbs-page img, .gvbs-page video { max-width: 100%; display: block; }
.gvbs-page a { color: var(--gvb-coral-text); text-decoration: none; }
.gvbs-page a:hover { color: var(--gvb-teal); }
.gvbs-page h1, .gvbs-page h2, .gvbs-page h3 {
	font-family: var(--font-heading);
	font-weight: 400;
	color: var(--gvb-teal);
	line-height: 1.18;
	margin: 0 0 .5em;
}
.gvbs-page p { margin: 0 0 1em; }

.gvbs-container{
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding-left: var(--pad-x);
	padding-right: var(--pad-x);
}

.gvbs-section{ padding: 72px 0; }
@media (min-width: 981px){ .gvbs-section{ padding: 104px 0; } }
.gvbs-section.hero{ padding: 0; }

/* Media placeholders (empty slots) */
.gvbs-placeholder{
	display: block;
	width: 100%;
	height: 100%;
	min-height: 220px;
	background: var(--gvb-cream);
	border: 1px dashed rgba(22,78,78,.25);
	border-radius: inherit;
}
.gvbs-ph-product{ aspect-ratio: 4 / 3; }
.gvbs-ph-gallery{ aspect-ratio: 4 / 5; }
.gvbs-ph-ksusha{ aspect-ratio: 9 / 11; }

/* Eyebrow */
.gvbs-page .eyebrow{
	font-family: var(--font-accent);
	color: var(--gvb-coral-text);
	font-size: 1.05rem;
	letter-spacing: .04em;
	display: block;
	margin-bottom: 10px;
}

/* Section heading + flourish */
.gvbs-page .section-head{ text-align: center; max-width: 720px; margin: 0 auto 44px; }
.gvbs-page .section-head h2{ font-size: clamp(1.75rem, 4.5vw, 2.6rem); }
.gvbs-page .flourish{
	display: inline-block;
	width: 96px; height: 14px;
	margin: 6px auto 0;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='14' viewBox='0 0 96 14'%3E%3Cpath d='M2 9 C 20 2, 40 12, 48 7 C 58 1, 78 11, 94 5' fill='none' stroke='%23f2a094' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}
.gvbs-page .section-sub{ font-size: 1.02rem; margin: 14px auto 0; }

/* Buttons */
.gvbs-page .btn{
	display: inline-block;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: .95rem;
	letter-spacing: .02em;
	padding: 15px 32px;
	border-radius: 999px;
	background: var(--gvb-teal);
	color: var(--gvb-white);
	border: 2px solid var(--gvb-teal);
	cursor: pointer;
	transition: background .25s ease, border-color .25s ease, transform .2s ease, box-shadow .25s ease;
	box-shadow: 0 8px 22px rgba(0, 74, 89, .25);
}
.gvbs-page .btn:hover{
	background: var(--gvb-teal-dark);
	border-color: var(--gvb-teal-dark);
	color: var(--gvb-white);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 74, 89, .32);
}
.gvbs-page .btn--coral{
	background: var(--gvb-coral);
	border-color: var(--gvb-coral);
	color: var(--gvb-teal-dark);
	box-shadow: 0 8px 22px rgba(242, 160, 148, .4);
}
.gvbs-page .btn--coral:hover{ background: #eb8d7f; border-color: #eb8d7f; color: var(--gvb-teal-dark); }
.gvbs-page .btn--ghost{ background: transparent; border-color: transparent; color: var(--gvb-white); box-shadow: none; font-weight: 500; }
.gvbs-page .btn--ghost:hover{ background: transparent; border-color: transparent; color: var(--gvb-sand); transform: none; box-shadow: none; }

/* Scroll reveal */
.gvbs-page.js .reveal{ opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.gvbs-page.js .reveal.is-visible{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
	.gvbs-page .reveal{ opacity: 1; transform: none; transition: none; }
	.gvbs-page .btn, .gvbs-page .gallery-grid img { transition: none !important; }
}

/* HERO */
.gvbs-page .hero{ position: relative; overflow: hidden; background: var(--gvb-teal-dark); }
.gvbs-page .hero-media{ position: absolute; inset: 0; z-index: 0; }
.gvbs-page .hero-media video{ width: 100%; height: 100%; object-fit: cover; object-position: center; }
.gvbs-page .hero-overlay{ position: absolute; inset: 0; z-index: 1; background: rgba(22, 78, 78, 0.68); }
.gvbs-page .hero-inner{
	position: relative;
	z-index: 2;
	min-height: 92vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-top: 96px;
	padding-bottom: 64px;
	text-align: center;
}
.gvbs-page .hero .eyebrow{ color: var(--gvb-sand); font-size: 1.15rem; }
.gvbs-page .hero h1{ color: var(--gvb-white); font-size: clamp(2.1rem, 6.4vw, 3.6rem); margin-bottom: .45em; text-shadow: 0 2px 24px rgba(0, 40, 48, .45); }
.gvbs-page .hero-sub{ color: rgba(255,255,255,.92); font-size: 1.02rem; max-width: 560px; margin: 0 auto 30px; }
.gvbs-page .hero-ctas{ display: flex; flex-direction: column; align-items: center; gap: 10px; }
.gvbs-page .hero-arch{ display: none; }
@media (min-width: 981px){
	.gvbs-page .hero{ background: var(--gvb-cream); }
	.gvbs-page .hero-media, .gvbs-page .hero-overlay{ display: none; }
	.gvbs-page .hero-inner{
		min-height: 0;
		display: grid;
		grid-template-columns: 1.15fr .85fr;
		align-items: center;
		gap: 64px;
		text-align: left;
		padding-top: 110px;
		padding-bottom: 110px;
	}
	.gvbs-page .hero .eyebrow{ color: var(--gvb-coral-text); }
	.gvbs-page .hero h1{ color: var(--gvb-teal); text-shadow: none; }
	.gvbs-page .hero-sub{ color: var(--gvb-body); margin-left: 0; }
	.gvbs-page .hero-ctas{ flex-direction: row; align-items: center; gap: 22px; }
	.gvbs-page .hero .btn--ghost{ color: var(--gvb-teal); }
	.gvbs-page .hero .btn--ghost:hover{ color: var(--gvb-coral-text); }
	.gvbs-page .hero-arch{
		display: block;
		justify-self: center;
		width: min(360px, 100%);
		aspect-ratio: 9 / 14.5;
		border-radius: 999px 999px var(--radius-card) var(--radius-card);
		border: 10px solid var(--gvb-white);
		outline: 1px solid rgba(22,78,78,.12);
		overflow: hidden;
		box-shadow: var(--shadow-lift);
		background: var(--gvb-teal-dark);
	}
	.gvbs-page .hero-arch video{ width: 100%; height: 100%; object-fit: cover; }
}

/* GALLERY */
.gvbs-page .gallery{ background: var(--gvb-white); }
.gvbs-page .gallery-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gvbs-page .gallery-grid figure{ margin: 0; overflow: hidden; border-radius: 12px; box-shadow: var(--shadow-soft); }
.gvbs-page .gallery-grid img,
.gvbs-page .gallery-grid video{ width: 100%; height: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .5s ease; }
.gvbs-page .gallery-grid figure:hover img,
.gvbs-page .gallery-grid figure:hover video{ transform: scale(1.045); }
.gvbs-page .gallery-grid .gvbs-gallery-item{ display: block; position: relative; cursor: pointer; height: 100%; }
/* Small "expand / view full-screen" hint on gallery videos (they autoplay). */
.gvbs-page .gallery-grid .gvbs-zoom-badge{
	position: absolute;
	top: 10px; right: 10px;
	width: 30px; height: 30px;
	border-radius: 8px;
	background: rgba(0, 0, 0, .48) center / 16px 16px no-repeat;
	background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2H2v4M10 2h4v4M6 14H2v-4M10 14h4v-4'/%3E%3C/svg%3E");
	pointer-events: none;
}
@media (min-width: 981px){ .gvbs-page .gallery-grid{ grid-template-columns: repeat(4, 1fr); gap: 18px; } }

/* HOW IT WORKS */
.gvbs-page .how{ background: var(--gvb-cream); }
.gvbs-page .how-steps{ display: grid; grid-template-columns: 1fr; gap: 26px; max-width: 980px; margin: 0 auto; }
.gvbs-page .how-step{ background: var(--gvb-white); border-radius: var(--radius-card); padding: 34px 28px 30px; box-shadow: var(--shadow-soft); text-align: center; }
.gvbs-page .how-num{ font-family: var(--font-accent); font-size: 1.35rem; width: 52px; height: 52px; line-height: 52px; border-radius: 50%; background: var(--gvb-coral); color: var(--gvb-teal-dark); margin: 0 auto 16px; }
.gvbs-page .how-step h3{ font-size: 1.3rem; }
.gvbs-page .how-step p{ margin: 0; font-size: .95rem; }
@media (min-width: 600px){ .gvbs-page .how-steps{ grid-template-columns: repeat(3, 1fr); } }

/* PRODUCTS */
.gvbs-page .products{ background: var(--gvb-white); }
.gvbs-page .product-grid{ display: grid; grid-template-columns: 1fr; gap: 30px; max-width: 980px; margin: 0 auto; }
@media (min-width: 981px){ .gvbs-page .product-grid{ grid-template-columns: 1fr 1fr; } }
.gvbs-page .product-card{ background: var(--gvb-white); border: 1px solid rgba(22,78,78,.10); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.gvbs-page .product-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.gvbs-page .product-card img,
.gvbs-page .product-card video{ width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.gvbs-page .product-body{ padding: 28px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.gvbs-page .product-title{ display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.gvbs-page .product-title h3{ font-size: 1.55rem; margin: 0; }
.gvbs-page .product-price{ font-family: var(--font-heading); font-size: 1.55rem; color: var(--gvb-coral-text); }
.gvbs-page .product-desc{ font-size: .95rem; margin: 12px 0 18px; }
.gvbs-page .product-list{ list-style: none; margin: 0 0 22px; padding: 0; font-size: .9rem; }
.gvbs-page .product-list li{ padding: 8px 0 8px 28px; position: relative; border-bottom: 1px dashed rgba(22,78,78,.14); }
.gvbs-page .product-list li:last-child{ border-bottom: 0; }
.gvbs-page .product-list li::before{
	content: "";
	position: absolute;
	left: 2px; top: 14px;
	width: 14px; height: 14px;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M2 7.5 L 5.5 11 L 12 3' fill='none' stroke='%2382c0c7' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.gvbs-page .product-body .btn{ margin-top: auto; align-self: center; width: 100%; text-align: center; }
@media (min-width: 600px){ .gvbs-page .product-body .btn{ width: auto; } }

/* KSUSHA */
.gvbs-page .ksusha{ background: var(--gvb-teal); color: var(--gvb-white); }
.gvbs-page .ksusha h2, .gvbs-page .ksusha-body{ text-shadow: 0 1px 14px rgba(0, 40, 48, .35); }
.gvbs-page .ksusha-card{ max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 34px; align-items: center; }
@media (min-width: 981px){ .gvbs-page .ksusha-card{ grid-template-columns: 1.1fr .9fr; gap: 56px; } }
.gvbs-page .ksusha .eyebrow{ color: var(--gvb-sand); }
.gvbs-page .ksusha h2{ color: var(--gvb-white); font-size: clamp(1.6rem, 4.2vw, 2.35rem); }
.gvbs-page .ksusha-body{ color: rgba(255,255,255,.92); font-size: .98rem; }
.gvbs-page .ksusha-chips{ display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 14px; }
.gvbs-page .chip{ display: inline-flex; align-items: baseline; gap: 7px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: 9px 18px; font-size: .92rem; font-weight: 600; color: var(--gvb-white); }
.gvbs-page .chip .chip-name{ font-weight: 700; }
.gvbs-page .chip .was{ text-decoration: line-through; text-decoration-color: var(--gvb-coral); text-decoration-thickness: 2px; opacity: .8; font-weight: 500; }
.gvbs-page .chip .now{ color: var(--gvb-sand); font-weight: 700; }
/* Bundle chips are clickable — they pre-select the product and answer "Yes". */
.gvbs-page a.chip--action{
	text-decoration: none;
	cursor: pointer;
	transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.gvbs-page a.chip--action:hover{
	background: rgba(255,255,255,.24);
	border-color: var(--gvb-sand);
	color: var(--gvb-white);
	transform: translateY(-1px);
}
/* Travel-fee note — plain text, not a button. */
.gvbs-page .ksusha-waived{
	color: var(--gvb-sand);
	font-size: .92rem;
	font-weight: 600;
	margin: 0 0 14px;
	padding-left: 24px;
	position: relative;
}
.gvbs-page .ksusha-waived::before{
	content: "";
	position: absolute;
	left: 0; top: 4px;
	width: 15px; height: 15px;
	background-repeat: no-repeat;
	background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 15 15'%3E%3Cpath d='M2 8 L 6 12 L 13 3' fill='none' stroke='%23fdd79a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.gvbs-page .ksusha-links{ margin-top: 8px; }
.gvbs-page .ksusha-links a{ color: var(--gvb-sand); font-weight: 600; border-bottom: 2px solid var(--gvb-coral); padding-bottom: 2px; }
.gvbs-page .ksusha-links a:hover{ color: var(--gvb-white); }
.gvbs-page .ksusha-note{ margin-top: 18px; font-size: .85rem; color: rgba(255,255,255,.85); background: rgba(0,0,0,.14); border-left: 3px solid var(--gvb-coral); border-radius: 0 10px 10px 0; padding: 12px 16px; }
.gvbs-page .ksusha-note a{ color: var(--gvb-sand); }
.gvbs-page .ksusha-photo{ border-radius: 999px 999px var(--radius-card) var(--radius-card); overflow: hidden; border: 8px solid rgba(255,255,255,.9); box-shadow: var(--shadow-lift); max-width: 340px; margin: 0 auto; }
.gvbs-page .ksusha-photo img,
.gvbs-page .ksusha-photo video{ width: 100%; aspect-ratio: 9 / 11; object-fit: cover; display: block; }

/* BOOKING SECTION */
.gvbs-page .book{ background: var(--gvb-cream); }
.gvbs-page .gvbs-book-missing{ text-align: center; color: var(--gvb-body); font-style: italic; }

/* FAQ */
.gvbs-page .faq{ background: var(--gvb-white); }
.gvbs-page .faq-list{ max-width: 780px; margin: 0 auto; }
.gvbs-page .faq-list details{ background: var(--gvb-white); border: 1px solid rgba(22,78,78,.12); border-radius: 12px; margin-bottom: 12px; box-shadow: 0 4px 14px rgba(22,78,78,.05); overflow: hidden; }
.gvbs-page .faq-list summary{ list-style: none; cursor: pointer; font-family: var(--font-heading); font-size: 1.08rem; color: var(--gvb-teal); padding: 18px 52px 18px 22px; position: relative; }
.gvbs-page .faq-list summary::-webkit-details-marker{ display: none; }
.gvbs-page .faq-list summary::after{ content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-family: var(--font-body); font-weight: 500; font-size: 1.4rem; color: var(--gvb-coral); transition: transform .25s ease; }
.gvbs-page .faq-list details[open] summary::after{ content: "–"; }
.gvbs-page .faq-list details[open] summary{ border-bottom: 1px dashed rgba(22,78,78,.14); }
.gvbs-page .faq-answer{ padding: 16px 22px 20px; font-size: .93rem; }
.gvbs-page .faq-answer p{ margin: 0; }

/* TESTIMONIALS */
.gvbs-page .testimonials{ background: var(--gvb-cream); }
.gvbs-page .testi-grid{ display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 1020px; margin: 0 auto; }
@media (min-width: 981px){ .gvbs-page .testi-grid{ grid-template-columns: repeat(3, 1fr); } }
.gvbs-page .testi-card{ background: var(--gvb-white); border-radius: var(--radius-card); box-shadow: var(--shadow-soft); padding: 34px 28px 28px; position: relative; }
.gvbs-page .testi-card::before{ content: "\201C"; font-family: var(--font-heading); font-size: 4rem; line-height: 1; color: var(--gvb-coral); position: absolute; top: 14px; left: 22px; opacity: .55; }
.gvbs-page .testi-quote{ font-size: .95rem; font-style: italic; margin: 18px 0 16px; }
.gvbs-page .testi-name{ font-family: var(--font-accent); color: var(--gvb-teal); font-size: .95rem; }

/* FOOTER */
.gvbs-page .footer{ background: var(--gvb-teal); color: rgba(255,255,255,.85); padding: 52px 0 42px; text-align: center; }
.gvbs-page .footer-brand{ font-family: var(--font-heading); font-size: 1.5rem; color: var(--gvb-white); margin-bottom: 8px; }
.gvbs-page .footer a{ color: var(--gvb-sand); }
.gvbs-page .footer a:hover{ color: var(--gvb-coral); }
.gvbs-page .footer-links{ font-size: .92rem; margin-bottom: 16px; }
.gvbs-page .footer-links span{ margin: 0 8px; color: rgba(255,255,255,.4); }
.gvbs-page .footer-copy{ font-size: .8rem; color: rgba(255,255,255,.55); }

/* STICKY MOBILE CTA (injected into <body> by the JS) */
.gvbs-sticky-cta{
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 60;
	background: #164e4e;
	box-shadow: 0 -6px 22px rgba(0, 40, 48, .28);
	padding: 12px 22px calc(12px + env(safe-area-inset-bottom, 0px));
	transform: translateY(110%);
	visibility: hidden;
	transition: transform .35s ease, visibility 0s linear .35s;
}
.gvbs-sticky-cta.is-shown{ transform: translateY(0); visibility: visible; transition: transform .35s ease, visibility 0s; }
.gvbs-sticky-cta a{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	background: #f2a094;
	color: #0e3434;
	font-family: "Montserrat", Helvetica, Arial, sans-serif;
	font-weight: 600;
	border-radius: 999px;
	padding: 13px 20px;
	text-decoration: none;
}
.gvbs-sticky-cta a:hover{ background: #eb8d7f; }
/* When a quote exists: label left, amount pill right. */
.gvbs-sticky-cta.gvbs-cta-has-quote a{ justify-content: space-between; }
.gvbs-sticky-cta .gvbs-cta-amount{
	background: #164e4e;
	color: #fff;
	font-weight: 700;
	border-radius: 999px;
	padding: 5px 14px;
	white-space: nowrap;
}
@media (min-width: 981px){ .gvbs-sticky-cta{ display: none; } }
@media (prefers-reduced-motion: reduce){ .gvbs-sticky-cta{ transition: none; } }

/* FLOATING QUICK-NAV (top center; injected into <body> by the JS) */
.gvbs-floatnav{
	position: fixed;
	top: 14px;
	left: 50%;
	z-index: 70;
	display: flex;
	gap: 6px;
	align-items: center;
	background: #ffffff;
	border-radius: 999px;
	padding: 6px;
	box-shadow: 0 8px 30px rgba(0, 40, 48, .18);
	transform: translate(-50%, -22px);
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease, transform .3s ease, visibility 0s linear .3s;
}
.gvbs-floatnav.is-shown{
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
	transition: opacity .3s ease, transform .3s ease, visibility 0s;
}
.gvbs-floatnav .gvbs-fn-btn{
	display: inline-block;
	font-family: "Montserrat", Helvetica, Arial, sans-serif;
	font-weight: 600;
	font-size: .9rem;
	line-height: 1;
	letter-spacing: .01em;
	white-space: nowrap;
	border-radius: 999px;
	padding: 11px 22px;
	text-decoration: none;
	transition: background .2s ease, color .2s ease;
}
.gvbs-floatnav .gvbs-fn-quote{ background: #f2a094; color: #0e3434; }
.gvbs-floatnav .gvbs-fn-quote:hover{ background: #eb8d7f; color: #0e3434; }
.gvbs-floatnav .gvbs-fn-process{ background: transparent; color: #164e4e; }
.gvbs-floatnav .gvbs-fn-process:hover{ background: #f4eee0; color: #164e4e; }

/* Responsive labels + which buttons show at each size */
.gvbs-floatnav .gvbs-fn-full{ display: none; }
.gvbs-floatnav .gvbs-fn-short{ display: inline; }
.gvbs-floatnav .gvbs-fn-quote{ display: none; } /* mobile/tablet: Quote lives on the bottom bar */
@media (min-width: 981px){
	.gvbs-floatnav .gvbs-fn-quote{ display: inline-block; }
	.gvbs-floatnav .gvbs-fn-full{ display: inline; }
	.gvbs-floatnav .gvbs-fn-short{ display: none; }
}
@media (prefers-reduced-motion: reduce){ .gvbs-floatnav{ transition: none; } }
/* Clear the WordPress admin bar when the owner previews while logged in
   (visitors are logged out and unaffected). Admin bar is 46px tall on
   small screens, 32px from 783px up. */
body.admin-bar .gvbs-floatnav{ top: 52px; }
@media screen and (min-width: 783px){ body.admin-bar .gvbs-floatnav{ top: 38px; } }

/* GALLERY LIGHTBOX (full-screen; injected into <body> by the JS) */
.gvbs-lightbox{
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(12, 22, 24, .93);
	padding: 28px;
}
.gvbs-lightbox.is-open{ display: flex; }
.gvbs-lb-content{ display: flex; align-items: center; justify-content: center; max-width: 100%; max-height: 100%; }
.gvbs-lightbox img,
.gvbs-lightbox video{
	display: block;
	max-width: min(1100px, 94vw);
	max-height: 86vh;
	width: auto;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
	background: #000;
}
.gvbs-lb-close,
.gvbs-lb-prev,
.gvbs-lb-next{
	position: fixed;
	border: 0;
	cursor: pointer;
	color: #fff;
	background: rgba(255, 255, 255, .14);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	transition: background .2s ease;
}
.gvbs-lb-close:hover,
.gvbs-lb-prev:hover,
.gvbs-lb-next:hover{ background: rgba(255, 255, 255, .30); }
.gvbs-lb-close{ top: 18px; right: 22px; width: 46px; height: 46px; font-size: 30px; }
.gvbs-lb-prev,
.gvbs-lb-next{ top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 34px; }
.gvbs-lb-prev{ left: 18px; }
.gvbs-lb-next{ right: 18px; }
@media (max-width: 600px){
	.gvbs-lb-prev,
	.gvbs-lb-next{ width: 44px; height: 44px; font-size: 26px; }
	.gvbs-lb-prev{ left: 8px; }
	.gvbs-lb-next{ right: 8px; }
}
@media (prefers-reduced-motion: reduce){
	.gvbs-lb-close,
	.gvbs-lb-prev,
	.gvbs-lb-next{ transition: none; }
}
