/* ============================================================
   EXKLUSIV MASSAGE STUDIO — style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

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

:root {
	--gold: #f5c43a;
	--gold-light: #e8c97e;
	--gold-dim: rgba(201, 168, 76, 0.25);
	--gold-line: rgba(201, 168, 76, 0.78);
	--bg: #080808;
	--card: rgba(16, 14, 12, 0.88);
	--text: #f6f3ef;
	--text-muted: #d1cdc7;
	--text-gold:#e5b32b;
	--white: #f6f3ef;
	--whatsapp: #25D366;
	--nav-h: 56px;
	--radius: 3px;
	--serif: 'Jost', Arial, sans-serif;
	--sans: 'Jost', Arial, sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--sans);
	font-weight: 300;
	background-color: var(--bg);
	background-image: url('img/bg-gold.png');
	background-repeat: repeat;
	background-position: center 0;
	background-attachment: scroll;
	background-size: 200px;
	/* filter: contrast(0.1); */
	color: var(--text);
	overflow-x: hidden;
	min-height: 100vh;
	line-height: 1.7;
}

hr {
    margin: auto;
    max-width: 1035px;
    border: none; 
	border-top: 1px solid white; 
	height: 0;
	/*margin: 0 10px;*/
}

#site-mask {
	position: fixed;
	inset: 0;
	background: url('img/mask.png') no-repeat center center;
	background-size: 100% 100%;
	pointer-events: none;
	z-index: -1;
}

#consent-banner {
	position: fixed;
	inset: 0;
	background: rgba(4, 3, 2, 0.97);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	padding: 20px;
	backdrop-filter: blur(6px);
}

.consent-box {
	max-width: 480px;
	width: 100%;
	border: 1px solid var(--gold);
	background: #0d0b09;
	padding: 44px 32px 36px;
	text-align: center;
	border-radius: var(--radius);
	box-shadow: 0 0 60px rgba(201, 168, 76, 0.12);
	animation: fadeUp 0.5s ease both;
}

.consent-box .age-icon {
	font-size: 2.6rem;
	margin-bottom: 16px;
	display: block;
}

.consent-box h2 {
	font-family: var(--serif);
	font-weight: 300;
	font-size: 1.9rem;
	color: var(--gold);
	letter-spacing: 3px;
	margin-bottom: 16px;
}

.consent-box p {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 10px;
}

.consent-box strong {
	color: var(--text);
}

.consent-divider {
	width: 40px;
	height: 1px;
	background: var(--gold-line);
	margin: 22px auto;
}

.consent-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 24px;
}

.btn-confirm {
	background: var(--gold);
	color: #000;
	padding: 13px 24px;
	border: none;
	cursor: pointer;
	font-family: var(--sans);
	font-weight: 500;
	font-size: 0.85rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-radius: var(--radius);
	transition: background 0.25s, transform 0.15s;
}

.btn-confirm:hover {
	background: var(--gold-light);
	transform: translateY(-1px);
}

.btn-decline {
	background: transparent;
	color: var(--text-muted);
	padding: 11px 24px;
	border: 1px solid rgba(138, 128, 112, 0.3);
	cursor: pointer;
	font-family: var(--sans);
	font-size: 0.82rem;
	letter-spacing: 1px;
	text-decoration: none;
	display: block;
	border-radius: var(--radius);
	transition: border-color 0.25s, color 0.25s;
}

.btn-decline:hover {
	border-color: var(--text-muted);
	color: var(--text);
}

.consent-note {
	font-size: 0.72rem;
	color: #55504a;
	margin-top: 20px;
}

.consent-note a {
	color: #665f55;
	text-decoration: underline;
}

#main-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--nav-h);
	background: rgba(5, 4, 3, 0.92);
    border-bottom: 1px solid rgb(201 168 76 / 20%);
	backdrop-filter: blur(12px);
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0 18px;
	z-index: 9100;
}

#menu-toggle {
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 8px;
	border-radius: 2px;
	transition: opacity 0.2s;
}

#menu-toggle:hover {
	opacity: 0.7;
}

#menu-toggle span {
	display: block;
	width: 22px;
	height: 1.5px;
	background: var(--gold);
	transition: transform 0.3s ease, opacity 0.2s;
	transform-origin: center;
}

#menu-toggle.open span:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}

