/*** Example: 

.container {
	background-color: blue;

	@include if-mobile {
		background-color:red;
	}
}
*/
/* Example
.offers-events-archive {
	@include mixins.respond(mobile) {
		column-count: 1;
	}
}
*/
/*** Example:
.heading {
  @include font-size((
    base: 18px,
		mobile: 18px,
    tablet: 20px,
    desktop-sm: 24px,
    desktop-md: 28px
  ));
}
**/
.mt-20 {
  margin-top: 20px;
}
.mt-36 {
  margin-top: 36px;
}
.mt-40 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}
.mb-36 {
  margin-bottom: 36px;
}
.mb-40 {
  margin-bottom: 20px;
}

.br {
  display: block;
}

/***  Visibility ***/
.display-none {
  display: none;
}

.display-block {
  display: block;
}

/***  Visibility > display:block ***/
@media (max-width: 576px) {
  .block-mobile {
    display: block;
  }
}

@media (max-width: 768px) {
  .block-tablet {
    display: block;
  }
}

@media (max-width: 992px) {
  .block-desktop-small {
    display: block;
  }
}

@media (max-width: 1200px) {
  .block-desktop-medium {
    display: block;
  }
}

@media (max-width: 1400px) {
  .block-lg {
    display: block;
  }
}

/***  Visibility > display:none ***/
@media (max-width: 576px) {
  .none-xs {
    display: none;
  }
}

@media (max-width: 768px) {
  .none-sm {
    display: none;
  }
}

.h-page-title {
  font-size: 48px;
  font-weight: 400;
  font-family: "Playfair Display", "Times New Roman", serif;
  color: #232323;
  margin: 40px 0px 20px 0px;
}
@media (max-width: 1400px) {
  .h-page-title {
    font-size: 48px;
  }
}
@media (max-width: 1200px) {
  .h-page-title {
    font-size: 48px;
    margin-top: 128px;
  }
}
@media (max-width: 992px) {
  .h-page-title {
    font-size: 48px;
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .h-page-title {
    font-size: 48px;
  }
}
@media (max-width: 576px) {
  .h-page-title {
    font-size: 28px;
  }
}

.home-section-title {
  font-size: 48px;
  font-weight: 400;
  font-family: #00539b;
  color: #232323;
  margin: 20px 0px 20px 0px;
  font-family: "Playfair Display", "Times New Roman", serif;
}
@media (max-width: 1400px) {
  .home-section-title {
    font-size: 48px;
  }
}
@media (max-width: 1200px) {
  .home-section-title {
    font-size: 48px;
    margin-top: 128px;
  }
}
@media (max-width: 992px) {
  .home-section-title {
    font-size: 48px;
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .home-section-title {
    font-size: 48px;
  }
}
@media (max-width: 576px) {
  .home-section-title {
    font-size: 28px;
  }
}
.home-section-title--with-underline {
  --line-width: 80%;
  /* change this to control underline width */
  --line-height: 1px;
  /* thickness of the underline */
  --line-color: currentColor;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  /* needed so pseudo-element can be positioned */
  position: relative;
  padding-bottom: 0.12em;
  /* small gap between text and line */
}
.home-section-title--with-underline::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  /* sits just under the text (inside padding-bottom) */
  width: var(--line-width);
  height: var(--line-height);
  background: var(--line-color);
  border-radius: 1px;
  /* tiny rounding looks neat for very thin lines */
}

.home-section-description {
  color: #333;
  font-size: 16px;
  font-weight: 300;
}
@media (max-width: 1400px) {
  .home-section-description {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .home-section-description {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .home-section-description {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .home-section-description {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .home-section-description {
    font-size: 14px;
  }
}

.h-undertext-outline {
  width: 100%;
  height: 25px;
  background: url(../images/icons/icon-our.png) no-repeat center center;
  margin-top: 20px;
}

.text-center {
  text-align: center;
}

.home-amenities-hero {
  padding: 0px 0;
}
@media (max-width: 768px) {
  .home-amenities-hero {
    padding: 0px 0;
  }
}
@media (max-width: 576px) {
  .home-amenities-hero {
    padding: 0px 0;
  }
}
.home-amenities-hero__header {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .home-amenities-hero__header {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .home-amenities-hero__header {
    margin-bottom: 30px;
  }
}
.home-amenities-hero__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .home-amenities-hero__container {
    padding: 0 16px;
  }
}
@media (max-width: 576px) {
  .home-amenities-hero__container {
    padding: 0 12px;
  }
}
.home-amenities-hero__container::after {
  display: none;
}
@media (max-width: 768px) {
  .home-amenities-hero__container::after {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: #6c757d;
    font-style: italic;
  }
}
@media (max-width: 576px) {
  .home-amenities-hero__container::after {
    font-size: 12px;
    margin-top: 10px;
  }
}
.home-amenities-hero__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  width: 100%;
  overflow: visible;
  padding: 0px 0px;
}
@media (max-width: 768px) {
  .home-amenities-hero__list {
    grid-template-columns: repeat(3, minmax(104px, 1fr));
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 15px;
    scroll-behavior: smooth;
    gap: 20px;
  }
  .home-amenities-hero__list::-webkit-scrollbar {
    height: 8px;
  }
  .home-amenities-hero__list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
  }
  .home-amenities-hero__list::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 4px;
  }
  .home-amenities-hero__list::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
  }
}
@media (max-width: 576px) {
  .home-amenities-hero__list {
    grid-template-columns: repeat(3, minmax(88px, 1fr));
    gap: 15px;
    padding-bottom: 10px;
    overflow-x: auto;
    overflow-y: visible;
  }
}
.home-amenities-hero__item {
  background: #ffffff;
  padding: 0px 0px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .home-amenities-hero__item {
    padding: 0px 0px;
  }
}
@media (max-width: 576px) {
  .home-amenities-hero__item {
    padding: 0px 0px;
  }
}
.home-amenities-hero__icon {
  height: 40px;
  width: auto;
  display: block;
}
.home-amenities-hero__content {
  display: flex;
  align-items: start;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  color: #2c3e50;
  line-height: 1.4;
  font-family: "Playfair Display", "Times New Roman", serif;
}
@media (max-width: 768px) {
  .home-amenities-hero__content {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .home-amenities-hero__content {
    font-size: 11px;
  }
}
.home-amenities-hero__img-container {
  display: flex;
  flex-direction: row;
}
.carousel-container {
  width: 100%;
  max-width: 1000px;
  margin: 60px auto 40px auto;
  overflow: hidden;
  position: relative;
  /* Optional: Add gradient fade effect */
  -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
  mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.carousel-track {
  display: flex;
  animation: discreteSlide 20s infinite;
  width: fit-content;
}

.carousel-group {
  display: flex;
  gap: 0px;
  flex-shrink: 0;
}

.carousel-image {
  width: auto;
  height: 280px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Steps animation - moves in discrete steps */
@keyframes stepSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Discrete keyframe animation with pauses */
@keyframes discreteSlide {
  0%, 18% {
    transform: translateX(0);
  }
  20%, 38% {
    transform: translateX(-310px);
    /* Width + gap of one image */
  }
  40%, 58% {
    transform: translateX(-620px);
    /* Two images */
  }
  60%, 78% {
    transform: translateX(-930px);
    /* Three images */
  }
  80%, 98% {
    transform: translateX(-1240px);
    /* Four images */
  }
  100% {
    transform: translateX(-50%);
    /* Reset to start */
  }
}
/* Animation keyframes */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Pause animation on hover */
/* Responsive design */
@media (max-width: 768px) {
  .carousel-image {
    height: 140px;
  }
}
@media (max-width: 480px) {
  .carousel-image {
    height: 120px;
  }
}
.home-facilities-services__carousel {
  width: 100%;
  max-width: 1000px;
  margin: 20px auto 40px auto;
  overflow: hidden;
  position: relative;
  /* Optional: Add gradient fade effect */
  -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
  mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}
.home-facilities-services__slide {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.home-facilities-services__slide > img {
  width: 100%;
  height: auto;
}

.outline {
  background: url("../images/icons/icon-our.png") no-repeat center center !important;
}

.h-slider-rooms__outline {
  background: url("../images/icons/icon-our.png") no-repeat center center !important;
}

/* Global */
/* Floating booking btn */
#floating-booking-btn {
  background-color: rgba(0, 66, 121, 0.9019607843);
  width: 52px;
  height: 60px;
  position: fixed;
  bottom: 5%;
  right: 2%;
  font-size: 40px;
  color: #ebebeb;
  border-radius: 5px;
  text-align: center;
  line-height: 42px;
  z-index: 999;
}

#floating-booking-btn img {
  height: 31px;
  margin-top: -4px;
}

#floating-booking-btn p {
  color: white;
  font-size: 14px;
  height: 20px;
  margin-top: -16px;
  font-weight: 600;
}

/* Floating TripAdvisor Image */
#floating-ta-btn {
  /* width: 52px; */
  /* height: 60px; */
  position: fixed;
  bottom: 5%;
  left: 2%;
  font-size: 40px;
  text-align: center;
  line-height: 42px;
  z-index: 999;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.5411764706);
}

