/**
 * Romantic Bangkok — Product archive & single product pages
 * reference/products.html · reference/product.html
 */

body.modal-open {
	overflow: hidden;
}

/* ==========================================================================
   ARCHIVE — Region hero & tabs
   ========================================================================== */

.region-hero {
	background: var(--rb-dark);
	padding: 52px 0 0;
	border-bottom: 1px solid rgba(var(--rb-gold-rgb), 0.15);
}

.rh-inner {
	max-width: var(--rb-container);
	margin: 0 auto;
	padding: 0 var(--rb-gutter);
}

.rh-eye {
	font-size: 10px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: rgba(var(--rb-gold-rgb), 0.55);
	margin-bottom: 14px;
}

.rh-title {
	font-family: var(--rb-font-serif);
	font-size: clamp(28px, 4vw, 52px);
	font-weight: 700;
	color: var(--rb-white);
	margin-bottom: 8px;
	letter-spacing: -0.01em;
	line-height: 1.15;
}

.rh-sub {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.35);
	margin-bottom: 36px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.region-tabs {
	display: flex;
	gap: 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	scrollbar-width: none;
}

.region-tabs::-webkit-scrollbar {
	display: none;
}

.region-tab {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 36px;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	transition: all 0.25s;
	white-space: nowrap;
	border: none;
	border-bottom: 2px solid transparent;
	background: none;
	font-family: var(--rb-font-serif);
	color: rgba(255, 255, 255, 0.38);
	gap: 5px;
	letter-spacing: 0.06em;
}

.region-tab:hover {
	color: rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.03);
}

.region-tab.on {
	color: var(--rb-gold);
	border-bottom-color: var(--rb-gold);
	background: rgba(var(--rb-gold-rgb), 0.05);
}

.rt-name {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rt-count {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.25);
	letter-spacing: 0.06em;
}

.region-tab.on .rt-count {
	color: rgba(var(--rb-gold-rgb), 0.5);
}

/* ==========================================================================
   ARCHIVE — Filter bar
   ========================================================================== */

.filter-bar {
	background: var(--rb-white);
	border-bottom: 1px solid var(--rb-border-light);
	position: sticky;
	top: var(--rb-nav-height, 80px);
	z-index: 100;
	box-shadow: var(--rb-shadow-sm);
}

.filter-inner {
	max-width: var(--rb-container);
	margin: 0 auto;
	padding: 0 var(--rb-gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px; /* 검수 3-2: 58 → 72 */
	gap: 16px;
}

.cat-filters {
	display: flex;
	gap: 4px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	flex: 1;
	scrollbar-width: none;
}

.cat-filters::-webkit-scrollbar {
	display: none;
}

.cat-btn {
	padding: 10px 22px; /* 검수 3-2: 7/18 → 10/22 */
	border: 1px solid var(--rb-border-light);
	border-radius: var(--rb-radius-xs);
	font-size: 12px;
	font-weight: 600;
	color: var(--rb-gray);
	cursor: pointer;
	background: var(--rb-white);
	font-family: var(--rb-font-serif);
	transition: all var(--rb-duration);
	white-space: nowrap;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.cat-btn:hover {
	border-color: var(--rb-gold);
	color: var(--rb-gold-dim);
}

.cat-btn.on {
	background: var(--rb-dark);
	border-color: var(--rb-dark);
	color: var(--rb-gold);
	font-weight: 700;
}

.sort-select {
	padding: 8px 32px 8px 14px;
	border: 1px solid var(--rb-border-light);
	border-radius: var(--rb-radius-xs);
	font-size: 12px;
	font-family: var(--rb-font-serif);
	color: var(--rb-text);
	background: var(--rb-white);
	outline: none;
	cursor: pointer;
	appearance: none;
	letter-spacing: 0.04em;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	flex-shrink: 0;
}

.sort-select:focus {
	border-color: var(--rb-gold);
}

.result-count {
	font-size: 11px;
	color: var(--rb-gray);
	flex-shrink: 0;
	white-space: nowrap;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* ==========================================================================
   ARCHIVE — Product grid & cards
   ========================================================================== */

.products-section {
	background: var(--rb-off-white);
	min-height: 60vh;
	padding: 36px 0 72px;
}

.products-inner {
	max-width: var(--rb-container);
	margin: 0 auto;
	padding: 0 var(--rb-gutter);
}

.prod-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.prod-card {
	background: var(--rb-white);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--rb-border-light);
	transition: all 0.25s;
	text-decoration: none;
	display: block;
	color: inherit;
	cursor: pointer;
}

.prod-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
	border-color: rgba(var(--rb-gold-rgb), 0.3);
}

.prod-card.hidden {
	display: none;
}

.pc-thumb {
	width: 100%;
	aspect-ratio: 3 / 2;
	position: relative;
	overflow: hidden;
}

.pc-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.prod-card:hover .pc-thumb img {
	transform: scale(1.05);
}

.pc-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 55%);
}

