@font-face {
  font-family: "AvertaStd-Regular";
  src: url("../font/AvertaStd-Regular.ttf") format("truetype"); }
@font-face {
  font-family: "AvertaStd-Bold";
  src: url("../font/AvertaStd-Bold.ttf") format("truetype"); }
@font-face {
  font-family: "AvertaStd-Semibold";
  src: url("../font/AvertaStd-Semibold.ttf") format("truetype"); }
.primary-btn {
  padding: 1.2rem;
  border-radius: 1rem;
  background-color: #fff;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  color: #070707;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; }
  .disabled.primary-btn {
    opacity: 0.6;
    cursor: not-allowed; }
  .primary-btn:hover {
    text-decoration: none;
    background-color: black;
    color: white; }

.badge {
  background-color: #49c5b6;
  font-size: 0.75rem;
  padding: 0.5rem;
  margin-bottom: 0.5rem; }
  .badge.out-of-stock {
    background-color: #E74C3C; }

body {
  background-color: #f8f9fa;
  font-family: "AvertaStd-Regular"; }

.section-title {
  margin-bottom: 2rem;
  font-family: "AvertaStd-Semibold"; }

.container-wraper {
  position: relative;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto; }

.spacing {
  margin-bottom: 2rem; }

.a-link {
  cursor: pointer;
  color: black;
  text-decoration: none; }

hr {
  margin: 3rem 0; }

.section {
  margin-bottom: 2rem; }

.section-header {
  text-align: center;
  margin-top: 3rem; }
  .section-header .profile-img img {
    align-items: center;
    border-style: solid;
    border-width: 0.5rem;
    border-color: white;
    border-radius: 50%;
    width: 8rem;
    height: auto; }
  .section-header .profile-name {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem; }
    .section-header .profile-name h3 {
      font-weight: 600;
      margin-bottom: 0; }
    .section-header .profile-name .icon {
      width: 1.3rem; }
      .section-header .profile-name .icon img {
        width: 100%;
        height: auto; }
  .section-header .profile-description {
    margin-bottom: 1rem; }
  .section-header .profile-icon {
    display: flex;
    justify-content: center;
    gap: 0.5rem; }
    .section-header .profile-icon .icon {
      background-color: white;
      border-radius: 50%;
      width: 3rem;
      height: 3rem;
      display: flex;
      justify-content: center;
      align-items: center; }

.section-link a {
  text-decoration: none;
  cursor: pointer; }
  .section-link a.disable {
    opacity: 0.5;
    cursor: not-allowed; }
.section-link .link-block {
  padding: 1.2rem;
  border-radius: 1rem;
  background-color: #fff;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  color: #070707;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem; }
  .section-link .link-block:hover {
    box-shadow: 2px 2px 5px 0px rgba(224, 222, 225, 0.5);
    transform: translateY(-0.25em); }

.section-product .product-grid,
.section-room .product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1rem; }
  .section-product .product-grid a,
  .section-room .product-grid a {
    text-decoration: none;
    color: black; }
    .section-product .product-grid a .product-box .product-box-img,
    .section-room .product-grid a .product-box .product-box-img {
      position: relative; }
      .section-product .product-grid a .product-box .product-box-img.out-of-stock span.status,
      .section-room .product-grid a .product-box .product-box-img.out-of-stock span.status {
        position: absolute;
        left: 0.75rem;
        top: 0.75rem;
        color: black;
        background-color: #ffffff;
        padding: 4px 10px;
        font-size: 0.875rem;
        border-radius: 5rem;
        z-index: 5;
        font-weight: 600; }
      .section-product .product-grid a .product-box .product-box-img.out-of-stock img,
      .section-room .product-grid a .product-box .product-box-img.out-of-stock img {
        opacity: 0.5; }
      .section-product .product-grid a .product-box .product-box-img img,
      .section-room .product-grid a .product-box .product-box-img img {
        border-radius: 0.75rem;
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
        aspect-ratio: 1 / 1;
        object-fit: cover; }
    .section-product .product-grid a .product-box h5,
    .section-room .product-grid a .product-box h5 {
      margin-bottom: 0.25rem; }
    .section-product .product-grid a .product-box p,
    .section-room .product-grid a .product-box p {
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      white-space: normal;
      height: initial;
      -webkit-line-clamp: 2;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      line-height: 1.5;
      margin-bottom: 0; }

@media screen and (max-width: 538.98px) {
  .section-product .product-grid {
    gap: 1rem; }
    .section-product .product-grid img {
      border-radius: 1rem; } }
footer {
  margin-bottom: 6rem; }
  footer .logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem; }
    footer .logo img {
      width: 3rem; }
  footer p {
    text-align: center; }

.back-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f8f9fa;
  margin-top: 1rem; }
  .back-nav .nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .back-nav .back-btn {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    cursor: pointer;
    color: black;
    text-decoration: none; }
    .back-nav .back-btn h6 {
      margin-bottom: 0; }
  .back-nav .primary-btn {
    margin-bottom: 0;
    padding: 0.75rem 1rem; }

