/* Pleasure Times - High-End Dark & Gold Redesign
   Optimiert für Mobile-First, Performance & Konversion */

:root {
	--pt-bg-base: #0b0c10;
	--pt-bg-card: #14171f;
	--pt-bg-card-hover: #1b202a;
	--pt-bg-elevated: #202633;
	--pt-border: rgba(197, 168, 128, 0.2);
	--pt-border-subtle: rgba(255, 255, 255, 0.08);

	--pt-gold: #c5a880;
	--pt-gold-light: #e4caa6;
	--pt-gold-dark: #917551;
	--pt-gold-glow: rgba(197, 168, 128, 0.15);

	--pt-text: #f0f2f5;
	--pt-text-dim: #9aa3af;
	--pt-text-muted: #6c7280;

	--pt-green: #2ecc71;
	--pt-green-glow: rgba(46, 204, 113, 0.35);

	--pt-radius-sm: 6px;
	--pt-radius-md: 12px;
	--pt-radius-lg: 18px;

	--pt-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--pt-font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--pt-font);
	background-color: var(--pt-bg-base);
	color: var(--pt-text);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
	body {
		padding-bottom: 72px; /* Platz für die mobile Sticky Action Bar */
	}
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--pt-gold);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--pt-gold-light);
}

.container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

/* =========================================
   1. TOP INFO BAR & HEADER
   ========================================= */
.top-info-bar {
	background: #060709;
	border-bottom: 1px solid var(--pt-border-subtle);
	font-size: 0.8rem;
	color: var(--pt-text-dim);
	padding: 0.45rem 0;
}

.top-info-bar__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	position: relative;
	min-height: 22px;
}

.top-info-bar__item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.top-info-bar__item--center {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	white-space: nowrap;
}

.top-info-bar__item strong {
	color: var(--pt-gold);
}

.status-indicator {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: var(--pt-green);
	box-shadow: 0 0 8px var(--pt-green);
	display: inline-block;
}

.site-header-wrapper {
	position: sticky;
	top: var(--wp-admin--admin-bar--height, 0px);
	z-index: 100;
}

.admin-bar .site-header-wrapper {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .site-header-wrapper {
		top: 46px;
	}
}

.site-header {
	position: relative;
	background: rgba(11, 12, 16, 0.95);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--pt-border);
	transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled,
.site-header-wrapper.is-scrolled .site-header {
	background: rgba(8, 9, 12, 0.98);
	border-bottom-color: var(--pt-gold);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.85rem 1.25rem;
	min-height: 64px;
	position: relative;
}

.site-logo-wrap {
	display: flex;
	align-items: center;
	z-index: 1;
}

.site-logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.site-logo {
	height: 48px;
	width: auto;
	max-width: 190px;
	object-fit: contain;
	display: block;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-logo:hover {
	opacity: 0.95;
	transform: scale(1.02);
}

.site-branding {
	display: flex;
	align-items: center;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none; /* Klicks gehen durch auf den darunterliegenden Link */
}

.site-brand-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.3rem;
	text-decoration: none;
	pointer-events: auto;
	text-align: center;
	white-space: nowrap;
}

.site-brand-badge {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--pt-text-dim);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--pt-border);
	border-radius: 20px;
	padding: 0.2rem 0.7rem;
}

.site-brand-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.1;
}

.site-brand-accent {
	color: var(--pt-gold);
}

@media (max-width: 900px) {
	.site-header__inner {
		justify-content: flex-end; /* Menü-Button bleibt rechts */
	}
	.site-logo-wrap {
		display: flex; /* Logo bleibt sichtbar am Handy */
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
	}
	.site-branding {
		display: none; /* Text-Titel ausgeblendet - Logo reicht am Handy als Branding */
	}
}

.site-branding .site-title {
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.site-title__main {
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: 2px;
	color: #ffffff;
	text-transform: uppercase;
}

.site-title__sub {
	font-size: 0.72rem;
	letter-spacing: 1px;
	color: var(--pt-gold);
	text-transform: uppercase;
}

.footer-logo-link {
	display: inline-block;
	margin-bottom: 1.2rem;
}

.footer-logo {
	height: 46px;
	width: auto;
	max-width: 180px;
	object-fit: contain;
	display: block;
}

.main-navigation {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 1.5rem;
}

.nav-menu li a {
	color: var(--pt-text);
	font-size: 0.95rem;
	font-weight: 500;
	transition: color 0.2s ease;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
	color: var(--pt-gold);
}

.btn-header-call {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.5rem 1rem;
	background: var(--pt-gold-glow);
	border: 1px solid var(--pt-border);
	color: var(--pt-gold-light);
	font-size: 0.85rem;
	font-weight: 600;
	border-radius: 20px;
	transition: all 0.2s ease;
}

.btn-header-call:hover {
	background: var(--pt-gold);
	color: #0b0c10;
	border-color: var(--pt-gold);
}

/* Mobile Menu Toggle Button */
.menu-toggle {
	display: none;
	background: transparent;
	border: 1px solid var(--pt-border);
	border-radius: var(--pt-radius-sm);
	padding: 0.5rem;
	cursor: pointer;
	flex-direction: column;
	gap: 5px;
}

.menu-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background-color: var(--pt-gold);
	transition: all 0.3s ease;
}