.pc-badges {
	position: absolute;
	top: 12px;
	left: 12px;
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.pc-badge {
	font-size: 10px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: var(--rb-radius-xs);
	letter-spacing: 0.04em;
}

.badge-hot {
	background: #e74c3c;
	color: var(--rb-white);
}

.badge-new {
	background: var(--rb-dark);
	color: var(--rb-gold);
	border: 1px solid rgba(var(--rb-gold-rgb), 0.4);
}

.badge-best {
	background: var(--rb-gold);
	color: var(--rb-dark);
}

.badge-rec {
	background: rgba(255, 255, 255, 0.92);
	color: var(--rb-dark);
}

.pc-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 12px 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.pc-duration {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 600;
	background: rgba(0, 0, 0, 0.45);
	padding: 3px 8px;
	border-radius: var(--rb-radius-xs);
}

.pc-rating {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	color: var(--rb-gold-light);
	font-weight: 600;
}
.pc-rating .fa-star {
	font-size: 10px;
	line-height: 1;
}

.pc-body {
	padding: 18px 16px;
}

.pc-cat {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rb-gold);
	margin-bottom: 6px;
}

.pc-name {
	font-family: var(--rb-font-serif);
	font-size: 16px;
	font-weight: 700;
	color: var(--rb-text);
	line-height: 1.35;
	margin-bottom: 6px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.pc-desc {
	font-size: 12.5px;
	color: var(--rb-text-sub);
	line-height: 1.65;
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.pc-includes {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 14px;
}

.pc-inc {
	font-size: 11px;
	background: var(--rb-gray-bg);
	color: var(--rb-gray);
	padding: 2px 7px;
	border-radius: var(--rb-radius-xs);
}

.pc-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 12px;
	border-top: 1px solid var(--rb-border-light);
	gap: 12px;
}

.pc-price-wrap {
	min-width: 0;
}

.pc-price-label {
	font-size: 10px;
	color: var(--rb-gray);
	margin-bottom: 2px;
}

.pc-price {
	font-family: var(--rb-font-serif);
	font-size: 18px;
	font-weight: 700;
	color: var(--rb-text);
}

.pc-price-unit {
	font-size: 11px;
	color: var(--rb-gray);
	font-weight: 400;
}

.pc-btn {
	background: var(--rb-dark);
	color: var(--rb-white);
	padding: 9px 16px;
	border-radius: var(--rb-radius-sm);
	font-size: 12px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	font-family: var(--rb-font-sans);
	transition: all var(--rb-duration);
	text-decoration: none;
	display: inline-block;
	flex-shrink: 0;
	white-space: nowrap;
}

.prod-card:hover .pc-btn,
.pc-btn:hover {
	background: var(--rb-gold);
	color: var(--rb-dark);
}

.no-result {
	text-align: center;
	padding: 64px 0;
	color: var(--rb-gray);
}

.no-result-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	color: var(--rb-gold);
	opacity: 0.45;
	line-height: 1;
}
.no-result-icon .rb-icon {
	width: 40px;
	height: 40px;
}

.no-result-text {
	font-size: 16px;
	font-family: var(--rb-font-serif);
}

.no-result-sub {
	font-size: 13px;
	margin-top: 8px;
	line-height: 1.7;
}

.no-result-sub a {
	color: var(--rb-gold);
	font-weight: 600;
}

/* ==========================================================================
   SINGLE — Back link (hero overlay)
   ========================================================================== */

.product-back {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 12;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.92);
	text-decoration: none;
	background: rgba(0, 0, 0, 0.42);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 4px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition:
		color var(--rb-duration),
		background var(--rb-duration),
		border-color var(--rb-duration);
}

