/* ===== PROJECT DETAILS PAGE STYLESHEET ===== */

/* PROJECT HEADER SECTION */
.ms-project-header {
	background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
	padding: 40px 30px;
	margin-bottom: 40px;
	border-radius: 12px;
	border-left: 5px solid #D7984E;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.ms-project-header-title {
	font-size: 32px;
	font-weight: 700;
	color: #222222;
	margin-bottom: 15px;
	font-family: "Readex Pro", sans-serif;
}

.ms-project-header-location {
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #666666;
	font-weight: 500;
}

.ms-project-header-location i {
	color: #D7984E;
	margin-right: 10px;
	font-size: 18px;
}

.ms-project-header-location span {
	letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
	.ms-project-header {
		padding: 30px 20px;
	}
	
	.ms-project-header-title {
		font-size: 24px;
	}
	
	.ms-project-header-location {
		font-size: 14px;
	}
}

.ms-project-section{
    padding-top: 100px;
    overflow: visible;
}

/* Key Points Section */
.ms-key-points {
	background: #f9f9f9;
	padding: 40px 20px;
	margin-bottom: 50px;
	border-radius: 12px;
}

.ms-key-points-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 30px;
	color: #222222;
	font-family: "Readex Pro", sans-serif;
}

.ms-key-points-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.ms-key-point-box {
	background: white;
	padding: 25px;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
	text-align: center;
	transition: all 0.3s ease;
}

.ms-key-point-box:hover {
	box-shadow: 0 5px 20px rgba(215, 152, 78, 0.15);
	transform: translateY(-3px);
}

.ms-key-point-label {
	font-size: 13px;
	color: #D7984E;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
	font-weight: 600;
}

.ms-key-point-value {
	font-size: 22px;
	font-weight: 700;
	color: #222222;
	font-family: "Readex Pro", sans-serif;
}

/* Project Description Section */
.ms-project-description-section {
	margin-bottom: 50px;
}

.ms-description-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 25px;
	color: #222222;
	font-family: "Readex Pro", sans-serif;
	position: relative;
	padding-bottom: 15px;
}

.ms-description-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #D7984E 0%, #E6B583 100%);
	border-radius: 2px;
}

.ms-description-text {
	font-size: 15px;
	line-height: 1.9;
	color: #636363;
	margin-bottom: 20px;
	text-align: justify;
}

/* Amenities Section */
.ms-amenities-section {
	margin-bottom: 50px;
}

.ms-section-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 30px;
	color: #222222;
	font-family: "Readex Pro", sans-serif;
	position: relative;
	padding-bottom: 15px;
}

.ms-section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #D7984E 0%, #E6B583 100%);
	border-radius: 2px;
}

.ms-amenities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

.ms-amenity-box {
	background: white;
	padding: 25px;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	transition: all 0.3s ease;
}

.ms-amenity-box:hover {
	box-shadow: 0 5px 20px rgba(215, 152, 78, 0.15);
	transform: translateY(-3px);
}

