/* ===== SINGLE ROOM PAGE STYLES ===== */
.gtb-single-room-page-wrap {
  position: relative;
  margin-bottom: 60px;
}
.gtb-single-room-image-background {
  margin-left: 40px !important;
}
.gtb-single-room-image-background img {
  width: 70%;
  height: auto;
  max-height: 650px;
  object-fit: cover;
  display: block;
}

.gtb-single-room-floating-card {
  position: absolute;
  right: 2%;
  transform: translateY(-50%);
  background: #ffffff;
  padding: 40px;
  max-width: 778px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: top 0.3s ease;
}

.gtb-single-room-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.gtb-single-room-price {
  font-size: 1.25rem;
  color: #e66b6b;
  margin-bottom: 20px;
}

.gtb-single-room-description {
  margin-bottom: 20px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.gtb-single-room-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 30px;
}

.gtb-single-spec-item {
  display: grid;
  grid-template-columns: auto 100px 1fr;
  align-items: start;
  gap: 10px;
  margin-bottom: 10px;
  line-height: normal;
}

.gtb-single-spec-icon {
  color: #e66b6b;
  font-size: 1rem;
}

.gtb-single-spec-label {
  color: #888;
  font-weight: 600;
  font-size: 0.9rem;
}

.gtb-single-spec-value {
  color: #333;
  font-size: 0.8rem;
  font-weight: 400;
}

.gtb-single-room-form {
  margin-top: 30px;
}

/* ===== BOTTOM SECTION ===== */
.gtb-single-room-bottom-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.gtb-single-room-form-card,
.gtb-other-rooms-section {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.08);
  flex: 1 1 500px;
  min-width: 300px;
  width: 100% !important;
  margin-bottom: 20px;
}

/* ===== OTHER ROOMS SLIDER ===== */
.gtb-other-rooms-swiper {
  margin: 0 auto;
  padding: 0 20px;
}

.gtb-other-room-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding-bottom: 15px;
  width: 340px;
  /* max-width: 320px; */
  margin-bottom: 20px !important;
  margin: 0 auto;
}

.gtb-other-room-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gtb-other-room-card h3 {
  font-size: 1.15rem;
  margin: 12px 0 6px;
  color: #2c3e50;
}

.gtb-other-room-price {
  color: #e66b6b;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .gtb-single-room-page-wrap {
    margin: 10px;
  }

  .gtb-single-room-image-background img {
    width: 100%;
  }

  .gtb-single-room-floating-card {
    position: relative;
    transform: translate(2%, -20%);
    top: 0px;
    max-width: 95%;
    padding: 20px;
    margin: 0 auto;
  }

  .gtb-single-room-form-card {
    position: relative;
    transform: none;
    width: 100%;
    top: -50px;
  }

  .gtb-single-room-specs {
    grid-template-columns: 1fr;
  }

  .gtb-single-room-bottom-section {
    flex-direction: column;
    gap: 40px;
  }

  .gtb-single-room-form-card,
  .gtb-other-rooms-section {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0 auto;
    h2 {
      font-size: 2rem;
    }
  }

  .gtb-other-room-card {
    width: 100% !important;
    max-width: 100%;
    margin-bottom: 20px !important;
  }
}

/* room-list.php */
.gtb-rooms-section {
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding: 60px 0;
  background: #fdf8f5;
}

.gtb-room-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.gtb-room-background {
  width: 70%;
}

.gtb-room-background img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 650px;
}