.product-back .rb-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.product-back:hover,
.product-back:focus-visible {
	color: var(--rb-gold);
	background: rgba(0, 0, 0, 0.58);
	border-color: rgba(var(--rb-gold-rgb), 0.45);
	outline: none;
}

.pc-thumb-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
}

/* ==========================================================================
   SINGLE — Hero slider
   ========================================================================== */

.slider-section {
	position: relative;
	height: 520px;
	overflow: hidden;
	background: var(--rb-dark);
}

.slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.9s ease;
	background-size: cover;
	background-position: center;
}

.slide.on {
	opacity: 1;
}

.slide-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.12) 28%, rgba(0, 0, 0, 0.45) 100%);
	pointer-events: none;
	z-index: 2;
}

.slide-prev,
.slide-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 48px;
	height: 48px;
	border-radius: var(--rb-radius-full);
	background: rgba(0, 0, 0, 0.45);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--rb-white);
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--rb-duration);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	line-height: 1;
	padding: 0;
}

.slide-prev .rb-icon,
.slide-next .rb-icon {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

.slide-prev {
	left: 20px;
}

.slide-next {
	right: 20px;
}

.slide-prev:hover,
.slide-next:hover {
	background: rgba(var(--rb-gold-rgb), 0.7);
	border-color: var(--rb-gold);
}

.slide-dots {
	position: absolute;
	bottom: 18px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: var(--rb-radius-full);
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	transition: all var(--rb-duration);
	border: none;
	padding: 0;
}

.dot.on {
	background: var(--rb-gold);
	transform: scale(1.25);
}

.slide-caption {
	position: absolute;
	bottom: 48px;
	left: 52px;
	z-index: 5;
	color: var(--rb-white);
	pointer-events: none;
}

.slide-caption-tag {
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--rb-gold);
	margin-bottom: 6px;
}

.slide-caption-name {
	font-family: var(--rb-font-serif);
	font-size: 26px;
	font-weight: 700;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
	line-height: 1.2;
}

.slide-caption-sub {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.65);
	margin-top: 4px;
}

/* ==========================================================================
   SINGLE — Info strip
   ========================================================================== */

.strip {
	background: var(--rb-dark-2);
	border-bottom: 1px solid rgba(var(--rb-gold-rgb), 0.12);
	display: flex;
	justify-content: center;
}

.strip-inner {
	display: flex;
	max-width: 1100px;
	width: 100%;
}

.strip-item {
	flex: 1;
	padding: 18px 20px;
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, 0.06);
	min-width: 0;
}

.strip-item:last-child {
	border-right: none;
}

.strip-icon {
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--rb-gold);
}

.strip-icon .rb-icon {
	width: 18px;
	height: 18px;
	color: var(--rb-gold);
}

.strip-label {
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.3);
	margin-bottom: 3px;
	display: block;
}

.strip-val {
	font-size: 13px;
	font-weight: 600;
	color: var(--rb-white);
}

.strip-sub {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.35);
	margin-top: 1px;
	display: block;
}

/* ==========================================================================
   SINGLE — Page layout & section headers
   ========================================================================== */

/* 섹션 구분선 — charter-bus.css `.charter-bus-page .gold-div` 와 동일 시각 */
.gold-div {
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(var(--rb-gold-rgb), 0.3), transparent);
}

.page-wrap {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 var(--rb-gutter);
}

section.hl-section,
section.itin-section,
section.inc-section,
section.video-section,
section.blog-section.product-related-blog {
	padding: 72px 0;
}

.sec-eye {
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--rb-gold);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 9px;
}

.sec-eye::after {
	content: "";
	width: 22px;
	height: 1px;
	background: var(--rb-gold);
	opacity: 0.45;
	display: block;
}

.sec-title {
	font-family: var(--rb-font-serif);
	font-size: clamp(22px, 2.8vw, 34px);
	font-weight: 700;
	color: var(--rb-text);
	margin-bottom: 10px;
	line-height: 1.25;
}

.sec-sub {
	font-size: 14.5px;
	color: var(--rb-text-sub);
	line-height: 1.85;
}

/* ==========================================================================
   SINGLE — Highlights
   ========================================================================== */

.hl-section {
	background: var(--rb-white);
}

.hl-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 36px;
}