.ms-amenity-icon {
	font-size: 20px;
	color: #D7984E;
	flex-shrink: 0;
	width: auto;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ms-amenity-name {
	font-size: 16px;
	font-weight: 600;
	color: #222222;
	flex: 1;
	text-align: left;
}

/* Nearby Places Section */
.ms-nearby-section {
	margin-bottom: 50px;
}

.ms-nearby-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

.ms-nearby-box {
	background: white;
	padding: 25px;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	transition: all 0.3s ease;
}

.ms-nearby-box:hover {
	box-shadow: 0 5px 20px rgba(215, 152, 78, 0.15);
	transform: translateY(-3px);
}

.ms-nearby-icon {
	font-size: 20px;
	color: #D7984E;
	flex-shrink: 0;
	width: auto;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ms-nearby-name {
	font-size: 16px;
	font-weight: 600;
	color: #222222;
	flex: 1;
	text-align: left;
}

/* Google Map Section */
.ms-map-section {
	margin-bottom: 50px;
}

.ms-map-container {
	width: 100%;
	height: 450px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ms-map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* Two-Column Layout */
.ms-project-wrapper {
	display: flex;
	gap: 40px;
	margin-bottom: 60px;
	align-items: flex-start;
	overflow: visible;
}

.ms-main-content {
	flex: 1;
	min-width: 0;
}

.ms-sidebar {
	flex: 0 0 350px;
	width: 350px;
	position: relative;
	overflow: visible;
}

/* Sidebar Styles */
.ms-sidebar-sticky {
	position: sticky;
	top: 100px;
	z-index: 10;
}

.ms-sidebar-section {
	background: white;
	border-radius: 12px;
	box-shadow: 0 2px 15px rgba(0,0,0,0.08);
	margin-bottom: 30px;
	overflow: hidden;
}

.ms-sidebar-section-title {
	font-size: 20px;
	font-weight: 700;
	color: white;
	background: linear-gradient(135deg, #D7984E 0%, #E6B583 100%);
	padding: 20px;
	margin: 0;
	font-family: "Readex Pro", sans-serif;
}

.ms-sidebar-section-content {
	padding: 20px;
}

/* Projects List */
.ms-projects-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ms-project-item {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 12px;
	margin-bottom: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 10px;
	border-radius: 8px;
}

.ms-project-item:hover {
	background: #f9f9f9;
}

.ms-project-item-image {
	width: 80px;
	height: 80px;
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
}

.ms-project-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ms-project-item-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ms-project-item-name {
	font-size: 15px;
	font-weight: 700;
	color: #222222;
	margin-bottom: 5px;
}

.ms-project-item-date {
	font-size: 13px;
	color: #D7984E;
	font-weight: 500;
}

/* Contact Form Styles */
.ms-contact-form-wrapper {
	padding: 20px;
}

.ms-form-group {
	margin-bottom: 15px;
}

.ms-form-group label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #222222;
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ms-form-group input,
.ms-form-group textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	font-size: 13px;
	font-family: inherit;
	transition: all 0.3s ease;
}

.ms-form-group input:focus,
.ms-form-group textarea:focus {
	outline: none;
	border-color: #D7984E;
	box-shadow: 0 0 0 3px rgba(215, 152, 78, 0.1);
}

.ms-form-group textarea {
	resize: vertical;
	min-height: 80px;
}

.ms-form-submit {
	width: 100%;
	padding: 12px;
	background: linear-gradient(135deg, #D7984E 0%, #E6B583 100%);
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ms-form-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(215, 152, 78, 0.3);
}

/* Similar Projects Section */
.ms-similar-projects {
	margin-top: 0;
	padding: 60px 0;
	background: #f9f9f9;
	border-radius: 12px;
}

.ms-similar-title {
	font-size: 32px;
	font-weight: 700;
	color: #222222;
	font-family: "Readex Pro", sans-serif;
	margin-bottom: 40px;
	text-align: center;
	position: relative;
	padding-bottom: 20px;
}

.ms-similar-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #D7984E 0%, #E6B583 100%);
	border-radius: 2px;
}

.ms-carousel-wrapper {
	padding: 0 20px;
}

/* Owl Carousel Custom Styling */
.owl-carousel {
	position: relative;
}

.owl-stage-outer {
	overflow: hidden;
	border-radius: 12px;
}

.owl-item {
	height: auto;
}

.ms-project-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	margin: 15px;
}

.ms-project-card:hover {
	box-shadow: 0 8px 25px rgba(215, 152, 78, 0.2);
	transform: translateY(-5px);
}

.ms-project-card-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	position: relative;
}

.ms-project-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.ms-project-card:hover .ms-project-card-image img {
	transform: scale(1.05);
}

.ms-project-card-content {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.ms-project-card-name {
	font-size: 18px;
	font-weight: 700;
	color: #222222;
	margin-bottom: 8px;
	font-family: "Readex Pro", sans-serif;
}

.ms-project-card-info {
	font-size: 13px;
	color: #D7984E;
	font-weight: 600;
	margin-bottom: 15px;
}

.ms-project-card-description {
	font-size: 14px;
	color: #636363;
	line-height: 1.6;
	flex: 1;
	margin-bottom: 15px;
}

.ms-project-card-btn {
	display: inline-block;
	padding: 10px 20px;
	background: linear-gradient(135deg, #D7984E 0%, #E6B583 100%);
	color: white;
	text-decoration: none;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ms-project-card-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(215, 152, 78, 0.3);
}

.owl-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	z-index: 10;
}

.owl-nav button {
	pointer-events: all;
	background: rgba(215, 152, 78, 0.8) !important;
	border: none !important;
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	left: auto;
	right: auto;
	margin: 0;
}

.owl-nav button:hover {
	background: #D7984E !important;
	transform: scale(1.1);
}

.owl-nav .owl-prev {
	margin-left: 10px;
}

.owl-nav .owl-next {
	margin-right: 10px;
}

.owl-dots {
	text-align: center;
	margin-top: 20px;
}

.owl-dot {
	background: #ddd !important;
	width: 12px !important;
	height: 12px !important;
	border-radius: 50% !important;
	margin: 0 5px !important;
	transition: all 0.3s ease;
	cursor: pointer;
}

.owl-dot.active {
	background: #D7984E !important;
	transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1199px) {
	.ms-project-wrapper {
		gap: 30px;
	}

	.ms-sidebar {
		flex: 0 0 300px;
		width: 300px;
	}

	.ms-sidebar-sticky {
		top: 80px;
	}
}

@media (max-width: 991px) {
	.ms-project-wrapper {
		flex-direction: column;
		gap: 20px;
	}

	.ms-sidebar {
		flex: 1 1 auto;
		width: 100%;
		height: auto;
	}

	.ms-sidebar-sticky {
		position: static;
		top: auto;
	}

	.ms-key-points-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ms-description-title,
	.ms-section-title {
		font-size: 24px;
	}

	.ms-amenities-grid,
	.ms-nearby-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ms-map-container {
		height: 350px;
	}
}

@media (max-width: 767px) {
	.ms-project-section{
		padding-top: 100px;
	}

	/* Main Content - Mobile Optimization */
	.ms-main-content {
		padding: 0;
	}

	.ms-key-points {
		padding: 25px 15px;
		margin-bottom: 30px;
		border-radius: 8px;
	}

	.ms-key-points-title {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.ms-key-points-grid {
		grid-template-columns: 1fr;
	}

	.ms-key-point-box {
		padding: 20px;
	}

	.ms-key-point-value {
		font-size: 18px;
	}

	.ms-project-description-section {
		margin-bottom: 30px;
	}

	.ms-description-title,
	.ms-section-title {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.ms-amenities-section {
		margin-bottom: 30px;
	}

	.ms-amenities-grid,
	.ms-nearby-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.ms-amenity-box,
	.ms-nearby-box {
		padding: 15px;
		gap: 12px;
	}

	.ms-amenity-icon,
	.ms-nearby-icon {
		font-size: 24px;
		width: 40px;
		height: 40px;
	}

	.ms-amenity-name,
	.ms-nearby-name {
		font-size: 14px;
	}

	.ms-nearby-section {
		margin-bottom: 30px;
	}

	.ms-project-item {
		grid-template-columns: 70px 1fr;
		gap: 10px;
	}

	.ms-project-item-image {
		width: 70px;
		height: 70px;
	}

	.ms-map-section {
		margin-bottom: 30px;
	}

	.ms-map-container {
		height: 300px;
	}

	.ms-similar-title {
		font-size: 26px;
	}

	.ms-project-card {
		margin: 10px;
	}

	.ms-carousel-wrapper {
		padding: 0 10px;
	}
}

@media (max-width: 575px) {
	.ms-project-section {
		padding-top: 60px;
	}

	.ms-slider-main {
		aspect-ratio: 4/3;
		border-radius: 8px;
	}

	.ms-key-points {
		padding: 20px 12px;
		margin-bottom: 25px;
	}

	.ms-key-points-title {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.ms-key-point-box {
		padding: 15px;
	}

	.ms-key-point-label {
		font-size: 12px;
	}

	.ms-key-point-value {
		font-size: 16px;
	}

	.ms-description-title,
	.ms-section-title {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.ms-description-text {
		font-size: 14px;
		line-height: 1.8;
	}

	.ms-amenities-grid,
	.ms-nearby-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.ms-amenity-box,
	.ms-nearby-box {
		padding: 12px;
		gap: 10px;
	}

	.ms-amenity-icon,
	.ms-nearby-icon {
		font-size: 20px;
		width: 35px;
		height: 35px;
	}

	.ms-amenity-name,
	.ms-nearby-name {
		font-size: 13px;
	}

	.ms-map-container {
		height: 250px;
	}

	.ms-similar-title {
		font-size: 22px;
		margin-bottom: 25px;
	}

	.ms-similar-projects {
		padding: 40px 0;
	}

	.ms-project-card-name {
		font-size: 16px;
	}

	.ms-project-card-info {
		font-size: 12px;
	}

	.ms-project-card-description {
		font-size: 13px;
	}

	.owl-nav button {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.owl-nav .owl-prev {
		margin-left: 5px;
	}

	.owl-nav .owl-next {
		margin-right: 5px;
	}

	.ms-sidebar-section {
		margin-bottom: 20px;
	}

	.ms-sidebar-section-title {
		padding: 15px;
		font-size: 18px;
	}

	.ms-contact-form-wrapper {
		padding: 15px;
	}

	.ms-form-group {
		margin: 12px 0;
	}

	.ms-form-submit {
		padding: 12px 20px;
		font-size: 14px;
	}
}

/* ===== IMAGE GALLERY/SLIDER SECTION ===== */
.ms-gallery-section {
	margin-bottom: 60px;
	background: #ffffff;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Main Image Container */
.ms-gallery-main-wrapper {
	position: relative;
	margin-bottom: 25px;
	overflow: hidden;
	border-radius: 10px;
	background: #f5f5f5;
	aspect-ratio: 16 / 9;
}

.ms-gallery-main-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	cursor: zoom-in;
	transition: transform 0.3s ease;
}

.ms-gallery-main-image:hover {
	transform: scale(1.02);
}

/* Gallery Controls */
.ms-gallery-controls {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.ms-gallery-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.ms-gallery-dot.active {
	background: #D7984E;
	transform: scale(1.2);
}

.ms-gallery-dot:hover {
	background: rgba(255, 255, 255, 0.8);
}

/* Thumbnail Section Header */
.ms-thumbnail-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.ms-thumbnail-title {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ms-thumbnail-counter {
	font-size: 12px;
	color: #999;
}

/* Thumbnail Carousel Container */
.ms-thumbnail-container {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

.ms-thumbnails-wrapper {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 8px 0;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: #D7984E #f0f0f0;
}

.ms-thumbnails-wrapper::-webkit-scrollbar {
	height: 6px;
}

.ms-thumbnails-wrapper::-webkit-scrollbar-track {
	background: #f0f0f0;
	border-radius: 3px;
}

.ms-thumbnails-wrapper::-webkit-scrollbar-thumb {
	background: #D7984E;
	border-radius: 3px;
}

.ms-thumbnails-wrapper::-webkit-scrollbar-thumb:hover {
	background: #c2842a;
}

/* Individual Thumbnail */
.ms-thumbnail {
	flex: 0 0 calc(20% - 10px);
	min-width: auto;
	height: 100px;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	border: 3px solid transparent;
	transition: all 0.3s ease;
	background: #f5f5f5;
	scroll-snap-align: start;
	position: relative;
}

.ms-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ms-thumbnail:hover {
	border-color: #D7984E;
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(215, 152, 78, 0.2);
}

.ms-thumbnail.active {
	border-color: #D7984E;
	box-shadow: 0 0 0 2px rgba(215, 152, 78, 0.3);
	transform: scale(1.08);
}

/* Scroll Indicators */
.ms-gallery-scroll-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	background: rgba(215, 152, 78, 0.8);
	border: none;
	color: white;
	font-size: 18px;
	cursor: pointer;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 20;
}

.ms-gallery-scroll-btn:hover {
	background: #D7984E;
	transform: translateY(-50%) scale(1.1);
}

.ms-gallery-scroll-btn:active {
	transform: translateY(-50%) scale(0.95);
}

.ms-gallery-scroll-btn.prev {
	left: 8px;
	display: none;
}

.ms-gallery-scroll-btn.next {
	right: 8px;
	display: none;
}

.ms-gallery-scroll-btn.show {
	display: flex;
}

/* Responsive: Tablet and down */
@media (max-width: 992px) {
	.ms-gallery-section {
		padding: 20px;
	}

	.ms-gallery-main-wrapper {
		aspect-ratio: 4 / 3;
	}

	.ms-thumbnail {
		flex: 0 0 calc(25% - 9px);
		min-width: 90px;
		height: 90px;
	}
}

@media (max-width: 768px) {
	.ms-gallery-section {
		padding: 15px;
		margin-bottom: 40px;
	}

	.ms-gallery-main-wrapper {
		aspect-ratio: 3 / 2;
		margin-bottom: 20px;
	}

	.ms-thumbnail {
		flex: 0 0 calc(33.333% - 8px);
		min-width: 80px;
		height: 80px;
	}

	.ms-thumbnail-title {
		font-size: 13px;
	}

	.ms-thumbnail-counter {
		font-size: 11px;
	}

	.ms-gallery-dot {
		width: 10px;
		height: 10px;
	}
}

@media (max-width: 576px) {
	.ms-gallery-section {
		padding: 12px;
		margin-bottom: 30px;
		border-radius: 8px;
	}

	.ms-gallery-main-wrapper {
		aspect-ratio: 1 / 1;
		margin-bottom: 15px;
	}

	.ms-thumbnail {
		flex: 0 0 calc(50% - 6px);
		min-width: 70px;
		height: 70px;
	}

	.ms-gallery-controls {
		bottom: 12px;
	}

	.ms-gallery-dot {
		width: 8px;
		height: 8px;
	}

	.ms-thumbnail-title {
		font-size: 12px;
	}
}

/* ===== LIGHTBOX/POPUP STYLES ===== */
.ms-gallery-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes slideInUp {
	from {
		transform: translateY(30px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.ms-lightbox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	cursor: pointer;
}

.ms-lightbox-container {
	position: relative;
	z-index: 10;
	max-width: 90vw;
	max-height: 90vh;
	background: transparent;
	animation: slideInUp 0.3s ease;
}

.ms-lightbox-content {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ms-lightbox-image {
	max-width: 100%;
	max-height: 85vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.ms-lightbox-close {
	position: absolute;
	top: -40px;
	right: 0;
	background: transparent;
	border: none;
	color: white;
	font-size: 32px;
	cursor: pointer;
	z-index: 20;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.ms-lightbox-close:hover {
	transform: scale(1.2);
	color: #D7984E;
}

.ms-lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(215, 152, 78, 0.7);
	border: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 20;
}

.ms-lightbox-nav:hover {
	background: #D7984E;
	transform: translateY(-50%) scale(1.1);
}

.ms-lightbox-prev {
	left: -70px;
}

.ms-lightbox-next {
	right: -70px;
}

/* Responsive lightbox */
@media (max-width: 768px) {
	.ms-lightbox-close {
		top: -35px;
		font-size: 28px;
		width: 35px;
		height: 35px;
	}

	.ms-lightbox-nav {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.ms-lightbox-prev {
		left: -55px;
	}

	.ms-lightbox-next {
		right: -55px;
	}
}

@media (max-width: 576px) {
	.ms-lightbox-container {
		max-width: 95vw;
		max-height: 95vh;
	}

	.ms-lightbox-image {
		max-height: 80vh;
	}

	.ms-lightbox-close {
		top: 10px;
		right: 10px;
		font-size: 24px;
		width: 32px;
		height: 32px;
		background: rgba(0, 0, 0, 0.5);
		border-radius: 4px;
	}

	.ms-lightbox-nav {
		width: 36px;
		height: 36px;
		font-size: 16px;
		position: fixed;
	}

	.ms-lightbox-prev {
		left: 10px;
		top: 50%;
		transform: translateY(-50%);
	}

	.ms-lightbox-next {
		right: 10px;
		top: 50%;
		transform: translateY(-50%);
	}
}