.gtb-room-card-floating {
  position: absolute;
  top: 50%;
  right: 1%;
  transform: translateY(-50%);
  background: #ffffff;
  width: 778px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.gtb-room-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.gtb-room-price {
  font-size: 1.25rem;
  line-height: 44px;
  color: #e66b6b;
  margin-bottom: 20px;
}

.gtb-room-price span {
  font-size: 1.25rem;
  color: #e66b6b;
}

.gtb-room-description {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.6;
}

.gtb-room-details {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.gtb-room-details li {
  margin-bottom: 6px;
  color: #444;
}

.gtb-room-actions {
  display: flex;
  gap: 20px;
}

.gtb-btn {
  text-decoration: none;
  padding: 10px 24px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: 0.3s ease;
  display: inline-block;
}

/* BOOK NOW — solid button */
.gtb-book {
  border: 2px solid #e66b6b;
  background: #e66b6b;
  color: #fff;
}

.gtb-book:hover {
  background: #455d58;
  border-color: #455d58;
  color: white;
}

/* VIEW DETAILS — text-only link */
.gtb-details {
  border: none;
  background: transparent;
  color: #e66b6b;
  padding: 10px 0;
}

.gtb-details:hover {
  color: #c25151;
  text-decoration: none;
}

.gtb-room-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  margin-bottom: 30px;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.spec-icon {
  color: #e66b6b;
  font-size: 1rem;
  flex-shrink: 0;
}

.spec-label {
  color: #888;
  font-weight: 600;
  font-size: 0.9rem;
  margin-right: 4px;
  line-height: 1.4;
}

.spec-value {
  color: #333;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.5;
}

/* === Responsive Styles === */
@media (max-width: 1024px) {
  .gtb-room-card-floating {
    width: 90%;
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: 20px auto;
  }

  .gtb-room-background {
    width: 100%;
  }

  .gtb-room-wrap {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .gtb-room-card-floating {
    padding: 20px;
  }

  .gtb-room-title {
    font-size: 1.5rem;
  }

  .gtb-room-price {
    font-size: 28px;
    line-height: 36px;
  }

  .spec-label,
  .spec-value {
    font-size: 0.8rem;
  }
}

/*room-home.php*/
.home-rooms-section {
  background: #fdf8f5;
  padding: 80px 0;
  margin: 40px;
}

.gtb-home-rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px 20px;
}

.gtb-home-room-tile {
  height: 300px;
  position: relative;
  overflow: hidden;
}

.gtb-room-slider-wrapper {
  position: relative;
  padding: 0 60px; /* space for arrows */
}

.swiper {
  overflow: hidden;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: #e66b6b;
  font-size: 24px;
  width: 36px;
  height: 36px;
  background: transparent;
  /* border-radius: 50%; */
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  transition: 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: transparent;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.gtb-home-room-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.gtb-home-room-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.gtb-home-room-image-wrap img {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
  display: block;
}

/* Bottom overlay strip */
.gtb-home-room-overlay {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  width: auto;
  max-width: 80%;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 20px;
  box-sizing: border-box;
  z-index: 2;
}

.gtb-home-room-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 2px;
  line-height: 1.3;
}

.gtb-home-room-price {
  font-size: 0.95rem;
  color: #e66b6b;
}

@media (max-width: 768px) {
  .gtb-room-card-floating {
    position: static;
    transform: none;
    margin: 20px auto 0;
    width: 90%;
  }

  .gtb-room-slider-wrapper {
    padding: 0;
  }

  .gtb-room-specs {
    grid-template-columns: 1fr;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }

  .gtb-home-room-tile {
    height: 300px;
  }

  .gtb-home-room-image-wrap img {
    height: 100%;
    object-fit: cover;
  }

  .gtb-home-room-overlay {
    top: 50%;
    bottom: auto;
    max-width: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .gtb-home-room-title {
    font-size: 1.15rem;
  }

  .gtb-home-room-price {
    font-size: 1.05rem;
  }
}
/* GALLERY */
.gtb-room-gallery-masonry {
  column-count: 3;
  column-gap: 15px;
  margin-top: 30px;
}

.gtb-room-gallery-masonry a {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
  break-inside: avoid;
}

.gtb-room-gallery-masonry img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  display: block;
}
/* Single Room Gallery Section */
.gtb-single-room-gallery-section {
  margin: 40px;
}

.gtb-single-room-gallery-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.gtb-room-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.gtb-room-gallery a {
  display: block;
  width: calc(33.33% - 10px); /* 3 images per row on desktop */
}

.gtb-room-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

@media (max-width: 768px) {
  .gtb-room-gallery a {
    width: calc(50% - 10px); /* 2 per row on tablets/phones */
  }
}

@media (max-width: 480px) {
  .gtb-room-gallery a {
    width: 100%; /* 1 per row on small phones */
  }
}
@media (max-width: 1024px) {
  .gtb-room-gallery-masonry {
    column-count: 2;
  }
  .gtb-single-room-floating-card {
    /* top: 7.5%; */
  }
}

@media (max-width: 600px) {
  .gtb-room-gallery-masonry {
    column-count: 1;
  }
}

/* SPECIAL PACKAGES */
.special-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.special-package-card {
  background-color: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  padding: 20px;
  transition: box-shadow 0.3s ease;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.special-package-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.special-package-card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
  height: auto;
}

.special-package-card h3 {
  margin: 10px 0;
  font-size: 1.2rem;
  color: #333;
}

.special-package-card p {
  margin: 5px 0;
  font-size: 0.95rem;
  color: #666;
}

.special-package-card .btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background-color: #3c3c3c;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.special-package-card .btn:hover {
  background-color: #000;
}

@media (max-width: 480px) {
  .special-packages-grid {
    grid-template-columns: 1fr;
  }
}

/* WOOCOMMERCE */
.wc-block-components-order-summary
  .wc-block-components-order-summary-item__individual-prices {
  display: none !important;
}
/* CART */
.wc-block-cart-item__prices {
  display: none !important;
}
/* === UNIVERSAL MOBILE STYLES FOR style.css === */
@media (max-width: 768px) {
  .container,
  .gtb-archive-container,
  .special-package-container {
    padding: 20px 15px;
  }

  h1,
  h2,
  h3 {
    font-size: 1.25rem;
  }

  .gtb-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .gtb-single-room-floating-card,
  .gtb-room-card-floating {
    width: 95%;
    margin: 0 auto;
  }

  .gtb-home-rooms-grid {
    grid-template-columns: 1fr;
  }
}