.hl-card {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 20px;
	border: 1px solid var(--rb-border-light);
	border-radius: var(--rb-radius-xl);
	transition: all var(--rb-duration);
}

.hl-card:hover {
	border-color: var(--rb-gold);
	box-shadow: var(--rb-shadow-lg);
}

.hl-icon {
	flex-shrink: 0;
	margin-top: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--rb-dark);
}

.hl-icon .rb-icon {
	width: 22px;
	height: 22px;
	color: var(--rb-dark);
}

.hl-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--rb-text);
	margin-bottom: 4px;
}

.hl-desc {
	font-size: 12.5px;
	color: var(--rb-gray);
	line-height: 1.7;
}

/* ==========================================================================
   SINGLE — Itinerary
   ========================================================================== */

.itin-section {
	background: var(--rb-off-white);
}

.itin-wrap {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 36px;
	align-items: start;
}

.day-tabs {
	display: flex;
	gap: 0;
	border: 1px solid var(--rb-border-light);
	border-radius: var(--rb-radius-lg);
	overflow: hidden;
	margin-bottom: 28px;
	background: var(--rb-white);
}

.day-tab {
	flex: 1;
	padding: 11px 8px;
	text-align: center;
	cursor: pointer;
	font-size: 12.5px;
	font-weight: 500;
	color: var(--rb-gray);
	transition: all var(--rb-duration);
	border-right: 1px solid var(--rb-border-light);
	background: none;
	border-top: none;
	border-bottom: none;
	border-left: none;
	font-family: var(--rb-font-sans);
	line-height: 1.35;
}

.day-tab:last-child {
	border-right: none;
}

.day-tab.on {
	background: var(--rb-dark);
	color: var(--rb-gold);
	font-weight: 600;
}

.day-tab:hover:not(.on) {
	background: var(--rb-gray-bg);
	color: var(--rb-text);
}

.day-panel {
	display: none;
}

.day-panel.on {
	display: block;
}

.day-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--rb-border-light);
}

.day-num {
	background: var(--rb-dark);
	color: var(--rb-gold);
	font-family: var(--rb-font-serif);
	font-size: 13px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: var(--rb-radius-xs);
	letter-spacing: 0.06em;
	flex-shrink: 0;
}

.day-title {
	font-family: var(--rb-font-serif);
	font-size: 19px;
	font-weight: 700;
	color: var(--rb-text);
	line-height: 1.2;
}

.day-subtitle {
	font-size: 12px;
	color: var(--rb-gray);
	margin-top: 3px;
}

.timeline {
	padding-left: 24px;
	position: relative;
}

.timeline::before {
	content: "";
	position: absolute;
	left: 6px;
	top: 8px;
	bottom: 8px;
	width: 1px;
	background: var(--rb-border-light);
	transform: translateX(-50%);
}

.tl {
	position: relative;
	margin-bottom: 20px;
}

.tl:last-child {
	margin-bottom: 0;
}

.tl-dot {
	position: absolute;
	/* padding-left(24) − 점 반지름(6) → 중심이 세로선(6px)과 일치 */
	left: -24px;
	top: 5px;
	width: 12px;
	height: 12px;
	border-radius: var(--rb-radius-full);
	background: var(--rb-itin-slot-1);
	border: 2px solid var(--rb-white);
	box-shadow: 0 0 0 1px var(--rb-itin-slot-1);
}

.tl-dot--slot-1 {
	background: var(--rb-itin-slot-1);
	box-shadow: 0 0 0 1px var(--rb-itin-slot-1);
}

.tl-dot--slot-2 {
	background: var(--rb-itin-slot-2);
	box-shadow: 0 0 0 1px var(--rb-itin-slot-2);
}

.tl-dot--slot-3 {
	background: var(--rb-itin-slot-3);
	box-shadow: 0 0 0 1px var(--rb-itin-slot-3);
}

.tl-dot--slot-4 {
	background: var(--rb-itin-slot-4);
	box-shadow: 0 0 0 1px var(--rb-itin-slot-4);
}

.tl-time {
	font-size: 10px;
	font-weight: 700;
	color: var(--rb-itin-slot-1);
	letter-spacing: 0.06em;
	margin-bottom: 3px;
	display: block;
}

.tl-time--slot-1 {
	color: var(--rb-itin-slot-1);
}

.tl-time--slot-2 {
	color: var(--rb-itin-slot-2);
}