#floating-ta-btn img {
  height: 134px;
  width: auto;
  /* box-shadow: 3px 5px 5px #0000008a; */
  /* margin-top: -4px; */
}

@media screen and (max-width: 1200px) {
  #floating-ta-btn {
    display: none;
  }
}
/* End Global */
.header-top-sky .bg-top-v {
  opacity: 1;
}

.header-sky.header-top-sky .navbar {
  opacity: 1;
}

footer .social-icons a:hover {
  background-color: #727272;
}

.custom-footer {
  background-color: #ffffff;
  color: #4a4a4a;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  position: relative;
}
.custom-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #c9a961 50%, transparent 100%);
}

.custom-footer__main {
  padding: 4rem 0 3rem;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .custom-footer__main {
    padding: 3rem 0 2rem;
  }
}
@media (max-width: 576px) {
  .custom-footer__main {
    padding: 2.5rem 0 1.5rem;
  }
}

.custom-footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.25fr;
  gap: 3rem;
}
@media (max-width: 992px) {
  .custom-footer__container {
    gap: 2rem;
    padding: 0 1.5rem;
  }
}
@media (max-width: 768px) {
  .custom-footer__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (max-width: 576px) {
  .custom-footer__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.25rem;
  }
}
.custom-footer__container--bottom {
  grid-template-columns: 1fr;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .custom-footer__container--bottom {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .custom-footer__column--about {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .custom-footer__column--contact {
    grid-column: 1/-1;
  }
}

.custom-footer__logo {
  margin-bottom: 1.5rem;
  display: inline-block;
}
@media (max-width: 576px) {
  .custom-footer__logo {
    display: block;
    text-align: center;
  }
}

.custom-footer__logo-img {
  height: clamp(3rem, 2.5rem + 1vw, 4rem);
  width: auto;
  display: block;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.custom-footer__logo-img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
@media (max-width: 576px) {
  .custom-footer__logo-img {
    margin: 0 auto;
  }
}

.custom-footer__description {
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.0625rem);
  line-height: 1.75;
  color: #4a4a4a;
  font-weight: 500;
  margin: 0 0 1.75rem 0;
  max-width: 320px;
}
@media (max-width: 576px) {
  .custom-footer__description {
    max-width: 100%;
  }
}

.custom-footer__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 1.125rem + 0.5vw, 1.5rem);
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 0.75rem;
}
.custom-footer__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, #c9a961 0%, transparent 100%);
}
@media (max-width: 576px) {
  .custom-footer__title {
    text-align: center;
  }
  .custom-footer__title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.custom-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.custom-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #333333;
  text-decoration: none;
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.0625rem);
  font-weight: 500;
  padding: 0.375rem 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  width: fit-content;
}
.custom-footer__link i {
  font-size: 0.75rem;
  color: #c9a961;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.8;
  font-weight: 600;
}
.custom-footer__link span {
  font-weight: 500;
}
.custom-footer__link:hover {
  color: #c9a961;
  padding-left: 0.5rem;
}
.custom-footer__link:hover i {
  transform: translateX(4px);
  opacity: 1;
}
@media (max-width: 576px) {
  .custom-footer__link {
    margin: 0 auto;
  }
}

.custom-footer__socials {
  display: flex;
  gap: 0.875rem;
  margin-top: 1.5rem;
}
@media (max-width: 576px) {
  .custom-footer__socials {
    justify-content: center;
  }
}

.custom-footer__social-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background-color: #f8f9fa;
  border: 2px solid #e8e8e8;
  border-radius: 50%;
  color: #333333;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.custom-footer__social-item i {
  font-size: 1.125rem;
  position: relative;
  z-index: 1;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
}
.custom-footer__social-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(135deg, #c9a961 0%, #b08d4b 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.custom-footer__social-item:hover {
  border-color: #c9a961;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
}
.custom-footer__social-item:hover::before {
  width: 100%;
  height: 100%;
}
@media (max-width: 576px) {
  .custom-footer__social-item {
    width: 2.5rem;
    height: 2.5rem;
  }
  .custom-footer__social-item i {
    font-size: 1rem;
  }
}

.custom-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.custom-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.125rem;
  color: #4a4a4a;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.custom-footer__contact-item i {
  font-size: 1.25rem;
  color: #c9a961;
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 1.5rem;
  text-align: center;
  font-weight: 600;
}
.custom-footer__contact-item--link {
  text-decoration: none;
  cursor: pointer;
}
.custom-footer__contact-item--link:hover {
  color: #c9a961;
  padding-left: 0.5rem;
}
.custom-footer__contact-item--link:hover .custom-footer__contact-value {
  color: #c9a961;
}

.custom-footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.custom-footer__contact-label {
  font-size: clamp(0.875rem, 0.85rem + 0.15vw, 0.95rem);
  color: #333333;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.custom-footer__contact-value {
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.0625rem);
  color: #333333;
  font-weight: 500;
  line-height: 1.6;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-footer__bottom {
  background-color: #f5f5f5;
  padding: 1.75rem 0;
  border-top: 1px solid #e8e8e8;
}
@media (max-width: 576px) {
  .custom-footer__bottom {
    padding: 1.5rem 0;
  }
}

@media (max-width: 768px) {
  .custom-footer__bottom-left,
  .custom-footer__bottom-right {
    width: 100%;
  }
}

.custom-footer__copyright {
  font-size: clamp(0.875rem, 0.85rem + 0.15vw, 0.95rem);
  color: #333333;
  font-weight: 500;
  margin: 0;
}

