/* Single Listing Styles */
.city-guide-single-listing {
	padding: 0px 0px 30px 0px;
	display: flex;
	width: 100%;
	flex-direction: column;
}

a:hover,
a:focus,
button:focus {
	outline: none !important;
}

/* Header Section */
.listing-header {
	background: #fff;
	padding: 30px;
	margin-bottom: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.listing-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.listing-title-section h1 {
	margin: 0 0 15px;
	font-size: 2.5em;
}

.listing-categories {
	display: flex;
	gap: 10px;
}

.category-badge {
	background: #f0f0f0;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.9em;
	color: #666;
}

.listing-price-range {
	text-align: right;
}

.price-label {
	display: block;
	font-size: 0.9em;
	color: #666;
	margin-bottom: 5px;
}

.price {
	font-size: 1.5em;
	color: #28a745;
	font-weight: bold;
}

/* Content Layout */

.listing-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 30px;
}

/* Gallery */
.listing-gallery {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.gallery-main img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.gallery-thumbnails {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	gap: 10px;
	margin-top: 10px;
}

.gallery-thumbnails img {
	width: 100%;
	height: 100px;
	object-fit: cover;
	border-radius: 4px;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.gallery-thumbnails img:hover {
	opacity: 0.8;
}

/* Description */
.listing-description {
	margin-bottom: 30px;
}

/* Business Hours */
.listing-hours {
	background: #fff;
}

.hours-table {
	margin-top: 20px;
}

.hours-row {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}

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

.hours-row .day {
	font-weight: 600;
}

/* Sidebar */

.listing-contact-info h3 {
	margin-top: 0;
	margin-bottom: 20px;
}

.contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.contact-item i {
	width: 20px;
	margin-right: 10px;
	color: #7f2529;
}

.contact-item a {
	color: #333;
	text-decoration: none;
}

.contact-item a:hover {
	color: #fbac18;
}

/* Map */
.listing-map {
	margin-bottom: 0;
}

#single-listing-map {
	border-radius: 8px;
	overflow: hidden;
}

/* Responsive Design */
@media (max-width: 992px) {
	.listing-content-wrapper {
		grid-template-columns: 1fr;
	}

	.listing-header-content {
		flex-direction: column;
		text-align: center;
	}

	.listing-price-range {
		text-align: center;
		margin-top: 20px;
	}
}

@media (max-width: 768px) {
	.listing-header {
		padding: 20px;
	}

	.listing-title-section h1 {
		font-size: 2em;
	}

	.listing-categories {
		justify-content: center;
	}
}

.listing-meta {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 15px 0;
	font-size: 14px;
}

.rating {
	display: flex;
	align-items: center;
	gap: 4px;
}

.rating i {
	color: #ffc107;
	font-size: 12px;
}

.amenities-section,
.room-types-section,
.awards-section {
	margin-bottom: 30px;
}

h3 {
	margin-bottom: 15px;
}

.amenities-grid,
.room-types-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 15px;
	margin-top: 15px;
}

.amenity-item,
.room-type-item {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #666;
	font-size: 14px;
}

.amenity-item i,
.room-type-item i {
	color: #666;
	font-size: 16px;
	width: 20px;
}

.awards-grid {
	display: flex;
	gap: 20px;
	margin-top: 15px;
}

.award-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.award-item img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.sidebar-card {
	background: white;
	padding: 0px;
	border-radius: 10px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}

.sidebar-card .info-card-header h3 {
	background: #7f2529;
	color: white;
	padding: 10px 15px;
	border-radius: 6px 6px 0px 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0px;
}

.sidebar-card .info-card-content {
	padding: 10px 20px 20px;
}

.contact-info {
	margin: 20px 0;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	color: #666;
	font-size: 14px;
}

.contact-item i {
	color: #666;
	font-size: 14px;
	width: 16px;
}

.contact-item a {
	color: #666;
	text-decoration: none;
}

.action-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

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

/* Business Hours Styles */
.listing-section {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}

.listing-section-title {
	background: #7f2529;
	padding: 10px 15px;
	border-radius: 6px 6px 0px 0px;
	margin-bottom: 15px;
}

.listing-section-title h3 {
	font-size: 18px;
	margin: 0px;
	font-weight: bold;
	color: #fff;
}

