/* =========================================
   OBJECTS PAGE (DACHA LISTING) - BOOKING STYLE CSS
   Scope: Only for /ru/dachi page (template: objects)
   Design: Modern booking platform style
   ========================================= */

/* =========================================================
   Scoped tokens (maintainability)
   ========================================================= */
   .template-objects {
	--card-img-h: 260px; /* default image height */
}

/* Card structure - Booking style */
.template-objects .objectCard,
.objectRow.template-objects .objectCard {
	border-radius: 12px; /* premium + consistent */
	overflow: hidden;
	background: #fafafa;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	border: 1px solid #e5e7eb;
	display: flex;
	flex-direction: column;
	height: auto;            /* was: 90% (ambiguous in grid) */
	min-height: 320px;
	width: 100%;
	max-width: 100%;
}

/* ObjectRow - grid layout for equal card sizes */
.template-objects .objectRow,
.objectRow.template-objects {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
	margin: 0;
	letter-spacing: normal;
	align-items: stretch;
}

@media (min-width: 768px) {
	/* better tablet density */
	.template-objects .objectRow,
	.objectRow.template-objects {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	/* 3-column from lg screens */
	.template-objects .objectRow,
	.objectRow.template-objects {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 767px) {
	.template-objects .objectRow,
	.objectRow.template-objects {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 480px) {
	.template-objects .objectRow,
	.objectRow.template-objects {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

.template-objects .objectCard:hover,
.objectRow.template-objects .objectCard:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	transform: translateY(-4px);
}

/* Image section */
.template-objects .objectCard .img,
.objectRow.template-objects .objectCard .img {
	height: var(--card-img-h);
	border-radius: 0;
	position: relative;
	overflow: hidden;
	background: #f3f4f6;
	flex-shrink: 0;
	display: flex;
	align-items: stretch;
}

/* Image slider container */
.template-objects .objectCard .img .img-p-slide,
.objectRow.template-objects .objectCard .img .img-p-slide {
	width: 100%;
	height: var(--card-img-h);
	min-height: var(--card-img-h);
	max-height: var(--card-img-h);
	position: relative;
	overflow: hidden;
}

.template-objects .objectCard .img .img-p-slide .swiper-wrapper,
.objectRow.template-objects .objectCard .img .img-p-slide .swiper-wrapper {
	height: 100%;
}

.template-objects .objectCard .img .img-p-slide .swiper-slide,
.objectRow.template-objects .objectCard .img .img-p-slide .swiper-slide {
	width: 100%;
	height: var(--card-img-h);
	min-height: var(--card-img-h);
	max-height: var(--card-img-h);
	display: flex;
	align-items: center;
	justify-content: center;
}

.template-objects .objectCard .img .img-p-slide .swiper-slide img,
.template-objects .objectCard .img .img-p-slide .swiper-slide picture,
.template-objects .objectCard .img .img-p-slide .swiper-slide picture img,
.objectRow.template-objects .objectCard .img .img-p-slide .swiper-slide img,
.objectRow.template-objects .objectCard .img .img-p-slide .swiper-slide picture,
.objectRow.template-objects .objectCard .img .img-p-slide .swiper-slide picture img {
	width: 100%;
	height: var(--card-img-h);
	min-height: var(--card-img-h);
	max-height: var(--card-img-h);
	object-fit: cover;
	object-position: center;
	display: block;
}

.template-objects .objectCard .img img,
.objectRow.template-objects .objectCard .img img {
	width: 100%;
	height: var(--card-img-h);
	min-height: var(--card-img-h);
	max-height: var(--card-img-h);
	object-fit: cover;
	object-position: center;
	transition: transform 0.5s ease;
	display: block;
}

.template-objects .objectCard:hover .img img,
.objectRow.template-objects .objectCard:hover .img img {
	transform: scale(1.05);
}

/* Badge - top left */
.template-objects .objectCard .img .card-badge,
.objectRow.template-objects .objectCard .img .card-badge {
	position: absolute;
	z-index: 12;
	width: auto;
	height: auto;
	padding: 6px 12px;
	font-size: 0.75rem;
	color: #fff;
	left: 12px;
	top: 12px;
	border-radius: 6px; /* slightly smoother */
	font-weight: 600;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.template-objects .objectCard .img .card-badge-top,
.objectRow.template-objects .objectCard .img .card-badge-top {
	background: #10b981;
}
.template-objects .objectCard .img .card-badge-new,
.objectRow.template-objects .objectCard .img .card-badge-new {
	background: #ef4444;
}

/* Heart icon - top right */
.template-objects .objectCard .img .card-favorite,
.objectRow.template-objects .objectCard .img .card-favorite {
	position: absolute;
	z-index: 12;
	top: 12px;
	right: 12px;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.95);
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.template-objects .objectCard .img .card-favorite:hover,
.objectRow.template-objects .objectCard .img .card-favorite:hover {
	background: #fff;
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.template-objects .objectCard .img .card-favorite.active,
.objectRow.template-objects .objectCard .img .card-favorite.active {
	background: rgba(239, 68, 68, 0.1);
	box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}
.template-objects .objectCard .img .card-favorite.active:hover,
.objectRow.template-objects .objectCard .img .card-favorite.active:hover {
	background: rgba(239, 68, 68, 0.15);
	box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}
.template-objects .objectCard .img .card-favorite i,
.objectRow.template-objects .objectCard .img .card-favorite i {
	font-size: 1.2rem;
	color: #374151;
	transition: color 0.2s ease, transform 0.2s ease;
}
.template-objects .objectCard .img .card-favorite:hover i,
.objectRow.template-objects .objectCard .img .card-favorite:hover i {
	color: #ef4444;
}
.template-objects .objectCard .img .card-favorite.active i,
.objectRow.template-objects .objectCard .img .card-favorite.active i {
	color: #ef4444;
}
.template-objects .objectCard .img .card-favorite.active:hover i,
.objectRow.template-objects .objectCard .img .card-favorite.active:hover i {
	transform: scale(1.1);
}

/* Photo count - bottom right */
.template-objects .objectCard .img .card-photo-count,
.objectRow.template-objects .objectCard .img .card-photo-count {
	position: absolute;
	z-index: 12;
	bottom: 12px;
	right: 12px;
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	padding: 6px 10px;
	border-radius: 8px;
	font-size: 0.8125rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 6px;
	backdrop-filter: blur(4px);
}
.template-objects .objectCard .img .card-photo-count i,
.objectRow.template-objects .objectCard .img .card-photo-count i {
	font-size: 0.875rem;
}

/* Card content - booking style */
.template-objects .objectCard .card-booking-content,
.objectRow.template-objects .objectCard .card-booking-content {
	padding: 12px 16px 10px 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-height: 120px;
}

/* Card header */
.template-objects .objectCard .card-header,
.objectRow.template-objects .objectCard .card-header {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-height: 50px;
	margin-bottom: 0;
	padding-bottom: 0;
}

/* Rating stars */
.template-objects .objectCard .card-rating,
.objectRow.template-objects .objectCard .card-rating {
	display: none; /* Yashirilgan - keyin yoqiladi */
	align-items: center;
	gap: 3px;
	margin-bottom: 4px;
	min-height: 18px;
}

.template-objects .objectCard .card-rating i,
.objectRow.template-objects .objectCard .card-rating i {
	font-size: 1rem;
	margin: 0;
}

.template-objects .objectCard .card-rating i.fa-star,
.objectRow.template-objects .objectCard .card-rating i.fa-star {
	color: #fbbf24;
}

.template-objects .objectCard .card-rating i.fa-star-o,
.objectRow.template-objects .objectCard .card-rating i.fa-star-o {
	color: #d1d5db;
}

/* Card title */
.template-objects .objectCard .card-title,
.objectRow.template-objects .objectCard .card-title {
	margin: 0 0 0 0;
	padding: 0;
	font-size: 1.3rem; /* was: 1.5rem */
	font-weight: 600;
	line-height: 1.2;
	color: #111827;
}

.template-objects .objectCard .card-title a,
.objectRow.template-objects .objectCard .card-title a {
	color: #111827;
	text-decoration: none;
	transition: color 0.2s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.template-objects .objectCard .card-title a:hover,
.objectRow.template-objects .objectCard .card-title a:hover {
	color: #2563eb;
}

/* Chiziq title'dan keyin */
.template-objects .objectCard .card-title-separator,
.objectRow.template-objects .objectCard .card-title-separator {
	border-top: 1px solid #e5e7eb;
	margin: -6px 0 0 0;
	padding: 0;
	width: 100%;
}

/* Location va Amenities bir qatorda */
.template-objects .objectCard .card-location-amenities,
.objectRow.template-objects .objectCard .card-location-amenities {
	display: flex;
	align-items: center;
	gap: 0;
	flex-wrap: wrap;
	padding-top: 6px;
	margin-top: 0;
}

/* Location */
.template-objects .objectCard .card-location,
.objectRow.template-objects .objectCard .card-location {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 1.15rem;
	color: #6b7280;
	margin-bottom: 0;
	flex-shrink: 0;
}

.template-objects .objectCard .card-location i,
.objectRow.template-objects .objectCard .card-location i {
	color: #9ca3af;
	font-size: 1.15rem;
}

/* Amenities */
.template-objects .objectCard .card-amenities,
.objectRow.template-objects .objectCard .card-amenities {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	font-size: 1.15rem;
	color: #4b5563;
	margin-bottom: 0;
}

.template-objects .objectCard .card-amenities i,
.objectRow.template-objects .objectCard .card-amenities i {
	color: #6b7280;
	font-size: 1.15rem;
	margin-right: 0; /* was: 4px; gap already handles spacing */
}

.template-objects .objectCard .amenity-separator,
.objectRow.template-objects .objectCard .amenity-separator {
	color: #d1d5db;
	margin: 0 2px;
}

/* Location va Amenities separator (|) */
.template-objects .objectCard .location-amenities-separator,
.objectRow.template-objects .objectCard .location-amenities-separator {
	color: #d1d5db;
	font-size: 1.15rem;
	margin: 0 2px;
	user-select: none;
}

/* Card footer - to'liq button */
.template-objects .objectCard .card-footer,
.objectRow.template-objects .objectCard .card-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 16px 14px 16px;
	border-top: none;
	margin-top: 0;
}

/* Modern CTA Button (scoped) */
.template-objects .objectCard .card-book-btn,
.objectRow.template-objects .objectCard .card-book-btn {
	--btn-bg: #2563eb;
	--btn-bg-hover: #1d4ed8;
	--btn-ring: rgba(37, 99, 235, 0.35);

	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	width: 100%;
	min-height: 48px;

	padding: 12px 18px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;

	background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)), var(--btn-bg);
	color: #fff;

	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.2px;
	text-decoration: none;
	white-space: nowrap;

	box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22), 0 2px 6px rgba(0, 0, 0, 0.1);

	cursor: pointer;
	user-select: none;
	-webkit-tap-highlight-color: transparent;

	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, filter 0.15s ease;
}

/* Hover (desktop) */
.template-objects .objectCard .card-book-btn:hover,
.objectRow.template-objects .objectCard .card-book-btn:hover {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)), var(--btn-bg-hover);
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(37, 99, 235, 0.26), 0 6px 14px rgba(0, 0, 0, 0.12);
}

/* Active (pressed) */
.template-objects .objectCard .card-book-btn:active,
.objectRow.template-objects .objectCard .card-book-btn:active {
	transform: translateY(0);
	filter: brightness(0.98);
	box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18), 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Keyboard accessibility */
.template-objects .objectCard .card-book-btn:focus-visible,
.objectRow.template-objects .objectCard .card-book-btn:focus-visible {
	outline: none;
	box-shadow: 0 0 0 4px var(--btn-ring), 0 12px 26px rgba(37, 99, 235, 0.22), 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Disabled state (works for button[disabled] and a.is-disabled) */
.template-objects .objectCard .card-book-btn[disabled],
.template-objects .objectCard .card-book-btn.is-disabled,
.objectRow.template-objects .objectCard .card-book-btn[disabled],
.objectRow.template-objects .objectCard .card-book-btn.is-disabled {
	opacity: 0.55;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
	filter: none;
}

/* Optional: icon inside (FontAwesome i) */
.template-objects .objectCard .card-book-btn i,
.objectRow.template-objects .objectCard .card-book-btn i {
	font-size: 1.15em;
	line-height: 1;
	opacity: 0.95;
}

/* Info section hidden */
.template-objects .objectCard .info,
.objectRow.template-objects .objectCard .info {
	display: none;
}

/* Responsive */
@media (max-width: 992px) {
	.template-objects .objectCard,
	.objectRow.template-objects .objectCard {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.template-objects {
		--card-img-h: 220px; /* was repeated in many selectors */
	}

	.template-objects .objectCard .card-booking-content,
	.objectRow.template-objects .objectCard .card-booking-content {
		padding: 10px 14px 8px 14px;
		gap: 6px;
		min-height: 120px;
	}

	.template-objects .objectCard .card-header,
	.objectRow.template-objects .objectCard .card-header {
		gap: 2px;
		min-height: 38px;
	}

	.template-objects .objectCard .card-title,
	.objectRow.template-objects .objectCard .card-title {
		font-size: 1.125rem;
	}

	.template-objects .objectCard .card-book-btn,
	.objectRow.template-objects .objectCard .card-book-btn {
		padding: 12px 20px;
		font-size: 1rem;
	}

	.template-objects .objectCard .card-location-amenities,
	.objectRow.template-objects .objectCard .card-location-amenities {
		gap: 0;
		padding-top: 6px;
	}

	.template-objects .objectCard .card-location,
	.objectRow.template-objects .objectCard .card-location {
		font-size: 1.05rem;
	}

	.template-objects .objectCard .card-location i,
	.objectRow.template-objects .objectCard .card-location i {
		font-size: 1.05rem;
	}

	.template-objects .objectCard .card-amenities,
	.objectRow.template-objects .objectCard .card-amenities {
		font-size: 1.05rem;
	}

	.template-objects .objectCard .card-amenities i,
	.objectRow.template-objects .objectCard .card-amenities i {
		font-size: 1.05rem;
	}

	.template-objects .objectCard .card-footer,
	.objectRow.template-objects .objectCard .card-footer {
		margin-top: 0;
		padding: 10px 14px 14px 14px;
	}
}

@media (max-width: 480px) {
	.template-objects {
		--card-img-h: 200px; /* was repeated in many selectors */
	}

	.template-objects .objectCard .card-booking-content,
	.objectRow.template-objects .objectCard .card-booking-content {
		padding: 10px 12px 8px 12px;
		gap: 6px;
		min-height: 110px;
	}

	.template-objects .objectCard .card-header,
	.objectRow.template-objects .objectCard .card-header {
		gap: 2px;
		min-height: 35px;
	}

	.template-objects .objectCard .card-title,
	.objectRow.template-objects .objectCard .card-title {
		font-size: 1.125rem;
	}

	.template-objects .objectCard .card-location-amenities,
	.objectRow.template-objects .objectCard .card-location-amenities {
		gap: 0;
		padding-top: 6px;
	}

	.template-objects .objectCard .card-location,
	.objectRow.template-objects .objectCard .card-location {
		font-size: 1rem;
	}

	.template-objects .objectCard .card-location i,
	.objectRow.template-objects .objectCard .card-location i {
		font-size: 1rem;
	}

	.template-objects .objectCard .card-book-btn,
	.objectRow.template-objects .objectCard .card-book-btn {
		padding: 11px 20px;
		font-size: 0.9375rem;
	}

	.template-objects .objectCard .card-amenities,
	.objectRow.template-objects .objectCard .card-amenities {
		font-size: 1rem;
	}

	.template-objects .objectCard .card-amenities i,
	.objectRow.template-objects .objectCard .card-amenities i {
		font-size: 1rem;
	}

	.template-objects .objectCard .card-footer,
	.objectRow.template-objects .objectCard .card-footer {
		margin-top: 0;
		padding: 8px 14px 12px 14px;
	}
}

/* =========================================================
   POPULAR OBJECTS SLIDER - objects-slide-block
   TO'LIQ STANDART CSS - style.css bilan override bo'lmaydi
   ========================================================= */

/* =========================================================
   BASE: Container va slider struktura
   ========================================================= */
.popular-objects-slide {
	position: relative;
	width: 100%;
	padding: 0;
	margin: 30px 0 0 0;
}

/* Sarlavha: "Рекомендуемые объекты" - to'q kulrang va to'q ko'k chiziq */
.popular-objects-section .main-title.black.recom-title,
.popular-objects-section .container > .main-title.black.recom-title {
	color: #374151;
	font-size: 3.0rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 40px;
	padding-bottom: 20px;
	position: relative;
}

.popular-objects-section .main-title.black.recom-title::before,
.popular-objects-section .container > .main-title.black.recom-title::before {
	content: "";
	position: absolute;
	width: 75%;
	height: 1px;
	background: #0c93d2;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.popular-objects-slide .objects-slide {
	overflow: hidden;
	padding: 0 50px;
	position: relative;
}

.popular-objects-slide .swiper-wrapper {
	display: flex;
	align-items: stretch;
}

.popular-objects-slide .swiper-slide {
	height: auto;
	display: flex;
	align-items: stretch;
}

.popular-objects-slide .swiper-slide .objectCard {
	width: 100%;
	margin: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
}

/* =========================================================
   NAVIGATION: Arrow button'lar
   ========================================================= */
.popular-objects-slide .objects-button-prev,
.popular-objects-slide .objects-button-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid #e5e7eb;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	cursor: pointer;
	font-size: 1.8rem;
	color: #0c93d2;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.popular-objects-slide .objects-button-next {
	right: 0;
	left: auto;
}

.popular-objects-slide .objects-button-prev {
	left: 0;
	right: auto;
}

.popular-objects-slide .objects-button-prev:hover,
.popular-objects-slide .objects-button-next:hover {
	background: #0c93d2;
	color: #fff;
	box-shadow: 0 4px 12px rgba(12, 147, 210, 0.3);
	transform: translateY(-50%) scale(1.1);
}

.popular-objects-slide .objects-button-prev i,
.popular-objects-slide .objects-button-next i {
	font-size: 1.8rem;
}

/* =========================================================
   OVERLAY: Yulduzchalar va nom overlay yashirish
   ========================================================= */
.popular-objects-slide .stars-recom-overlay .stars,
.popular-objects-slide .stars-recom-overlay .stars-overlay {
	display: none;
}

.popular-objects-slide .object-name-overlay {
	display: none;
}

/* Рекомендуемый - ikonka bilan ko'rsatish */
.popular-objects-slide .recom.recom-overlay {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 12;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	padding: 0;
	margin: 0;
	border: none;
	line-height: 1;
}

.popular-objects-slide .recom.recom-overlay:hover {
	background: rgba(255, 255, 255, 1);
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.popular-objects-slide .recom.recom-overlay i {
	font-size: 1.6rem;
	color: #EF6C00;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	line-height: 1;
	vertical-align: middle;
}

/* =========================================================
   CARD INFO SECTION: To'liq reset va yangi struktura
   ========================================================= */
.popular-objects-slide .objectCard .info {
	height: auto;
	min-height: auto;
	flex: 1;
	display: flex;
	flex-direction: column;
	background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #001a33 100%);
	box-sizing: border-box;
}

/* Object-info - to'liq reset (style.css override qilish) */
.popular-objects-slide .objectCard .info .object-info,
.popular-objects-slide .objectCard .object-info,
.popular-objects-slide .info .object-info,
.popular-objects-slide .object-info {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 0;
	margin: 0;
	background: transparent;
	box-sizing: border-box;
	list-style: none;
	width: 100%;
	vertical-align: top;
	letter-spacing: normal;
	min-height: 0;
	overflow: visible;
}

/* Object-info li - to'liq reset (style.css override qilish) */
.popular-objects-slide .objectCard .info .object-info li,
.popular-objects-slide .objectCard .object-info li,
.popular-objects-slide .info .object-info li,
.popular-objects-slide .object-info li {
	padding: 0;
	margin: 0;
	border-bottom: none;
	width: 100%;
	display: block;
	color: inherit;
	letter-spacing: normal;
	line-height: normal;
	box-sizing: border-box;
}

.popular-objects-slide .objectCard .object-info li:last-child {
	border-bottom: none;
}

/* =========================================================
   CARD HEADER: Title va Location/Amenities
   ========================================================= */
.popular-objects-slide .objectCard .info .object-info .card-header,
.popular-objects-slide .objectCard .object-info .card-header,
.popular-objects-slide .info .object-info .card-header,
.popular-objects-slide .object-info .card-header {
	padding: 16px 16px 12px 20px;
	margin: 0;
	background: transparent;
	border-bottom: 1px solid #e5e7eb;
	box-sizing: border-box;
}

/* Card-title - yuqori specificitet (bir qatorga yozilishi) */
.popular-objects-slide .objectCard .info .object-info .card-header .card-title,
.popular-objects-slide .objectCard .object-info .card-header .card-title,
.popular-objects-slide .info .object-info .card-header .card-title,
.popular-objects-slide .object-info .card-header .card-title {
	font-size: 1.6rem;
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 8px 0;
	padding: 0;
	line-height: 1.4;
	box-sizing: border-box;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.popular-objects-slide .objectCard .info .object-info .card-header .card-title a,
.popular-objects-slide .objectCard .object-info .card-header .card-title a,
.popular-objects-slide .info .object-info .card-header .card-title a,
.popular-objects-slide .object-info .card-header .card-title a {
	color: #1f2937;
	text-decoration: none;
	transition: color 0.2s ease;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.popular-objects-slide .objectCard .info .object-info .card-header .card-title a:hover,
.popular-objects-slide .objectCard .object-info .card-header .card-title a:hover,
.popular-objects-slide .info .object-info .card-header .card-title a:hover,
.popular-objects-slide .object-info .card-header .card-title a:hover {
	color: #0c93d2;
}

/* Slogan (2-qator) - yuqori specificitet */
.popular-objects-slide .objectCard .info .object-info .card-header .card-slogan,
.popular-objects-slide .objectCard .object-info .card-header .card-slogan,
.popular-objects-slide .info .object-info .card-header .card-slogan,
.popular-objects-slide .object-info .card-header .card-slogan {
	font-size: 1.3rem;
	font-weight: 400;
	color: #6b7280;
	margin: 0 0 10px 0;
	padding: 0;
	line-height: 1.5;
	box-sizing: border-box;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	min-height: 3.9rem;
	max-height: 3.9rem;
}

/* Location va Amenities bir qatorda - yuqori specificitet */
.popular-objects-slide .objectCard .info .object-info .card-header .card-location-amenities,
.popular-objects-slide .objectCard .object-info .card-header .card-location-amenities,
.popular-objects-slide .info .object-info .card-header .card-location-amenities,
.popular-objects-slide .object-info .card-header .card-location-amenities {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.35rem;
	color: #4b5563;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.popular-objects-slide .objectCard .info .object-info .card-header .card-location-amenities .card-location,
.popular-objects-slide .objectCard .object-info .card-header .card-location-amenities .card-location,
.popular-objects-slide .info .object-info .card-header .card-location-amenities .card-location,
.popular-objects-slide .object-info .card-header .card-location-amenities .card-location {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 1.35rem;
	box-sizing: border-box;
}

.popular-objects-slide .objectCard .info .object-info .card-header .card-location-amenities .card-location i,
.popular-objects-slide .objectCard .object-info .card-header .card-location-amenities .card-location i,
.popular-objects-slide .info .object-info .card-header .card-location-amenities .card-location i,
.popular-objects-slide .object-info .card-header .card-location-amenities .card-location i {
	font-size: 1.35rem;
	color: #0c93d2;
}

.popular-objects-slide .objectCard .info .object-info .card-header .card-location-amenities .card-location span,
.popular-objects-slide .objectCard .object-info .card-header .card-location-amenities .card-location span,
.popular-objects-slide .info .object-info .card-header .card-location-amenities .card-location span,
.popular-objects-slide .object-info .card-header .card-location-amenities .card-location span {
	color: #374151;
	font-weight: 500;
}

.popular-objects-slide .objectCard .info .object-info .card-header .card-location-amenities .separator,
.popular-objects-slide .objectCard .object-info .card-header .card-location-amenities .separator,
.popular-objects-slide .info .object-info .card-header .card-location-amenities .separator,
.popular-objects-slide .object-info .card-header .card-location-amenities .separator {
	color: #d1d5db;
	margin: 0 4px;
	font-weight: 300;
}

.popular-objects-slide .objectCard .info .object-info .card-header .card-location-amenities .card-amenities,
.popular-objects-slide .objectCard .object-info .card-header .card-location-amenities .card-amenities,
.popular-objects-slide .info .object-info .card-header .card-location-amenities .card-amenities,
.popular-objects-slide .object-info .card-header .card-location-amenities .card-amenities {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 1.35rem;
	box-sizing: border-box;
}

.popular-objects-slide .objectCard .info .object-info .card-header .card-location-amenities .card-amenities i,
.popular-objects-slide .objectCard .object-info .card-header .card-location-amenities .card-amenities i,
.popular-objects-slide .info .object-info .card-header .card-location-amenities .card-amenities i,
.popular-objects-slide .object-info .card-header .card-location-amenities .card-amenities i {
	font-size: 1.35rem;
	color: #0c93d2;
}

.popular-objects-slide .objectCard .info .object-info .card-header .card-location-amenities .card-amenities span,
.popular-objects-slide .objectCard .object-info .card-header .card-location-amenities .card-amenities span,
.popular-objects-slide .info .object-info .card-header .card-location-amenities .card-amenities span,
.popular-objects-slide .object-info .card-header .card-location-amenities .card-amenities span {
	color: #374151;
	font-weight: 500;
}

.popular-objects-slide .objectCard .info .object-info .card-header .card-location-amenities .amenities-separator,
.popular-objects-slide .objectCard .object-info .card-header .card-location-amenities .amenities-separator,
.popular-objects-slide .info .object-info .card-header .card-location-amenities .amenities-separator,
.popular-objects-slide .object-info .card-header .card-location-amenities .amenities-separator {
	color: #d1d5db;
	margin: 0 4px;
	font-weight: 300;
}

/* =========================================================
   COMFORT ROW: Qulayliklar icon'lari - gorizontal scroll
   ========================================================= */
.popular-objects-slide .objectCard .info .object-info .comfort-row,
.popular-objects-slide .objectCard .object-info .comfort-row,
.popular-objects-slide .info .object-info .comfort-row,
.popular-objects-slide .object-info .comfort-row {
	padding: 12px 16px 12px 20px;
	margin: 0;
	background: transparent;
	border-bottom: 1px solid #e5e7eb;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	box-sizing: border-box;
}

/* Comfort row scrollbar - yuqori specificitet */
.popular-objects-slide .objectCard .info .object-info .comfort-row::-webkit-scrollbar,
.popular-objects-slide .objectCard .object-info .comfort-row::-webkit-scrollbar,
.popular-objects-slide .info .object-info .comfort-row::-webkit-scrollbar,
.popular-objects-slide .object-info .comfort-row::-webkit-scrollbar {
	height: 4px;
}

.popular-objects-slide .objectCard .info .object-info .comfort-row::-webkit-scrollbar-track,
.popular-objects-slide .objectCard .object-info .comfort-row::-webkit-scrollbar-track,
.popular-objects-slide .info .object-info .comfort-row::-webkit-scrollbar-track,
.popular-objects-slide .object-info .comfort-row::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 2px;
}

.popular-objects-slide .objectCard .info .object-info .comfort-row::-webkit-scrollbar-thumb,
.popular-objects-slide .objectCard .object-info .comfort-row::-webkit-scrollbar-thumb,
.popular-objects-slide .info .object-info .comfort-row::-webkit-scrollbar-thumb,
.popular-objects-slide .object-info .comfort-row::-webkit-scrollbar-thumb {
	background: #0c93d2;
	border-radius: 2px;
}

.popular-objects-slide .objectCard .info .object-info .comfort-row::-webkit-scrollbar-thumb:hover,
.popular-objects-slide .objectCard .object-info .comfort-row::-webkit-scrollbar-thumb:hover,
.popular-objects-slide .info .object-info .comfort-row::-webkit-scrollbar-thumb:hover,
.popular-objects-slide .object-info .comfort-row::-webkit-scrollbar-thumb:hover {
	background: #0a7ba8;
}

/* Comfort icons - yuqori specificitet */
.popular-objects-slide .objectCard .info .object-info .comfort-row .comfort-icons,
.popular-objects-slide .objectCard .object-info .comfort-row .comfort-icons,
.popular-objects-slide .info .object-info .comfort-row .comfort-icons,
.popular-objects-slide .object-info .comfort-row .comfort-icons {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	min-width: min-content;
	box-sizing: border-box;
}

.popular-objects-slide .objectCard .info .object-info .comfort-row .comfort-icons .comfort-icon-item,
.popular-objects-slide .objectCard .object-info .comfort-row .comfort-icons .comfort-icon-item,
.popular-objects-slide .info .object-info .comfort-row .comfort-icons .comfort-icon-item,
.popular-objects-slide .object-info .comfort-row .comfort-icons .comfort-icon-item {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0f7ff;
	border-radius: 8px;
	transition: all 0.2s ease;
	flex-shrink: 0;
	box-sizing: border-box;
}

.popular-objects-slide .objectCard .info .object-info .comfort-row .comfort-icons .comfort-icon-item:hover,
.popular-objects-slide .objectCard .object-info .comfort-row .comfort-icons .comfort-icon-item:hover,
.popular-objects-slide .info .object-info .comfort-row .comfort-icons .comfort-icon-item:hover,
.popular-objects-slide .object-info .comfort-row .comfort-icons .comfort-icon-item:hover {
	background: #e0efff;
	transform: scale(1.05);
}

.popular-objects-slide .objectCard .info .object-info .comfort-row .comfort-icons .comfort-icon-item i,
.popular-objects-slide .objectCard .object-info .comfort-row .comfort-icons .comfort-icon-item i,
.popular-objects-slide .info .object-info .comfort-row .comfort-icons .comfort-icon-item i,
.popular-objects-slide .object-info .comfort-row .comfort-icons .comfort-icon-item i {
	font-size: 1.5rem;
	color: #0c93d2;
}

/* =========================================================
   FOOTER: "Подробно" tugmasi - yuqori specificitet
   ========================================================= */
.popular-objects-slide .objectCard .info .object-info .card-footer,
.popular-objects-slide .objectCard .object-info .card-footer,
.popular-objects-slide .info .object-info .card-footer,
.popular-objects-slide .object-info .card-footer {
	padding: 0;
	margin: 0;
	border-top: none;
	display: block;
	box-sizing: border-box;
}

.popular-objects-slide .objectCard .info .object-info .card-footer .card-btn,
.popular-objects-slide .objectCard .object-info .card-footer .card-btn,
.popular-objects-slide .info .object-info .card-footer .card-btn,
.popular-objects-slide .object-info .card-footer .card-btn,
.popular-objects-slide .objectCard .info .object-info .card-footer a.card-btn,
.popular-objects-slide .objectCard .object-info .card-footer a.card-btn,
.popular-objects-slide .info .object-info .card-footer a.card-btn,
.popular-objects-slide .object-info .card-footer a.card-btn {
	border-radius: 0 0 12px 12px;
	width: 100%;
	padding: 14px 20px;
	background: #001a33;
	color: #ffffff !important;
	text-align: center;
	text-decoration: none;
	font-size: 1.5rem;
	font-weight: 600;
	display: block;
	transition: all 0.3s ease;
	margin: 0;
	border: none;
	line-height: 1.5;
	opacity: 1;
	visibility: visible;
	box-sizing: border-box;
	text-indent: 0;
	text-transform: none;
	letter-spacing: normal;
}

.popular-objects-slide .objectCard .info .object-info .card-footer .card-btn:hover,
.popular-objects-slide .objectCard .object-info .card-footer .card-btn:hover,
.popular-objects-slide .info .object-info .card-footer .card-btn:hover,
.popular-objects-slide .object-info .card-footer .card-btn:hover {
	background: #002244;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 26, 51, 0.4);
	color: #ffffff !important;
}

/* Location va Amenities bir qatorda (Podrobno tugmasidan keyin) - yuqori specificitet */
.popular-objects-slide .objectCard .info .object-info .card-location-amenities-row,
.popular-objects-slide .objectCard .object-info .card-location-amenities-row,
.popular-objects-slide .info .object-info .card-location-amenities-row,
.popular-objects-slide .object-info .card-location-amenities-row {
	padding: 12px 20px;
	margin: 0;
	background: #001a33;
	border-top: 1px solid #e5e7eb;
	box-sizing: border-box;
	text-align: center;
}

.popular-objects-slide .objectCard .info .object-info .card-location-amenities-row .card-location-amenities,
.popular-objects-slide .objectCard .object-info .card-location-amenities-row .card-location-amenities,
.popular-objects-slide .info .object-info .card-location-amenities-row .card-location-amenities,
.popular-objects-slide .object-info .card-location-amenities-row .card-location-amenities {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 1.35rem;
	color: #ffffff;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.popular-objects-slide .objectCard .info .object-info .card-location-amenities-row .card-location-amenities .card-location,
.popular-objects-slide .objectCard .object-info .card-location-amenities-row .card-location-amenities .card-location,
.popular-objects-slide .info .object-info .card-location-amenities-row .card-location-amenities .card-location,
.popular-objects-slide .object-info .card-location-amenities-row .card-location-amenities .card-location {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 1.35rem;
	box-sizing: border-box;
}

.popular-objects-slide .objectCard .info .object-info .card-location-amenities-row .card-location-amenities .card-location i,
.popular-objects-slide .objectCard .object-info .card-location-amenities-row .card-location-amenities .card-location i,
.popular-objects-slide .info .object-info .card-location-amenities-row .card-location-amenities .card-location i,
.popular-objects-slide .object-info .card-location-amenities-row .card-location-amenities .card-location i {
	font-size: 1.35rem;
	color: #0c93d2;
}

.popular-objects-slide .objectCard .info .object-info .card-location-amenities-row .card-location-amenities .card-location span,
.popular-objects-slide .objectCard .object-info .card-location-amenities-row .card-location-amenities .card-location span,
.popular-objects-slide .info .object-info .card-location-amenities-row .card-location-amenities .card-location span,
.popular-objects-slide .object-info .card-location-amenities-row .card-location-amenities .card-location span {
	color: #ffffff;
	font-weight: 500;
}

.popular-objects-slide .objectCard .info .object-info .card-location-amenities-row .card-location-amenities .separator,
.popular-objects-slide .objectCard .object-info .card-location-amenities-row .card-location-amenities .separator,
.popular-objects-slide .info .object-info .card-location-amenities-row .card-location-amenities .separator,
.popular-objects-slide .object-info .card-location-amenities-row .card-location-amenities .separator {
	color: #ffffff;
	margin: 0 4px;
	font-weight: 300;
	opacity: 0.7;
}

.popular-objects-slide .objectCard .info .object-info .card-location-amenities-row .card-location-amenities .card-amenities,
.popular-objects-slide .objectCard .object-info .card-location-amenities-row .card-location-amenities .card-amenities,
.popular-objects-slide .info .object-info .card-location-amenities-row .card-location-amenities .card-amenities,
.popular-objects-slide .object-info .card-location-amenities-row .card-location-amenities .card-amenities {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 1.35rem;
	box-sizing: border-box;
}

.popular-objects-slide .objectCard .info .object-info .card-location-amenities-row .card-location-amenities .card-amenities i,
.popular-objects-slide .objectCard .object-info .card-location-amenities-row .card-location-amenities .card-amenities i,
.popular-objects-slide .info .object-info .card-location-amenities-row .card-location-amenities .card-amenities i,
.popular-objects-slide .object-info .card-location-amenities-row .card-location-amenities .card-amenities i {
	font-size: 1.35rem;
	color: #0c93d2;
}

.popular-objects-slide .objectCard .info .object-info .card-location-amenities-row .card-location-amenities .card-amenities span,
.popular-objects-slide .objectCard .object-info .card-location-amenities-row .card-location-amenities .card-amenities span,
.popular-objects-slide .info .object-info .card-location-amenities-row .card-location-amenities .card-amenities span,
.popular-objects-slide .object-info .card-location-amenities-row .card-location-amenities .card-amenities span {
	color: #ffffff;
	font-weight: 500;
}

.popular-objects-slide .objectCard .info .object-info .card-location-amenities-row .card-location-amenities .amenities-separator,
.popular-objects-slide .objectCard .object-info .card-location-amenities-row .card-location-amenities .amenities-separator,
.popular-objects-slide .info .object-info .card-location-amenities-row .card-location-amenities .amenities-separator,
.popular-objects-slide .object-info .card-location-amenities-row .card-location-amenities .amenities-separator {
	color: #ffffff;
	margin: 0 4px;
	font-weight: 300;
	opacity: 0.7;
}

/* =========================================================
   RESPONSIVE: Mobile breakpoint'lar
   ========================================================= */
@media (max-width: 992px) {
	.popular-objects-slide .objects-slide {
		padding: 0 50px;
	}
}

@media (max-width: 768px) {
	.popular-objects-slide .objects-slide {
		padding: 0 45px;
	}

	.popular-objects-slide .objects-button-prev,
	.popular-objects-slide .objects-button-next {
		width: 40px;
		height: 40px;
		font-size: 1.6rem;
	}

	.popular-objects-slide .objects-button-prev i,
	.popular-objects-slide .objects-button-next i {
		font-size: 1.6rem;
	}
}

@media (max-width: 480px) {
	.popular-objects-slide .objects-slide {
		padding: 0 40px;
	}

	.popular-objects-slide .objects-button-prev,
	.popular-objects-slide .objects-button-next {
		width: 36px;
		height: 36px;
		font-size: 1.4rem;
	}

	.popular-objects-slide .objects-button-prev i,
	.popular-objects-slide .objects-button-next i {
		font-size: 1.4rem;
	}
}