.tl-time--slot-3 {
	color: var(--rb-itin-slot-3);
}

.tl-time--slot-4 {
	color: var(--rb-itin-slot-4);
}

.tl-name {
	font-size: 14px;
	font-weight: 600;
	color: var(--rb-text);
	margin-bottom: 3px;
}

.tl-desc {
	font-size: 13px;
	color: var(--rb-gray);
	line-height: 1.7;
}

.tl-tip {
	margin-top: 7px;
	padding: 7px 11px;
	background: var(--rb-gold-pale);
	border-left: 2px solid var(--rb-gold);
	border-radius: 0 var(--rb-radius-sm) var(--rb-radius-sm) 0;
	font-size: 11.5px;
	color: #7a5c00;
	line-height: 1.65;
}

.day-summary {
	background: var(--rb-white);
	border: 1px solid var(--rb-border-light);
	border-radius: var(--rb-radius-lg);
	padding: 14px 16px;
	margin-top: 20px;
}

.ds-title {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rb-gray);
	margin-bottom: 10px;
}

.ds-row {
	display: flex;
	justify-content: space-between;
	font-size: 12.5px;
	padding: 5px 0;
	border-bottom: 1px solid var(--rb-border-light);
	gap: 12px;
}

.ds-row:last-child {
	border-bottom: none;
}

.ds-label {
	color: var(--rb-gray);
	flex-shrink: 0;
}

.ds-val {
	font-weight: 500;
	color: var(--rb-text);
	text-align: right;
}

/* ==========================================================================
   SINGLE — Inline & full-width video
   ========================================================================== */

.inline-video-wrap {
	margin: 24px auto 28px;
	max-width: 640px;
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: 12px;
	overflow: hidden;
	background: var(--rb-dark);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(var(--rb-gold-rgb), 0.12);
}

.inline-video-wrap iframe,
.inline-video-wrap video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.inline-video-wrap video {
	object-fit: contain;
	background: #000;
}

.inline-video-placeholder {
	position: absolute;
	inset: 0;
	cursor: pointer;
}

.inline-video-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.4s ease;
}

.inline-video-placeholder:hover .inline-video-bg {
	transform: scale(1.03);
}

.inline-video-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.15) 100%);
}

.inline-video-inner {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.inline-play-btn {
	width: 52px;
	height: 52px;
	border-radius: var(--rb-radius-full);
	background: rgba(var(--rb-gold-rgb), 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: var(--rb-dark);
	box-shadow: 0 4px 18px rgba(var(--rb-gold-rgb), 0.45);
	transition: all var(--rb-duration);
}

.inline-play-btn .rb-icon {
	width: 22px;
	height: 22px;
	margin-left: 2px;
	flex-shrink: 0;
}

.inline-video-placeholder:hover .inline-play-btn {
	transform: scale(1.1);
	background: var(--rb-gold-light);
}

.inline-video-title {
	font-family: var(--rb-font-serif);
	font-size: 15px;
	font-weight: 700;
	color: var(--rb-white);
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.inline-video-sub {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.45);
}

.video-section {
	background: var(--rb-dark-2);
}

.video-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 14px;
	overflow: hidden;
	background: var(--rb-dark);
	box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(var(--rb-gold-rgb), 0.15);
	margin-bottom: 32px;
}

.video-wrap iframe,
.video-wrap video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
	object-fit: cover;
}

.video-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #0d0d0d 0%, #1a1208 50%, #0d0d0d 100%);
	cursor: pointer;
}

.video-placeholder::before {
	content: "";
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	opacity: 0.25;
}

