body {
  background: #f8f9fa;
}
.text-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.emlakx-detail-wrapper { margin:30px auto 60px; }
/* Hero */
.emlakx-hero-gallery {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
}
.emlakx-hero-main img {
  width: 100%;
  height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.emlakx-hero-thumbs {
  margin-top: 10px;
}
.emlakx-hero-thumbs img {
  width: 100%;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid transparent;
}
.emlakx-hero-thumbs .swiper-slide-thumb-active img {
  border-color: #fff !important;
}
.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
}
.swiper-pagination-bullet-active {
  background: var(--primary-color); 
}
/* Project Header */
.emlakx-project-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.emlakx-project-header-left {
  flex: 1;
  min-width: 220px;
}
.emlakx-project-header-left h1 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px;
  color: var(--primary-color);
}
.emlakx-project-desc {
  font-size: 14px;
  color: #374151;
  margin: 0;
}
.emlakx-project-header-right {
  text-align: right;
  min-width: 180px;
}
.emlakx-price-label {
  font-size: 13px;
  color: #6b7280;
  display: block;
  margin-bottom: 4px;
}
.emlakx-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}
.emlakx-price .emlakx-currency {
  font-size: 18px;
  font-weight: 700;
  margin-left: 4px;
  color: #374151;
}
/* Mobile adjustments */
@media (max-width: 575px) {
  .emlakx-project-header-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .emlakx-project-header-right {
    text-align: left;
    margin-top: 10px;
  }
}
/* Services grid */
.emlakx-service-text {
  font-size: 15px;
  font-weight: 600;
}
.emlakx-grid-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 25px;
}
.emlakx-service {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #1f2937;
}
.emlakx-service i {
  font-size: 18px;
  color: #10b981; /* green check */
}
/* Responsive */
@media (max-width: 991px) {
  .emlakx-grid-services {
    grid-template-columns: repeat(2, 1fr); /* tablet → 2 */
  }
}
@media (max-width: 575px) {
  .emlakx-grid-services {
    grid-template-columns: repeat(2, 1fr); /* mobile → still 2 */
  }
}
/* Quick Facts Container */
.emlakx-icon-wrap {
  width: 100%;
  padding: 1rem .5rem;
  border-radius: .4rem;
  background: #f3f7fa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.emlakx-icon {
  font-size: 30px;
  color: var(--primary-color);
  margin: 10px 0;
}
.emlakx-text {
  font-size: 14px;
  font-weight: 500;
  color: #294459;
  text-align: center;
}
.emlakx-text small {
  font-size: 10px;
  font-weight: 400;
  color: #666;
}
/* Responsive */
@media (max-width: 767px){
  .emlakx-quickfacts { text-align: center; }
   .emlakx-quickfacts .row { row-gap: 20px; }
   .emlakx-text small
   {
    font-size:8px;
   }
}
/* Sections */
.emlakx-section { margin-bottom:24px; }
.emlakx-detail-card { background:#fff; border:1px solid #e5e7eb; border-radius:5px; padding:18px; box-shadow:0 2px 6px rgba(0,0,0,0.05); }
.emlakx-detail-card h2 { margin-top:0; font-size:18px; color:var(--primary-color); font-weight:700; }
.emlakx-highlight { margin-top:16px; padding:12px; background:#f1f9ff; border-left:4px solid var(--primary-color); border-radius:8px; }
/* Amenities */
.emlakx-grid-amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.emlakx-amenity {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 8px;
  padding: 14px 12px;
  min-height: 70px; 
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.emlakx-amenity img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.emlakx-amenity span {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}
/* Responsive */
@media (max-width: 991px) {
  .emlakx-grid-amenities { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .emlakx-grid-amenities { grid-template-columns: 1fr; }
}
/* Nearby */
.emlakx-grid-nearby { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.emlakx-nearby { display:flex; align-items:center; gap:8px; border:1px solid #e5e7eb; border-radius:8px; padding:10px; background:#f9fafc; font-size:14px; }
.emlakx-nearby img { width:28px; height:28px; }
/* Rooms */
.emlakx-grid-rooms { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.emlakx-room { border:1px solid #e5e7eb; border-radius:5px; overflow:hidden; }
.emlakx-room img { width:100%; height:160px; -o-object-fit:cover; object-fit:cover; }
.emlakx-room h3 { margin:10px; font-size:16px; }
.emlakx-room p { margin:0 10px 10px; font-size:14px; }
.emlakx-room .emlakx-price { font-weight:700; }
/* Related */
.emlakx-grid-related { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.emlakx-related { border:1px solid #e5e7eb; border-radius:5px; overflow:hidden; text-decoration:none; color:inherit; background:#fff; display:flex; flex-direction:column; }
.emlakx-related img { width:100%; height:160px; -o-object-fit:cover; object-fit:cover; }
.emlakx-related-body { padding:12px; }
.emlakx-related-body h3 { margin:0 0 6px; font-size:16px; font-weight:700; }
/* Sidebar */
.emlakx-sidebar { background:#fff; border:1px solid #e5e7eb; border-radius:5px; padding:16px; box-shadow:0 2px 6px rgba(0,0,0,0.05); }
.emlakx-sidebar-list { list-style:none; margin:0; padding:0; }
.emlakx-sidebar-list li { padding:6px 0; border-bottom:2px solid #ccc; font-size:14px;   white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;}
.emlakx-sidebar-list li:last-child { border-bottom:none; }
.emlakx-sidebar-list strong { display:inline-block; width:170px; }
/* Responsive */
@media (max-width:991px){
  .emlakx-quickfacts .emlakx-grid-4{grid-template-columns:repeat(2,1fr);}
  .emlakx-grid-nearby{grid-template-columns:repeat(2,1fr);}
  .emlakx-grid-related{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:575px){
  .emlakx-quickfacts .emlakx-grid-4{grid-template-columns:1fr;}
  .emlakx-grid-amenities,.emlakx-grid-nearby,.emlakx-grid-rooms,.emlakx-grid-related{grid-template-columns:1fr;}
  .emlakx-grid-amenities { grid-template-columns: repeat(2,1fr); }
  .emlakx-grid-nearby,
  .emlakx-grid-rooms,
  .emlakx-grid-related { grid-template-columns: 1fr; }
}
/* Why This */
.emlakx-whythis ul { margin:0; padding-left:20px; }
.emlakx-whythis li { margin-bottom:6px; }
/* Location Grid */
.emlakx-grid-location {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.emlakx-location-card {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:var(--primary-color);
  color:#fff;
  padding:16px;
  border-radius:10px;
  text-align:center;
  min-height:100px;
}
.emlakx-location-icon img {
  width:28px; height:28px; margin-bottom:8px;
  filter:brightness(0) invert(1); /* force SVG white */
}
.emlakx-location-text strong { display:block; font-size:14px; font-weight:600; }
.emlakx-location-text span { font-size:13px; opacity:.9; }
@media (max-width:767px){
  .emlakx-grid-location{ grid-template-columns:repeat(2,1fr); }
}
/* Grid layout for area + price change */
.emlakx-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #ecfdf5;
  border-radius: 8px;
  overflow: hidden;
}
.emlakx-stat {
  text-align: center;
  padding: 20px;
  background: #ecfdf5;
  border-right: 1px solid #d1fae5;
}
.emlakx-stat:last-child {
  border-right: none;
}
.emlakx-stat p {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}
.emlakx-stat strong {
  font-size: 20px;
  font-weight: 700;
  color: #059669;
}
.emlakx-sexratio {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .emlakx-grid-3 { grid-template-columns: 1fr; }
  .emlakx-stat { border-right: none; border-bottom: 1px solid #d1fae5; }
  .emlakx-stat:last-child { border-bottom: none; }
}
.sticky-top
{
  z-index:0!important;
}
span.emlakx-date.mx-1 {
    display: flex;
    gap: 5px;
}
.main-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main-content {
  flex: 1 0 auto;
}
.site-footer {
  flex-shrink: 0;
}
.Vue-Toastification__toast {
  font-family: inherit;
}
.Vue-Toastification__toast--success {
  background-color: #10b981 !important;
}
.Vue-Toastification__toast--error {
  background-color: #ef4444 !important;
}
.Vue-Toastification__toast--warning {
  background-color: #f59e0b !important;
}
.Vue-Toastification__toast--info {
  background-color: var(--primary-color) !important;
}
.btn-cart:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}