#menu-toggle.open span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

#menu-toggle.open span:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

#nav-menu {
	position: fixed;
	top: var(--nav-h);
	right: -100%;
	width: min(290px, 82vw);
	height: calc(100dvh - var(--nav-h));
	background: rgba(6, 5, 4, 0.98);
	border-left: 1px solid var(--gold-line);
	list-style: none;
	display: flex;
	flex-direction: column;
	padding: 28px 0 20px;
	transition: right 0.35s cubic-bezier(0.77, 0, 0.175, 1);
	overflow-y: auto;
	z-index: 9090;
}

#nav-menu.open {
	right: 0;
}

#nav-menu li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

#nav-menu li a {
	display: block;
	padding: 15px 28px;
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.82rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	transition: color 0.2s, padding-left 0.2s;
}

#nav-menu li a:hover {
	color: var(--gold);
	padding-left: 38px;
}

header {
	padding-top: calc(var(--nav-h) + 20px);
	padding-left: 20px;
	padding-right: 20px;
	min-height: 30vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	z-index: 20;
	box-shadow:0 0 32px rgba(0,0,0);
	max-width: 1080px;
    margin: auto;
}

.logo-img {
	max-width: 240px;
	height: auto;
	margin-bottom: 24px;
	filter: drop-shadow(0 0 28px rgba(201, 168, 76, 0.35));
	animation: fadeDown 0.9s ease both;
}

.header-tagline {
	font-family: var(--serif);
	font-size: 1.15rem;
	color: var(--text-muted);
	text-transform: uppercase;
	padding-top: 30px;
	letter-spacing: 0px;
	margin-bottom: 36px;
	align-self: flex-end;
	animation: fadeDown 0.9s 0.15s ease both;
}

.whatsapp-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgb(211 37 37 / 10%);
    border: 1px solid rgb(255 0 0 / 40%);
    color: #ff0000;
	padding: 13px 32px;
	text-decoration: none;
	border-radius: 40px;
	font-size: 1.05rem;
	font-weight: 400;
	letter-spacing: 1.5px;
	transition: background 0.3s, box-shadow 0.3s;
	animation: fadeDown 0.9s 0.25s ease both;
}

.whatsapp-btn:hover {
	background: rgba(37, 211, 102, 0.2);
	box-shadow: 0 0 20px rgba(37, 211, 102, 0.15);
}

.whatsapp-icon {
	text-wrap-mode: nowrap;	
	background-image: url(img/whatsapp.svg);
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
	text-indent: 39px;
	font-weight: 900;
}

.section {
	position: relative;
	z-index: 20;
	padding: 50px 0;
}

.section-alt {
	/* background: rgba(0, 0, 0, 0.20); */
}

.logo-box {
    display: inline-block;
    padding: 20px;
    text-align: center;

    border: 5px solid transparent;
    border-image: url('img/gold.png') 1 round;

    position: relative;
	margin: 16px;
}

.logo-box::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 2px solid transparent;
    border-image: url('img/gold.png') 1 round;
    pointer-events: none;
}

.logo-box::after {
    content: "";

    position: absolute;

    width: 120px;
    height: 150px;

    right: -50px; 
    bottom: 10px;  

    background: url('img/gold.png') center/cover no-repeat;

    -webkit-mask-image: url('img/leaves.svg');
    mask-image: url('img/leaves.svg');

    -webkit-mask-size: contain;
    mask-size: contain;

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    -webkit-mask-position: center;
    mask-position: center;

    pointer-events: none;
}