.custom-footer__bottom-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 576px) {
  .custom-footer__bottom-nav {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.custom-footer__bottom-link {
  color: #333333;
  text-decoration: none;
  font-size: clamp(0.875rem, 0.85rem + 0.15vw, 0.95rem);
  font-weight: 500;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.custom-footer__bottom-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #c9a961;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.custom-footer__bottom-link:hover {
  color: #c9a961;
}
.custom-footer__bottom-link:hover::after {
  width: 100%;
}

.custom-footer__bottom-divider {
  color: #4a4a4a;
  font-size: clamp(0.875rem, 0.85rem + 0.15vw, 0.95rem);
  font-weight: 600;
}
@media (max-width: 576px) {
  .custom-footer__bottom-divider {
    display: none;
  }
}

.custom-footer__managed-by {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .custom-footer__managed-by {
    justify-content: center;
  }
}

.custom-footer__managed-text {
  font-size: clamp(0.875rem, 0.85rem + 0.15vw, 0.95rem);
  color: #333333;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.custom-footer__byblos-link {
  display: inline-flex;
  align-items: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.custom-footer__byblos-link:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
.custom-footer__byblos-link:focus {
  outline: 2px solid #c9a961;
  outline-offset: 3px;
  border-radius: 4px;
}

.custom-footer__byblos-logo {
  height: clamp(1.75rem, 1.5rem + 0.5vw, 2.25rem);
  width: auto;
  display: block;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 576px) {
  .custom-footer__byblos-logo {
    height: clamp(1.5rem, 1.35rem + 0.4vw, 2rem);
  }
}

.custom-footer__link:focus,
.custom-footer__social-item:focus,
.custom-footer__contact-item:focus,
.custom-footer__bottom-link:focus {
  outline: 2px solid #c9a961;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .custom-footer__link,
  .custom-footer__social-item,
  .custom-footer__contact-item,
  .custom-footer__bottom-link,
  .custom-footer__logo-img,
  .custom-footer__byblos-logo {
    transition: none;
    animation: none;
  }
}
@media print {
  .custom-footer__socials {
    display: none;
  }
  .custom-footer {
    box-shadow: none;
  }
}
/*** Home > Welcome ***/
.home-welcome__container {
  width: 100%;
  padding: 40px 20px;
  background-color: rgba(0, 83, 155, 0.8);
  background-blend-mode: lighten;
  margin: 0 0 0px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home-welcome__title {
  color: #fff;
  text-align: center;
  font-family: "Playfair Display", "Times New Roman", serif;
  margin: 0 auto 22px auto;
  font-size: 32px;
}
@media (min-width: 36em) {
  .home-welcome__title {
    font-size: 40px;
  }
}
@media (min-width: 48em) {
  .home-welcome__title {
    font-size: 40px;
  }
}
@media (min-width: 62em) {
  .home-welcome__title {
    font-size: 40px;
  }
}
@media (min-width: 75em) {
  .home-welcome__title {
    font-size: 44px;
  }
}
.home-welcome__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
@media (max-width: 576px) {
  .home-welcome__divider {
    gap: 0.5rem;
  }
}
.home-welcome__divider i {
  color: #fff;
  font-size: 0.875rem;
}
@media (max-width: 576px) {
  .home-welcome__divider i {
    font-size: 0.75rem;
  }
}
.home-welcome__divider-line {
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #fff 50%, transparent 100%);
}
@media (max-width: 576px) {
  .home-welcome__divider-line {
    width: 80px;
    height: 1.5px;
  }
}
.home-welcome__description {
  max-width: 920px;
  font-weight: 300;
  font-family: Poppins, Verdana, Geneva, Tahoma, sans-serif;
  color: #fff;
  text-align: center;
  margin: 0 0 20px 0;
  font-size: 11px;
}
@media (min-width: 36em) {
  .home-welcome__description {
    font-size: 11px;
  }
}
@media (min-width: 48em) {
  .home-welcome__description {
    font-size: 11px;
  }
}
@media (min-width: 62em) {
  .home-welcome__description {
    font-size: 14px;
  }
}
@media (min-width: 75em) {
  .home-welcome__description {
    font-size: 14px;
  }
}
.home-welcome__bhg-motto-desktop {
  height: auto;
  max-width: 600px;
  width: 100%;
  display: block;
  margin: 0 auto 32px auto;
}
@media (max-width: 576px) {
  .home-welcome__bhg-motto-desktop {
    display: none;
  }
}
.home-welcome__bhg-motto-mobile {
  height: auto;
  max-width: 360px;
  width: 80%;
  display: none;
  margin: 0px auto 32px auto;
}
@media (max-width: 576px) {
  .home-welcome__bhg-motto-mobile {
    display: block;
  }
}

.home-tripadvisor-awards__container {
  max-width: 380px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0px;
  box-sizing: border-box;
  padding: 0px;
}
@media (max-width: 768px) {
  .home-tripadvisor-awards__container {
    max-width: 320px;
  }
}
.home-tripadvisor-awards__container > img {
  width: calc((100% - 60px) / 3);
  border-radius: 4px;
  display: block;
  height: auto;
}
@media (max-width: 992px) {
  .home-tripadvisor-awards__container > img {
    width: calc((100% - 40px) / 3);
  }
}

/*** Home > Highlights ***/
.home-highlights__carousel {
  margin: 60px 0px;
}
.home-highlights__carousel-item {
  width: 100%;
  background-color: orangered;
  margin: 4px;
}
.home-highlights__carousel-item-title {
  margin: 0px 0px 12px 0px;
  font-size: 26px;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
  															supported by Chrome, Edge, Opera and Firefox */
}
.home-highlights__carousel-item-text {
  font-size: 15px;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
  															supported by Chrome, Edge, Opera and Firefox */
}
.home-highlights__carousel-item-button {
  display: inline-block;
  margin-bottom: 40px;
  padding: 8px 22px;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid var(--h-color-theme-primary);
  color: var(--h-color-theme-primary);
  font-family: "Poppins", Verdana, sans-serif;
  font-size: 12px;
  font-weight: 600;
}
.home-highlights__carousel-item-button:hover {
  color: white;
  background-color: var(--h-color-theme-primary);
}

.offers-events-archive__container {
  max-width: 1200px;
  margin: 40px auto;
}
.offers-events-archive__item-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0px 0px 8px 0px;
}
.offers-events-archive__item {
  margin: 0px 0px 20px 0px;
  padding: 0px;
}
@media (max-width: 36em) {
  .offers-events-archive__item {
    margin: 0px 16px 20px 16px;
  }
}
.offers-events-archive__item-title {
  margin: 0px 0px 16px 0px;
  font-size: 18px;
}
@media (min-width: 48em) {
  .offers-events-archive__item-title {
    font-size: 20px;
  }
}
@media (min-width: 62em) {
  .offers-events-archive__item-title {
    font-size: 24px;
  }
}
@media (min-width: 75em) {
  .offers-events-archive__item-title {
    font-size: 28px;
  }
}
.offers-events-archive__item-caption__text {
  position: relative;
}
.offers-events-archive__read-more {
  text-decoration: underline;
  font-size: inherit;
  cursor: pointer;
}

/* FONTS */
@font-face {
  font-family: "BakerSignet BT";
  font-display: swap;
  src: url(../fonts/bakrsign.ttf) format("truetype");
  /* src: url(https:/marinabybloshotel.com/wp-content/shared/assets/fonts/bakrsign.ttf) format("truetype"); */
}
.h-review-us__container {
  margin: 0px auto;
  text-align: center;
  max-width: 500px;
}

.h-review-us__logo {
  display: block;
  height: 88px;
  width: auto;
  margin: 20px auto 32px auto;
}

.h-review-us__title {
  font-size: 28px;
  font-weight: 600;
  color: #00539b;
  margin-top: 0px;
  font-family: "BakerSignet BT", "Poppins", sans-serif;
  letter-spacing: 0.5px;
}

.h-review-us__sub-title {
  font-size: 16px;
  color: darkgray;
  margin-top: 8px;
  margin-bottom: 0;
}

.h-review-us__message {
  font-size: 16px;
  margin: 20px 0px;
}

/* Footer social media buttons */
.h-review-us__social-title {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.h-review-us__social-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.h-review-us__social-container > a > img {
  height: 40px;
  width: auto;
  margin: 0px 8px;
}

/*** Review us buttons styles version: 1 ***/
.h-review-us__links {
  margin: 40px auto;
}

.h-review-us__links > a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  background-color: #00539b;
  border-radius: 20px;
  box-shadow: 0px 0px 6px #404040;
  margin: 24px 8px;
  padding: 8px;
}

/*** Review us buttons styles version: 2 ***/
.h-review-us__links--v2 {
  margin: 40px auto;
}

.h-review-us__links--v2 > a {
  --h-color-primary: #00539b;
  display: block;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  color: var(--h-color-primary);
  border: 1px solid var(--h-color-primary);
  border-radius: 20px;
  box-shadow: 2px 2px 0px var(--h-color-primary);
  margin: 24px;
  padding: 8px;
}

/*** Review us with images as buttons - version 3 ***/
.h-review-us__links--v3 {
  margin: 20px auto;
  margin-top: 12px;
  margin-bottom: 20px;
  /* background-color: aquamarine; */
}

.h-review-us__links--v3 a {
  --h-color-primary: #030303;
  display: block;
  width: 100%;
  text-decoration: none;
  /* border: 1px solid var(--h-color-primary); */
  /* border-radius: 20px; */
  /* box-shadow: 2px 2px 0px var(--h-color-primary); */
  /* margin: 24px; */
  /* padding: 8px; */
}

.h-review-us__links--v3 a > img {
  width: 100%;
  height: auto;
  padding: 8px 16px;
}

.h-contact__info-list > li > a {
  color: black;
}

.gallery_product > .wrap-box {
  cursor: zoom-in !important;
}

.h-meeting-rooms__img-col {
  padding: 4px;
}
@media (max-width: 576px) {
  .h-meeting-rooms__img-col {
    padding: 4px 8px;
  }
}
.h-meeting-rooms__title {
  text-align: center;
  margin-bottom: 28px;
}
.h-meeting-rooms__title::before, .h-meeting-rooms__title::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  background-color: gray;
  vertical-align: middle;
  margin: 0 10px;
}
.h-meeting-rooms__facility_list {
  list-style-type: none;
  list-style-position: inside;
  column-count: 3;
  text-align: left;
  padding: 0px;
  max-width: 920px;
  margin: 4px auto;
}
@media (max-width: 768px) {
  .h-meeting-rooms__facility_list {
    columns: 2;
  }
}
@media (max-width: 576px) {
  .h-meeting-rooms__facility_list {
    columns: 1;
  }
}
.h-meeting-rooms__facility_list .icon {
  height: 22px;
  width: auto;
  margin-right: 2px;
}
.h-meeting-rooms__room-specs {
  min-width: 280px;
  margin: 20px auto;
}
.h-meeting-rooms__room-specs td {
  padding: 6px 0px;
  font-size: 16px;
}
.h-meeting-rooms__room-specs td:nth-child(2) {
  text-align: right;
}
.h-meeting-rooms__room-specs td.indent {
  padding-left: 20px;
}
.h-meeting-rooms__contacts > p {
  font-size: 18px;
  margin-bottom: 20px;
}
.h-meeting-rooms__contacts a {
  text-decoration: underline;
  font-size: 18px;
  margin: 8px 0px;
}
.h-meeting-rooms__contacts a:hover, .h-meeting-rooms__contacts a:focus {
  opacity: 90%;
}

.explore__container {
  display: block;
  margin: 20px auto;
  width: 100%;
  max-width: 400px;
  padding: 20px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background-color: #fff;
}
@media (max-width: 576px) {
  .explore__container {
    box-shadow: none;
    border-radius: 0px;
    margin: 0px auto;
    padding: 8px 16px;
  }
}
.explore__logo {
  display: block;
  width: 160px;
  height: auto;
  margin: 0px auto 20px auto;
}
@media (max-width: 576px) {
  .explore__logo {
    margin: 20px auto 30px auto;
    width: 160px;
  }
}
.explore-list {
  display: flex;
  flex-direction: column;
}
.explore-list__item {
  display: flex;
  flex-direction: column;
}
.explore-list__outlet-name {
  display: inline;
  text-align: left;
  font-family: Poppins, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #00539b;
  line-height: 1.2;
  font-weight: 500;
  margin: 8px 0 6px 0;
}
@media (max-width: 576px) {
  .explore-list__outlet-name {
    font-size: 28px;
  }
}
.explore-list__outlet-location {
  display: inline;
  font-family: Poppins, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  text-align: left;
  color: black;
  margin-top: 0px;
}
.explore-list__outlet-description {
  display: inline;
  font-family: Poppins, Verdana, Geneva, Tahoma, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  text-align: left;
  color: black;
  margin-top: 6px;
}
.explore-list__carousel {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: thin;
  /* Firefox */
  padding: 0px 0px 6px 0;
  margin: 0px -12px 0 -8px;
}
.explore-list__carousel > span {
  margin: 0px 4px 0px 0px;
  position: relative;
  padding: 4px;
}
.explore-list__carousel-img {
  display: block;
  height: 180px;
  width: auto;
  cursor: zoom-in;
  border-radius: 5px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.explore-list__carousel-text {
  position: absolute;
  left: 4px;
  bottom: 4px;
  right: 4px;
  height: 21px;
  margin: 0px;
  padding: 2px 0px 0px 6px;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.5803921569);
  color: rgba(255, 255, 255, 0.8588235294);
  border-radius: 5px 0px 5px 5px;
}
.explore-list__carousel-zoom-icon {
  position: absolute;
  right: 4px;
  top: 4px;
  height: 30px;
  width: auto;
  padding: 1px 0px 1px 1px;
  margin: 0px;
  z-index: 2;
  opacity: 50%;
  border-radius: 0px 5px 0px 5px;
  background: rgba(0, 0, 0, 0.5803921569);
  overflow: hidden;
}
.explore-list__link {
  display: inline-block;
  margin: 6px 4px;
  text-align: center;
}
.explore-list__link > span {
  display: inline-block;
  background-color: #dddddd;
  border-radius: 22px;
  padding: 8px;
  margin-bottom: 0px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}
.explore-list__link > span > img {
  display: block;
  height: 20px;
  width: auto;
}
.explore-list__link > p {
  font-size: 12px;
}

/* FONTS */
@font-face {
  font-family: "BakerSignet BT";
  font-display: swap;
  src: url(../fonts/bakrsign.ttf) format("truetype");
  /* src: url(https:/marinabybloshotel.com/wp-content/shared/assets/fonts/bakrsign.ttf) format("truetype"); */
}
.room-stay-feedback__container {
  margin: 20px 20px 20px 20px;
  padding: 0px;
  text-align: left;
  max-width: 400px;
  font-family: "Poppins", sans-serif;
  color: black;
}
.room-stay-feedback__container .stars {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  font-size: 0;
  line-height: 0;
  margin: 0px;
  width: 33%;
}
.room-stay-feedback__container .stars a {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0px 0px 0px 5px;
  padding: 0;
  background-image: url(../images/icons/ic-star.svg);
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  opacity: 60%;
}
.room-stay-feedback__container .stars a.selected {
  background-image: url(../images/icons/ic-star-filled.svg);
  opacity: 100%;
}
.room-stay-feedback__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
}
.room-stay-feedback__logo {
  height: 68px;
  width: auto;
  margin-bottom: 6px;
}
.room-stay-feedback__title {
  font-size: 20px;
  margin: 16px 0px 4px 0px;
  text-align: center;
  color: #00539b;
}
.room-stay-feedback__description {
  font-size: 10px;
  line-height: 1.4;
  margin-bottom: 0px;
  text-align: center;
}
.room-stay-feedback__yes-no-field {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 8px;
}
.room-stay-feedback__yes-no-answer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-size: 11px;
  width: 20%;
}
.room-stay-feedback__yes-no-answer > span {
  margin-right: 2px;
}
.room-stay-feedback__yes-no-answer > input {
  margin-right: 6px;
}
.room-stay-feedback__rating-field {
  display: flex;
  flex-direction: row;
  margin-bottom: 8px;
}
.room-stay-feedback__rating-label {
  display: inline-block;
  width: 68%;
  text-align: left;
  font-size: 11px;
  font-weight: 500;
}
.room-stay-feedback__form-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
}
.room-stay-feedback__feedback-field {
  width: 100%;
  font-size: 18px;
  margin-bottom: 20px;
  font-size: 11px;
}
.room-stay-feedback__btn-submit {
  background-color: #00539b;
  color: white;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.2px;
  cursor: pointer;
}
.room-stay-feedback__footer-text {
  font-size: 14px;
  color: black;
  margin-top: 20px;
}
.room-stay-feedback__footer-text a {
  color: inherit;
}
.room-stay-feedback__error-message {
  color: #ff0303;
  font-weight: bold;
  margin-top: 28px;
  font-size: 18px;
}

