:root {
	--bg: #f3f6fb;
	--surface: #ffffff;
	--text: #0f172a;
	--muted: #64748b;
	--border: #e2e8f0;
	--primary: #e11d48;
	--primary-hover: #be123c;
	--shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
	--radius: 14px;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	font-family: 'Inter', sans-serif;
	color: var(--text);
	background: var(--bg);
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: min(1140px, calc(100% - 2rem));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border);
}

.header-inner {
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.logo {
	font-size: 1.3rem;
	font-weight: 800;
	color: #0f172a;
}

.main-nav {
	display: flex;
	gap: 1.1rem;
	color: #334155;
	font-weight: 500;
}

.main-nav a:hover {
	color: var(--primary);
}

.header-actions {
	display: flex;
	gap: 0.5rem;
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--border);
	border-radius: 10px;
	background: #fff;
	color: #334155;
	font-size: 1.2rem;
	cursor: pointer;
}

.menu-close {
	display: none;
}

.menu-toggle.active .menu-open {
	display: none;
}

.menu-toggle.active .menu-close {
	display: inline;
}

.mobile-menu {
	display: none;
}

.btn {
	border: none;
	border-radius: 10px;
	height: 40px;
	padding: 0 1rem;
	background: var(--primary);
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	transition: 0.2s ease;
}

.btn:hover {
	background: var(--primary-hover);
}

.btn-ghost {
	background: #fff;
	color: #334155;
	border: 1px solid var(--border);
}

.btn-ghost:hover {
	background: #f8fafc;
}

.main-home {
	position: relative;
	padding: 2rem 0 50px;
	background-image: url('https://images.unsplash.com/photo-1460317442991-0ec209397118?auto=format&fit=crop&w=2200&q=80');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: auto;
}

.main-home::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(248, 250, 252, 0.78) 0%, rgba(248, 250, 252, 0.92) 100%);
	z-index: 0;
}

.main-home > * {
	position: relative;
	z-index: 1;
}

.search-hub {
	display: flex;
	justify-content: center;
	margin-top: 0.4rem;
	margin-bottom: 1.4rem;
}

.center-search-form {
	width: min(980px, 100%);
	background: #fff;
	border: 1px solid #111827;
	border-radius: 6px;
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.search-cell {
	display: flex;
	align-items: center;
	padding: 0 1rem;
	gap: 0.55rem;
	min-height: 60px;
	background: #fff;
}

.search-cell + .search-cell {
	border-left: 1px solid #e5e7eb;
}

.search-cell input {
	width: 100%;
	border: 0;
	font-size: 1.02rem;
	color: #374151;
	outline: none;
}

.search-cell-icon {
	font-size: 1.45rem;
	color: #111827;
	line-height: 1;
	flex-shrink: 0;
}

.center-date-trigger {
	height: auto;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	font-size: 1.02rem;
	color: #6b7280;
	width: 100%;
}

.center-date-trigger:focus {
	outline: none;
	border: 0;
}

.main-search-btn {
	margin: 14px;
	height: 36px;
	padding: 0 1.1rem;
	border-radius: 6px;
	border: 0;
	background: #000;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.housing-types {
	margin-top: 1.1rem;
	margin-bottom: 0;
	padding-bottom: 0;
}

.type-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.8rem;
}

.type-card {
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 10px;
	min-height: 220px;
	padding: 1.2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}

.type-card h3 {
	margin: 0;
	font-size: 1.12rem;
	font-weight: 800;
}

.type-card p {
	margin: 0.9rem 0 0;
	font-size: 0.96rem;
	line-height: 1.45;
	color: #374151;
}

.type-icon {
	text-align: right;
	font-size: 2.4rem;
	line-height: 1;
	opacity: 0.9;
}

/* Featured Properties */
.featured-properties {
	background: #fff;
	padding: 0 0 3rem;
	margin-top: 30px;
}

.featured-properties .container {
	width: min(1140px, calc(100% - 2rem));
	margin: 0 auto;
}