.logo-title,
.logo-subtitle {
    background: url('img/gold.png') center/cover no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-title {
    font-family: "Times New Roman", Georgia, serif;
    font-size: 50px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 12px;
	padding-bottom: 10px;
	
}

.logo-slogan {
    font-family: Georgia, serif;
    font-size: 28px;
    font-style: italic;
    color: #ff1919;
	text-shadow: 0px 0px 11px #ff2929;
    margin-bottom: 10px;
}

.logo-subtitle {
    font-family: Georgia, serif;
    font-size: 30px;
    letter-spacing: 2px;
}

.container {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 22px;
}

.section-title {
	font-family: var(--serif);
	font-weight: 300;
	font-size: 1.85rem;
	color: var(--gold);
	letter-spacing: 3px;
	margin-bottom: 38px;
	display: flex;
	align-items: center;
	gap: 18px;
}

.section-title::after {
	content: '';
	flex: 1;
	height: 1px;
	background:rgb(185 146 37);
}

.about-content {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	align-items: flex-start;
}

.about-text {
	flex: 1;
	min-width: 240px;
	font-family: var(--serif);
	font-size: 1.08rem;
	color: var(--text-gold);
	line-height: 1.45;
	/*font-style: italic;*/
}

.about-text p+p {
	margin-top: 14px;
}

.about-address {
	background: var(--card);
	border: 3px solid #ff1021;
	border-radius: var(--radius);
	padding: 24px 28px;
	min-width: 210px;
	/*line-height: 2;*/
	/*font-size: 0.9rem;*/
}

.about-address p+p {
	margin-top: 10px;
}

.about-address a {
	color: var(--gold);
	text-decoration: none;
}

.model-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
	gap: 24px;
}

.model-card {
	background: var(--card);
	border-radius: var(--radius);
	overflow: hidden;
	border: 3px solid rgb(255 16 33);
	text-decoration: none;
	color: inherit;
	display: block;
	transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
	position: relative;
}

.model-card:hover {
	transform: translateY(-7px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--gold-dim);
}

.model-img-wrap {
	position: relative;
	height: 370px;
	overflow: hidden;
	background: #111;
	filter: grayscale(0.2) sepia(0.2) contrast(0.9);
}

.model-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.55s ease;
}

model-img-wrap-neu {
	position: relative;
	display: inline-block;
	overflow: visible;
}

.neu-badge {
    position: absolute;
    top: 1px;
    left: 1px;
    width: 80px;
    height: auto;
}

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

.model-online-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #ff0000;
    border: 1px solid #db1414;
    box-shadow: 0px 0px 12px 0px #c70b0b;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    text-shadow: 1px 1px 3px #44450338;
	text-align: right;
}

.model-offline-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: rgba(0, 0, 0, 0.75);
	color: #ccc;
	padding: 5px 12px;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 3px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.model-detail-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgb(255 0 0 / 89%);
    border: 1px solid rgb(243 0 0);
	box-shadow: 0px 0px 6px 0px #c7b00b;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    text-shadow: 1px 1px 3px #44450338;
	text-align: right;
	max-width: 200px;
}

.galerie-section-title {
	color: #fff;
	font-size: 1.6rem;
	margin-top: 50px;
	margin-bottom: 25px;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-left: 3px solid #d4af37;
	padding-left: 15px;
}

.model-info {
	padding: 20px 18px 16px;
}

.model-info h3 {
	font-family: var(--serif);
	font-weight: 400;
	font-size: 1.85rem;
	color: #e34d3c;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.model-desc-wrap {
	position: relative;
	max-height: 76px;
	overflow: hidden;
}

.model-desc {
	font-size: 1.0rem;
	color: var(--text-muted);
	line-height: 1.2;
	white-space: pre-line;
}

.desc-fade {
	position: absolute;
	inset: auto 0 0 0;
	height: 48px;
	background: linear-gradient(to bottom, transparent, rgba(16, 14, 12, 0.97));
}

.model-read-more {
	display: inline-block;
	margin-top: 12px;
	/*color: var(--gold);*/
	font-size: 0.76rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	transition: letter-spacing 0.25s;
}

.model-card:hover .model-read-more {
	letter-spacing: 3px;
}

.no-models-msg {
	text-align: center;
	padding: 50px 0;
	color: var(--text-muted);
	font-family: var(--serif);
	font-style: italic;
	font-size: 1.1rem;
	line-height: 2;
}

.indent {
    margin-left: 24px;
    display: inline-block;
}

.small-indent {
	background-size: 16px;
	padding-left: 24px;
 }

.location-address {
	color: var(--text-muted);
	margin-bottom: 24px;
	font-size: 0.95rem;
	line-height: 2;
}

.map-wrap {
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--gold-line);
    filter: grayscale(0.2) sepia(0.2);
}

.map-wrap iframe {
	width: 100%;
	height: 340px;
	display: block;
	border: none;
	filter: grayscale(0.6) brightness(0.75);
	transition: filter 0.4s;
}

.map-wrap:hover iframe {
	filter: grayscale(0.2) brightness(0.9);
}