.single-offers-events__container {
  max-width: 600px;
  margin: 40px auto;
  padding: 0px 16px;
}
.single-offers-events h1 {
  margin-bottom: 20px;
}
.single-offers-events__img {
  margin: 0px auto 20px auto;
}

.archive-rooms-v2 {
  background-color: #ffffff;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.archive-rooms-v2__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 992px) {
  .archive-rooms-v2__container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 576px) {
  .archive-rooms-v2__container {
    padding: 0 1.25rem;
  }
}

.archive-rooms-v2__hero {
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}
@media (max-width: 768px) {
  .archive-rooms-v2__hero {
    min-height: 220px;
  }
}
@media (max-width: 576px) {
  .archive-rooms-v2__hero {
    min-height: 180px;
  }
}
.archive-rooms-v2__hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #c9a961 50%, transparent 100%);
}

.archive-rooms-v2__hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.archive-rooms-v2__hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2.5rem 0;
}
@media (max-width: 768px) {
  .archive-rooms-v2__hero-content {
    padding: 2rem 0;
  }
}
@media (max-width: 576px) {
  .archive-rooms-v2__hero-content {
    padding: 1.5rem 0;
  }
}

.archive-rooms-v2__hero-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.archive-rooms-v2__hero-subtitle {
  font-size: clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem);
  font-weight: 600;
  color: #c9a961;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.75rem;
}
@media (max-width: 576px) {
  .archive-rooms-v2__hero-subtitle {
    font-size: clamp(0.75rem, 0.7rem + 0.15vw, 0.8125rem);
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
  }
}