.video-play-icon {
	position: relative;
	z-index: 1;
	width: 80px;
	height: 80px;
	border-radius: var(--rb-radius-full);
	background: rgba(var(--rb-gold-rgb), 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: var(--rb-dark);
	margin-bottom: 20px;
	box-shadow: 0 4px 32px rgba(var(--rb-gold-rgb), 0.4);
	transition: all var(--rb-duration);
}

.video-placeholder:hover .video-play-icon {
	transform: scale(1.1);
	background: var(--rb-gold-light);
}

.video-placeholder-text {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 0 var(--rb-gutter);
}

.video-placeholder-title {
	font-family: var(--rb-font-serif);
	font-size: 22px;
	font-weight: 700;
	color: var(--rb-white);
	margin-bottom: 8px;
}

.video-placeholder-sub {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
}

/* ==========================================================================
   SINGLE — Booking card (sticky sidebar)
   ========================================================================== */

.booking-card {
	background: var(--rb-white);
	border: 1.5px solid var(--rb-border-light);
	border-radius: 12px;
	overflow: hidden;
	position: sticky;
	top: calc(var(--rb-nav-height, 80px) + 16px);
}

.bc-head {
	background: var(--rb-dark);
	padding: 20px 22px;
}

.bc-price {
	font-family: var(--rb-font-serif);
	font-size: 28px;
	color: var(--rb-gold);
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

.bc-price-unit {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 4px;
}

.bc-body {
	padding: 20px 22px;
}

.bc-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--rb-gray);
	margin-bottom: 5px;
	margin-top: 12px;
	display: block;
}

.bc-label:first-child {
	margin-top: 0;
}

.bc-input {
	width: 100%;
	padding: 10px 12px;
	border: 1.5px solid var(--rb-border-light);
	border-radius: var(--rb-radius-md);
	font-size: 13px;
	font-family: var(--rb-font-sans);
	color: var(--rb-text);
	outline: none;
	appearance: none;
	background: var(--rb-white);
	transition: border-color var(--rb-duration), box-shadow var(--rb-duration);
}

.bc-input:focus {
	border-color: var(--rb-gold);
	box-shadow: 0 0 0 2px rgba(var(--rb-gold-rgb), 0.1);
}

select.bc-input {
	padding-right: 34px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888888'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	cursor: pointer;
}

.bc-row2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.bc-divider {
	height: 1px;
	background: var(--rb-border-light);
	margin: 16px 0;
}

.bc-btn-main {
	width: 100%;
	background: var(--rb-dark);
	color: var(--rb-white);
	padding: 14px;
	border: none;
	border-radius: var(--rb-radius-md);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	font-family: var(--rb-font-sans);
	transition: all var(--rb-duration);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	letter-spacing: 0.03em;
	text-decoration: none;
}

.bc-btn-main .rb-icon {
	width: 15px;
	height: 15px;
	flex-shrink: 0;
}

.bc-btn-main:hover {
	background: var(--rb-dark-3);
}

.bc-btn-kakao {
	width: 100%;
	background: var(--rb-kakao);
	color: var(--rb-kakao-text);
	padding: 12px;
	border: none;
	border-radius: var(--rb-radius-md);
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	font-family: var(--rb-font-sans);
	transition: all var(--rb-duration);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin-top: 8px;
	text-decoration: none;
}

.bc-btn-kakao .rb-kakao-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.bc-btn-kakao:hover {
	background: #ffe500;
}

.bc-note {
	font-size: 11px;
	color: var(--rb-gray);
	text-align: center;
	margin-top: 10px;
	line-height: 1.65;
}

.bc-include {
	font-size: 12px;
	color: var(--rb-text-sub);
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--rb-border-light);
	list-style: none;
}

.bc-include li {
	padding: 3px 0;
	display: flex;
	align-items: flex-start;
	gap: 6px;
	line-height: 1.65;
}

.bc-include .rb-icon {
	width: 12px;
	height: 12px;
	color: var(--rb-gold);
	flex-shrink: 0;
	margin-top: 4px;
}

.quote-basis {
	font-size: 11px;
	color: var(--rb-gray);
	text-align: center;
	margin-top: 6px;
	line-height: 1.65;
}

/* ==========================================================================
   SINGLE — Includes / excludes
   ========================================================================== */

.inc-section {
	background: var(--rb-dark);
}

.inc-section .sec-eye {
	color: rgba(255, 255, 255, 0.35);
}

.inc-section .sec-title {
	color: var(--rb-white);
}

.inc-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 36px;
}

.inc-col-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.inc-col-title .rb-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.inc-yes .inc-col-title {
	color: rgba(100, 220, 140, 0.85);
}

.inc-no .inc-col-title {
	color: rgba(220, 100, 100, 0.75);
}

.inc-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.inc-list li {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.65);
	display: flex;
	align-items: flex-start;
	gap: 9px;
	line-height: 1.6;
}

.inc-list .rb-icon {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	margin-top: 2px;
}