@media (max-width: 900px) {
	.top-info-bar__item--location {
		display: none;
	}
	.top-info-bar__item--center {
		display: none;
	}
	.top-info-bar__inner {
		justify-content: flex-start;
	}
	.menu-toggle {
		display: flex;
	}
	.main-navigation {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #10131a;
		border-bottom: 1px solid var(--pt-border);
		flex-direction: column;
		padding: 1.5rem;
		gap: 1.25rem;
		display: none;
	}
	.main-navigation.is-open {
		display: flex;
	}
	.nav-menu {
		flex-direction: column;
		width: 100%;
		text-align: center;
		gap: 1rem;
	}
	.nav-cta {
		width: 100%;
	}
	.btn-header-call {
		width: 100%;
		justify-content: center;
		padding: 0.7rem 1rem;
	}
}

/* =========================================
   2. HERO SECTION
   ========================================= */
.hero {
	padding: 4.5rem 0 3rem;
	background: radial-gradient(circle at 50% 15%, #1c2230 0%, var(--pt-bg-base) 80%);
	text-align: center;
	border-bottom: 1px solid var(--pt-border-subtle);
}

.hero__badge {
	display: inline-block;
	padding: 0.35rem 1.1rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--pt-gold);
	border: 1px solid var(--pt-border);
	border-radius: 30px;
	background: var(--pt-gold-glow);
	margin-bottom: 1.25rem;
}

.hero__title {
	font-size: clamp(2.2rem, 5.5vw, 3.5rem);
	font-weight: 800;
	margin: 0 0 1.2rem;
	color: #ffffff;
	line-height: 1.15;
}

.hero__title span {
	color: var(--pt-gold);
	display: block;
}

.hero__lead {
	max-width: 720px;
	margin: 0 auto 2.2rem;
	color: var(--pt-text-dim);
	font-size: 1.1rem;
	line-height: 1.7;
}

.hero__quick-facts {
	display: flex;
	justify-content: center;
	gap: 1.25rem;
	flex-wrap: wrap;
	margin-bottom: 2.2rem;
}

.fact-item {
	background: var(--pt-bg-card);
	border: 1px solid var(--pt-border);
	border-radius: var(--pt-radius-sm);
	padding: 0.65rem 1.4rem;
	display: flex;
	flex-direction: column;
	min-width: 200px;
}

.fact-item__label {
	font-size: 0.72rem;
	color: var(--pt-text-dim);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.fact-item__val {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--pt-gold-light);
}

.hero__cta-group {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

/* Button Component */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.8rem;
	font-weight: 600;
	font-size: 0.95rem;
	border-radius: var(--pt-radius-sm);
	text-decoration: none;
	cursor: pointer;
	transition: all 0.25s ease;
}

.btn--primary {
	background: linear-gradient(135deg, var(--pt-gold-light) 0%, var(--pt-gold) 100%);
	color: #0c0d10;
	border: none;
	box-shadow: 0 4px 15px rgba(197, 168, 128, 0.25);
}

.btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4);
	color: #000;
}

.btn--outline {
	border: 1px solid var(--pt-border);
	color: var(--pt-text);
	background: rgba(255, 255, 255, 0.03);
}

.btn--outline:hover {
	border-color: var(--pt-gold);
	color: var(--pt-gold);
	background: var(--pt-gold-glow);
}

.btn--accent {
	background: var(--pt-gold);
	color: #0b0c10;
	width: 100%;
}

.btn--accent:hover {
	background: var(--pt-gold-light);
	color: #000;
}

/* =========================================
   3. USP BAR
   ========================================= */
.usp-bar {
	background: rgba(197, 168, 128, 0.04);
	border-bottom: 1px solid var(--pt-border-subtle);
	padding: 1rem 0;
}

.usp-bar__inner {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.9rem;
	color: var(--pt-text-dim);
}

.usp-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.usp-item__icon {
	color: var(--pt-gold);
	font-weight: bold;
}

/* =========================================
   4. GIRLS SECTION & GRID
   ========================================= */
.main-layout {
	padding-top: 2rem;
	padding-bottom: 4rem;
}

.girls-section {
	margin-bottom: 4rem;
}

.section-heading {
	margin-bottom: 1.8rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--pt-border);
}