.archive-rooms-v2__hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 1rem 0;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
@media (max-width: 576px) {
  .archive-rooms-v2__hero-title {
    font-size: clamp(1.5rem, 1.25rem + 0.75vw, 2rem);
    margin: 0 0 0.75rem 0;
  }
}

.archive-rooms-v2__hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
@media (max-width: 576px) {
  .archive-rooms-v2__hero-divider {
    gap: 0.5rem;
  }
}
.archive-rooms-v2__hero-divider i {
  color: #c9a961;
  font-size: 0.875rem;
}
@media (max-width: 576px) {
  .archive-rooms-v2__hero-divider i {
    font-size: 0.75rem;
  }
}

.archive-rooms-v2__hero-divider-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #c9a961 50%, transparent 100%);
}
@media (max-width: 576px) {
  .archive-rooms-v2__hero-divider-line {
    width: 35px;
    height: 1.5px;
  }
}

.archive-rooms-v2__intro {
  padding: 2.5rem 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .archive-rooms-v2__intro {
    padding: 2rem 0;
  }
}
@media (max-width: 576px) {
  .archive-rooms-v2__intro {
    padding: 1.5rem 0;
  }
}

.archive-rooms-v2__intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.archive-rooms-v2__intro-text {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.7;
  color: #4a4a4a;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 576px) {
  .archive-rooms-v2__intro-text {
    font-size: clamp(0.9375rem, 0.88rem + 0.2vw, 1rem);
    line-height: 1.6;
  }
}
.archive-rooms-v2__intro-text strong {
  color: #333333;
  font-weight: 600;
}

.archive-rooms-v2__grid-section {
  padding: 3rem 0 5rem;
  background-color: #f8f9fa;
}
@media (max-width: 768px) {
  .archive-rooms-v2__grid-section {
    padding: 2.5rem 0 4rem;
  }
}
@media (max-width: 576px) {
  .archive-rooms-v2__grid-section {
    padding: 2rem 0 3rem;
  }
}

.archive-rooms-v2__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2.5rem;
}
@media (max-width: 992px) {
  .archive-rooms-v2__grid {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .archive-rooms-v2__grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
  }
}
@media (max-width: 576px) {
  .archive-rooms-v2__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.archive-rooms-v2__card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f0f1f4;
  display: flex;
  flex-direction: column;
}
.archive-rooms-v2__card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
  border-color: #d4b876;
}
.archive-rooms-v2__card:hover .archive-rooms-v2__card-image {
  transform: scale(1.1);
}
.archive-rooms-v2__card:hover .archive-rooms-v2__card-overlay {
  opacity: 1;
}
.archive-rooms-v2__card:hover .archive-rooms-v2__card-title-link {
  color: #c9a961;
}

.archive-rooms-v2__card-image-wrapper {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background-color: #f5f7f9;
}

.archive-rooms-v2__card-image-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.archive-rooms-v2__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.archive-rooms-v2__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.archive-rooms-v2__card-overlay-text {
  color: #ffffff;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(201, 169, 97, 0.95);
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.archive-rooms-v2__card-overlay-text i {
  font-size: 1.125rem;
}

.archive-rooms-v2__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  z-index: 2;
}
.archive-rooms-v2__badge--featured {
  background: linear-gradient(135deg, #c9a961 0%, #b08d4b 100%);
  color: #ffffff;
}

.archive-rooms-v2__price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid #f0f1f4;
  z-index: 2;
}

.archive-rooms-v2__price-from {
  display: block;
  font-size: clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem);
  color: #666666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.archive-rooms-v2__price-amount {
  display: block;
  font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.375rem);
  font-weight: 700;
  color: #c9a961;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.2;
}

.archive-rooms-v2__price-period {
  display: block;
  font-size: clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem);
  color: #666666;
  font-weight: 500;
}

.archive-rooms-v2__card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}

.archive-rooms-v2__card-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 1.25rem + 0.75vw, 2rem);
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}

.archive-rooms-v2__card-title-link {
  color: inherit;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.archive-rooms-v2__card-title-link:hover {
  color: #c9a961;
}

.archive-rooms-v2__card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 1rem 0;
  border-top: 1px solid #f0f1f4;
  border-bottom: 1px solid #f0f1f4;
}

.archive-rooms-v2__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.9375rem, 0.88rem + 0.2vw, 1rem);
  font-weight: 500;
  color: #4a4a4a;
}
.archive-rooms-v2__meta-item i {
  color: #c9a961;
  font-size: 1rem;
}

.archive-rooms-v2__card-excerpt {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.7;
  color: #4a4a4a;
  font-weight: 500;
  flex: 1;
}
.archive-rooms-v2__card-excerpt p {
  margin: 0;
}

.archive-rooms-v2__amenities {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.archive-rooms-v2__amenity-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: #f8f9fa;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  color: #c9a961;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: help;
}
.archive-rooms-v2__amenity-icon i {
  font-size: 0.875rem;
}
.archive-rooms-v2__amenity-icon:hover {
  background: #c9a961;
  color: #ffffff;
  border-color: #c9a961;
  transform: translateY(-2px);
}

.archive-rooms-v2__amenity-more {
  font-size: clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem);
  font-weight: 600;
  color: #666666;
  padding: 0.5rem 0.75rem;
  background: #f8f9fa;
  border-radius: 6px;
}

.archive-rooms-v2__card-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.archive-rooms-v2__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  white-space: nowrap;
}
.archive-rooms-v2__btn i {
  font-size: 1rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.archive-rooms-v2__btn--primary {
  background: linear-gradient(135deg, #c9a961 0%, #b08d4b 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  flex: 1;
}
.archive-rooms-v2__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
  color: rgb(226, 226, 226);
}
.archive-rooms-v2__btn--primary:hover i {
  transform: translateX(4px);
}
.archive-rooms-v2__btn--secondary {
  background: #f8f9fa;
  color: #333333;
  border-color: #e8e8e8;
  flex: 1;
}
.archive-rooms-v2__btn--secondary:hover {
  background: #c9a961;
  color: #ffffff;
  border-color: #c9a961;
  transform: translateY(-2px);
}
.archive-rooms-v2__btn--outline {
  background: transparent;
  color: #333333;
  border-color: #e8e8e8;
}
.archive-rooms-v2__btn--outline:hover {
  background: #c9a961;
  color: #ffffff;
  border-color: #c9a961;
}
.archive-rooms-v2__btn--large {
  padding: 1.125rem 2rem;
  font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.375rem);
}

.archive-rooms-v2__pagination {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #e8e8e8;
}
@media (max-width: 576px) {
  .archive-rooms-v2__pagination {
    margin-top: 3rem;
    padding-top: 2rem;
  }
}

.archive-rooms-v2__pagination-links {
  display: flex;
  justify-content: center;
}
.archive-rooms-v2__pagination-links ul {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.archive-rooms-v2__pagination-links li {
  margin: 0;
}
.archive-rooms-v2__pagination-links a,
.archive-rooms-v2__pagination-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  height: 2.75rem;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  color: #333333;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.archive-rooms-v2__pagination-links a:hover,
.archive-rooms-v2__pagination-links span:hover {
  background: #c9a961;
  color: #ffffff;
  border-color: #c9a961;
  transform: translateY(-2px);
}
.archive-rooms-v2__pagination-links .current {
  background: linear-gradient(135deg, #c9a961 0%, #b08d4b 100%);
  color: #ffffff;
  border-color: #c9a961;
}

.archive-rooms-v2__no-results {
  text-align: center;
  padding: 5rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.archive-rooms-v2__no-results-icon {
  font-size: 4rem;
  color: #c9a961;
  margin-bottom: 2rem;
  opacity: 0.5;
}

.archive-rooms-v2__no-results-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 1.25rem + 0.75vw, 2rem);
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 1rem 0;
}

.archive-rooms-v2__no-results-text {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.8;
  color: #4a4a4a;
  font-weight: 500;
  margin: 0 0 2rem 0;
}

.archive-rooms-v2__cta {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 5rem 0;
  border-top: 1px solid #e8e8e8;
}
@media (max-width: 768px) {
  .archive-rooms-v2__cta {
    padding: 4rem 0;
  }
}
@media (max-width: 576px) {
  .archive-rooms-v2__cta {
    padding: 3rem 0;
  }
}

.archive-rooms-v2__cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.archive-rooms-v2__cta-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 1.25rem + 0.75vw, 2rem);
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 1.25rem 0;
  letter-spacing: 0.5px;
}