.listing-section-content {
	padding: 0px 20px 20px;
}

.hours-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hours-item {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid #eee;
}

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

.hours-item .day {
	font-weight: 500;
	color: #333;
}

.hours-item .time {
	color: #666;
}

/* Contact Information Styles */
.contact-details {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.contact-item i {
	width: 16px;
	color: #666;
	font-size: 14px;
}

.contact-item a {
	color: #666;
	text-decoration: none;
	transition: color 0.2s ease;
}

.contact-item a:hover {
	color: #7f2529;
}

/* Location Styles */
.location-details {
	margin-top: 10px;
}

.address-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.address-item i {
	color: #666;
	margin-top: 3px;
}

.address-item span {
	color: #666;
	line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.listing-section {
		padding: 20px;
	}

	.hours-item {
		flex-direction: column;
		gap: 5px;
	}

	.hours-item .time {
		color: #666;
		font-size: 14px;
	}
}

/* Social Links Styles */
.social-links-list {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #f5f5f5;
	color: #666;
	transition: all 0.2s ease;
}

.social-link:hover {
	background: #7f2529;
	color: white;
}

.social-link.facebook:hover {
	background: #fbac18;
	color: #7f2529;
}

.social-link.twitter:hover {
	background: #1da1f2;
}

.social-link.instagram:hover {
	background: #e4405f;
}

.social-link.linkedin:hover {
	background: #0077b5;
}

.social-link.youtube:hover {
	background: #ff0000;
}

.social-link i {
	font-size: 18px;
}

.listing-sidebar h2 {
	font-size: 18px;
}

.listing-sidebar .sidebar-section h3 {
	font-size: 16px;
	font-weight: 600;
}

.today-hours {
	background: #7f2529;
	color: white;
	padding: 10px 15px;
	border-radius: 6px 6px 0px 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.weekly-hours .day-row {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid #eee;
}

.weekly-hours .day-row.today {
	color: #7f2529;
	font-weight: bold;
}

.info-card .info-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}

.info-card .info-item.last-item {
	border-bottom: 0px;
}

.info-card .info-item i {
	color: #666;
	width: 20px;
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 15px;
}

.today-hours .status {
	border: 1px solid #fff;
	font-size: 12px;
	padding: 1px 4px;
	border-radius: 4px;
}

.listing-sidebar > div.hours-card {
	padding: 0;
}

.weekly-hours {
	padding: 0px 20px;
}

.listing-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.listing-gallery .gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 10px;
}

.listing-gallery .gallery-item {
	position: relative;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0px;
}

.listing-gallery .gallery-item img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	border-radius: 8px;
}

.gallery-link-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
	background-color: rgba(0, 0, 0, 0.4);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

.gallery-link-overlay a {
	color: #fff;
	font-size: 20px;
	font-weight: bold;
}

.info-card .info-item .rating-stars {
	display: flex;
	align-items: center;
	gap: 5px;
}

.info-card .info-item .rating-stars i.fa-star,
.info-card .info-item .rating-stars i.fa-star-half-alt {
	color: #ffc107;
}

.info-card .info-item .rating-text {
	margin-left: 10px;
	color: #666;
}

.listing-featured-image {
	width: 100%;
	height: 250px;
	overflow: hidden;
}

.listing-featured-image .featured-image.wp-post-image {
	width: 100%;
}

.listing-main .tab-content {
	display: flex;
	flex-direction: column;
	gap: 0px;
}

.listing-tabs {
	display: flex;
	gap: 20px;
	margin-bottom: 15px;
	margin-top: 30px;
}

.tab-link {
	background: none;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	color: #fff;
	font-weight: 500;
	position: relative;
	background: #7f2529;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

.tab-link.active {
	color: #7f2529;
	background: #fbac18;
}

.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
}

.photos-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	margin-bottom: 30px;
}

.photos-grid.full {
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.photo-item {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: 8px;
}

.photo-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.photo-overlay {
	position: relative;
	cursor: pointer;
}

.photo-overlay::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.overlay-count {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	text-align: center;
	z-index: 1;
}

.overlay-count span {
	display: block;
	font-size: 24px;
	font-weight: bold;
}

.overlay-count span:last-child {
	font-size: 16px;
}

.description-preview {
	background: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}

.description-content {
	background: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
	.photos-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