.section-heading__title-wrap {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.section-heading h2 {
	font-size: 1.7rem;
	color: #ffffff;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.section-heading__count {
	font-size: 0.95rem;
	color: var(--pt-gold);
	background: var(--pt-gold-glow);
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	border: 1px solid var(--pt-border);
}

.section-heading__subtitle {
	margin: 0.4rem 0 0;
	color: var(--pt-text-dim);
	font-size: 0.95rem;
}

.live-pulse {
	width: 12px;
	height: 12px;
	background-color: var(--pt-green);
	border-radius: 50%;
	display: inline-block;
	box-shadow: 0 0 10px var(--pt-green);
	animation: pulse 1.8s infinite;
}

@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
	70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
	100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.calendar-icon {
	font-size: 1.2rem;
}

.girls-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
}

@media (max-width: 1000px) and (min-width: 769px) {
	.girls-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Profil-Karte */
.girl-card {
	background: var(--pt-bg-card);
	border: 1px solid var(--pt-border);
	border-radius: var(--pt-radius-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.girl-card:hover {
	transform: translateY(-5px);
	border-color: var(--pt-gold);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.girl-card__media {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4;
	background: #07080a;
	overflow: hidden;
}

.girl-card__image-link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	position: relative;
	cursor: pointer;
}

.girl-card__image-link--disabled {
	cursor: default;
}

.girl-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.girl-card:hover .girl-card__media img {
	transform: scale(1.05);
}

.girl-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--pt-text-dim);
	font-weight: 600;
	background: #11141a;
}

.face-blur-overlay {
	position: absolute;
	backdrop-filter: blur(14px) saturate(1.1);
	-webkit-backdrop-filter: blur(14px) saturate(1.1);
	background: rgba(255, 255, 255, 0.02);
	border-radius: 45% / 55%; /* leicht gesichtsförmig statt eckig */
	pointer-events: none;
	z-index: 2;
}

/* Name: Fett, Mittig, Transparent am unteren Ende des Bildes */
.girl-card__name-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 2.2rem 0.75rem 0.65rem;
	background: linear-gradient(to top, rgba(11, 12, 16, 0.95) 0%, rgba(11, 12, 16, 0.7) 60%, transparent 100%);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	transition: background 0.3s ease;
}

.girl-card:hover .girl-card__name-overlay {
	background: linear-gradient(to top, rgba(11, 12, 16, 0.98) 0%, rgba(11, 12, 16, 0.8) 60%, transparent 100%);
}

.girl-card__name-overlay .girl-card__name {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 800;
	color: #ffffff;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.2;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95);
	transition: color 0.2s ease, transform 0.2s ease;
}

.girl-card:hover .girl-card__name-overlay .girl-card__name {
	color: var(--pt-gold-light);
	transform: translateY(-1px);
}

.girl-card__badges {
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	pointer-events: none;
	z-index: 3;
}

.status-badge {
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	background: rgba(11, 12, 16, 0.85);
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.status-badge--online {
	color: var(--pt-green);
	border: 1px solid var(--pt-green);
}

.status-badge__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--pt-green);
	box-shadow: 0 0 6px var(--pt-green);
}

.status-badge--soon {
	color: var(--pt-gold-light);
	border: 1px solid var(--pt-gold);
}

/* Unter dem Bild: Top-Nummer & Telefonnummer */
.girl-card__body {
	padding: 0.95rem 1rem 1.1rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-grow: 1;
	gap: 0.75rem;
}

.girl-card__details-under {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.girl-card__room-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(197, 168, 128, 0.08);
	border: 1px solid var(--pt-border);
	padding: 0.45rem 0.8rem;
	border-radius: var(--pt-radius-sm);
}

.girl-card__room-row--toponly {
	justify-content: center;
	background: rgba(197, 168, 128, 0.12);
	border-color: rgba(197, 168, 128, 0.35);
	padding: 0.45rem 0.6rem;
}

.girl-card__room-row .room-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--pt-text-dim);
	font-weight: 600;
}