.inc-yes .inc-list .rb-icon {
	color: rgba(100, 220, 140, 0.85);
}

.inc-no .inc-list li {
	color: rgba(255, 255, 255, 0.38);
}

.inc-no .inc-list .rb-icon {
	color: rgba(220, 100, 100, 0.7);
}

/* ==========================================================================
   SINGLE — CTA section
   ========================================================================== */

.cta-section {
	background: var(--rb-dark);
	padding: 72px 0;
	text-align: center;
	border-top: 2px solid var(--rb-gold);
}

.cta-title {
	font-family: var(--rb-font-serif);
	font-size: clamp(22px, 3vw, 38px);
	color: var(--rb-white);
	font-weight: 700;
	margin-bottom: 10px;
}

.cta-sub {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 32px;
	line-height: 1.8;
}

.cta-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-gold-lg {
	background: var(--rb-gold);
	color: var(--rb-dark);
	padding: 16px 36px;
	border-radius: var(--rb-radius-sm);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: all var(--rb-duration);
	display: inline-flex;
	align-items: center;
	gap: 9px;
	border: none;
	cursor: pointer;
	font-family: var(--rb-font-sans);
}

.btn-gold-lg .rb-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

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

.btn-kakao-lg {
	background: var(--rb-kakao);
	color: var(--rb-kakao-text);
	padding: 16px 36px;
	border-radius: var(--rb-radius-sm);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: all var(--rb-duration);
	display: inline-flex;
	align-items: center;
	gap: 9px;
	border: none;
	cursor: pointer;
	font-family: var(--rb-font-sans);
}

.btn-kakao-lg .rb-kakao-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.btn-kakao-lg:hover {
	background: #ffe500;
	transform: translateY(-1px);
}

/* ==========================================================================
   SINGLE — Booking modal
   ========================================================================== */

.modal-bg {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 500;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.modal-bg.open {
	display: flex;
}

.modal {
	background: var(--rb-white);
	border-radius: 14px;
	max-width: 560px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
}

.modal-head {
	background: var(--rb-dark);
	padding: 20px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: sticky;
	top: 0;
	z-index: 1;
}

.modal-title {
	font-family: var(--rb-font-serif);
	font-size: 17px;
	color: var(--rb-white);
	font-weight: 700;
}

.modal-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	background: none;
	border: none;
	line-height: 1;
	transition: color var(--rb-duration);
	padding: 0;
}

.modal-close .rb-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.modal-close:hover {
	color: var(--rb-white);
}

.modal-body {
	padding: 24px;
}

.modal-foot {
	padding: 0 24px 24px;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.modal-btn-main {
	width: 100%;
	background: var(--rb-dark);
	color: var(--rb-white);
	padding: 14px;
	border: none;
	border-radius: var(--rb-radius-md);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	font-family: var(--rb-font-sans);
	transition: all var(--rb-duration);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.modal-btn-main .rb-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.modal-btn-main:hover {
	background: var(--rb-dark-3);
}

.modal-btn-kakao {
	width: 100%;
	background: var(--rb-kakao);
	color: var(--rb-kakao-text);
	padding: 13px;
	border: none;
	border-radius: var(--rb-radius-md);
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	font-family: var(--rb-font-sans);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	text-decoration: none;
}

.modal-btn-kakao .rb-kakao-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.modal-note {
	font-size: 11px;
	color: var(--rb-gray);
	text-align: center;
	line-height: 1.65;
	word-break: keep-all;
}

.modal-divider {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rb-gray);
	padding: 10px 0 6px;
	border-top: 1px solid var(--rb-border-light);
	margin-top: 4px;
}

.form-row2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.fg {
	margin-bottom: 14px;
}

.fg label {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--rb-gray);
	margin-bottom: 5px;
}

.fg input,
.fg select,
.fg textarea {
	width: 100%;
	padding: 11px 13px;
	border: 1.5px solid var(--rb-border-light);
	border-radius: var(--rb-radius-md);
	font-size: 13px;
	font-family: var(--rb-font-sans);
	color: var(--rb-text);
	background: var(--rb-white);
	transition: border-color var(--rb-duration), box-shadow var(--rb-duration);
	outline: none;
	appearance: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
	border-color: var(--rb-gold);
	box-shadow: 0 0 0 3px rgba(var(--rb-gold-rgb), 0.1);
}