.hours-table {
	border-collapse: collapse;
	width: 100%;
	max-width: 460px;
	font-size: 0.92rem;
}

.hours-table tr {
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.hours-table td {
	padding: 13px 0;
	color: var(--text-muted);
	vertical-align: top;
}

.hours-table td:first-child {
	color: var(--gold);
	font-weight: 400;
	width: 170px;
	letter-spacing: 0.5px;
}

footer {
	position: relative;
	z-index: 20;
	background: rgba(3, 2, 2, 0.94);
	border-top: 1px solid var(--gold-line);
	padding: 38px 22px 28px;
	text-align: center;
	max-width: 1040px;
    margin: auto;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 22px;
	margin-bottom: 24px;
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-links a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.78rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	transition: color 0.2s;
}

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

.footer-copy {
	color: #ad9b89;
	font-size: 0.72rem;
	letter-spacing: 1px;
}

@keyframes fadeDown {
	from {
		opacity: 0;
		transform: translateY(-18px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
	background: #3a3530;
	border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--gold-dim);
}

.database-specs-injector {
	margin-top: 34px;
	line-height: normal;
	border-top: solid;
	border-top-width: thin;
	border-top-color: rgb(201 168 76 / 90%);
	padding-top: 22px;
}

.td_label {
	font-weight: 400;
	text-align: right;
	padding-right: 5px;
	vertical-align: top;
}

.td_value {
	font-weight: 400;
	text-align: left;
	vertical-align: bottom;
}

.detail-main-container {
	padding-top: 28px;
	padding-bottom: 70px;
	margin: 90px auto;
}

.navigation-back-wrapper {
	margin-bottom: 22px
}

.btn-luxury-back {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--text-gold);
	text-decoration: none;
	border: 1px solid var(--gold-line);
	background: rgb(43 33 5 / 72%);
	padding: 2px 16px;
	border-radius: 999px;
	transition: .25s;
	margin: 6px;
}

.btn-luxury-back:hover {
	transform: translateX(-2px);
	border-color: rgba(201, 168, 76, .42);
	box-shadow: 0 10px 30px rgba(0, 0, 0, .28)
}

.profile-luxury-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
	gap: 28px;
	align-items: start
}

.gallery-hero-card {
	position: relative;
	border-radius: 22px;
	overflow: hidden;
	/*border: 1px solid rgba(201, 168, 76, .22);*/
	box-shadow: 0 18px 50px rgba(0, 0, 0, .38);
	background: #0b0b0b
}

.gallery-hero-button {
	position: relative;
	display: block;
	width: 100%;
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
    content-visibility: hidden;
}

.gallery-hero-button img {
	display: block;
	width: 100%;
	height: min(70vh, 680px);
	object-fit: cover
}

.gallery-hero-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 4px;
	padding: 18px;
	background: linear-gradient(to top, rgba(0, 0, 0, .55), transparent 42%);
	color: #fff;
	opacity: 0;
	transition: .28s
}

.gallery-hero-card:hover .gallery-hero-overlay {
	opacity: 1
}

.gallery-grid-2col {
	margin-top: 18px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px
}

.gallery-thumb-card {
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
	position: relative;
	aspect-ratio: 1/1;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 26px rgba(0, 0, 0, .24);
	outline: 3px solid #e70c0c;
	transition: transform .25s, border-color .25s, box-shadow .25s;
}

.gallery-thumb-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.01);
	transition: transform .35s;
	filter: grayscale(0.2) sepia(0.2) contrast(0.9);
}

.gallery-thumb-card:hover,
.gallery-thumb-card.active {
	transform: translateY(-3px);
	box-shadow: 0 14px 34px rgba(0, 0, 0, .38);
	outline: 3px solid #e70c0c;
	background-color: red;
}

.gallery-thumb-card:hover img {
	transform: scale(1.06);
}

.gallery-thumb-card::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, .18));
	pointer-events: none
}

.gallery-lightbox {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 10050;
	background: rgba(0, 0, 0, .94);
	backdrop-filter: blur(10px);
	padding: 24px
}

.gallery-lightbox.open {
	display: flex
}

.gallery-lightbox-stage {
	display: flex;
	align-items: stretch;
	justify-content: center
}