@media screen and (max-width: 538.98px) {
  .back-nav {
    margin: 0 -12px;
    padding: 1rem 12px; } }
#products .product-container .product-img img {
  border-radius: 1.25rem;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center; }
#products .product-container .product-img #product-main,
#products .product-container .product-img #product-thumbnail {
  margin-bottom: 1rem; }
#products .product-container .product-header {
  margin-bottom: 1rem; }
  #products .product-container .product-header .title {
    font-weight: bold; }
#products .product-container .product-description {
  margin-bottom: 2rem; }
  #products .product-container .product-description p {
    line-height: 1.7; }

.splide__arrow--prev {
  left: 0; }

.splide__arrow--next {
  right: 0; }

.splide__slide {
  opacity: 0.6; }

.splide__slide.is-active {
  opacity: 1;
  border-radius: 1.4rem; }

#product-categories .category-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  margin-top: 1rem; }
  #product-categories .category-container h5 {
    font-weight: bold; }
  #product-categories .category-container .view-more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    margin-bottom: 0;
    color: black;
    text-decoration: none; }
#product-categories .section-product {
  margin-bottom: 4rem; }

.home-link {
  text-decoration: none; }
  .home-link .home {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem; }
    .home-link .home img {
      width: 2rem;
      height: 2rem;
      border-radius: 50%; }
    .home-link .home h5 {
      color: black; }

.offcanvas-icon:hover svg {
  fill: white; }

.list-group-item {
  cursor: pointer;
  padding-left: 0; }
  .list-group-item.back {
    background-color: #F2F2F2;
    border-radius: 1rem;
    padding-left: 0.75rem; }
  .list-group-item a {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .list-group-item a.submenu {
      position: relative; }
      .list-group-item a.submenu:after {
        content: '';
        display: inline-block;
        width: 1em;
        height: 1em;
        background-image: url("../../public/img/icon/chevron-right.svg");
        background-size: contain;
        background-repeat: no-repeat;
        margin-left: auto; }
      .list-group-item a.submenu.back {
        justify-content: initial; }
        .list-group-item a.submenu.back:before {
          content: '';
          display: inline-block;
          width: 1em;
          height: 1em;
          background-image: url("../../public/img/icon/chevron-left.svg");
          background-size: contain;
          background-repeat: no-repeat;
          margin-right: 1rem; }
        .list-group-item a.submenu.back:after {
          content: none; }

.submenu-tab {
  cursor: pointer; }

[data-fancybox-toggle-slideshow],
[data-fancybox-toggle-thumbs],
[data-fancybox-toggle-fullscreen] {
  display: none; }

.fancybox__container {
  transition: none !important; }

.no-animation {
  transition: none !important;
  animation: none !important; }

#room .room-container .room-img img {
  border-radius: 1.25rem;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover; }
#room .room-container .room-img #room-main,
#room .room-container .room-img #room-thumbnail {
  margin-bottom: 1rem; }
#room .room-container .room-header {
  margin-bottom: 1rem; }
  #room .room-container .room-header .title {
    font-weight: bold; }
#room .room-container .room-description {
  margin-bottom: 2rem; }
  #room .room-container .room-description p {
    line-height: 1.7; }
#room .room-header .location img {
  margin-top: -5px; }

#room-locations .category-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  gap: 0.5rem; }
  #room-locations .category-container h5 {
    font-weight: bold;
    margin-bottom: 0; }
  #room-locations .category-container .view-more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    margin-bottom: 0;
    color: black;
    text-decoration: none;
    border-radius: 50%;
    border: 1px solid black;
    min-width: 1.5rem;
    width: 2rem;
    height: 2rem; }
