@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  /* Primary */
  --primary-cyan-70: #448899;
  --primary-cyan-50: #66aabb;
  --primary-cyan-20: #aaddee;
  /* Secondary */
  --secondary-gray-70: #666666;
  --secondary-gray-50: #757575;
  --secondary-gray-20: #e8e8e8;
  --secondary-gray-10: #eeeeee;
  /* Additional */
  --white: #ffffff;
  --black: #000000;
  --gray-500: #cccccc;
  /* Gradients */
  --gradient-light-cyan: linear-gradient(to left, #337788, #66aabb);
  --gradient-dark-cyan: linear-gradient(0deg, #337788, #66aabb);
}

body {
  font-family: "Noto Sans TC";
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .container {
    padding: 10px;
  }
}

img {
  max-width: 100%;
  vertical-align: middle;
  height: auto;
  object-fit: cover;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

.text-h1 {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 28px;
  line-height: 24px;
  font-weight: 700;
}

.text-h2 {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
}

.text-h3-bold {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
}

.text-h3-regular {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 24px;
  line-height: 24px;
  font-weight: 400;
}

.text-h4-bold {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 19px;
  line-height: 16px;
  font-weight: 700;
}

.text-btn-bold {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 19px;
  line-height: 16px;
  font-weight: 700;
}

.text-btn-regular {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 19px;
  line-height: 16px;
  font-weight: 400;
}

.text-content-bold {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.text-content-regular {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.text-body-bold {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.text-body-medium {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.text-body-regular {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.text-list {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
}

header {
  padding: 10px;
}
header .header__title {
  color: #448899;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
}
@media (max-width: 600px) {
  header .header__title {
    font-size: 24px;
  }
}

.btn-user {
  width: 50px;
  height: 50px;
}

.user-menu {
  position: relative;
}

.user-dropdown {
  position: absolute;
  top: 48px;
  right: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  width: 140px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.user-dropdown li {
  list-style: none;
}

.user-dropdown a,
.user-dropdown button {
  display: block;
  width: 100%;
  padding: 10px 12px;
  font-size: 16px;
  text-align: center;
  background: none;
  color: #666666;
  border: none;
  cursor: pointer;
}
.user-dropdown a:hover,
.user-dropdown button:hover {
  background-color: #eeeeee;
  opacity: 1;
}

.hidden {
  display: none;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px;
  padding: 15px;
}

footer {
  padding: 45px 0;
  background-color: #757575;
}
footer .footer__content {
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  opacity: 1;
  background-color: transparent;
}
.btn--primary {
  background-color: #448899;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 19px;
}
.btn--primary:hover {
  background-color: #66aabb;
}
.btn--primary--outline {
  background: rgba(255, 255, 255, 0.5);
  color: #448899;
  border: 1px solid #448899;
  padding: 10px 20px;
  font-size: 19px;
}
.btn--primary--outline:hover {
  background-color: #448899;
  color: #ffffff;
}
.btn--dialog {
  padding: 10px 20px;
}
.btn--dialog:hover {
  background-color: #66aabb;
}
.btn--booking {
  min-width: 117px;
  height: 36px;
}
.btn--nav {
  padding: 10px;
  height: auto;
  min-width: auto;
  background: none;
  color: #666666;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 600px) {
  .btn--nav {
    font-size: 14px;
  }
}
.btn--nav--hidden {
  display: none;
}
.btn--nav:hover {
  color: #000000;
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.card {
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2 ease, box-shadow 0.2 ease;
}
.card:hover {
  opacity: 0.8;
  transition: transform 0.5 ease;
}
.card {
  /* Skeleton loading */
}
.card__skeleton {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: card-loading 1.5s infinite;
  z-index: 1;
}
.card__cover {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 330/235;
}
@media (min-width: 901px) and (max-width: 1920px) {
  .card__cover {
    aspect-ratio: 270/197;
  }
}
.card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(70%);
  opacity: 0;
  transition: filter 0.3s ease-in-out, cubic-bezier(0.43, 0.41, 0.22, 0.91);
}
.card__image.loaded {
  opacity: 1;
}
.card__image:hover {
  filter: contrast(100%);
}
.card__title {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  width: 100%;
  padding: 10px;
  background: #000000;
  opacity: 0.6;
  color: #ffffff;
}
.card__details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  color: #757575;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
}

@keyframes card-loading {
  0% {
    background-position: 50% 0;
  }
  100% {
    background-position: -150% 0;
  }
}
.modal {
  position: relative;
  width: 340px;
  border: none;
  border-radius: 5px;
  color: #666666;
  margin: 80px auto;
}
.modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(to left, #337788, #66aabb);
}
.modal::backdrop {
  background: rgba(0, 0, 0, 0.4);
}
.modal[open], .modal::backdrop {
  animation: show 500ms ease;
}
.modal__header {
  position: relative;
  text-align: center;
}
.modal__header__title {
  margin: 15px 0;
}
.modal__header button {
  position: absolute;
  top: -5px;
  right: -10px;
  color: #666666;
}
.modal__header button:hover {
  color: #000000;
}
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal__form input {
  padding: 16.5px 15px;
  border: 1px solid #cccccc;
  border-radius: 5px;
}
.modal__form button {
  margin-bottom: 10px;
}
.modal__footer {
  text-align: center;
}
.modal__footer button {
  font-size: 16px;
  color: #666666;
}
.modal__footer button:hover {
  color: #000000;
}

@keyframes show {
  0% {
    opacity: 0;
  }
}
.search-bar {
  position: relative;
  display: flex;
}
.search-bar .selector {
  position: relative;
  width: 100px;
  flex-shrink: 0;
}
.search-bar .selector__trigger {
  width: 100px;
  height: 46px;
  padding: 16px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #eeeeee;
  border: none;
  border-radius: 5px 0 0 5px;
  cursor: pointer;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.search-bar .selector__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-bar .selector__arrow {
  flex-shrink: 0;
  width: 14px;
  height: 12px;
  display: inline-block;
  background-color: transparent;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #000000;
}
.search-bar .selector__options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 300px;
  padding: 1px;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 0px 20px 0px #aabbcc;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: 0.2s;
  z-index: 10;
}
.search-bar .selector__options li {
  padding: 10px 0;
  text-align: center;
  cursor: pointer;
  background: #ffffff;
}
.search-bar .selector__options li:hover {
  border-radius: 5px;
  background: #eeeeee;
  color: #000000;
}
.search-bar .selector__option {
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.search-bar .selector.is-open .selector__options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.search-bar input {
  border: none;
  padding: 15px;
  width: 300px;
  height: 46px;
}
@media (max-width: 600px) {
  .search-bar input {
    flex: 1;
    width: auto;
    min-width: 0;
  }
}
.search-bar .btn {
  height: 46px;
  padding: 8px 15px;
  border-radius: 0 5px 5px 0;
  background-color: #448899;
  color: #ffffff;
  flex-shrink: 0;
}
.search-bar .btn:hover {
  background-color: #66aabb;
}

.list-bar__wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.list-bar__wrapper button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: #666666;
}
.list-bar__wrapper button:hover {
  color: #000000;
}

.list-bar__viewport {
  overflow: hidden;
  width: 100%;
  max-width: 1086px;
}

.list-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: transform 0.3s ease;
}
.list-bar li {
  flex-shrink: 0;
}

.list-bar li button {
  padding: 5px 15px;
  white-space: nowrap;
}

.material-symbols-outlined.expand-icon--left {
  font-size: 32px;
}

.material-symbols-outlined.expand-icon--right {
  font-size: 32px;
}

.expand-icon--left {
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #757575;
  cursor: pointer;
  transform: rotate(180deg);
}
.expand-icon--left:hover {
  color: #000000;
}
.expand-icon--right {
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #757575;
  cursor: pointer;
}
.expand-icon--right:hover {
  color: #000000;
}

.carousel__container {
  position: relative;
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 600px) {
  .carousel__container {
    max-width: 100%;
  }
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  width: 100%;
  flex: 1;
}
@media (max-width: 600px) {
  .carousel__viewport {
    height: 350px;
    border-radius: 0;
  }
}

.carousel__track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 430px;
}
.carousel__track li {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}
.carousel__track img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: transparent;
}
.carousel-control:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.carousel-control--left {
  left: 0;
}
.carousel-control--right {
  right: 0;
}

.material-symbols-outlined.carousel__expand-icon--left {
  font-size: 36px;
}

.material-symbols-outlined.carousel__expand-icon--right {
  font-size: 36px;
}

.carousel__expand-icon--left {
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #eeeeee;
  opacity: 0.8;
  cursor: pointer;
  transform: rotate(180deg);
}
.carousel__expand-icon--left:hover {
  color: #ffffff;
}
.carousel__expand-icon--right {
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #eeeeee;
  opacity: 0.8;
  cursor: pointer;
}
.carousel__expand-icon--right:hover {
  color: #ffffff;
}

.carousel-indicators__wrapper {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.carousel-indicators__item {
  height: 5px;
  background-color: #ffffff;
  opacity: 0.6;
  border: none;
  padding: 0;
  flex: 1;
  cursor: pointer;
}
.carousel-indicators__item:hover {
  background: #e8e8e8;
}
.carousel-indicators__item--active {
  background-color: #000000;
}

.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: #666666;
  font-size: 18px;
}

.form-message {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  text-align: center;
}

.input-message {
  display: inline-block;
  font-size: 12px;
}
@media (max-width: 404px) {
  .input-message {
    margin-top: 10px;
  }
}

.form-message.error,
.input-message.error {
  color: #d93025;
}

.form-message.success,
.input-message.success {
  color: #2e7d32;
}

/* 通用 input 欄位的錯誤/成功樣式 */
input.error {
  border: 1px solid #d93025;
}

input.success {
  border: 1px solid #2e7d32;
}

/* TapPay 欄位 */
.form-field {
  display: flex;
  align-items: center;
}
@media (max-width: 404px) {
  .form-field {
    flex-wrap: wrap;
  }
}

.tpfield {
  width: 200px;
  height: 38px;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  padding: 10px;
  margin-right: 8px;
  transition: all 0.2s ease-in-out;
}

/* TapPay 欄位的錯誤/成功樣式 */
.field-error .tpfield {
  border: 1px solid #d93025;
  box-shadow: 0 0 0 0.2rem rgba(217, 48, 37, 0.25);
}

.field-success .tpfield {
  border: 1px solid #2e7d32;
  box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.25);
}

.tappay-field-focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.field-error .tappay-field-focus {
  border-color: #d93025;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(217, 48, 37, 0.3);
}

.field-success .tappay-field-focus {
  border-color: #2e7d32;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(46, 125, 50, 0.3);
}

/* Skeleton Loading */
.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 50% 0;
  }
  100% {
    background-position: -150% 0;
  }
}
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.loading-box {
  text-align: center;
  color: #ffffff;
  font-size: 14px;
}

.loading-dots span {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background: #ffffff;
  border-radius: 50%;
  display: inline-block;
  animation: bounce 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) {
  animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

.loading-text {
  margin-top: 12px;
}

.hidden {
  display: none;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.flex {
  display: flex;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mt-40 {
  margin-top: 40px;
}

.mb-15 {
  margin-bottom: 15px;
}

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

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

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

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

.hero {
  width: 100%;
  background-image: url("/static/images/welcome.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  padding: 75px 0;
}
@media (min-width: 901px) and (max-width: 1920px) {
  .hero {
    height: 320px;
    background-position: top;
  }
}
@media (min-width: 601px) and (max-width: 900px) {
  .hero {
    height: 320px;
    background-position: center;
  }
}
@media (max-width: 600px) {
  .hero {
    height: 320px;
    background-position: center top;
  }
}
.hero__content {
  padding: 10px;
}
.hero__title {
  color: #ffffff;
}

.decor-line {
  border-top: 1px solid #e8e8e8;
}

.info-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 15px;
}
@media (min-width: 601px) and (max-width: 900px) {
  .info-container {
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .info-container {
    flex-direction: column;
    gap: 20px;
    margin-top: 0;
    padding: 0;
  }
}

.info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #666666;
  width: 100%;
}
@media (max-width: 600px) {
  .info-panel {
    padding: 0 10px;
  }
}
.info-panel--skeleton {
  width: 100%;
}
.info-panel__title--skeleton {
  width: 300px;
  height: 33px;
}
.info-panel__text--skeleton {
  width: 200px;
}

.info-panel__booking-form {
  width: 100%;
  max-width: 600px;
  background: #e8e8e8;
  padding: 15px 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.info-panel__booking-form--skeleton {
  height: 302px;
}
@media (max-width: 600px) {
  .info-panel__booking-form {
    max-width: 100%;
  }
}
.info-panel__booking-form .field__date input[type=date] {
  border: none;
  padding: 5px 10px;
}
.info-panel__booking-form .field__radio {
  display: flex;
  align-items: center;
}
.info-panel__booking-form .field__radio input[type=radio] {
  cursor: pointer;
  width: 18px;
  height: 18px;
  position: relative;
  border: none;
}
.info-panel__booking-form .field__radio input[type=radio]::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  color: #448899;
  border-radius: 50%;
  position: absolute;
}
.info-panel__booking-form .field__radio input[type=radio]:checked::after {
  content: "";
  background-color: #448899;
  width: 18px;
  height: 18px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  position: absolute;
}
.info-panel__booking-form .field__btn {
  width: 154px;
  margin-bottom: 25px;
}
@media (max-width: 600px) {
  .info-panel__booking-form .field__btn {
    margin: 0;
  }
}

.content__wrapper {
  border-top: 1px solid #e8e8e8;
  color: #666666;
  margin-bottom: 120px;
  padding: 10px;
}
@media (max-width: 600px) {
  .content__wrapper {
    margin-bottom: 135px;
  }
}
.content__wrapper .content__description {
  margin-top: 40px;
  text-align: justify;
}
@media (max-width: 600px) {
  .content__wrapper .content__description {
    margin-top: 50px;
  }
}
.content__wrapper .content__address {
  margin-top: 20px;
}
.content__wrapper .content__transport {
  text-align: justify;
  margin-top: 20px;
}
.content__wrapper .content__box--skeleton {
  margin-top: 40px;
}
@media (max-width: 600px) {
  .content__wrapper .content__box--skeleton {
    margin-top: 50px;
  }
}
.content__wrapper .content__text--skeleton {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.booking__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 110px;
}
@media (max-width: 600px) {
  .booking__container {
    padding: 0 10px;
  }
}

.begin__title {
  color: #666666;
  margin: 40px 0 30px 0;
}

.empty-booking__text {
  color: #666666;
}

.booking-info-panel {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e8e8e8;
}
@media (min-width: 601px) and (max-width: 900px) {
  .booking-info-panel {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .booking-info-panel {
    flex-direction: column;
  }
}
.booking-info-panel .info-panel__img {
  position: relative;
  width: 25%;
  margin: 0 auto;
  overflow: hidden;
}
@media (min-width: 601px) and (max-width: 900px) {
  .booking-info-panel .info-panel__img {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .booking-info-panel .info-panel__img {
    width: 100%;
  }
}
.booking-info-panel .info-panel__img .booking__skeleton {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  z-index: 1;
}
.booking-info-panel .info-panel__img img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease-in;
  z-index: 2;
}
.booking-info-panel .info-panel__img img.loaded {
  opacity: 1;
}
.booking-info-panel .info-panel__wrapper {
  width: 70%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
}
@media (min-width: 601px) and (max-width: 900px) {
  .booking-info-panel .info-panel__wrapper {
    width: 100%;
    flex-direction: row;
  }
}
@media (max-width: 600px) {
  .booking-info-panel .info-panel__wrapper {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: end;
  }
}
.booking-info-panel .info-panel__wrapper .info-panel__content {
  width: 100%;
}
.booking-info-panel .info-panel__wrapper .info-panel__title {
  margin-bottom: 20px;
  color: #448899;
}
.booking-info-panel .info-panel__wrapper .info-panel__text {
  display: flex;
  margin-bottom: 10px;
  color: #666666;
}
.booking-info-panel .info-panel__wrapper .material-symbols-outlined.del__btn__icon {
  font-size: 30px;
  color: #666666;
}

.contact {
  padding-bottom: 40px;
  margin-bottom: 40px;
  color: #666666;
  border-bottom: 1px solid #e8e8e8;
}
.contact__title {
  margin-bottom: 20px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
  color: #666666;
}
.contact-form input {
  width: 200px;
  height: 38px;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  padding: 10px;
}

.payment {
  padding-bottom: 40px;
  margin-bottom: 40px;
  color: #666666;
  border-bottom: 1px solid #e8e8e8;
}
.payment__title {
  margin-bottom: 20px;
}
.payment-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #666666;
}

.confirm {
  display: flex;
  flex-direction: column;
  align-items: end;
  color: #666666;
  margin-bottom: 62px;
}
.confirm__text {
  margin-bottom: 22px;
}

.footer--expanded {
  height: 100vh;
}

@keyframes skeleton-loading {
  0% {
    background-position: 50% 0;
  }
  100% {
    background-position: -150% 0;
  }
}
.thankyou-container {
  min-height: calc(100vh - 64px - 114px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  gap: 20px;
  color: #666666;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 40px 80px;
}
@media (max-width: 600px) {
  .content-container {
    border: none;
    padding: 20px;
  }
}

.material-symbols-outlined.check_circle--icon {
  font-size: 80px;
}

@media (max-width: 600px) {
  .content-remind {
    font-size: 14px;
  }
}

.btn-wrap {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.member-container {
  display: flex;
  min-height: calc(100vh - 64px - 114px);
}
@media (max-width: 600px) {
  .member-container {
    display: flex;
    flex-direction: column;
  }
}
.member-container .sidebar {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #e8e8e8;
  padding: 40px 40px 40px;
}
@media (min-width: 601px) and (max-width: 900px) {
  .member-container .sidebar {
    padding: 20px;
  }
}
@media (max-width: 600px) {
  .member-container .sidebar {
    padding: 20px;
    border-bottom: 1px solid #e8e8e8;
  }
}
.member-container .sidebar .member-btn,
.member-container .sidebar .history-btn {
  padding: 10px 20px;
  font-size: 19px;
  color: #666666;
}
.member-container .sidebar .member-btn:hover,
.member-container .sidebar .history-btn:hover {
  background-color: #eeeeee;
}
.member-container .sidebar .active {
  padding: 10px 20px;
  font-size: 19px;
  color: #448899;
}
.member-container .sidebar .active:hover {
  background-color: #eeeeee;
}

.data-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 50px 100px;
}
@media (max-width: 600px) {
  .data-container {
    padding: 20px;
  }
}
.data-container .content__title {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  color: #666666;
  margin-bottom: 40px;
}
.data-container .content__body {
  flex: 1;
  overflow-y: auto;
}

.user-data {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .user-data {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.user-data {
  /* Hover 遮罩 */
}
.user-data__avatar-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
}
.user-data__avatar {
  width: 100px;
  height: 100px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.user-data {
  /* Hover 遮罩 */
}
.user-data__avatar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #ffffff;
  gap: 0.5rem;
}
.user-data__name {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 19px;
  line-height: 16px;
  font-weight: 700;
  color: #666666;
}
.user-data__title {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 19px;
  line-height: 16px;
  font-weight: 700;
  color: #666666;
}

.user-data__avatar-wrapper:hover .user-data__avatar-overlay {
  opacity: 1;
}

.user-data__avatar-wrapper:hover .user-data__avatar {
  transform: scale(1.05);
}

.user-data__avatar-overlay .material-symbols-outlined {
  font-size: 36px;
  font-weight: 300;
}

.user-data__avatar-overlay span {
  font-size: 14px;
  font-weight: 500;
}

/* 載入中狀態 */
.user-data__avatar-wrapper.uploading .user-data__avatar {
  opacity: 0.5;
}

.user-data__avatar-wrapper.uploading .user-data__avatar-overlay {
  opacity: 1;
  background: rgba(102, 126, 234, 0.8);
}

.edit-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (min-width: 601px) and (max-width: 900px) {
  .edit-form {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .edit-form {
    grid-template-columns: 1fr;
  }
}
.edit-form label {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: #666666;
  margin-right: 10px;
}
.edit-form input {
  width: 200px;
  height: 38px;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  padding: 10px;
}
.edit-form__base-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.edit-form__change-pwd {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.edit-form__btns {
  display: flex;
  gap: 1rem;
}

.is-hidden {
  display: none;
}

.order-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #eeeeee;
}
.order-table__header {
  background-color: #eeeeee;
  position: sticky;
  top: 0;
  z-index: 10;
}
.order-table__header th {
  padding: 16px 12px;
  text-align: center;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #666666;
  border-bottom: 2px solid #e8e8e8;
  background-color: #eeeeee;
}
.order-table tbody tr {
  border-bottom: 1px solid #e8e8e8;
}
.order-table tbody tr:hover {
  background-color: #eeeeee;
  cursor: pointer;
}
.order-table tbody td {
  padding: 16px 12px;
  text-align: center;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #666666;
}
@media (max-width: 900px) {
  .order-table {
    border: none;
  }
  .order-table__header {
    display: none;
  }
  .order-table tbody {
    display: block;
  }
  .order-table tbody tr {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border: 1px solid #e8e8e8;
    margin-bottom: 16px;
    border-radius: 8px;
  }
  .order-table tbody td {
    display: flex;
    justify-content: space-between;
    text-align: left;
    padding: 8px 0;
  }
  .order-table tbody td:nth-child(1)::before {
    content: "訂單編號：";
  }
  .order-table tbody td:nth-child(2)::before {
    content: "景點名稱：";
  }
  .order-table tbody td:nth-child(3)::before {
    content: "預訂日期：";
  }
  .order-table tbody td:nth-child(4)::before {
    content: "預訂時間：";
  }
  .order-table tbody td:nth-child(5)::before {
    content: "訂單金額：";
  }
  .order-table tbody td:nth-child(6)::before {
    content: "付款狀態：";
  }
  .order-table tbody td:nth-child(7)::before {
    content: "付款日期：";
  }
  .order-table tbody td::before {
    font-weight: 700;
    color: #666666;
  }
}

/*# sourceMappingURL=all.css.map */