.archive-rooms-v2__cta-text {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.8;
  color: #4a4a4a;
  font-weight: 500;
  margin: 0 0 2.5rem 0;
}

.archive-rooms-v2__cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .archive-rooms-v2__cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

.archive-rooms-v2__btn:focus,
.archive-rooms-v2__card-image-link:focus,
.archive-rooms-v2__card-title-link:focus {
  outline: 3px solid #c9a961;
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .archive-rooms-v2__hero,
  .archive-rooms-v2__cta,
  .archive-rooms-v2__card-actions,
  .archive-rooms-v2__pagination {
    display: none;
  }
  .archive-rooms-v2__card {
    box-shadow: none;
    border: 1px solid #e8e8e8;
    break-inside: avoid;
  }
}
.single-rooms-v2 {
  background-color: #ffffff;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.single-rooms-v2__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 992px) {
  .single-rooms-v2__container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 576px) {
  .single-rooms-v2__container {
    padding: 0 1.25rem;
  }
}

.single-rooms-v2__hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  background-color: #f5f7f9;
}
@media (max-width: 768px) {
  .single-rooms-v2__hero {
    height: 400px;
  }
}
@media (max-width: 576px) {
  .single-rooms-v2__hero {
    height: 300px;
  }
}

.single-rooms-v2__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.single-rooms-v2__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-rooms-v2__featured-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #c9a961 0%, #b08d4b 100%);
  color: #ffffff;
  border-radius: 50px;
  font-size: clamp(0.9375rem, 0.88rem + 0.2vw, 1rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 2;
}
@media (max-width: 576px) {
  .single-rooms-v2__featured-badge {
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    font-size: clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem);
  }
}

.single-rooms-v2__back-btn {
  position: absolute;
  top: 2rem;
  left: 2rem;
  padding: 0.875rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #333333;
  border-radius: 50px;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
.single-rooms-v2__back-btn:hover {
  background: #ffffff;
  color: #c9a961;
  transform: translateX(-4px);
}
@media (max-width: 576px) {
  .single-rooms-v2__back-btn {
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.625rem 1rem;
    font-size: clamp(0.9375rem, 0.88rem + 0.2vw, 1rem);
  }
}

.single-rooms-v2__hero-compact {
  background: #f8f9fa;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e8e8e8;
}
@media (max-width: 576px) {
  .single-rooms-v2__hero-compact {
    padding: 1rem 0;
  }
}

.single-rooms-v2__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.single-rooms-v2__back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: #333333;
  text-decoration: none;
  font-size: clamp(0.9375rem, 0.88rem + 0.2vw, 1rem);
  font-weight: 600;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.single-rooms-v2__back-link:hover {
  color: #c9a961;
  transform: translateX(-4px);
}
.single-rooms-v2__back-link i {
  font-size: 0.875rem;
}

.single-rooms-v2__featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #c9a961 0%, #b08d4b 100%);
  color: #ffffff;
  border-radius: 50px;
  font-size: clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.single-rooms-v2__content {
  padding: 4rem 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .single-rooms-v2__content {
    padding: 3rem 0;
  }
}
@media (max-width: 576px) {
  .single-rooms-v2__content {
    padding: 2rem 0;
  }
}

.single-rooms-v2__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
}
@media (max-width: 992px) {
  .single-rooms-v2__layout {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .single-rooms-v2__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.single-rooms-v2__main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 576px) {
  .single-rooms-v2__main {
    gap: 2rem;
  }
}

.single-rooms-v2__header {
  background: transparent;
  padding: 2rem 0 1rem;
  border-radius: 0;
  box-shadow: none;
  border: none;
  border-bottom: 2px solid #f0f1f4;
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .single-rooms-v2__header {
    padding: 1.5rem 0 1rem;
  }
}

.single-rooms-v2__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 1.5rem + 1.5vw, 2.75rem);
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.single-rooms-v2__room-type {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: #f8f9fa;
  color: #c9a961;
  border-radius: 50px;
  font-size: clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.single-rooms-v2__price-badge {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(176, 141, 75, 0.05) 100%);
  padding: 1.25rem 2rem;
  border-radius: 12px;
  border: 2px solid #d4b876;
  text-align: center;
  min-width: 200px;
}
@media (max-width: 768px) {
  .single-rooms-v2__price-badge {
    width: 100%;
  }
}

.single-rooms-v2__price-label {
  display: block;
  font-size: clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem);
  color: #666666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.single-rooms-v2__price-amount {
  display: block;
  font-size: clamp(1.5rem, 1.25rem + 0.75vw, 2rem);
  font-weight: 700;
  color: #c9a961;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.2;
}

.single-rooms-v2__price-period {
  display: block;
  font-size: clamp(0.9375rem, 0.88rem + 0.2vw, 1rem);
  color: #4a4a4a;
  font-weight: 500;
  margin-top: 0.25rem;
}

.single-rooms-v2__photos-section {
  margin-bottom: 3rem;
}
@media (max-width: 576px) {
  .single-rooms-v2__photos-section {
    margin-bottom: 2rem;
  }
}

.single-rooms-v2__section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 1.25rem + 0.75vw, 2rem);
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
@media (max-width: 576px) {
  .single-rooms-v2__section-title {
    font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.375rem);
  }
}

.single-rooms-v2__section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #c9a961 0%, #b08d4b 100%);
  border-radius: 8px;
  color: #ffffff;
  flex-shrink: 0;
}
.single-rooms-v2__section-icon i {
  font-size: 1rem;
}
@media (max-width: 576px) {
  .single-rooms-v2__section-icon {
    width: 2rem;
    height: 2rem;
  }
  .single-rooms-v2__section-icon i {
    font-size: 0.875rem;
  }
}

.single-rooms-v2__photos-count {
  margin-left: auto;
  font-size: clamp(0.9375rem, 0.88rem + 0.2vw, 1rem);
  font-weight: 600;
  color: #c9a961;
  padding: 0.375rem 1rem;
  background: rgba(201, 169, 97, 0.1);
  border-radius: 50px;
}

.single-rooms-v2__photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}
@media (max-width: 992px) {
  .single-rooms-v2__photos-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}
@media (max-width: 576px) {
  .single-rooms-v2__photos-grid {
    grid-template-columns: 1fr;
  }
}

.single-rooms-v2__photo-item {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 10px;
  display: block;
  cursor: pointer;
  background: #f5f7f9;
  border: 1px solid #f0f1f4;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.single-rooms-v2__photo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #d4b876;
}
.single-rooms-v2__photo-item:hover .single-rooms-v2__photo-image {
  transform: scale(1.08);
}
.single-rooms-v2__photo-item:hover .single-rooms-v2__photo-overlay {
  opacity: 1;
}

.single-rooms-v2__photo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.single-rooms-v2__photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.single-rooms-v2__photo-overlay i {
  color: #ffffff;
  font-size: 2rem;
}

.single-rooms-v2__amenities-services {
  margin-bottom: 2.5rem;
}

.single-rooms-v2__as-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
@media (max-width: 576px) {
  .single-rooms-v2__as-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.single-rooms-v2__as-column {
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #f0f1f4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
@media (max-width: 576px) {
  .single-rooms-v2__as-column {
    padding: 1.5rem;
  }
}

.single-rooms-v2__as-subtitle {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 600;
  color: #333333;
  margin: 0 0 1.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f1f4;
}
.single-rooms-v2__as-subtitle i {
  color: #c9a961;
  font-size: 1.125rem;
}

.single-rooms-v2__as-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.single-rooms-v2__as-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 6px;
  font-size: clamp(0.9375rem, 0.88rem + 0.2vw, 1rem);
  color: #333333;
  font-weight: 500;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.single-rooms-v2__as-item:hover {
  background: #ffffff;
  padding-left: 1rem;
  border-left: 3px solid #c9a961;
}
.single-rooms-v2__as-item i {
  color: #c9a961;
  font-size: 1rem;
  width: 1.25rem;
  text-align: center;
  flex-shrink: 0;
}

.single-rooms-v2__quick-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 10px;
}
@media (max-width: 576px) {
  .single-rooms-v2__quick-info {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1rem;
  }
}

.single-rooms-v2__quick-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.single-rooms-v2__quick-item i {
  font-size: 1.75rem;
  color: #c9a961;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .single-rooms-v2__quick-item i {
    font-size: 1.5rem;
  }
}
.single-rooms-v2__quick-item div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.single-rooms-v2__quick-label {
  font-size: clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem);
  color: #666666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.single-rooms-v2__quick-value {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  color: #333333;
  font-weight: 600;
}

