/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font: 400 12px/1.4 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin: 0;
  color: #fff;
  background: #000;
  background-image: url(img/default-bg.jpg);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  overflow-x: hidden;
}

a {
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
}
a:hover {
  color: #ff0097;
}

img {
  width: 100%;            
  height: auto;           
  display: block;
  object-fit: cover;      
  image-rendering: auto;  
  -webkit-user-drag: none; 
  -webkit-touch-callout: none;
}




#site-wrapper {
  width: 1200px;              
  margin: 15px auto 20px;     
}



.header.clear {
  width: 100%;
  padding: 10px 12px;
  background: #111;
  border: 3px solid #ff4d4d;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 0 18px rgba(0, 0, 0, .7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-logo {
  font-size: 2rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-logo span {
  color: #ff4d4d;
  margin: 0 3px;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.header-search input {
  height: 34px;
  padding: 0 8px;
  border-radius: 4px;
  border: 1px solid #666;
  background: #111;
  color: #fff;
  min-width: 220px;
  font-size: 1.2rem;
  outline: none;
}

.header-search input::placeholder {
  color: #aaa;
}

.header-search button {
  height: 34px;
  padding: 0 14px;
  border: none;
  border-radius: 4px;
  background: #dd4343;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.header-search button:hover {
  opacity: .9;
  transform: translateY(-1px);
}

/* ================= MENU ================= */

.nav.main-nav {
  background: transparent;
}

.top-menu {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 4px 12px 8px;
  background: #111;
  border-left: 3px solid #ff4d4d;
  border-right: 3px solid #ff4d4d;
  border-bottom: 3px solid #ff4d4d;
  border-radius: 0 0 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .6);
}

.top-menu > li {
  flex: 1 1 0;
}

.top-menu > li > a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 8px 4px;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

/* màu nút */
.home-color a { background: #ff0000; }
.central-color a { background: #66508c; }
.east-color a { background: #ffa500; }
.geylang-color a { background: #a990dd; }
.north-color a { background: #008000; }
.west-color a { background: #0076cc; }
.massage-color a { background: #a617b3; }

.top-menu > li > a:hover,
.top-menu > li.current-menu-item > a {
  transform: translateY(-1px);
  box-shadow: 0 0 8px rgba(0, 0, 0, .7);
  opacity: .96;
}



.wrapper {
  width: 100%;
  margin-top: 15px;
  padding: 15px;
  background: #111;
  border-radius: 10px;
  border: 2px solid #ff4d4d;
  font-size: 1.4rem;
}

/* TITLES */

.section-title {
  text-align: center;
  color: #ff4d4d;
  font-size: 2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #ff4d4d;
  padding-bottom: 6px;
}

/* CAROUSEL */

.optional-carousel {
  margin-bottom: 40px;
}

.model-card {
  background: #000;
  border: 1px solid #ff4d4d;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  transition: transform .25s ease;
}

.model-card:hover {
  transform: translateY(-3px);
}

.model-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.model-info {
  padding: 8px;
  font-size: 1.3rem;
  line-height: 1.4;
}

.model-info h3 {
  color: #ff4d4d;
  font-size: 1.5rem;
}

/* TOP FEATURED */

.top-featured {
  margin-bottom: 10px;
}

.top-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* luôn 4 cột */
  gap: 15px;
}

.featured-card {
  background: #000;
  border: 1px solid #ff4d4d;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: transform .25s ease;
}

.featured-card:hover {
  transform: translateY(-3px);
}

.featured-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.badge-hot {
  position: absolute;
  top: 6px;
  left: 6px;
  background: red;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 3px;
}

.card-body {
  padding: 10px;
  text-align: center;
}

.card-body h3 {
  font-size: 1.5rem;
  color: #ff4d4d;
}

.area {
  color: #ccc;
}

.price {
  color: gold;
  font-weight: bold;
}

/* FOOTER */

.footer {
  background-color: #000;
  border-top: 5px solid #d71345;
  padding: 10px 0;
  text-align: center;
  color: #999;
  font-size: 1.4rem;
  margin-top: 15px;
}

/* SPLIDE BASE */

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__track {
  overflow: hidden;
  position: relative;
}

.splide__list {
  display: flex;
  margin: 0 !important;
  padding: 0 !important;
}

.splide__slide {
  flex-shrink: 0;
  list-style: none !important;
}



@media (max-width: 1200px) {
  #site-wrapper {
    transform-origin: top center;
    transform: scale(calc(100vw / 1200));
  }
}


.site-notice{
  margin-top: 14px;
  padding: 18px 18px 8px;
  text-align: center;
}


.site-notice p{
  margin: 0 0 14px 0;
}


.site-notice__white{
  color: #ffffff;
  font-size: 34px;        
  font-weight: 900;
  font-style: italic;
  line-height: 1.25;
  text-shadow: 0 4px 18px rgba(0,0,0,.85);
}


.site-notice__red{
  color: #ff2e2e;
  font-size: 36px;        
  font-weight: 900;
  font-style: italic;
  line-height: 1.25;
  text-shadow: 0 4px 18px rgba(0,0,0,.85);
}


.site-notice__red a{
  color: #ff2e2e;
  text-decoration: none;
  border-bottom: 4px solid rgba(255,46,46,.90);
  padding-bottom: 2px;
}

.site-notice__red a:hover{
  text-decoration: underline;
}


.site-notice__keyword{
  color: #ff2e2e;
  font-weight: 900;
}

.site-notice{
  margin-top: 14px;
  padding: 18px 18px 8px;
  text-align: center;
}


.site-notice p{
  margin: 0 0 14px 0;
}


.site-notice__white{
  color: #ffffff;
  font-size: 34px;        
  font-weight: 900;
  font-style: italic;
  line-height: 1.25;
  text-shadow: 0 4px 18px rgba(0,0,0,.85);
}


.site-notice__red{
  color: #ff2e2e;
  font-size: 36px;        
  font-weight: 900;
  font-style: italic;
  line-height: 1.25;
  text-shadow: 0 4px 18px rgba(0,0,0,.85);
}


.site-notice__red a{
  color: #ff2e2e;
  text-decoration: none;
  border-bottom: 4px solid rgba(255,46,46,.90);
  padding-bottom: 2px;
}

.site-notice__red a:hover{
  text-decoration: underline;
}


.site-notice__keyword{
  color: #ff2e2e;
  font-weight: 900;
}