#room-locations .section-room {
  margin-bottom: 4rem; }

.section-nav .nav-bottom {
  background-color: white;
  height: 4rem;
  width: 600px;
  position: fixed;
  bottom: 0%;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  z-index: 10; }
  .section-nav .nav-bottom .nav-container {
    display: flex;
    justify-content: space-around;
    padding: 0.75rem 1rem; }
    .section-nav .nav-bottom .nav-container .nav-item {
      display: flex;
      align-items: center;
      flex-direction: column;
      text-decoration: none;
      color: #6a6a6a; }
      .section-nav .nav-bottom .nav-container .nav-item img {
        margin-bottom: 0.25rem; }
      .section-nav .nav-bottom .nav-container .nav-item .title {
        font-size: 0.8rem; }

@media screen and (max-width: 767.98px) {
  .section-nav {
    width: 540px; }
    .section-nav .nav-bottom {
      width: 540px; } }
@media screen and (max-width: 538.98px) {
  .section-nav .nav-bottom {
    width: 100%; } }
.section-tags {
  margin: 1.5rem 0 2rem; }

.tag-scroll {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.25rem; }
  .tag-scroll::-webkit-scrollbar {
    display: none; }

.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  padding: 0.55rem 1rem;
  border-radius: 2rem;
  background-color: #fff;
  border: 1.5px solid #e5e5e5;
  font-size: 0.9rem;
  font-weight: 600;
  color: #070707;
  text-decoration: none;
  transition: all 200ms ease;
  box-shadow: rgba(149, 157, 165, 0.12) 0px 4px 12px; }
  .tag-chip:hover, .tag-chip.active {
    background-color: #070707;
    border-color: #070707;
    color: #fff; }

.section-anchor {
  scroll-margin-top: 1.5rem; }

.section-header {
  text-align: left;
  margin-top: 2rem; }

.profile-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem; }
  .profile-top .profile-img img {
    width: 5rem;
    height: 5rem;
    object-fit: cover;
    border-radius: 50%;
    border-width: 0.25rem; }
  .profile-top .profile-name {
    flex: 1;
    justify-content: flex-start;
    margin-bottom: 0; }
  .profile-top .profile-icon {
    justify-content: flex-end; }

.profile-roles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 1rem; }
  .profile-roles .role-item {
    font-size: 0.92rem;
    font-weight: 600;
    color: #333; }

.section-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem; }
  .section-label-row h5 {
    margin-bottom: 0;
    font-family: "AvertaStd-Semibold"; }
  .section-label-row a {
    font-size: 0.85rem;
    color: #555;
    text-decoration: none; }
    .section-label-row a:hover {
      color: #070707; }

.airbnb-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: rgba(149, 157, 165, 0.15) 0px 4px 16px;
  margin-bottom: 1rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  transition: all 200ms ease; }
  .airbnb-card:hover {
    box-shadow: rgba(149, 157, 165, 0.35) 0px 6px 20px;
    transform: translateY(-2px); }
  .airbnb-card img {
    width: 5rem;
    height: 5rem;
    border-radius: 0.75rem;
    object-fit: cover;
    flex-shrink: 0; }
  .airbnb-card .airbnb-card-body h6 {
    font-weight: 700;
    margin-bottom: 0.2rem; }
  .airbnb-card .airbnb-card-body p {
    color: #555;
    font-size: 0.82rem;
    margin-bottom: 0;
    line-height: 1.4; }
  .airbnb-card .airbnb-card-arrow {
    margin-left: auto;
    color: #aaa;
    font-size: 1.1rem;
    flex-shrink: 0; }

.client-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem; }

.client-item {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  box-shadow: rgba(149, 157, 165, 0.15) 0px 4px 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: all 200ms ease; }
  .client-item:hover {
    box-shadow: rgba(149, 157, 165, 0.35) 0px 6px 20px;
    transform: translateY(-2px); }
  .client-item .client-logo {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    flex-shrink: 0; }
  .client-item .client-info {
    flex: 1; }
  .client-item .client-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.1rem; }
  .client-item .client-desc {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0; }
  .client-item .client-arrow {
    color: #aaa;
    font-size: 1rem;
    flex-shrink: 0; }
