#slider {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}
.sale-popup-container {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    display: none;
}
/* ===========================
   GLOBAL RESET
=========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ===========================
   SLIDER WRAPPER
=========================== */
#slider {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 80vh;
  max-height: 850px;
  overflow: hidden;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -50px; /* desktop only */
}

/* ===========================
   SLIDES CONTAINER
=========================== */
#slides {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ===========================
   EACH SLIDE
=========================== */
#slides .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

#slides .slide.active {
  opacity: 1;
  z-index: 2;
}

/* ===========================
   SLIDE MEDIA (IMG / VIDEO)
=========================== */
#slides .slide img,
#slides .slide video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top; /* keeps face/top visible */
}

/* ===========================
   MOBILE FIX
=========================== */
@media only screen and (max-width: 768px) {
  #slider {
   height: 251px;
        max-height: none;
        margin-top: 0;
        left: 0;
        transform: none;
        width: 100%;
        margin-top: -78px;
  }

  #slides {
    position: relative;
    height: auto;
  }

  #slides .slide {
    position: relative;     /* stack normally on mobile, not absolute */
    inset: auto;
    width: 100%;
    height: auto;
    display: none;          /* hide all by default */
    opacity: 1;
  }

  #slides .slide.active {
    display: block;         /* only show active */
    opacity: 1;
  }

  #slides .slide img,
  #slides .slide video {
    width: 100%;
    height: auto;           /* natural image ratio, NO cropping */
    object-fit: unset;
    display: block;
  }
}

/* ===========================
   EXISTING SITE STYLES
=========================== */
.ae-anno-announcement__text {
  --background-color: transparent;
  --text-color: #fff;
}

.tp-header-top-menu-item ul {
  color: black;
}

/* WHATSAPP BUTTON */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  cursor: pointer;
}

.whatsapp-button img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.whatsapp-button img:hover {
  transform: scale(1.1);
}

.main-menu.menu-style-2 {
  margin-inline-start: -63px;
}

.breadcrumb__area {
  padding-bottom: 0 !important;
  display: none;
}

.pl-30 {
  padding-left: 146px;
}

/* HIDE TAWK CHAT */
.tawk-min-container {
  display: none !important;
  visibility: hidden !important;
}

/* HEADER ROW */
.tp-header-bottom-2 .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

/* LOGO (LEFT) */
.logo {
    flex: 0 0 180px; /* fixed width so it never gets crushed */
}

/* MENU (CENTER) */
.tp-main-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.tp-main-menu-content ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* PREVENT TEXT BREAK */
.tp-main-menu-content ul li a {
    white-space: nowrap;
    font-size: 14px;
}

/* RIGHT SIDE */
.tp-header-bottom-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* SEARCH */
.tp-header-search-2 input {
    width: 160px;
    height: 36px;
}

/* ICONS */
.tp-header-action {
    display: flex;
    gap: 10px;
}

/* 🔥 IMPORTANT: RESET ONLY WHAT BREAKS THINGS */
.col-xl-2 {
    flex: 0 0 180px !important;
    max-width: 180px !important;
}

.col-xl-5.d-none.d-xl-block {
    flex: 1 !important;
    max-width: 100% !important;
}

.col-xl-5.col-lg-7.col-md-7.col-sm-8.col-6 {
    flex: 0 0 auto !important;
    max-width: none !important;
}