.gallery-lightbox-stage img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 20px 45px rgba(0, 0, 0, .55));
    border: 10px solid #e70c0c;
	border-radius: 18px
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
	position: absolute;
	border: 1px solid rgba(201, 168, 76, .35);
	background: rgba(8, 8, 8, .62);
	color: var(--gold-light);
	cursor: pointer;
	transition: .25s
}

.gallery-lightbox-close {
	top: 18px;
	right: 18px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	font-size: 2rem;
	line-height: 1
}

.gallery-lightbox-nav {
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	font-size: 2.2rem
}

.gallery-lightbox-nav.prev {
	left: 18px
}

.gallery-lightbox-nav.next {
	right: 18px
}

.gallery-lightbox-counter {
	position: absolute;
	bottom: 18px;
	left: 50%;
	transform: translateX(-50%);
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(0, 0, 0, .5);
	border: 1px solid rgba(201, 168, 76, .2);
	color: var(--text-muted);
	font-size: .82rem;
	letter-spacing: 1px
}

.premium-reviews-section {
	margin-top: 34px;
	padding-top: 28px;
	border-top: 1px solid rgba(201, 168, 76, .14)
}

.reviews-summary {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	margin-bottom: 18px
}

.reviews-score {
	display: flex;
	align-items: baseline;
	gap: 10px;
	padding: 16px 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, .03);
	    border: 2px solid rgb(201 168 7);
}

.reviews-score strong {
	font-size: 2.2rem;
	color: var(--gold-light);
	font-family: var(--serif);
	font-weight: 400
}

.reviews-score span {
	color: var(--text-muted)
}

.loaded-reviews-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
	margin-bottom: 26px
}

.luxury-review-card {
	position: relative;
	padding: 18px 18px 16px;
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(20, 18, 16, .94), rgba(10, 9, 8, .94));
	border: 2px solid rgb(201 168 7);
	box-shadow: 0 14px 32px rgba(0, 0, 0, .22)
}

.card-meta-header {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	align-items: center;
	margin-bottom: 12px
}

.client-author-name,
.client-stars-display {
	font-size: .88rem
}

.client-author-name {
	color: var(--gold-light);
	letter-spacing: .4px
}

.client-review-body {
	color: var(--text);
	font-size: .95rem;
	line-height: 1.8;
	font-style: italic;
	white-space: pre-wrap;
}

.luxury-feedback-form-box {
	padding: 24px;
	border-radius: 24px;
	background: rgba(10, 10, 10, .72);
	border: 2px solid rgb(201 168 7);
	box-shadow: 0 18px 44px rgba(0, 0, 0, .3)
}

.luxury-embedded-form .form-input-block input,
.luxury-embedded-form .form-input-block textarea {
	width: 100%;
	background: rgba(255, 255, 255, .04);
	border: 2px solid rgb(201 168 7 / 52%);
	color: var(--white);
	border-radius: 4px;
	padding: 14px 15px;
	outline: none;
	transition: .2s
}

.luxury-embedded-form .form-input-block input:focus,
.luxury-embedded-form .form-input-block textarea:focus {
	border-color: rgba(232, 201, 126, .65);
	box-shadow: 0 0 0 3px rgba(201, 168, 76, .12)
}

.luxury-star-picker-row {
	display: flex;
	gap: 8px;
	align-items: center
}

.interactive-star-node {
	font-size: 2rem;
	cursor: pointer;
	color: #6d6559;
	transition: transform .18s, color .18s, filter .18s
}

.interactive-star-node:hover,
.interactive-star-node.active {
	color: var(--gold-light);
	transform: translateY(-1px);
	filter: drop-shadow(0 0 8px rgba(201, 168, 76, .35))
}

.btn-luxury-form-submit {
	border: 1px solid rgba(201, 168, 76, .35);
	background: linear-gradient(180deg, rgba(201, 168, 76, .96), rgba(159, 126, 36, .96));
	color: #140f06;
	padding: 13px 18px;
	border-radius: 14px;
	cursor: pointer;
	font-weight: 600;
	letter-spacing: 1px;
	transition: .25s
}

.btn-luxury-form-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(201, 168, 76, .15)
}


body.login-page {
	background-color: #121212;
	color: #e0e0e0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	margin: 0;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-box {
	background: #1e1e1e;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
	width: 100%;
	max-width: 400px;
	border: 1px solid #333;
}