.single-rooms-v2__section {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f1f4;
}
@media (max-width: 576px) {
  .single-rooms-v2__section {
    padding: 1.5rem;
  }
}

.single-rooms-v2__section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 1.25rem + 0.75vw, 2rem);
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 2rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f1f4;
}

.single-rooms-v2__section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: linear-gradient(135deg, #c9a961 0%, #b08d4b 100%);
  border-radius: 10px;
  color: #ffffff;
}
.single-rooms-v2__section-icon i {
  font-size: 1.125rem;
}

.single-rooms-v2__description {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.8;
  color: #4a4a4a;
  font-weight: 500;
}
.single-rooms-v2__description p {
  margin: 0 0 1rem 0;
}
.single-rooms-v2__description p:last-child {
  margin-bottom: 0;
}
.single-rooms-v2__description strong {
  color: #333333;
  font-weight: 600;
}

.single-rooms-v2__description-compact {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #f0f1f4;
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .single-rooms-v2__description-compact {
    padding: 1.25rem;
  }
}

.single-rooms-v2__section-title-small {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 600;
  color: #333333;
  margin: 0 0 0.875rem 0;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.single-rooms-v2__section-title-small i {
  color: #c9a961;
  font-size: 1rem;
}

.single-rooms-v2__description-content {
  font-size: clamp(0.9375rem, 0.88rem + 0.2vw, 1rem);
  line-height: 1.6;
  color: #4a4a4a;
  font-weight: 500;
}
.single-rooms-v2__description-content p {
  margin: 0 0 0.75rem 0;
}
.single-rooms-v2__description-content p:last-child {
  margin-bottom: 0;
}
.single-rooms-v2__description-content strong {
  color: #333333;
  font-weight: 600;
}

.single-rooms-v2__amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
@media (max-width: 576px) {
  .single-rooms-v2__amenities-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

.single-rooms-v2__amenity-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #f8f9fa;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.single-rooms-v2__amenity-card:hover {
  background: #ffffff;
  border-color: #d4b876;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.single-rooms-v2__amenity-card:hover .single-rooms-v2__amenity-icon {
  background: linear-gradient(135deg, #c9a961 0%, #b08d4b 100%);
  color: #ffffff;
}

.single-rooms-v2__amenity-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #ffffff;
  border-radius: 8px;
  color: #c9a961;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.single-rooms-v2__amenity-icon i {
  font-size: 1rem;
}

.single-rooms-v2__amenity-name {
  font-size: clamp(0.9375rem, 0.88rem + 0.2vw, 1rem);
  color: #333333;
  font-weight: 600;
  flex: 1;
}

.single-rooms-v2__features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
@media (max-width: 576px) {
  .single-rooms-v2__features-list {
    grid-template-columns: 1fr;
  }
}

.single-rooms-v2__feature-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  color: #333333;
  font-weight: 500;
}
.single-rooms-v2__feature-item i {
  color: #c9a961;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.single-rooms-v2__bathroom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
@media (max-width: 576px) {
  .single-rooms-v2__bathroom-grid {
    grid-template-columns: 1fr;
  }
}

.single-rooms-v2__bathroom-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: clamp(0.9375rem, 0.88rem + 0.2vw, 1rem);
  color: #333333;
  font-weight: 500;
}
.single-rooms-v2__bathroom-item i {
  color: #c9a961;
  font-size: 1rem;
}

.single-rooms-v2__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.single-rooms-v2__gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
  display: block;
  cursor: pointer;
}
.single-rooms-v2__gallery-item:hover .single-rooms-v2__gallery-image {
  transform: scale(1.1);
}
.single-rooms-v2__gallery-item:hover .single-rooms-v2__gallery-overlay {
  opacity: 1;
}

.single-rooms-v2__gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.single-rooms-v2__gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.single-rooms-v2__gallery-overlay i {
  color: #ffffff;
  font-size: 2rem;
}

.single-rooms-v2__sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 768px) {
  .single-rooms-v2__sidebar {
    order: -1;
  }
}

.single-rooms-v2__booking-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 2px solid #d4b876;
  position: sticky;
  top: 2rem;
}
@media (max-width: 768px) {
  .single-rooms-v2__booking-card {
    position: static;
  }
}
@media (max-width: 576px) {
  .single-rooms-v2__booking-card {
    padding: 1.5rem;
  }
}

.single-rooms-v2__booking-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.375rem);
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.single-rooms-v2__booking-title i {
  color: #c9a961;
}

.single-rooms-v2__booking-price {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(176, 141, 75, 0.05) 100%);
  border-radius: 10px;
  margin-bottom: 2rem;
}

.single-rooms-v2__booking-price-label {
  display: block;
  font-size: clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem);
  color: #666666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.single-rooms-v2__booking-price-amount {
  display: block;
  font-size: clamp(2rem, 1.5rem + 1.5vw, 2.75rem);
  font-weight: 700;
  color: #c9a961;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.2;
}

.single-rooms-v2__booking-price-period {
  display: block;
  font-size: clamp(0.9375rem, 0.88rem + 0.2vw, 1rem);
  color: #4a4a4a;
  font-weight: 500;
  margin-top: 0.25rem;
}

.single-rooms-v2__booking-actions {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.single-rooms-v2__booking-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem);
  color: #4a4a4a;
  font-weight: 500;
}
.single-rooms-v2__booking-note i {
  color: #c9a961;
  font-size: 1rem;
  flex-shrink: 0;
}
.single-rooms-v2__booking-note--top {
  margin-bottom: 1.5rem;
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid #d4b876;
}

.single-rooms-v2__details-card {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f1f4;
}
@media (max-width: 576px) {
  .single-rooms-v2__details-card {
    padding: 1.5rem;
  }
}

.single-rooms-v2__details-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 1.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #f0f1f4;
}
.single-rooms-v2__details-title i {
  color: #c9a961;
  font-size: 1rem;
}

.single-rooms-v2__details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.single-rooms-v2__detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 6px;
  font-size: clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem);
  gap: 1rem;
}

.single-rooms-v2__detail-label {
  color: #4a4a4a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.single-rooms-v2__detail-label i {
  color: #c9a961;
  font-size: 0.875rem;
  width: 1rem;
  text-align: center;
}

.single-rooms-v2__detail-value {
  color: #333333;
  font-weight: 600;
  text-align: right;
}

.single-rooms-v2__support-card {
  background: linear-gradient(135deg, #c9a961 0%, #b08d4b 100%);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  color: #ffffff;
}
@media (max-width: 576px) {
  .single-rooms-v2__support-card {
    padding: 1.5rem;
  }
}

.single-rooms-v2__support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-bottom: 1.25rem;
}
.single-rooms-v2__support-icon i {
  font-size: 1.75rem;
}

.single-rooms-v2__support-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.375rem);
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

.single-rooms-v2__support-text {
  font-size: clamp(0.9375rem, 0.88rem + 0.2vw, 1rem);
  line-height: 1.6;
  margin: 0 0 1.25rem 0;
  opacity: 0.95;
}

.single-rooms-v2__support-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: rgba(255, 255, 255, 0.95);
  color: #b08d4b;
  border-radius: 50px;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.single-rooms-v2__support-phone:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.single-rooms-v2__details-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f1f4;
}

.single-rooms-v2__details-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.375rem);
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 1.5rem 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f1f4;
}

.single-rooms-v2__details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.single-rooms-v2__detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: clamp(0.9375rem, 0.88rem + 0.2vw, 1rem);
}

.single-rooms-v2__detail-label {
  color: #666666;
  font-weight: 600;
}

.single-rooms-v2__detail-value {
  color: #333333;
  font-weight: 600;
}

.single-rooms-v2__help-card {
  background: linear-gradient(135deg, #c9a961 0%, #b08d4b 100%);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  color: #ffffff;
}

.single-rooms-v2__help-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}
.single-rooms-v2__help-icon i {
  font-size: 2rem;
}