.girl-card__room-row .room-tag {
	font-size: 0.95rem;
	font-weight: 800;
	color: #0b0c10;
	background: linear-gradient(135deg, var(--pt-gold-light) 0%, var(--pt-gold) 100%);
	padding: 0.2rem 0.75rem;
	border-radius: 14px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.girl-card__room-row .room-tag--prominent {
	display: inline-block;
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	width: 100%;
	text-align: center;
	padding: 0.35rem 0.75rem;
	border-radius: 6px;
}

.girl-card__room-row--meta {
	background: rgba(255, 255, 255, 0.03);
	border-color: var(--pt-border-subtle);
}

.girl-card__room-row--meta .room-tag--meta {
	background: transparent;
	color: var(--pt-text-dim);
	font-size: 0.82rem;
	font-weight: 500;
	padding: 0;
	box-shadow: none;
}

.girl-card__actions {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.btn-card-profile {
	display: block;
	text-align: center;
	padding: 0.6rem;
	border-radius: var(--pt-radius-sm);
	background: var(--pt-gold-glow);
	color: var(--pt-gold-light);
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: 600;
	border: 1px solid var(--pt-border);
	transition: all 0.2s ease;
}

.btn-card-profile:hover {
	background: var(--pt-gold);
	color: #0b0c10;
	border-color: var(--pt-gold);
}

.btn-card-profile--disabled {
	background: transparent;
	color: var(--pt-text-muted);
	cursor: not-allowed;
	opacity: 0.65;
}

.btn-card-profile--disabled:hover {
	background: transparent;
	color: var(--pt-text-muted);
	border-color: var(--pt-border);
}

.btn-card-call {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	padding: 0.6rem;
	border-radius: var(--pt-radius-sm);
	background: #102117;
	border: 1px solid rgba(46, 204, 113, 0.35);
	color: var(--pt-green);
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: 600;
	transition: all 0.2s ease;
}

.btn-card-call:hover {
	background: rgba(46, 204, 113, 0.2);
}

.empty-state {
	padding: 2.5rem;
	background: var(--pt-bg-card);
	border: 1px solid var(--pt-border);
	border-radius: var(--pt-radius-md);
	text-align: center;
	color: var(--pt-text-dim);
}

.photo-disclaimer-note {
	font-size: 0.75rem;
	color: var(--pt-text-muted);
	text-align: center;
	margin: 0 0 1.5rem;
	opacity: 0.8;
}

/* =========================================
   5. BENTO INFO & SEO SECTION
   ========================================= */
.info-content-section {
	margin: 5rem 0 2rem;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 1.5rem;
}

/* =========================================
   5b. BAR-BEREICH
   ========================================= */

.section-switch {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 0;
	background: #07080a;
	border-bottom: 1px solid var(--pt-border-subtle);
}

.section-switch__item {
	display: inline-block;
	padding: 0.5rem 1.75rem;
	border-radius: 30px;
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
	color: var(--pt-text-dim);
	border: 1px solid var(--pt-border);
	transition: all 0.2s ease;
}

.section-switch__item:hover {
	color: var(--pt-gold-light);
	border-color: var(--pt-gold);
}

.section-switch__item--active {
	background: var(--pt-gold);
	color: #0b0c10;
	border-color: var(--pt-gold);
}

.bar-section {
	margin: 4rem 0;
	background: var(--pt-bg-card);
	border: 1px solid var(--pt-border);
	border-radius: var(--pt-radius-lg, 16px);
	padding: 3rem 2rem;
}

.bar-section__inner {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.bar-section__title {
	color: var(--pt-gold);
	font-size: 1.6rem;
	margin: 0 0 1rem;
}

.bar-section__hero {
	margin: 0 auto 2rem;
	max-width: 100%;
	border-radius: var(--pt-radius-md);
	overflow: hidden;
	border: 1px solid var(--pt-border);
}

.bar-section__hero img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 80vh;
	object-fit: contain;
	background: #000;
}

.bar-section__hero {
	position: relative;
}

.bar-section__ai-badge {
	position: absolute;
	bottom: 0.75rem;
	right: 0.75rem;
	background: rgba(11, 12, 16, 0.75);
	color: var(--pt-text-dim);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.3px;
	padding: 0.3rem 0.7rem;
	border-radius: 20px;
	border: 1px solid var(--pt-border);
	backdrop-filter: blur(4px);
}

.bar-section__text {
	color: var(--pt-text-dim);
	line-height: 1.7;
	max-width: 680px;
	margin: 0 auto 2rem;
}

.bar-section__gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1rem;
}

.bar-section__photo {
	aspect-ratio: 4 / 3;
	border-radius: var(--pt-radius-md);
	overflow: hidden;
	border: 1px solid var(--pt-border);
}

.bar-section__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Impressionen-Slider: reine Thumbnails, nicht anklickbar/vergrößerbar */
.bar-impressions {
	margin: 3rem 0;
	text-align: center;
}

.bar-impressions h2 {
	color: var(--pt-gold);
	font-size: 1.4rem;
	margin: 0 0 1.5rem;
}

.bar-impressions__wrap {
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.bar-impressions__slider {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 0.25rem;
	scrollbar-width: thin;
}

.bar-impressions__item {
	flex: 0 0 auto;
	width: 200px;
	aspect-ratio: 4 / 3;
	border-radius: var(--pt-radius-sm);
	overflow: hidden;
	border: 1px solid var(--pt-border);
}

.bar-impressions__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none; /* bewusst nicht anklickbar/vergrößerbar */
}

.bar-impressions__arrow {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--pt-bg-card);
	border: 1px solid var(--pt-border);
	color: var(--pt-gold);
	font-size: 1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.bar-impressions__arrow:hover {
	background: var(--pt-gold);
	color: #0b0c10;
}

@media (max-width: 600px) {
	.bar-impressions__item {
		width: 140px;
	}
}

.info-card {
	background: var(--pt-bg-card);
	border: 1px solid var(--pt-border);
	padding: 2rem;
	border-radius: var(--pt-radius-md);
	display: flex;
	flex-direction: column;
	position: relative;
}

.info-card__icon {
	font-size: 1.8rem;
	margin-bottom: 0.75rem;
}

.info-card h3 {
	color: var(--pt-gold);
	font-size: 1.3rem;
	margin-top: 0;
	margin-bottom: 1rem;
	line-height: 1.3;
}

.info-card p {
	color: var(--pt-text-dim);
	font-size: 0.95rem;
	line-height: 1.65;
	margin-bottom: 0.85rem;
}

.info-card__highlight {
	background: var(--pt-gold-glow);
	border-left: 3px solid var(--pt-gold);
	padding: 0.75rem 1rem;
	border-radius: 0 var(--pt-radius-sm) var(--pt-radius-sm) 0;
	margin-top: auto;
	font-size: 0.9rem;
	color: var(--pt-text);
}

.info-card--contact {
	background: linear-gradient(145deg, var(--pt-bg-card) 0%, rgba(197, 168, 128, 0.1) 100%);
}

.info-card__actions {
	margin-top: auto;
	padding-top: 1rem;
}

.external-note {
	font-size: 0.85rem;
	color: var(--pt-text-muted);
}

.external-note a {
	color: var(--pt-gold);
	text-decoration: underline;
}

/* =========================================
   6. SINGLE GIRL PROFILE
   ========================================= */
.single-profile-container {
	padding-top: 2rem;
	padding-bottom: 5rem;
}

.profile-breadcrumbs {
	font-size: 0.85rem;
	color: var(--pt-text-muted);
	margin-bottom: 1.75rem;
}

.profile-breadcrumbs a {
	color: var(--pt-text-dim);
}

.profile-breadcrumbs a:hover {
	color: var(--pt-gold);
}

.profile-breadcrumbs .separator {
	margin: 0 0.5rem;
}

.profile-breadcrumbs .current {
	color: var(--pt-gold);
}

.girl-profile-single {
	display: grid;
	grid-template-columns: minmax(320px, 420px) 1fr;
	gap: 2.5rem;
}

@media (max-width: 850px) {
	.girl-profile-single {
		grid-template-columns: 1fr;
	}
}

.main-portrait-wrap {
	position: relative;
	border-radius: var(--pt-radius-md);
	overflow: hidden;
	border: 1px solid var(--pt-border);
	background: #000;
}

.main-portrait-wrap img {
	width: 100%;
	height: auto;
	display: block;
}

.profile-media-badges {
	position: absolute;
	top: 12px;
	left: 12px;
	right: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.status-pill {
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.78rem;
	font-weight: 700;
	background: rgba(11, 12, 16, 0.9);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.status-pill--active {
	color: var(--pt-green);
	border: 1px solid var(--pt-green);
}

.status-pill--soon {
	color: var(--pt-gold);
	border: 1px solid var(--pt-gold);
}

.pill-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 6px currentColor;
}

.ranking-pill {
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.78rem;
	font-weight: 700;
	background: var(--pt-gold);
	color: #0b0c10;
}

.ranking-pill.room-pill {
	background: linear-gradient(135deg, var(--pt-gold-light) 0%, var(--pt-gold) 100%);
	color: #0b0c10;
	font-weight: 800;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.room-indicator {
	margin-top: 1rem;
	background: var(--pt-bg-card);
	border: 1px solid var(--pt-border);
	border-radius: var(--pt-radius-sm);
	padding: 0.75rem 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.room-label {
	color: var(--pt-text-dim);
	font-size: 0.9rem;
}

.room-number {
	color: var(--pt-gold);
	font-size: 1.1rem;
	font-weight: 700;
}

.profile-quick-contact {
	margin-top: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.btn--call-primary {
	background: #143021;
	border: 1px solid var(--pt-green);
	color: var(--pt-green);
	padding: 0.9rem;
	border-radius: var(--pt-radius-sm);
	font-weight: 700;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn--call-primary:hover {
	background: rgba(46, 204, 113, 0.25);
	color: #ffffff;
}

.direct-call-hint {
	font-size: 0.75rem;
	color: var(--pt-text-muted);
	text-align: center;
}

.profile-header {
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--pt-border);
}

.profile-title {
	font-size: 2.4rem;
	margin: 0 0 0.4rem;
	color: #ffffff;
}

.profile-nation {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--pt-gold);
	font-size: 1.05rem;
	margin: 0;
}

.box-title {
	font-size: 1.25rem;
	color: var(--pt-gold);
	margin-top: 0;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Setcard Grid */
.setcard-box,
.schedule-box,
.services-box,
.pricing-box,
.profile-description,
.profile-gallery-box {
	background: var(--pt-bg-card);
	border: 1px solid var(--pt-border);
	border-radius: var(--pt-radius-md);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.services-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.service-tag {
	background: var(--pt-gold-glow);
	color: var(--pt-gold-light);
	border: 1px solid var(--pt-border);
	border-radius: 30px;
	padding: 0.4rem 1rem;
	font-size: 0.85rem;
	font-weight: 600;
}

.service-tag--default {
	background: rgba(197, 168, 128, 0.22);
	border-color: var(--pt-gold);
	color: #ffffff;
}

.setcard-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	gap: 1rem;
}

.setcard-cell {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--pt-border-subtle);
	border-radius: var(--pt-radius-sm);
	padding: 0.75rem;
	display: flex;
	flex-direction: column;
}

.setcard-cell--wide {
	grid-column: 1 / -1;
}

.setcard-label {
	font-size: 0.72rem;
	color: var(--pt-text-dim);
	text-transform: uppercase;
	margin-bottom: 0.25rem;
}

.setcard-value {
	font-size: 1.05rem;
	font-weight: 600;
	color: #ffffff;
}

.schedule-dates {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.date-item {
	background: rgba(197, 168, 128, 0.06);
	border: 1px solid var(--pt-border);
	border-radius: var(--pt-radius-sm);
	padding: 0.75rem 1.25rem;
}

.date-label {
	font-size: 0.8rem;
	color: var(--pt-text-dim);
	display: block;
}

.date-val {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--pt-gold);
}

.pricing-text,
.profile-text-content {
	color: var(--pt-text-dim);
	line-height: 1.7;
}

.profile-gallery-box {
	background: var(--pt-bg-card);
	border: 1px solid var(--pt-border);
	border-radius: var(--pt-radius-md);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.profile-gallery-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.25rem;
}

.profile-gallery-header .box-title {
	margin: 0;
}

.gallery-count {
	font-size: 0.8rem;
	color: var(--pt-gold-light);
	background: var(--pt-gold-glow);
	border: 1px solid var(--pt-border);
	padding: 0.2rem 0.65rem;
	border-radius: 12px;
	font-weight: 600;
}

.profile-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	gap: 0.85rem;
}

.gallery-thumb-link {
	position: relative;
	aspect-ratio: 3 / 4;
	border-radius: var(--pt-radius-sm);
	overflow: hidden;
	border: 1px solid var(--pt-border);
	background: #000;
	display: block;
	cursor: pointer;
}

.gallery-thumb-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-zoom-badge {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(11, 12, 16, 0.45);
	color: var(--pt-gold-light);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.gallery-thumb-link:hover img {
	transform: scale(1.08);
	opacity: 0.85;
}

.gallery-thumb-link:hover .gallery-zoom-badge {
	opacity: 1;
}

/* Fullscreen Lightbox Modal */
.gallery-lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99999;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gallery-lightbox.is-open {
	display: flex;
	opacity: 1;
}

.lightbox-overlay {
	position: absolute;
	inset: 0;
	background: rgba(5, 6, 8, 0.92);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.lightbox-container {
	position: relative;
	z-index: 2;
	max-width: 90vw;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.lightbox-figure {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lightbox-image-wrap {
	position: relative;
	display: inline-block;
	line-height: 0;
}

#lightbox-image {
	max-width: 88vw;
	max-height: 82vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: var(--pt-radius-sm);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.85);
	border: 1px solid var(--pt-border);
	transition: transform 0.25s ease;
}

.lightbox-counter {
	margin-top: 0.75rem;
	font-size: 0.85rem;
	color: var(--pt-gold-light);
	font-weight: 600;
	letter-spacing: 0.5px;
}

.lightbox-btn {
	position: absolute;
	background: rgba(14, 16, 22, 0.75);
	border: 1px solid var(--pt-border);
	color: #ffffff;
	cursor: pointer;
	border-radius: 50%;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	z-index: 10;
}

.lightbox-btn:hover {
	background: var(--pt-gold);
	color: #0b0c10;
	border-color: var(--pt-gold);
	transform: scale(1.05);
}

.lightbox-btn--close {
	top: -55px;
	right: 0;
}

.lightbox-btn--prev {
	left: -65px;
	top: 50%;
	transform: translateY(-50%);
}

.lightbox-btn--prev:hover {
	transform: translateY(-50%) scale(1.05);
}

.lightbox-btn--next {
	right: -65px;
	top: 50%;
	transform: translateY(-50%);
}

.lightbox-btn--next:hover {
	transform: translateY(-50%) scale(1.05);
}

@media (max-width: 768px) {
	.profile-gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
		gap: 0.6rem;
	}
	.lightbox-btn--close {
		top: -48px;
		right: 4px;
		width: 40px;
		height: 40px;
	}
	.lightbox-btn--prev {
		left: 10px;
		top: auto;
		bottom: -55px;
		transform: none;
		width: 42px;
		height: 42px;
	}
	.lightbox-btn--prev:hover {
		transform: scale(1.05);
	}
	.lightbox-btn--next {
		right: 10px;
		top: auto;
		bottom: -55px;
		transform: none;
		width: 42px;
		height: 42px;
	}
	.lightbox-btn--next:hover {
		transform: scale(1.05);
	}
	#lightbox-image {
		max-width: 94vw;
		max-height: 74vh;
	}
}

.profile-disclaimer-note {
	font-size: 0.8rem;
	color: var(--pt-text-muted);
	line-height: 1.5;
	border-top: 1px solid var(--pt-border-subtle);
	padding-top: 1rem;
}

/* =========================================
   7. STANDARD PAGES & CONTENT
   ========================================= */
.standard-page-container {
	padding: 3rem 1.25rem 5rem;
	max-width: 900px;
}

.page-content-box {
	background: var(--pt-bg-card);
	border: 1px solid var(--pt-border);
	border-radius: var(--pt-radius-md);
	padding: 2.5rem;
}

.page-title {
	color: #ffffff;
	margin-top: 0;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid var(--pt-border);
	padding-bottom: 0.75rem;
}

.entry-content {
	color: var(--pt-text-dim);
	line-height: 1.7;
}

.entry-content h2, .entry-content h3 {
	color: var(--pt-gold);
}

/* =========================================
   8. FOOTER & MOBILE STICKY BAR
   ========================================= */
.site-footer {
	background: #07080a;
	border-top: 1px solid var(--pt-border);
	padding: 4rem 0 2rem;
	color: var(--pt-text-dim);
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2.5rem;
	margin-bottom: 3rem;
}

.footer-title {
	color: var(--pt-gold);
	font-size: 1.15rem;
	margin-top: 0;
	margin-bottom: 1.25rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-desc {
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: 1.25rem;
}

.footer-badge-18 span {
	display: inline-block;
	border: 1px solid #e74c3c;
	color: #e74c3c;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.25rem 0.65rem;
	border-radius: 4px;
}

.footer-info-list {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 0.9rem;
}

.footer-info-list li {
	margin-bottom: 0.6rem;
}

.footer-info-list strong {
	color: #ffffff;
}

.footer-phone-highlight a {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--pt-gold);
}

.footer-map-link {
	display: inline-block;
	margin-top: 0.5rem;
	color: var(--pt-text);
	font-size: 0.9rem;
}

.footer-bottom {
	border-top: 1px solid var(--pt-border-subtle);
	padding-top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.85rem;
}

.footer-links {
	list-style: none;
	display: flex;
	gap: 1.5rem;
	padding: 0;
	margin: 0;
}

.footer-links a {
	color: var(--pt-text-dim);
}

.footer-links a:hover {
	color: var(--pt-gold);
}

.site-info {
	margin: 0;
	color: var(--pt-text-muted);
}

/* Mobile Sticky Bottom Bar */
.mobile-bottom-bar {
	display: none;
}

@media (max-width: 768px) {
	.mobile-bottom-bar {
		display: flex;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		height: 62px;
		background: rgba(11, 12, 16, 0.97);
		backdrop-filter: blur(10px);
		border-top: 1px solid var(--pt-border);
		z-index: 999;
		justify-content: space-around;
		align-items: center;
		padding: 0 0.5rem;
		box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
	}

	.mobile-action-item {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 3px;
		color: var(--pt-text-dim);
		text-decoration: none;
		font-size: 0.72rem;
		font-weight: 600;
		flex: 1;
		padding: 0.4rem 0;
	}

	.mobile-action-icon {
		font-size: 1.15rem;
	}

	.mobile-action-item--call {
		color: var(--pt-green);
	}

	.mobile-action-item:active,
	.mobile-action-item:hover {
		color: var(--pt-gold);
	}

	.mobile-action-item--call:active,
	.mobile-action-item--call:hover {
		color: #ffffff;
	}

	.girls-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.girl-card__name-overlay {
		padding: 1.6rem 0.5rem 0.5rem;
	}

	.girl-card__name-overlay .girl-card__name {
		font-size: 1.05rem;
		letter-spacing: 0.5px;
	}

	.girl-card__body {
		padding: 0.75rem 0.65rem 0.85rem;
		gap: 0.55rem;
	}

	.girl-card__details-under {
		gap: 0.45rem;
	}

	.girl-card__room-row {
		padding: 0.35rem 0.55rem;
	}

	.girl-card__room-row .room-label {
		font-size: 0.7rem;
	}

	.girl-card__room-row .room-tag {
		font-size: 0.82rem;
		padding: 0.15rem 0.55rem;
	}

	.btn-card-call .call-text {
		display: none;
	}

	.btn-card-call {
		padding: 0.5rem;
	}

	.btn-card-profile {
		padding: 0.5rem;
		font-size: 0.8rem;
	}

	.page-content-box {
		padding: 1.5rem;
	}
}


/* =========================================
   BILDERSCHUTZ (Download & Drag unterbinden)
   ========================================= */
img,
.girl-card__media,
.main-portrait-wrap,
.gallery-thumb-link,
.lightbox-figure,
#lightbox-image {
	-webkit-touch-callout: none !important; /* iOS Safari: Kein Kontextmenü beim Gedrückthalten */
	-webkit-user-select: none !important;   /* Safari */
	-khtml-user-select: none !important;
	-moz-user-select: none !important;      /* Firefox */
	-ms-user-select: none !important;
	user-select: none !important;
	-webkit-user-drag: none !important;     /* Chrome / Safari Dragging sperren */
	user-drag: none !important;
	pointer-events: auto;
}


/* =========================================
   ERWEITERTER BILDERSCHUTZ (Druck & Screenshot-Erschwernis)
   ========================================= */
@media print {
	body {
		display: none !important;
	}
}


/* =========================================
   WHATSAPP & TELEFON BUTTONS (Gleiche Zeile)
   ========================================= */
.card-contact-row {
	display: flex;
	gap: 0.5rem;
}

.card-contact-row .btn-card-call {
	flex: 1;
}

.btn-card-whatsapp {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 0.6rem 0.75rem;
	border-radius: var(--pt-radius-sm);
	background: rgba(37, 211, 102, 0.12);
	border: 1px solid rgba(37, 211, 102, 0.4);
	color: #25d366;
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: 600;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.btn-card-whatsapp:hover {
	background: rgba(37, 211, 102, 0.25);
	color: #ffffff;
}

.contact-buttons-row {
	display: flex;
	gap: 0.6rem;
}

.contact-buttons-row .btn--call-primary {
	flex: 1;
	padding: 0.8rem 0.75rem;
	font-size: 1rem;
}

.btn--whatsapp-primary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: #123321;
	border: 1px solid #25d366;
	color: #25d366;
	padding: 0.8rem 1rem;
	border-radius: var(--pt-radius-sm);
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.btn--whatsapp-primary:hover {
	background: rgba(37, 211, 102, 0.25);
	color: #ffffff;
}

@media (max-width: 480px) {
	.contact-buttons-row {
		flex-direction: column;
	}
}

/* =========================================
   LEGAL PAGES (Impressum, Disclaimer, Datenschutz)
   ========================================= */
.legal-page-box {
	background: var(--pt-bg-card, #14171f);
	border: 1px solid var(--pt-border, rgba(197, 168, 128, 0.25));
	border-radius: var(--pt-radius-md, 12px);
	padding: 2.5rem 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.legal-lead {
	font-size: 1.05rem;
	color: #e5e7eb;
	margin-bottom: 2rem;
	line-height: 1.65;
	border-left: 3px solid #c5a880;
	padding-left: 1rem;
}

.legal-block {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.legal-block h3 {
	margin-top: 0;
	margin-bottom: 0.85rem;
	color: #e4caa6;
	font-size: 1.15rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	padding-bottom: 0.5rem;
}

.legal-block p, .legal-block ul {
	margin: 0 0 0.85rem;
	color: #9aa3af;
	line-height: 1.7;
	font-size: 0.95rem;
}

.legal-block p:last-child, .legal-block ul:last-child {
	margin-bottom: 0;
}

.legal-block ul {
	padding-left: 1.4rem;
}

.legal-block li {
	margin-bottom: 0.5rem;
}

.legal-block a {
	color: #c5a880;
	text-decoration: underline;
	transition: color 0.2s ease;
}

.legal-block a:hover {
	color: #e4caa6;
}

.legal-highlight-box {
	background: rgba(197, 168, 128, 0.08);
	border: 1px solid #c5a880;
	border-left: 5px solid #c5a880;
}

.legal-highlight-box h3 {
	color: #ffffff;
	border-bottom-color: rgba(197, 168, 128, 0.3);
}

.legal-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0.5rem 0;
}

.legal-table td {
	padding: 0.75rem 0.6rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 0.95rem;
	vertical-align: top;
}

.legal-table tr:last-child td {
	border-bottom: none;
}

.legal-table td:first-child {
	width: 36%;
	color: #9aa3af;
	font-weight: 600;
}

.legal-table td:last-child {
	color: #ffffff;
}

@media (max-width: 680px) {
	.legal-page-box {
		padding: 1.5rem 1rem;
	}
	.legal-table td {
		display: block;
		width: 100% !important;
		padding: 0.35rem 0;
	}
	.legal-table td:first-child {
		padding-bottom: 0;
		color: #c5a880;
	}
}