.login-box h2 {
	margin: 0 0 28px;
	text-align: center;
	color: #ffffff;
	font-weight: 600;
	font-size: 1.4rem;
	letter-spacing: 1px;
}

.login-input-group {
	margin-bottom: 20px;
}

.login-input-group label {
	display: block;
	margin-bottom: 8px;
	color: #aaa;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.login-input-group input {
	width: 100%;
	padding: 12px 14px;
	background: #2a2a2a;
	border: 1px solid #444;
	color: #fff;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 15px;
	transition: border-color 0.25s;
}

.login-input-group input:focus {
	border-color: #bd1426;
	outline: none;
}

.btn-login-submit {
	width: 100%;
	padding: 13px;
	background: #bd1426;
	border: none;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.25s;
	letter-spacing: 0.5px;
	margin-top: 8px;
}

.btn-login-submit:hover {
	background: #a60e1e;
}

.login-error {
	background: #c0392b;
	color: #fff;
	padding: 11px 14px;
	border-radius: 4px;
	margin-bottom: 20px;
	text-align: center;
	font-size: 14px;
}


body.admin-page {
	background-color: #121212;
	color: #e0e0e0;
	font-family: 'Segoe UI', Arial, sans-serif;
	margin: 0;
	padding: 20px;
}

.admin-wrapper {
	max-width: 1080px;
	margin: 0 auto;
}

.admin-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 30px;
	margin-bottom: 16px;
}

.admin-header h2,
.admin-section-title {
	color: #fff;
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0;
}

.admin-section-title {
	margin-top: 48px;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.badge-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #ce1126;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	min-width: 22px;
	height: 22px;
	border-radius: 11px;
	padding: 0 6px;
}

.admin-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: #1e1e1e;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
	border-radius: 0 0 12px 12px;
	overflow: hidden;
	border-top: 3px solid #ce1126;
	margin-bottom: 12px;
}

.admin-table th,
.admin-table td {
	padding: 14px 16px;
	border-bottom: 1px solid #2a2a2a;
	vertical-align: middle;
}

.admin-table thead th {
	background: #000;
	color: #ce1126;
	text-transform: uppercase;
	font-size: 0.78rem;
	letter-spacing: 1px;
	font-weight: 600;
}

.admin-table tbody tr:hover {
	background: #252525;
}

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

.admin-table img {
	border-radius: 8px;
	object-fit: cover;
	border: 1px solid #333;
	background: #000;
	display: block;
	place-self: center;
}

.col-action {
	white-space: nowrap;
	text-align: -webkit-right;
}

.empty-row {
	text-align: center;
	padding: 32px 16px !important;
	color: #666;
	font-style: italic;
}

.status-label {
	font-weight: 600;
	font-size: 13px;
}

.status-online {
	color: #28a745;
}

.status-offline {
	color: #666;
}

.rev-model-name {
	text-align: center;
	font-size: 12px;
	margin-top: 6px;
	color: #aaa;
}

.premium-model-name {
	color: #f00;
}

.star-col {
	color: #ffc107;
	font-size: 16px;
	letter-spacing: 1px;
}



.btn-admin {
	display: block;
	text-align: center;
	margin: 5px 0;
    width: 100px;
	padding: 8px 14px;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: opacity 0.2s;
	vertical-align: middle;
}

.btn-admin:hover {
	opacity: 0.85;
}

.btn-admin-logout {
	background: #dc3545;
}

.btn-admin-approve {
	background: #28a745;
}

.btn-admin-delete {
	background: #dc3545;
}

.form-toggle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.toggle-label {
	font-size: 13px;
	color: #aaa;
	min-width: 46px;
    display: block;
    margin: 10px;
	}

.toggle-switch {
	position: relative;
	display: inline-block;
	width: 52px;
	height: 26px;
	flex-shrink: 0;
	cursor: pointer;
}

.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
	position: absolute;
}

.toggle-slider {
	position: absolute;
	inset: 0;
	background-color: #444;
	border-radius: 26px;
	transition: background-color 0.25s;
}