.featured-title {
	margin: 0 0 1.2rem;
	font-size: 1.9rem;
	font-weight: 800;
	color: #0f172a;
}

.featured-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2rem;
	align-items: center;
}

.badge-item {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.92rem;
	color: #475569;
	font-weight: 500;
}

.badge-icon {
	font-size: 1.1rem;
}

.property-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.property-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
	transition: transform 0.2s, box-shadow 0.2s;
	cursor: pointer;
	display: block;
	text-decoration: none;
	color: inherit;
}

.property-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.property-image {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.property-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.discount-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: #dc2626;
	color: #fff;
	padding: 0.3rem 0.7rem;
	border-radius: 6px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.location-badge {
	position: absolute;
	bottom: 12px;
	left: 12px;
	background: rgba(15, 23, 42, 0.75);
	backdrop-filter: blur(4px);
	color: #fff;
	padding: 0.35rem 0.65rem;
	border-radius: 6px;
	font-size: 0.8rem;
	font-weight: 500;
}

.property-info {
	padding: 1.1rem;
}

.property-info h3 {
	margin: 0 0 0.4rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.3;
}

.property-address {
	margin: 0 0 0.9rem;
	font-size: 0.86rem;
	color: #64748b;
	line-height: 1.4;
}

.property-footer {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	border-top: 1px solid #f1f5f9;
	padding-top: 0.9rem;
}

.property-price {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.price-label {
	font-size: 0.75rem;
	color: #94a3b8;
	font-weight: 500;
}

.property-price strong {
	font-size: 1.18rem;
	font-weight: 800;
	color: #0f172a;
}

.property-rating {
	font-size: 0.88rem;
	font-weight: 600;
	color: #1e293b;
	background: #fef3c7;
	padding: 0.25rem 0.6rem;
	border-radius: 6px;
}

/* Date Range Modal */
.date-range-trigger {
	width: 100%;
	height: 48px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: #fff;
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0 0.9rem;
	color: #334155;
	font-size: 0.95rem;
	text-align: left;
	cursor: pointer;
}

.date-range-trigger:focus {
	border-color: #fda4af;
	outline: 3px solid #ffe4e6;
}

.date-range-icon {
	font-size: 1rem;
}

.date-range-modal {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.38);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1.2rem;
	z-index: 60;
}

.date-range-modal.active {
	display: flex;
}

.date-range-dialog {
	width: min(900px, 100%);
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16);
}

.calendar-pane,
.duration-pane {
	padding: 1.35rem 1.45rem;
}

.calendar-pane {
	border-right: 1px solid var(--border);
}

.calendar-pane h3,
.duration-pane h3 {
	margin: 0 0 1rem;
	font-size: 1.88rem;
	line-height: 1.25;
}

.calendar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.85rem;
}

.calendar-header strong {
	font-size: 1.1rem;
	font-weight: 800;
}

.calendar-nav {
	display: flex;
	gap: 0.45rem;
}

.calendar-nav button {
	width: 34px;
	height: 34px;
	border-radius: 999px;
	border: 1px solid #d1d5db;
	background: #fff;
	font-size: 1.3rem;
	line-height: 1;
	cursor: pointer;
	color: #374151;
}

.calendar-weekdays {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 0.2rem;
	margin-bottom: 0.2rem;
	font-size: 0.86rem;
	font-weight: 600;
	color: #9ca3af;
	text-align: center;
}

.calendar-weekdays span:first-child {
	color: #ef4444;
}

.calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 0.2rem;
}

.calendar-empty {
	height: 40px;
}

.calendar-day {
	height: 40px;
	border: 0;
	background: transparent;
	border-radius: 999px;
	font-size: 1.22rem;
	cursor: pointer;
	color: #111827;
	position: relative;
	z-index: 1;
}

.calendar-day.in-range {
	background: #f1f5f9;
	border-radius: 10px;
}

.calendar-day.selected,
.calendar-day.checkout {
	background: #111827;
	color: #fff;
	font-weight: 700;
}

.duration-pane {
	position: relative;
	background: #f6f4fa;
}