.fg textarea {
	resize: vertical;
	min-height: 80px;
	line-height: 1.6;
}

.fg select {
	padding-right: 34px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888888'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	cursor: pointer;
}

.checkbox-row {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 9px;
}

.checkbox-row input {
	width: 15px;
	height: 15px;
	accent-color: var(--rb-gold);
	cursor: pointer;
	flex-shrink: 0;
	margin-top: 2px;
}

.checkbox-row label {
	font-size: 13px;
	color: var(--rb-text);
	cursor: pointer;
	line-height: 1.4;
	display: inline-flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 6px;
}

.checkbox-row label .rb-icon {
	width: 14px;
	height: 14px;
	margin-top: 2px;
	flex-shrink: 0;
	color: var(--rb-gold);
}

.checkbox-row label a {
	color: var(--rb-gold-dim);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.form-alert {
	display: none;
	margin-bottom: 14px;
	padding: 12px 14px;
	background: var(--rb-red-bg);
	border: 1px solid rgba(220, 38, 38, 0.25);
	border-left: 3px solid var(--rb-red);
	border-radius: var(--rb-radius-md);
	font-size: 13px;
	color: var(--rb-red);
	line-height: 1.5;
}

/* is-visible 또는 BEM modifier(--success/--error)가 있으면 표시.
 * 상품/전세버스 페이지는 PHP에서 --success/--error만 붙였고 is-visible이 없어
 * 성공 알림이 display:none 으로 안 보이던 문제를 함께 해소한다. */
.form-alert.is-visible,
.form-alert--success,
.form-alert--error {
	display: block;
}

.form-alert--success {
	background: var(--rb-green-bg, rgba(22, 163, 74, 0.1));
	border-color: rgba(22, 163, 74, 0.25);
	border-left-color: var(--rb-green, #16a34a);
	color: var(--rb-green, #16a34a);
}

.form-alert--error {
	background: var(--rb-red-bg);
	border-color: rgba(220, 38, 38, 0.25);
	border-left-color: var(--rb-red);
	color: var(--rb-red);
}

/* ==========================================================================
   Responsive — 900px
   ========================================================================== */

@media (max-width: 900px) {
	.rh-inner,
	.filter-inner,
	.products-inner {
		padding-left: 20px;
		padding-right: 20px;
	}

	.prod-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.region-tab {
		padding: 14px 18px;
	}

	.page-wrap {
		padding-left: 20px;
		padding-right: 20px;
	}

	.itin-wrap {
		grid-template-columns: 1fr;
	}

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

	.inc-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.strip-inner {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.strip-item {
		min-width: 120px;
		flex: 0 0 auto;
	}

	.slide-caption {
		left: 20px;
		bottom: 40px;
	}

	.product-back {
		top: 14px;
		left: 14px;
		padding: 7px 12px;
		font-size: 12px;
	}

	.slide-caption-name {
		font-size: 22px;
	}

	.booking-card {
		position: static;
	}

	.form-row2 {
		grid-template-columns: 1fr;
	}

	.slider-section {
		height: 420px;
	}

	/* 모바일 터치 타겟 확보(44px+) + iOS 자동 확대 방지(16px 미만 입력폰트 시 확대됨) */
	.fg input,
	.fg select,
	.fg textarea,
	.bc-input,
	.sort-select {
		min-height: 44px;
		font-size: 16px;
	}
}

/* ==========================================================================
   Responsive — 600px
   ========================================================================== */

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

	.filter-inner {
		flex-wrap: wrap;
		height: auto;
		padding-top: 10px;
		padding-bottom: 10px;
		gap: 8px;
	}

	.sort-select,
	.result-count {
		width: 100%;
	}

	.rh-title {
		font-size: 26px;
	}

	.rh-sub {
		margin-bottom: 24px;
		font-size: 12px;
	}

	.slider-section {
		height: 320px;
	}

	.slide-prev,
	.slide-next {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.slide-prev {
		left: 12px;
	}

	.slide-next {
		right: 12px;
	}

	.slide-caption-name {
		font-size: 18px;
	}

	.bc-row2 {
		grid-template-columns: 1fr;
	}

	.cta-btns {
		flex-direction: column;
		align-items: stretch;
	}

	.btn-gold-lg,
	.btn-kakao-lg {
		justify-content: center;
	}
}