.single-rooms-v2__help-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.375rem);
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.single-rooms-v2__help-text {
  font-size: clamp(0.9375rem, 0.88rem + 0.2vw, 1rem);
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  opacity: 0.95;
}

.single-rooms-v2__help-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  color: #b08d4b;
  border-radius: 50px;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.single-rooms-v2__help-phone:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.single-rooms-v2__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 1.75rem;
  border-radius: 8px;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  white-space: nowrap;
}
.single-rooms-v2__btn i {
  font-size: 1rem;
}
.single-rooms-v2__btn--primary {
  background: linear-gradient(135deg, #c9a961 0%, #b08d4b 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.single-rooms-v2__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}
.single-rooms-v2__btn--secondary {
  background: #f8f9fa;
  color: #333333;
  border-color: #e8e8e8;
}
.single-rooms-v2__btn--secondary:hover {
  background: #c9a961;
  color: #ffffff;
  border-color: #c9a961;
}
.single-rooms-v2__btn--outline {
  background: transparent;
  color: #333333;
  border-color: #e8e8e8;
}
.single-rooms-v2__btn--outline:hover {
  background: #f8f9fa;
  border-color: #c9a961;
}
.single-rooms-v2__btn--full {
  width: 100%;
}

.single-rooms-v2__related {
  padding: 5rem 0;
  background: #f8f9fa;
  border-top: 1px solid #e8e8e8;
}
@media (max-width: 768px) {
  .single-rooms-v2__related {
    padding: 4rem 0;
  }
}
@media (max-width: 576px) {
  .single-rooms-v2__related {
    padding: 3rem 0;
  }
}

.single-rooms-v2__related-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 1.25rem + 0.75vw, 2rem);
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 3rem 0;
}
@media (max-width: 576px) {
  .single-rooms-v2__related-title {
    margin: 0 0 2rem 0;
  }
}

.single-rooms-v2__related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
@media (max-width: 576px) {
  .single-rooms-v2__related-grid {
    grid-template-columns: 1fr;
  }
}

.single-rooms-v2__related-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f1f4;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.single-rooms-v2__related-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.single-rooms-v2__related-card:hover .single-rooms-v2__related-image {
  transform: scale(1.1);
}
.single-rooms-v2__related-card:hover .single-rooms-v2__related-overlay {
  opacity: 1;
}

.single-rooms-v2__related-image-link {
  display: block;
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.single-rooms-v2__related-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.single-rooms-v2__related-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  color: #ffffff;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 600;
}

.single-rooms-v2__related-content {
  padding: 1.5rem;
}

.single-rooms-v2__related-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.375rem);
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.75rem 0;
}
.single-rooms-v2__related-name a {
  color: inherit;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.single-rooms-v2__related-name a:hover {
  color: #c9a961;
}

.single-rooms-v2__related-price {
  font-size: clamp(0.9375rem, 0.88rem + 0.2vw, 1rem);
  color: #4a4a4a;
  font-weight: 500;
}
.single-rooms-v2__related-price strong {
  color: #c9a961;
  font-weight: 700;
}

.single-rooms-v2__btn:focus,
.single-rooms-v2__back-btn:focus,
.single-rooms-v2__related-image-link:focus {
  outline: 3px solid #c9a961;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .single-rooms-v2__mobile-booking,
  .single-rooms-v2__sidebar {
    display: none;
  }
}
.single-rooms-v2__mobile-booking {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 2px solid #e8e8e8;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  z-index: 999;
  padding: 1rem;
}
@media (max-width: 768px) {
  .single-rooms-v2__mobile-booking {
    display: none;
  }
}

.single-rooms-v2__mobile-booking-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.single-rooms-v2__mobile-price {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.single-rooms-v2__mobile-price-amount {
  font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.375rem);
  font-weight: 700;
  color: #c9a961;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.2;
}

.single-rooms-v2__mobile-price-period {
  font-size: clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem);
  color: #4a4a4a;
  font-weight: 500;
}

.single-rooms-v2__mobile-actions {
  display: flex;
  gap: 0.625rem;
}

.single-rooms-v2__mobile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  border-radius: 8px;
  font-size: clamp(0.9375rem, 0.88rem + 0.2vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.single-rooms-v2__mobile-btn i {
  font-size: 1rem;
}
.single-rooms-v2__mobile-btn--call {
  background: linear-gradient(135deg, #c9a961 0%, #b08d4b 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.single-rooms-v2__mobile-btn--call:active {
  transform: scale(0.98);
}
.single-rooms-v2__mobile-btn--whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.single-rooms-v2__mobile-btn--whatsapp:active {
  transform: scale(0.98);
}

.mr__container {
  display: block;
  margin: 0px auto 40px auto;
  width: 100%;
}
.mr__hero-img {
  display: block;
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 0px auto 20px auto;
}
.mr__ramadan-kareem {
  display: block;
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 0px auto 8px auto;
}
@media (max-width: 576px) {
  .mr__ramadan-kareem {
    width: 80%;
  }
}
.mr__sub-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 35px;
  font-weight: 400;
  text-align: center;
  color: rgb(53, 53, 53);
  margin-top: 0px;
}
@media (max-width: 576px) {
  .mr__sub-title {
    font-size: 18px;
  }
}
.mr__text-1 {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  max-width: 600px;
  margin: 0px auto 28px auto;
}
@media (max-width: 576px) {
  .mr__text-1 {
    font-size: 14px;
  }
}
.mr__text-1 > a {
  color: #00539b;
  font-weight: 500;
  text-decoration: underline;
}
.mr__highlights-list {
  list-style-type: none;
  max-width: 700px;
  width: 100%;
  margin: 0px auto 40px auto;
  column-count: 2;
}
@media (max-width: 576px) {
  .mr__highlights-list {
    column-count: 1;
    font-size: 14px;
  }
}
.mr__highlights-list > * {
  text-align: left;
  font-weight: 500;
}
@media (max-width: 576px) {
  .mr__highlights-list > * {
    text-align: center;
  }
}
.mr__contact-info-title {
  font-size: 22px;
  display: block;
  text-align: center;
  margin-bottom: 20px;
  text-decoration: underline;
  color: rgb(58, 58, 58);
}
@media (max-width: 576px) {
  .mr__contact-info-title {
    font-size: 20px;
  }
}
.mr__telephone-whatsapp {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}
.mr__address {
  font-size: 16px;
  text-align: center;
  color: black;
  margin: 0px auto 8px auto;
}
.mr__google-maps-btn {
  display: inline-block;
  font-size: 14px;
  margin: 20px auto 20px auto;
  border: 1px solid #00539b;
  padding: 10px 16px;
}
.mr__google-maps-btn:hover {
  background-color: #00539b;
  color: white;
}
.mr__floating-whatsapp-btn {
  position: fixed;
  display: block;
  right: 40px;
  bottom: 40px;
  z-index: 999;
}
@media (max-width: 576px) {
  .mr__floating-whatsapp-btn {
    right: 20px;
    bottom: 20px;
  }
}
.mr__floating-whatsapp-btn > img {
  height: 60px;
  width: auto;
  filter: drop-shadow(2px 2px 2px #cdcdcd);
}
@media (max-width: 576px) {
  .mr__floating-whatsapp-btn > img {
    height: 44px;
  }
}
.mr__contact-info {
  font-size: 16px;
  text-align: center;
  color: black;
  margin: 20px 0px 10px 0px;
}
@media (max-width: 576px) {
  .mr__contact-info {
    font-size: 14px;
  }
}
.mr__contact-info > a {
  color: black;
}
.mr__copyright-text {
  border-top: 1px solid #fff;
  font-size: 13px;
  font-weight: 300;
  color: black;
  text-align: center;
  margin-top: 20px;
}
.mr__gallery-container {
  column-count: 3;
  column-gap: 0;
  white-space: nowrap;
  padding: 20px;
}
@media (max-width: 576px) {
  .mr__gallery-container {
    column-count: 2;
    padding: 12px;
  }
}
.mr__gallery-container > a {
  margin: 0px;
  display: grid;
  grid-template-rows: 1fr auto;
  break-inside: avoid;
}
.mr__gallery-container > a > img {
  grid-row: 1/-1;
  grid-column: 1;
  padding: 4px;
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
  display: block;
}
.mr__gallery-container > a > img:hover {
  transform: scale(1.05);
  cursor: zoom-in;
}/*# sourceMappingURL=elite-byblos-hotel.min.css.map */