.date-modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	border: 0;
	background: transparent;
	font-size: 1.45rem;
	color: #374151;
	cursor: pointer;
}

.duration-base {
	margin: 0 0 0.9rem;
	font-size: 1.02rem;
	font-weight: 700;
	color: #111827;
}

.duration-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.45rem;
	margin-bottom: 1rem;
}

.duration-option {
	border: 1px solid #d1d5db;
	background: #fff;
	border-radius: 8px;
	padding: 0.55rem 0.55rem 0.6rem;
	display: flex;
	flex-direction: column;
	gap: 0.22rem;
	text-align: left;
	cursor: pointer;
}

.duration-option strong {
	font-size: 1.7rem;
	line-height: 1.2;
	color: #111827;
}

.duration-option span {
	font-size: 0.85rem;
	color: #6b7280;
}

.duration-option.active {
	border-color: #111827;
	box-shadow: inset 0 0 0 1px #111827;
}

.duration-notice {
	border-top: 1px dashed #d1d5db;
	padding-top: 0.7rem;
}

.duration-notice p {
	margin: 0.3rem 0;
	font-size: 0.83rem;
	line-height: 1.45;
	color: #6b7280;
}

/* Footer */
.site-footer {
	background: #0f172a;
	color: #cbd5e1;
	margin-top: 2rem;
	padding: 2rem 0;
}

.copyright {
	margin: 0;
	text-align: center;
	font-size: 0.9rem;
	color: #cbd5e1;
}

@media (max-width: 1024px) {
	.main-nav {
		display: none;
	}

	.header-actions {
		display: none;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.mobile-menu.active {
		display: flex;
		flex-direction: column;
		gap: 0.2rem;
		padding: 0.6rem 1rem 1rem;
		border-top: 1px solid var(--border);
		background: #fff;
	}

	.mobile-menu a {
		padding: 0.85rem 0.4rem;
		border-radius: 8px;
		font-weight: 600;
		color: #334155;
	}

	.mobile-menu a:hover {
		background: #f8fafc;
		color: var(--primary);
	}

	.mobile-menu-actions {
		display: flex;
		gap: 0.5rem;
		padding-top: 0.5rem;
	}

	.mobile-menu-actions .btn {
		flex: 1;
	}

	.center-search-form {
		grid-template-columns: 1fr;
		border-radius: 10px;
	}

	.search-cell + .search-cell {
		border-left: 0;
		border-top: 1px solid #e5e7eb;
	}

	.main-search-btn {
		margin: 0.8rem;
		height: 42px;
	}

	.type-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.property-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.date-range-dialog {
		grid-template-columns: 1fr;
		max-height: min(90vh, 840px);
		overflow-y: auto;
	}

	.calendar-pane {
		border-right: 0;
		border-bottom: 1px solid var(--border);
	}

	.duration-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.mobile-menu-actions {
		flex-direction: column;
	}

	.mobile-menu-actions .btn {
		height: 46px;
		font-size: 1rem;
		padding: 0 1rem;
		border-radius: 12px;
	}

	.main-home {
		padding: 1.1rem 0 50px;
		min-height: auto;
	}

	.search-cell {
		min-height: 54px;
	}

	.search-cell input,
	.center-date-trigger {
		font-size: 0.95rem;
	}

	.type-grid {
		grid-template-columns: 1fr 1fr;
	}

	.property-grid {
		grid-template-columns: 1fr 1fr;
	}

	.type-card {
		min-height: 180px;
		padding: 1rem;
	}

	.type-card p {
		font-size: 0.88rem;
	}

	.type-icon {
		font-size: 2rem;
	}

	.date-range-modal {
		padding: 0.8rem;
	}

	.calendar-pane,
	.duration-pane {
		padding: 1rem;
	}

	.calendar-pane h3,
	.duration-pane h3 {
		font-size: 1.45rem;
	}

	.duration-grid {
		grid-template-columns: 1fr;
	}
}

/* 상세 페이지 */
.property-detail-main {
	background: #f8f9fa;
	padding: 2rem 0;
	min-height: 200vh;
}

.property-detail-container {
	width: min(1140px, calc(100% - 2rem));
	margin: 0 auto;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.property-detail-wrapper {
	display: grid;
	grid-template-columns: 2.33fr 1fr;
	gap: 2rem;
	padding: 2rem;
	align-items: start;
}

.property-gallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	padding: 0;
	background: transparent;
	margin-bottom: 2rem;
}

.property-left-section {
	display: flex;
	flex-direction: column;
	gap: 0;
	border-radius: 8px;
	overflow: hidden;
}

.property-description-sections {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding-top: 2rem;
}

.property-right-section {
	display: flex;
	flex-direction: column;
	position: sticky;
	top: 88px;
	align-self: start;
	height: fit-content;
	z-index: 10;
}

.gallery-main {
	position: relative;
	width: 100%;
	height: 400px;
	border-radius: 8px;
	overflow: hidden;
	background: #e0e0e0;
}

.gallery-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	font-size: 1.5rem;
	padding: 0.75rem 1rem;
	cursor: pointer;
	border-radius: 4px;
	z-index: 10;
	transition: background 0.3s ease;
}