.toggle-slider::before {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	left: 3px;
	top: 3px;
	background-color: #fff;
	border-radius: 50%;
	transition: transform 0.25s;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.toggle-switch input:checked+.toggle-slider {
	background-color: #28a745;
}

.toggle-switch input:checked+.toggle-slider::before {
	transform: translateX(26px);
}

.toggle-switch input:focus-visible+.toggle-slider {
	outline: 2px solid #fff;
	outline-offset: 2px;
}


.pagination {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}

.page-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	padding: 0 8px;
	background: #2a2a2a;
	color: #ccc;
	border-radius: 6px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	border: 1px solid #333;
	transition: background 0.2s, color 0.2s;
}

.page-btn:hover {
	background: #3a3a3a;
	color: #fff;
}

.page-btn.active {
	background: #ce1126;
	color: #fff;
	border-color: #ce1126;
	cursor: default;
	pointer-events: none;
}

.bold-text {
	font-weight: 500;
	display: inline;
	text-shadow: 0px 0px 4px #ffaa2b;
}

.status-live-badge-online {
	text-shadow: 1px 1px 7px #9dff00;
	padding-left: 14px;
	color: lightgreen;
}

.status-live-badge-offline {
	padding-left: 14px;
	color: darkgray;
}


.anfahrt-max-container {
    max-width: 950px;
    margin: 90px auto;
}
.anfahrt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}
.anfahrt-block {
    background: rgba(255, 255, 255, 0.03);
    border: 3px solid rgb(255 190 0);
	border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.anfahrt-block h3 {
    color: #fff;
    padding: 20px 20px 10px 20px;
    margin: 0;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.map-wrap {
    width: 100%;
    height: 350px;
    flex-grow: 1;
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
}
.street-image-wrap {
    width: 100%;
    height: 350px;
    flex-grow: 1;
    overflow: hi	filter: grayscale(0.3) sepia(0.3);
}
.street-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.route-btn-wrapper {
    text-align: center;
    margin: 35px 0;
}

.about-max-container {
    max-width: 850px;
    margin: 90px auto;
}
.about-text-block {
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 30px;
    text-align: justify;
}
.about-quote-box {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid #d4af37;
    padding: 25px;
    margin: 35px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}
.about-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 3px solid rgb(255 190 0);
    padding: 30px;
    border-radius: 8px;
}
.opening-hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
.opening-hours-table td {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}
.opening-hours-table td:last-child {
    text-align: right;
    font-weight: bold;
}

.impressum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}
.impressum-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgb(255 181 0 / 37%);
    padding: 30px;
    border-radius: 8px;
}
.impressum-legal-text {
    margin-top: 40px;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}
.legal-block {
    margin-bottom: 25px;
}
.legal-block h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* ── Rating Badge (کنار نام مدل) ── */
.model-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold, #d4af37);
    background: rgba(212, 175, 55, 0.10);
    border: 1px solid rgba(212, 175, 55, 0.30);
    border-radius: 20px;
    padding: 2px 10px;
    margin-top: 4px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    position: relative;
    top: -16px;
    left: -7px;
}

.model-rating-badge small {
    color: rgba(255,255,255,0.55);
    font-weight: 400;
}














@media (max-width: 900px) {
	.profile-luxury-grid {
		grid-template-columns: 1fr;
	}

	.gallery-hero-button img {
		height: min(62vh, 560px);
	}
}

@media (max-width: 768px) {
	.anfahrt-grid {
		grid-template-columns: 1fr;
	}

	.map-wrap, 
	.street-image-wrap {
		height: 300px;
	}

	.about-footer-grid {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 540px) {
	.header-tagline {
		font-size: 0.95rem;
		letter-spacing: 2px;
	}

	.section {
		padding: 52px 0;
	}

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

	.model-img-wrap {
		height: 310px;
	}

	.section-title {
		font-size: 1.5rem;
	}

	.about-content {
		flex-direction: column;
	}

	.about-address {
		width: 100%;
	}

	.hours-table td:first-child {
		width: 130px;
	}
	
	.gallery-grid-2col {
		grid-template-columns: 1fr;
	}

	.gallery-lightbox-nav {
		width: 48px;
		height: 48px;
	}

	.gallery-lightbox-close {
		width: 42px;
		height: 42px;
	}

	.loaded-reviews-container {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 380px) {
	.consent-box {
		padding: 32px 20px 28px;
	}

	.consent-box h2 {
		font-size: 1.5rem;
	}

	.logo-img {
		max-width: 92vw;
	}
}