.gallery-nav:hover {
	background: rgba(0, 0, 0, 0.7);
}

.gallery-prev {
	left: 1rem;
}

.gallery-next {
	right: 1rem;
}

.gallery-thumbnails {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.75rem;
}

.thumbnail {
	width: 100%;
	height: 80px;
	border: 2px solid transparent;
	border-radius: 6px;
	cursor: pointer;
	object-fit: cover;
	transition: border-color 0.3s ease;
}

.thumbnail:hover {
	border-color: #ff6b6b;
}

.thumbnail.active {
	border-color: #0066cc;
}

.thumbnail-more {
	position: relative;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	padding: 0;
}

.more-count {
	color: white;
	font-size: 1.2rem;
	font-weight: 600;
}

.property-detail-content {
	display: none;
}

.property-header {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	background: #fff;
	padding: 1.5rem;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.property-title-section {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.property-title-section h1 {
	font-size: 1.4rem;
	font-weight: 700;
	margin: 0;
	color: #333;
}

.rating {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.stars {
	font-size: 1.1rem;
}

.rating-text {
	color: #666;
	font-size: 0.95rem;
}

.property-address-detail {
	color: #666;
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.property-price-section {
	text-align: left;
	border-top: 1px solid #e0e0e0;
	padding-top: 1.5rem;
}

.price-label {
	color: #999;
	font-size: 0.9rem;
	margin: 0;
}

.price-amount {
	font-size: 2rem;
	font-weight: 700;
	color: #ff6b6b;
	margin: 0.5rem 0 1.5rem;
}

/* About this stay */
.about-stay {
	margin-bottom: 0;
	padding: 0 0 2rem 0;
	border-bottom: 1px solid #e0e0e0;
}

.about-stay h2,
.key-amenities h2,
.house-rules h2,
.location-section h2,
.reviews-section h2 {
	font-size: 1.4rem;
	font-weight: 700;
	margin: 0 0 1.5rem;
	color: #333;
}

.about-stay p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.amenities-highlights h3 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #333;
}

.amenities-highlights ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.amenities-highlights li {
	color: #666;
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
}

.amenities-highlights li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #0066cc;
	font-weight: 600;
}

/* Key amenities */
.key-amenities {
	margin-bottom: 0;
	padding: 0 0 2rem 0;
	border-bottom: 1px solid #e0e0e0;
}

.amenities-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.amenity-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem;
	background: #f8f9fa;
	border-radius: 8px;
	text-align: center;
}

.amenity-icon {
	font-size: 2rem;
}

.amenity-name {
	font-size: 0.9rem;
	color: #333;
	font-weight: 500;
}

/* 숙박 규칙 */
.house-rules {
	margin-bottom: 0;
	padding: 0 0 2rem 0;
	border-bottom: 1px solid #e0e0e0;
}

.rules-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.rule-item {
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 8px;
	text-align: center;
}

.rule-item h3 {
	font-size: 0.95rem;
	font-weight: 600;
	color: #333;
	margin: 0 0 0.5rem;
}

.rule-item p {
	color: #666;
	font-size: 0.9rem;
	margin: 0;
}

/* 위치 */
.location-section {
	margin-bottom: 0;
	padding: 0 0 2rem 0;
	border-bottom: 1px solid #e0e0e0;
}

.location-map {
	width: 100%;
	height: 400px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* 리뷰 */
.reviews-section {
	margin-bottom: 0;
	padding: 0;
}

.reviews-summary {
	margin-bottom: 2rem;
}

.rating-overview {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 8px;
}

.overall-rating {
	font-size: 3rem;
	font-weight: 700;
	color: #333;
}

.rating-stars {
	font-size: 1.1rem;
	display: block;
}

.review-count {
	color: #666;
	font-size: 0.9rem;
	margin: 0.25rem 0 0;
}

.reviews-list {
	display: grid;
	gap: 1.5rem;
}

.review-item {
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 1.5rem;
}

.review-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.5rem;
}

.review-item h4 {
	font-size: 1rem;
	font-weight: 600;
	color: #333;
	margin: 0;
}

.review-rating {
	color: #ff9800;
}

.review-author {
	font-size: 0.85rem;
	color: #999;
	margin: 0 0 0.75rem;
}

.review-text {
	color: #666;
	line-height: 1.6;
	margin: 0;
}

/* 모바일 하단 예약 버튼 */
.mobile-booking-footer {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	padding: 1rem;
	border-top: 1px solid #e0e0e0;
	z-index: 100;
}

.btn-mobile-booking {
	width: 100%;
	padding: 1rem;
	font-size: 1rem;
	font-weight: 600;
}

/* 반응형 */
@media (max-width: 1024px) {
	.property-detail-wrapper {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.property-left-section {
		order: 1;
	}

	.property-right-section {
		display: none;
	}

	.property-header {
		position: static;
		top: auto;
		background: transparent;
		padding: 1.5rem 1rem;
		border: none;
		border-top: 1px solid #e0e0e0;
		box-shadow: none;
	}

	.property-price-section {
		text-align: left;
		border-top: none;
		padding-top: 0;
	}

	.amenities-grid,
	.rules-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gallery-main {
		height: 300px;
	}

	.mobile-booking-footer {
		display: block;
	}
}

@media (max-width: 640px) {
	.property-detail-container {
		border-radius: 0;
	}

	.property-detail-wrapper {
		grid-template-columns: 1fr;
		gap: 0;
		padding: 0;
		align-items: auto;
	}

	.property-left-section {
		grid-column: 1;
		order: 1;
	}

	.property-right-section {
		display: none;
	}

	.property-detail-content {
		padding: 0;
	}

	.property-gallery {
		padding: 0;
		margin-bottom: 0;
	}

	.property-header {
		position: static;
		top: auto;
		padding: 1.5rem 1rem;
		background: transparent;
		border: none;
		border-bottom: 1px solid #e0e0e0;
		box-shadow: none;
	}

	.about-stay {
		padding: 1.5rem 1rem;
	}

	.key-amenities {
		padding: 1.5rem 1rem;
	}

	.house-rules {
		padding: 1.5rem 1rem;
	}

	.location-section {
		padding: 1.5rem 1rem;
	}

	.reviews-section {
		padding: 1.5rem 1rem;
	}

	.property-detail-main {
		padding: 1rem 0;
		padding-bottom: 80px;
	}

	.gallery-main {
		height: 250px;
	}

	.gallery-thumbnails {
		grid-template-columns: repeat(3, 1fr);
	}

	.property-title-section h1 {
		font-size: 1.3rem;
	}

	.price-amount {
		font-size: 1.5rem;
	}

	.amenities-grid,
	.rules-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.amenity-item,
	.rule-item {
		padding: 0.75rem;
	}

	.location-map {
		height: 250px;
	}

	.rating-overview {
		flex-direction: column;
		align-items: flex-start;
	}

	.mobile-booking-footer {
		display: block;
	}
}
