/* ============================================
   Star Journey CS2 - Less Stylesheet
   ============================================ */
@font-face {
  font-family: 'Inria Serif';
  src: url('../fonts/inria-serif-300.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inria Serif';
  src: url('../fonts/inria-serif-300-italic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inria Serif';
  src: url('../fonts/inria-serif-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inria Serif';
  src: url('../fonts/inria-serif-400-italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inria Serif';
  src: url('../fonts/inria-serif-700.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inria Serif';
  src: url('../fonts/inria-serif-700-italic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Dancing Script';
  src: url('../fonts/dancing-script-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dancing Script';
  src: url('../fonts/dancing-script-700.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* ---- Variables ---- */
/* ---- Reset & Base ---- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  min-width: 320px;
  margin: 0 auto;
  font-family: 'Inria Serif', Helvetica, serif;
  background: #fdfaf5;
  overflow-x: hidden;
  color: #000000;
  font-size: 16px;
  line-height: 1.5;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}
h1,
h2,
h3 {
  font-weight: bold;
}
a {
  color: inherit;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
ul,
ol {
  padding: 0;
  list-style: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: 'Inria Serif', Helvetica, serif;
}
input {
  font-family: 'Inria Serif', Helvetica, serif;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
/* ============================================
   Header
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 245, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.header-inner {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
}
.header-logo {
  flex-shrink: 0;
}
.header-logo img {
  height: 40px;
  width: 58px;
  object-fit: cover;
}
.header-nav {
  position: relative;
  display: flex;
  flex: 1;
  justify-content: center;
  gap: clamp(24px, 4.7vw, 90px);
}
.header-nav a {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.header-nav a:hover {
  opacity: 0.7;
}
.header-nav .advisor-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  white-space: nowrap;
  position: relative;
}
.header-nav .advisor-nav-link .nav-arrow {
  width: 10px;
  height: 6px;
  transition: transform 0.3s;
}
.header-nav .advisor-nav-link:hover .nav-arrow {
  transform: rotate(180deg);
}
.header-nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-nav-list li a {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  transition: opacity 0.2s;
}
.header-nav-list li a:hover {
  opacity: 0.7;
}
.header-actions {
  display: none;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-actions--logged-in {
  display: flex;
}
.header-user-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}
.header-user-name {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
}
.header-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
  background: none;
}
.header-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: transparent;
  flex-shrink: 0;
}
.header-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #000000;
  transition: all 0.3s ease;
}
.header-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-nav {
  display: none;
  border-top: 1px solid #e7dfd3;
  background: #fdfaf5;
  padding: 18px 24px 22px;
  box-shadow: 0 18px 36px rgba(105, 73, 16, 0.08);
}
.mobile-nav.open {
  display: block;
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.mobile-nav-list a,
.mobile-nav-list .mobile-nav-section-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.mobile-nav-list a {
  display: inline-flex;
}
.mobile-nav-section-title {
  display: block;
  margin-bottom: 10px;
}
.mobile-nav-sublist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0 0 0 18px;
  list-style: none;
}
.mobile-nav-sublist a {
  font-size: 15px;
  color: #6f5736;
}
.mobile-nav-actions {
  margin-top: 16px;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 12px;
}
/* Common buttons */
.btn-signin {
  padding: 8px 24px;
  background: #694910;
  border-radius: 6px;
  color: #fdfaf5;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.3s;
}
.btn-signin:hover {
  background: #5a3f0e;
}
.btn-join {
  padding: 8px 24px;
  border: 1px solid #694910;
  border-radius: 6px;
  color: #694910;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-join:hover {
  background: rgba(105, 73, 16, 0.05);
}
/* ============================================
   Hero Banner
   ============================================ */
.hero {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.hero-content {
  position: absolute;
  z-index: 3;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: 880px;
}
.hero-content h1 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 54px;
  font-weight: 700;
  color: #fdfaf5;
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-content h1 span {
  display: block;
}
.hero-content h1 span:nth-child(2) {
  margin-top: 8px;
}
.hero-content > p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 20px;
  font-weight: 400;
  color: #fdfaf5;
  margin-bottom: 40px;
  line-height: 1.06;
}
.hero-cta {
  margin-bottom: 32px;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 4px 22px;
  background: #fdfaf5;
  border-radius: 28px;
  color: #694910;
  transition: background 0.3s;
}
.btn-hero-primary:hover {
  background: rgba(253, 250, 245, 0.95);
}
.btn-hero-primary > span:first-child {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: underline;
  text-transform: uppercase;
}
.btn-hero-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #694910;
  margin-left: 16px;
}
.btn-hero-arrow img {
  width: 20px;
}
.hero-link {
  display: block;
  margin: 20px auto 0;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: 700;
  color: #fdfaf5;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.hero-link:hover {
  opacity: 0.9;
}
/* Hero: scale content proportionally with viewport (design base 1920px)
   so the heading fits the shrinking banner; hero links keep their size.
   Content sits slightly higher so the links stay above the reward cards
   that overlap the banner bottom by 10vw */
@media (min-width: 993px) and (max-width: 1920px) {
  .hero-content {
    top: 40%;
  }
  .hero-content h1 {
    font-size: 2.8125vw;
    margin-bottom: 1.25vw;
  }
  .hero-content h1 span:nth-child(2) {
    margin-top: 0.4167vw;
  }
  .hero-content > p {
    font-size: 1.0417vw;
    margin-bottom: 2.0833vw;
  }
  .hero-cta {
    margin-bottom: 1.6667vw;
  }
  .btn-hero-primary {
    gap: 0.625vw;
    padding: 0.2083vw 1.1458vw;
    border-radius: 1.4583vw;
  }
  .btn-hero-primary > span:first-child {
    font-size: 0.9375vw;
  }
  .btn-hero-arrow {
    width: 1.9792vw;
    height: 1.9792vw;
    margin-left: 0.8333vw;
  }
  .btn-hero-arrow img {
    width: 1.0417vw;
  }
}
.kf_floor {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 12;
}
.kf_floor > img {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.kf_floor.is-open > img {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.kf_floor .kf_floor_popup {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 320px;
  background: #F3EBE2;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  flex-direction: column;
  overflow: hidden;
  z-index: 100;
}
.kf_floor .kf_floor_popup.show {
  display: flex;
}
.kf_floor .kf_floor_popup .chat-header {
  background: #F3EBE2;
  color: #fdfaf5;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.kf_floor .kf_floor_popup .chat-header .chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(253, 250, 245, 0.4);
}
.kf_floor .kf_floor_popup .chat-header .chat-header-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kf_floor .kf_floor_popup .chat-header .chat-expand {
  width: 28px;
  height: 28px;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #694910;
  text-decoration: none;
  border-radius: 50%;
}
.kf_floor .kf_floor_popup .chat-header .chat-expand:hover {
  color: #000;
  background: rgba(105, 73, 16, 0.1);
}
.kf_floor .kf_floor_popup .chat-header .chat-expand svg {
  display: block;
}
.kf_floor .kf_floor_popup .chat-header .chat-agent-name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #000;
}
.kf_floor .kf_floor_popup .chat-header .chat-agent-status {
  font-size: 12px;
  font-weight: 400;
  color: #A7987D;
  display: flex;
  align-items: center;
  gap: 4px;
}
.kf_floor .kf_floor_popup .chat-header .chat-agent-status:before {
  content: '';
  width: 6px;
  height: 6px;
  background: #4caf50;
  border-radius: 50%;
  display: inline-block;
}
.kf_floor .kf_floor_popup .chat-header .chat-agent-status.is-offline:before {
  background: #c6b79f;
}
.kf_floor .kf_floor_popup .chat-body {
  flex: 1;
  min-height: 180px;
  max-height: 260px;
  overflow-y: auto;
  padding: 12px 16px;
  background: #F3EBE2;
  display: flex;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: #b79968 #efe3d4;
}
.kf_floor .kf_floor_popup .chat-body::-webkit-scrollbar {
  width: 8px;
}
.kf_floor .kf_floor_popup .chat-body::-webkit-scrollbar-track {
  background: #efe3d4;
  border-radius: 999px;
}
.kf_floor .kf_floor_popup .chat-body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ccb894 0%, #b79968 100%);
  border-radius: 999px;
  border: 2px solid #efe3d4;
}
.kf_floor .kf_floor_popup .chat-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #c3ad86 0%, #a7834e 100%);
}
.kf_floor .kf_floor_popup .chat-msg {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 8px;
  word-break: break-all;
}
.kf_floor .kf_floor_popup .chat-msg-user {
  background: #694910;
  color: #fdfaf5;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  margin-left: auto;
}
.kf_floor .kf_floor_popup .chat-msg-service {
  background: #fff;
  color: #333;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid #e7dfd3;
  margin-right: auto;
}
.kf_floor .kf_floor_popup .chat-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px;
  width: calc(100% - 24px);
  margin: 0 auto 6px;
  background: #F3EBE2;
  border: 2px solid #A7987D;
  border-radius: 10px;
}
.kf_floor .kf_floor_popup .chat-input {
  flex: 1;
  border: 1px solid #e7dfd3;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 13px;
  color: #333;
  background: #F3EBE2;
}
.kf_floor .kf_floor_popup .chat-input::placeholder {
  color: #b5a98a;
}
.kf_floor .kf_floor_popup .chat-attach,
.kf_floor .kf_floor_popup .chat-send {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
  flex-shrink: 0;
}
.kf_floor .kf_floor_popup .chat-attach img,
.kf_floor .kf_floor_popup .chat-send img {
  width: 20px;
  height: 20px;
}
.kf_floor .kf_floor_popup .chat-attach:hover {
  background: #f0ece3;
}
.kf_floor .kf_floor_popup .chat-attach img {
  width: 20px;
  height: 20px;
}
.kf_floor .kf_floor_popup .chat-send img {
  width: 100%;
  height: 100%;
}
.kf_floor .kf_floor_popup .chat-send:hover {
  background: #5a3f0e;
}
/* Keep the floating livechat trigger from covering content on narrow
   desktop widths: shrink it slightly and hug the corner */
@media (min-width: 993px) and (max-width: 1440px) {
  .kf_floor {
    right: 12px;
    bottom: 12px;
  }
  .kf_floor > img {
    width: 44px;
    height: 44px;
  }
}
/* ============================================
   Founder Reward Cards
   ============================================ */
.reward-cards {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  max-width: 1920px;
  margin-top: -10vw;
  margin-left: auto;
  margin-right: auto;
  padding: 80px clamp(24px, 5.2vw, 100px) 60px;
}
.reward-card {
  position: relative;
  flex: 1;
  min-width: 0;
  padding: 32px 56px;
  display: flex;
  flex-direction: column;
  border-radius: 16.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.reward-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Ticket shape rebuilt in CSS (rounded corners + side notches punched
       by mask) so it follows the card box and never stretches or distorts */
  --notch-r: 24.8px;
  --notch-y: 66.6%;
  background: #ffffff;
  border-radius: 16.5px;
  -webkit-mask: radial-gradient(circle var(--notch-r) at 0 var(--notch-y), transparent calc(var(--notch-r) - 1px), #000 var(--notch-r)) left top / 51% 100% no-repeat, radial-gradient(circle var(--notch-r) at 100% var(--notch-y), transparent calc(var(--notch-r) - 1px), #000 var(--notch-r)) right top / 51% 100% no-repeat;
  mask: radial-gradient(circle var(--notch-r) at 0 var(--notch-y), transparent calc(var(--notch-r) - 1px), #000 var(--notch-r)) left top / 51% 100% no-repeat, radial-gradient(circle var(--notch-r) at 100% var(--notch-y), transparent calc(var(--notch-r) - 1px), #000 var(--notch-r)) right top / 51% 100% no-repeat;
}
.reward-card > * {
  position: relative;
  z-index: 1;
}
.reward-card .reward-card-stamp {
  position: absolute;
  top: -52px;
  right: -20px;
  width: 210px;
  pointer-events: none;
}
.reward-card .reward-card-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.reward-card .reward-card-icon {
  width: 30px;
  height: 30px;
}
.reward-card .reward-card-title {
  display: flex;
  flex-direction: column;
}
.reward-card .reward-card-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #8a6d2f;
  text-transform: uppercase;
}
.reward-card .reward-card-valued {
  align-self: flex-end;
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: italic;
  font-size: 20px;
  color: #694910;
}
.reward-card .reward-card-price {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 76px;
  font-weight: 700;
  color: #694910;
  line-height: 1;
}
.reward-card .reward-card-promo {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.reward-card .reward-card-promo em {
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: italic;
  font-size: 36px;
  color: #8a6d2f;
}
.reward-card .reward-card-save {
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: italic;
  font-size: 18px;
  color: #8a8574;
  margin-bottom: 24px;
}
.reward-card .reward-card-desc {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  color: #6d6a5c;
  line-height: 1.5;
  margin-bottom: 12px;
}
.reward-card .reward-card-note {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #a09c8d;
  line-height: 1.5;
  margin-bottom: 24px;
}
.reward-card .reward-card-btn {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding: 14px 28px;
  background: #694910;
  border-radius: 4px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  transition: background 0.3s;
}
.reward-card .reward-card-btn:hover {
  background: #5a3f0e;
}
/* Reward cards: scale proportionally with viewport (design base 1920px)
   so the card keeps its 1920 look on smaller desktops */
@media (min-width: 993px) and (max-width: 1920px) {
  .reward-cards {
    gap: 2.0833vw;
    margin-top: -10vw;
    padding-top: 4.1667vw;
    padding-bottom: 3.125vw;
  }
  .reward-card {
    padding: 1.6667vw 2.9167vw;
    border-radius: 0.86vw;
  }
  .reward-card::before {
    --notch-r: 1.29vw;
    border-radius: 0.86vw;
  }
  .reward-card .reward-card-stamp {
    top: -2.7083vw;
    right: -1.0417vw;
    width: 10.9375vw;
  }
  .reward-card .reward-card-head {
    gap: 0.7292vw;
    margin-bottom: 0.8333vw;
  }
  .reward-card .reward-card-icon {
    width: 1.5625vw;
    height: 1.5625vw;
  }
  .reward-card .reward-card-label {
    font-size: 0.9375vw;
  }
  .reward-card .reward-card-valued {
    font-size: 1.0417vw;
  }
  .reward-card .reward-card-price {
    font-size: 3.9583vw;
  }
  .reward-card .reward-card-promo {
    gap: 0.625vw;
    margin-bottom: 0.3125vw;
  }
  .reward-card .reward-card-promo em {
    font-size: 1.875vw;
  }
  .reward-card .reward-card-save {
    font-size: 0.9375vw;
    margin-bottom: 1.25vw;
  }
  .reward-card .reward-card-desc {
    font-size: 0.9375vw;
    margin-bottom: 0.625vw;
  }
  .reward-card .reward-card-note {
    font-size: 0.7813vw;
    margin-bottom: 1.25vw;
  }
  .reward-card .reward-card-btn {
    padding: 0.7292vw 1.4583vw;
    border-radius: 0.2083vw;
    font-size: 0.8333vw;
  }
}
@media (max-width: 992px) {
  .reward-cards {
    flex-direction: column;
    padding: 60px 24px 40px;
    margin-top: 0;
  }
}
/* ============================================
   Live On Stars
   ============================================ */
.live-on-stars {
  background: #fdfaf5;
  text-align: center;
  padding: 60px 0;
}
.live-on-stars .live-swiper {
  max-height: 600px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  position: relative;
}
.live-on-stars .live-swiper .live-prev {
  position: absolute;
  left: 25%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
  cursor: pointer;
}
.live-on-stars .live-swiper .live-prev.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
.live-on-stars .live-swiper .live-next {
  position: absolute;
  right: 25%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
  cursor: pointer;
}
.live-on-stars .live-swiper .live-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
.live-on-stars.collapsed .live-swiper {
  max-height: 0;
  opacity: 0;
}
.live-on-stars .live-advisors {
  max-height: 2000px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
}
.live-on-stars.collapsed .live-advisors {
  max-height: 0;
  opacity: 0;
}
.live_more_btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.live_more_btn img {
  cursor: pointer;
  width: 31px;
  transition: transform 0.3s;
}
.live_more_btn.collapsed img {
  transform: rotate(180deg);
}
.live-on-stars h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.02em;
  line-height: 0.96;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.live-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.live-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  height: 40px;
  border-radius: 56px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: 700;
  color: #59581c;
  background: #f3ebe2;
  cursor: pointer;
  transition: all 0.2s;
}
.live-tab.active {
  background: #694910;
  color: #ffffff;
}
.live-swiper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 16px;
  overflow: hidden;
}
.live-swiper .swiper-slide {
  width: auto;
}
#liveSwiper2 .swiper-slide {
  width: calc((100% - 96px) / 4);
}
#liveSwiper2 .live-card {
  width: 100%;
  height: 490px;
}
#liveSwiper2 .live-card > img {
  aspect-ratio: 323 / 501;
}
.live-card {
  position: relative;
  width: 323px;
  height: 501px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.live-card-link--cover {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: block;
}
.live-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.live-card:hover > img {
  transform: scale(1.05);
}
.live-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
  transition: background 0.4s ease;
}
.live-card:hover .live-card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.live-card-info {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  padding: 20px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateY(20px);
  opacity: 0.85;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.live-card:hover .live-card-info {
  transform: translateY(0);
  opacity: 1;
}
.live-card-info h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.06;
}
.live-card-info .live1_title {
  font-size: 28px;
  font-family: Inria Serif;
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}
.live-card-info p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  margin-top: 8px;
  text-align: left;
}
.live-card-curator {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.live-card-curator img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  flex-shrink: 0;
}
.live-card-curator > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.liveSwiper2_info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: #ffffff;
}
.liveSwiper2_info .tle {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 6px;
}
.liveSwiper2_info .txt {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.9;
}
/* ---- Live Advisors (Swiper 3 - Meet Our Advisors) ---- */
.live-advisors {
  position: relative;
  padding: 0 clamp(24px, 7.3vw, 140px);
}
.live-advisors-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 36px;
  color: #000000;
  letter-spacing: -0.02em;
  line-height: 34.6px;
  margin-bottom: 0;
}
.live-advisors-header {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
.live-advisors-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.live-advisors-seeall {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  text-decoration: underline;
}
.live-advisors-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.live-advisors-prev,
.live-advisors-next {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fdfaf5;
  backdrop-filter: blur(3.9px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1), 0px 6px 6px rgba(0, 0, 0, 0.1), 0px 14px 8px rgba(0, 0, 0, 0.05);
}
.live-advisors-grid {
  position: relative;
}
.live-advisors-page {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 37px;
  transition: opacity 0.4s ease;
}
.live-advisors-page:not(.active) {
  display: none;
}
.advisor-card img {
  width: 100%;
  height: 359px;
  object-fit: cover;
  border-radius: 0;
}
.advisor-card h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
  line-height: 25.6px;
  margin-top: 20px;
  white-space: nowrap;
}
.advisor-card p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: #a7987d;
  line-height: 17px;
  margin-top: 10px;
}
.advisor-card a {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  text-decoration: underline;
  display: inline-block;
  margin-top: 10px;
}
/* Fluid card images: below 1420px the card widths shrink with the viewport,
   so fixed px heights no longer fit. Switch to the aspect ratio the cards
   have at 1420px (seamless at the boundary). <=992px keeps its own rules. */
@media (min-width: 993px) and (max-width: 1420px) {
  .advisor-card img {
    height: auto;
    aspect-ratio: 0.7672;
    /* 275.4 x 359 at 1420px */
  }
  #liveSwiper2 .live-card {
    height: auto;
    aspect-ratio: 323 / 501;
  }
}
/* ============================================
   Advisor Detail Page
   ============================================ */
.advisor-detail-back-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 24px 0;
  background: #fdfaf5;
}
.advisor-detail-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fdfaf5;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1), 0px 6px 6px rgba(0, 0, 0, 0.1), 0px 14px 8px rgba(0, 0, 0, 0.05);
  text-decoration: none;
}
.advisor-detail-back img {
  width: 18px;
  height: 18px;
}
.advisor-article-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 24px 0;
  background: #fdfaf5;
}
.advisor-article-header {
  max-width: 780px;
  margin: 0 auto;
}
.advisor-article-header h1 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #000000;
  margin-bottom: 22px;
}
.advisor-article-intro {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 20px;
  line-height: 1.8;
  color: #6f695f;
  margin-bottom: 28px;
}
.advisor-article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e7dfd3;
}
.advisor-article-author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #000000;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.advisor-article-author:hover {
  opacity: 0.85;
}
.advisor-article-author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.advisor-article-author span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}
.advisor-article-meta-divider {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d2c4ad;
}
.advisor-article-date {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a7987d;
}
.advisor-article-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 24px 96px;
  background: #fdfaf5;
}
.trending-detail-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.trending-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.56) 100%);
}
.trending-detail-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px 64px;
}
.trending-detail-eyebrow {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e6d7be;
  margin-bottom: 14px;
}
.trending-detail-hero h1 {
  max-width: 780px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 18px;
}
.trending-detail-intro {
  max-width: 780px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}
.trending-detail-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 24px 96px;
  background: #fdfaf5;
}
.advisor-article-body {
  max-width: 780px;
  margin: 0 auto;
}
.advisor-article-richtext {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 17px;
  line-height: 1.95;
  color: #36332d;
  word-break: break-word;
}
.advisor-article-richtext > *:first-child {
  margin-top: 0;
}
.advisor-article-richtext p {
  margin: 0 0 22px;
}
.advisor-article-richtext h1,
.advisor-article-richtext h2,
.advisor-article-richtext h3,
.advisor-article-richtext h4,
.advisor-article-richtext h5,
.advisor-article-richtext h6 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  color: #000000;
  line-height: 1.22;
  margin: 38px 0 16px;
}
.advisor-article-richtext h2 {
  font-size: 34px;
}
.advisor-article-richtext h3 {
  font-size: 28px;
}
.advisor-article-richtext h4 {
  font-size: 22px;
}
.advisor-article-richtext ul,
.advisor-article-richtext ol {
  margin: 0 0 22px;
  padding-left: 24px;
  list-style: revert;
}
.advisor-article-richtext li {
  margin-bottom: 10px;
}
.advisor-article-richtext a {
  color: #694910;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.advisor-article-richtext strong,
.advisor-article-richtext b {
  font-weight: 700;
  color: #000000;
}
.advisor-article-richtext blockquote {
  margin: 30px 0;
  padding: 10px 0 10px 22px;
  border-left: 3px solid #694910;
  color: #694910;
  font-style: italic;
}
.advisor-article-richtext img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 32px auto;
  border-radius: 14px;
}
.advisor-article-richtext table {
  width: 100%;
  border-collapse: collapse;
  margin: 26px 0;
}
.advisor-article-richtext th,
.advisor-article-richtext td {
  border: 1px solid #e7dfd3;
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}
.advisor-article-richtext iframe,
.advisor-article-richtext video {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 32px 0;
  border: 0;
}
.advisor-detail-hero {
  display: flex;
  gap: 62px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px 36px;
  background: #fdfaf5;
  align-items: flex-start;
}
.advisor-detail-avatar-wrap {
  flex: 0 0 360px;
  max-width: 360px;
  width: 100%;
}
.advisor-detail-avatar {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
}
.advisor-detail-info {
  flex: 1;
  display: flex;
  align-items: flex-start;
  max-width: 500px;
  width: 100%;
}
.advisor-detail-profile-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 22px 0 0 30px;
  box-sizing: border-box;
}
.advisor-detail-profile-card .advisor-detail-curator-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 12px;
  color: #a7987d;
  display: block;
  margin-bottom: 8px;
}
.advisor-detail-profile-card h1 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 30px;
  color: #000000;
  line-height: 1.12;
  margin-bottom: 6px;
}
.advisor-detail-pronouns {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 13px;
  color: #000000;
  margin-bottom: 18px;
}
.advisor-detail-divider {
  width: calc(100% + 30px);
  height: 1px;
  background: #e7dfd3;
  margin-left: -30px;
  margin-bottom: 14px;
}
.advisor-detail-meta {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.advisor-detail-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 0;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #000000;
  position: relative;
}
.advisor-detail-meta-item::after {
  content: '';
  position: absolute;
  left: -30px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #e7dfd3;
}
.advisor-detail-meta-item img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.advisor-detail-inquiry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  min-width: 228px;
  margin-top: 8px;
  padding: 6px 8px 6px 20px;
  background: #fdfaf5;
  border: 1px solid #e7dfd3;
  border-radius: 56px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 15px;
  color: #000000;
  text-decoration: none;
  box-shadow: 0px 12px 24px rgba(105, 73, 16, 0.14);
  transition: background 0.3s;
  align-self: flex-start;
}
.advisor-detail-inquiry-btn:hover {
  background: #faf4e8;
}
.advisor-detail-inquiry-btn .advisor-detail-inquiry-arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #694910;
}
.advisor-detail-inquiry-btn .advisor-detail-inquiry-arrow::after {
  content: '';
  width: 7px;
  height: 7px;
  border-top: 2px solid #fdfaf5;
  border-right: 2px solid #fdfaf5;
  transform: rotate(45deg) translate(-1px, 1px);
}
.advisor-detail-about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  background: #fdfaf5;
}
.advisor-detail-ask h3,
.advisor-detail-travel-style h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 12px;
  color: #000000;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.advisor-detail-ask {
  padding: 24px 0;
}
.advisor-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.advisor-detail-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 69px;
  background: #e5dbd1;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 12px;
  color: #694910;
}
.advisor-detail-travel-style {
  padding: 24px 0 28px;
}
.advisor-detail-travel-style p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  line-height: 1.55;
  margin-bottom: 12px;
  max-width: 980px;
}
.advisor-detail-readmore {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 11px;
  color: #694910;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.advisor-detail-readmore:hover {
  opacity: 0.8;
}
/* ---- Reviews ---- */
.advisor-detail-reviews {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
  background: #fdfaf5;
}
.advisor-detail-reviews-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.advisor-detail-reviews-toggle img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.advisor-detail-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.advisor-detail-review-card {
  padding: 20px;
  background: #f3ebe2;
  border-radius: 16px;
}
.advisor-detail-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.advisor-detail-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.advisor-detail-review-user {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.advisor-detail-review-name {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
}
.advisor-detail-review-trip {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 13px;
  color: #a7987d;
  text-decoration: underline;
}
.advisor-detail-review-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}
.advisor-detail-review-rating img {
  width: 14px;
  height: 14px;
}
.advisor-detail-review-rating span {
  margin-left: 6px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 12px;
  color: #a7987d;
}
.advisor-detail-review-text {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 13px;
  color: #000000;
  line-height: 1.5;
}
/* ---- My Story ---- */
.advisor-detail-story {
  padding: 80px 24px;
  background: #f3ebe2;
}
.advisor-detail-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.advisor-detail-story-inner h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 32px;
  color: #000000;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.advisor-detail-story-inner > p {
  max-width: 600px;
  margin: 0 auto 20px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  line-height: 1.5;
}
.advisor-detail-story-inner .advisor-detail-readmore {
  display: inline-block;
  margin-bottom: 48px;
}
.advisor-detail-collections {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.advisor-detail-collection-card {
  text-align: left;
}
.advisor-detail-collection-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 12px;
}
.advisor-detail-collection-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.advisor-detail-collection-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 13px;
  color: #000000;
}
.advisor-detail-collection-duration {
  flex-shrink: 0;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 12px;
  color: #a7987d;
}
/* ---- Responsive ---- */
/* Keep the 4-column review/collection grids down to tablet width; only
   below 992px do they collapse to two columns */
@media (max-width: 992px) {
  .advisor-detail-reviews-grid,
  .advisor-detail-collections {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .advisor-article-header h1 {
    font-size: 42px;
  }
  .trending-detail-hero {
    min-height: 440px;
  }
  .trending-detail-hero h1 {
    font-size: 42px;
  }
  .trending-detail-intro {
    font-size: 18px;
  }
  .advisor-article-intro {
    font-size: 18px;
  }
  .advisor-article-richtext h2 {
    font-size: 30px;
  }
  .advisor-article-richtext h3 {
    font-size: 25px;
  }
  .advisor-detail-hero {
    flex-direction: column;
    gap: 32px;
  }
  .advisor-detail-profile-card {
    min-height: auto;
  }
  .advisor-detail-avatar-wrap {
    flex: auto;
    max-width: 100%;
  }
  .advisor-detail-avatar {
    height: auto;
    aspect-ratio: 239 / 271;
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .advisor-detail-avatar-wrap {
    max-width: 480px;
  }
  .advisor-detail-info {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .trending-detail-inner,
  .trending-detail-content,
  .advisor-article-hero,
  .advisor-article-content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .trending-detail-hero {
    min-height: 360px;
  }
  .trending-detail-hero h1 {
    font-size: 34px;
    margin-bottom: 16px;
  }
  .trending-detail-intro {
    font-size: 16px;
    line-height: 1.75;
  }
  .advisor-article-header h1 {
    font-size: 34px;
    margin-bottom: 18px;
  }
  .advisor-article-intro {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 22px;
  }
  .advisor-article-author-avatar {
    width: 46px;
    height: 46px;
  }
  .advisor-article-author span {
    font-size: 16px;
  }
  .advisor-article-date {
    font-size: 12px;
    letter-spacing: 0.08em;
  }
  .advisor-article-richtext {
    font-size: 16px;
    line-height: 1.85;
  }
  .advisor-article-richtext h2 {
    font-size: 26px;
  }
  .advisor-article-richtext h3 {
    font-size: 22px;
  }
  .advisor-article-richtext img {
    margin: 24px auto;
  }
  .advisor-detail-reviews-grid,
  .advisor-detail-collections {
    grid-template-columns: 1fr;
  }
  .advisor-detail-story {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
/* ============================================
   Advisor Detail Page (Original / Old)
   ============================================ */
.advisor-detail-old .advisor-detail-back-wrap {
  max-width: none;
  padding: 30px 140px 0;
  background: #fdfaf5;
}
.advisor-detail-old .advisor-detail-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fdfaf5;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1), 0px 6px 6px rgba(0, 0, 0, 0.1), 0px 14px 8px rgba(0, 0, 0, 0.05);
  text-decoration: none;
}
.advisor-detail-old .advisor-detail-back img {
  width: 18px;
  height: 18px;
}
.advisor-detail-old .advisor-detail-hero {
  display: flex;
  gap: 40px;
  padding: 30px 140px 50px;
  background: #fdfaf5;
  width: 85%;
  max-width: none;
  margin: 0 auto;
}
.advisor-detail-old .advisor-detail-avatar {
  flex: 4;
  width: auto;
  height: 500px;
  object-fit: cover;
  flex-shrink: 0;
}
.advisor-detail-old .advisor-detail-profile-card {
  flex: 3;
  padding: 20px;
  background: #F3EBE2;
  border-radius: 20px;
}
.advisor-detail-old .advisor-detail-profile-card .advisor-detail-curator-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #a7987d;
  display: block;
  margin-bottom: 6px;
}
.advisor-detail-old .advisor-detail-profile-card h1 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 36px;
  color: #000000;
  margin-bottom: 12px;
}
.advisor-detail-old .advisor-detail-divider {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}
.advisor-detail-old .advisor-detail-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}
.advisor-detail-old .advisor-detail-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #000000;
}
.advisor-detail-old .advisor-detail-meta-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.advisor-detail-old .advisor-detail-ask h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  margin-bottom: 12px;
}
.advisor-detail-old .advisor-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.advisor-detail-old .advisor-detail-tag {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 69px;
  background: #694910;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.advisor-detail-old .advisor-detail-tag-outline {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid #000000;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
}
.advisor-detail-old .advisor-detail-travel-style {
  flex: 4;
  padding-left: 30px;
  display: flex;
  align-items: center;
}
.advisor-detail-old .advisor-detail-travel-style h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  margin-bottom: 12px;
}
.advisor-detail-old .advisor-detail-travel-style p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 20px;
}
.advisor-detail-old .advisor-detail-section {
  padding: 50px 140px;
  background: #fdfaf5;
  width: 85%;
  max-width: none;
  margin: 0 auto;
}
.advisor-detail-old .advisor-detail-section h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 36px;
  color: #000000;
  margin-bottom: 30px;
}
.advisor-detail-old .advisor-detail-section h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  margin-top: 24px;
  margin-bottom: 12px;
}
.advisor-detail-old .advisor-detail-section p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: #a7987d;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 900px;
}
.advisor-detail-old .advisor-detail-section-img {
  width: 100%;
  max-width: 900px;
  height: 400px;
  object-fit: cover;
  margin-bottom: 24px;
}
.advisor-detail-old .advisor-detail-section-divider {
  width: 100%;
  max-width: 900px;
  display: block;
  margin-top: 40px;
}
.advisor-detail-old .advisor-detail-stays {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}
.advisor-detail-old .advisor-detail-stay-card {
  padding: 24px;
  border: 1px solid #d4c9b5;
  border-radius: 8px;
}
.advisor-detail-old .advisor-detail-stay-card h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  margin-top: 0;
  margin-bottom: 8px;
}
.advisor-detail-old .advisor-detail-stay-card p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #a7987d;
  line-height: 1.5;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .advisor-detail-old .advisor-detail-hero {
    flex-direction: column;
    padding: 30px 24px;
    gap: 24px;
  }
  .advisor-detail-old .advisor-detail-avatar {
    width: 100%;
    height: auto;
  }
  .advisor-detail-old .advisor-detail-travel-style {
    flex: auto;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #d4c9b5;
    padding-top: 24px;
  }
  .advisor-detail-old .advisor-detail-section {
    padding: 30px 24px;
  }
  .advisor-detail-old .advisor-detail-stays {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   Auth Pages (Login / Register / Forgot Password)
   ============================================ */
.auth-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #fdfaf5;
}
.auth-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.auth-panel {
  position: relative;
  z-index: 1;
  width: 50%;
  min-height: 100vh;
  background: #f3ebe2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 140px;
}
.auth-welcome {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 36px;
  color: #000000;
  margin-bottom: 8px;
}
.auth-welcome-sub {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  color: #000000;
  margin-bottom: 60px;
}
.auth-form-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  margin-bottom: 40px;
}
.auth-right-link {
  text-align: right;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #a7987d;
  margin-top: -52px;
  margin-bottom: 32px;
}
.auth-right-link a {
  color: #694910;
  font-weight: 700;
  text-decoration: underline;
}
.auth-input {
  display: block;
  width: 100%;
  height: 64px;
  border-radius: 69px;
  border: 1px solid #694910;
  padding: 0 36px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #000000;
  background: transparent;
  outline: none;
  margin-bottom: 24px;
}
.auth-input::placeholder {
  color: #a7987d;
}
.auth-row {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.auth-row .auth-input {
  flex: 1;
  margin-bottom: 0;
}
.auth-code-btn {
  flex-shrink: 0;
  width: 181px;
  height: 64px;
  border-radius: 69px;
  background: #694910;
  color: #fff;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  margin-left: 16px;
  white-space: nowrap;
}
.auth-check-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.auth-check-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #a7987d;
}
.auth-check-label input[type="checkbox"] {
  display: none;
}
.auth-check-dot {
  position: relative;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: 2px solid #694910;
  margin-right: 14px;
  flex-shrink: 0;
}
.auth-check-dot::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #694910;
  opacity: 0;
  transition: opacity 0.2s;
}
.auth-check-label input[type="checkbox"]:checked + .auth-check-dot::after {
  opacity: 1;
}
.auth-forgot-link {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #694910;
  text-decoration: none;
}
.auth-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 65px;
  border-radius: 69px;
  border: 1px solid #694910;
  background: transparent;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #694910;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.auth-submit:hover {
  background: #694910;
  color: #fff;
}
.auth-bottom-text {
  text-align: center;
  margin-top: 24px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #a7987d;
}
.auth-bottom-text a {
  color: #694910;
  font-weight: 700;
  text-decoration: underline;
}
.auth-agree-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #a7987d;
  margin-top: 24px;
}
.auth-agree-label input[type="checkbox"] {
  display: none;
}
.auth-agree-label .auth-check-dot {
  margin-right: 11px;
}
.auth-agree-label input[type="checkbox"]:checked + .auth-check-dot::after {
  opacity: 1;
}
@media (min-width: 1025px) and (max-width: 1540px) {
  .auth-panel {
    padding: 0 64px;
  }
}
@media (max-width: 1024px) {
  .auth-panel {
    width: 100%;
    padding: 60px 32px;
    min-height: auto;
  }
  .auth-bg {
    display: none;
  }
}
/* ============================================
   Plan That Unforgettable Trip
   ============================================ */
.plan-trip {
  background: #f3ebe2;
  overflow: hidden;
}
.plan-trip-inner {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
}
.plan-left {
  width: 50%;
  overflow: hidden;
}
.plan-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plan-right {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.plan-right h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.plan-right-content {
  padding: 107px 48px 0 48px;
}
.plan-stats {
  margin-top: 24px;
  line-height: 1.26;
}
.stat-big {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 32px;
  font-weight: 700;
  color: #000000;
}
.stat-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  text-transform: capitalize;
}
.plan-desc {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 1.21;
  margin-top: 24px;
}
.plan-filters {
  margin-top: 24px;
}
.filter-row {
  display: flex;
  gap: 12px;
  margin-bottom: 9px;
}
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  height: 40px;
  border-radius: 56px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: 700;
  background: #ede2d6;
  color: #59581c;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-pill img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.filter-pill.active {
  background: #694910;
  color: #ffffff;
}
.filter-pill.active img {
  filter: brightness(0) invert(1);
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  border-radius: 28px;
  background: #fdfaf5;
  padding: 4px 20px;
  color: #694910;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.3s;
  border: 1px solid #694910;
  border-radius: 100px;
}
.btn-cta:hover {
  background: rgba(253, 250, 245, 0.95);
}
.btn-cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #694910;
  margin-left: 16px;
}
.btn-cta-arrow img {
  width: 20px;
}
.partner-logos {
  margin-top: auto;
  width: 100%;
  background: #e5dbd1;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 32px 48px;
}
.partner-logos img {
  height: 81px;
  width: calc(25% - 32px);
  object-fit: contain;
}
/* Plan trip: scale the right column proportionally with viewport
   (design base 1920px) so the heading stays on one line and the
   layout matches the 1920px appearance on narrower desktop screens */
@media (min-width: 993px) and (max-width: 1920px) {
  .plan-right-content {
    padding: 5.5729vw 2.5vw 0;
  }
  .plan-right h2 {
    font-size: 2.5vw;
  }
  .plan-stats {
    margin-top: 1.25vw;
  }
  .stat-big {
    font-size: 1.6667vw;
  }
  .stat-label {
    font-size: 0.9375vw;
  }
  .plan-desc {
    font-size: 0.9375vw;
    margin-top: 1.25vw;
  }
  .plan-filters {
    margin-top: 1.25vw;
  }
  .filter-row {
    gap: 0.625vw;
    margin-bottom: 0.4688vw;
  }
  .filter-pill {
    gap: 0.4167vw;
    padding: 0 0.8333vw;
    height: 2.0833vw;
    font-size: 0.9375vw;
  }
  .filter-pill img {
    width: 1.1458vw;
    height: 1.1458vw;
  }
  .plan-trip .btn-cta {
    padding: 0.2083vw 1.0417vw;
    font-size: 0.9375vw;
  }
  .plan-trip .btn-cta-arrow {
    width: 1.9792vw;
    height: 1.9792vw;
    margin-left: 0.8333vw;
  }
  .plan-trip .btn-cta-arrow img {
    width: 1.0417vw;
  }
  .partner-logos {
    gap: 1.6667vw;
    padding: 1.6667vw 2.5vw;
  }
  .partner-logos img {
    height: 4.2188vw;
    width: calc(25% - 1.6667vw);
  }
}
/* ============================================
   From Our Advisors
   ============================================ */
.from-advisors {
  background: #f3ebe2;
  overflow: hidden;
}
.from-advisors-inner {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: 1092px;
  margin: 0 auto;
}
.fa-img {
  position: absolute;
  left: 0.3%;
  top: 12.3%;
  width: 34.5%;
  height: 75.7%;
  border-radius: 12px;
  overflow: hidden;
}
.fa-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fa-text {
  position: absolute;
  left: 48%;
  top: 12.3%;
  z-index: 2;
}
.fa-title {
  width: 35%;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 70px;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.02em;
  line-height: 0.96;
  text-transform: uppercase;
}
.fa-subtitle {
  width: 32%;
  margin-top: 17px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  line-height: 1.06;
}
.fa-explore {
  display: inline-flex;
  align-items: center;
  border-radius: 28px;
  background: #fdfaf5;
  padding: 4px 20px;
  color: #694910;
  margin-top: 17px;
}
.fa-explore > span:first-child {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
}
.fa-explore-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #694910;
  margin-left: 16px;
}
.fa-explore-arrow img {
  width: 20px;
}
.fa-card {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  background: #fdfaf5;
  z-index: 1;
}
.fa-card-img-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 5px;
}
.fa-card-img-wrap img {
  width: 100%;
  height: 100%;
}
.fa-card-open {
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdfaf5;
  border-radius: 22px;
  cursor: pointer;
  border: none;
}
.fa-card-open img {
  width: 19px;
  height: 19px;
}
.fa-card-body {
  padding: 10px 10px 24px;
}
.fa-card-body h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  color: #000000;
}
.fa-card-body > p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  color: #a7987d;
}
.fa-card-curator {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fa-card-curator > img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.curator-name-sm {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  display: block;
  line-height: 19px;
}
/* Card A: Tuscany - left:446, top:325, w:445, h:435 */
.fa-card-a {
  left: 23.1%;
  top: 29.7%;
  width: 23.1%;
}
.fa-card-a .fa-card-img-wrap {
  width: 93.9%;
  height: auto;
  aspect-ratio: 418 / 297;
  margin-left: 3.8%;
  margin-top: 2.9%;
  border-radius: 12px;
}
.fa-card-a .fa-card-open {
  width: 44px;
  height: 44px;
}
.fa-card-a .fa-card-open img {
  width: 19px;
  height: 19px;
}
.fa-card-a .fa-card-body h3 {
  font-size: 20px;
  line-height: 1.06;
  margin-top: 24px;
}
.fa-card-a .fa-card-body > p {
  font-size: 16px;
  line-height: 1.06;
  margin-top: 20px;
}
/* Card B: Safari */
.fa-card-b {
  left: 74.4%;
  top: 27%;
  width: 15.3%;
}
.fa-card-b .fa-card-img-wrap {
  width: 94.6%;
  height: auto;
  aspect-ratio: 278 / 198;
  margin-left: 2.7%;
  margin-top: 2.3%;
  border-radius: 12px;
}
.fa-card-b .fa-card-open {
  width: 48px;
  height: 48px;
  border-radius: 24px;
}
.fa-card-b .fa-card-open img {
  width: 21px;
  height: 21px;
}
.fa-card-b .fa-card-body h3 {
  font-size: 14px;
  line-height: 1.06;
  margin-top: 20px;
}
.fa-card-b .fa-card-body > p {
  font-size: 12px;
  line-height: 1.06;
  margin-top: 12px;
}
/* Card C: Kyoto */
.fa-card-c {
  left: 54.4%;
  top: 55.3%;
  width: 14.5%;
}
.fa-card-c .fa-card-img-wrap {
  width: 93.9%;
  height: auto;
  aspect-ratio: 263 / 208;
  margin-left: 3.2%;
  margin-top: 3.1%;
  border-radius: 12px;
}
.fa-card-c .fa-card-open {
  width: 48px;
  height: 48px;
  border-radius: 24px;
}
.fa-card-c .fa-card-open img {
  width: 21px;
  height: 21px;
}
.fa-card-c .fa-card-body h3 {
  font-size: 15px;
  line-height: 1.06;
  margin-top: 20px;
}
.fa-card-c .fa-card-body > p {
  font-size: 13px;
  line-height: 1.06;
  margin-top: 12px;
}
/* Card D: Amalfi */
.fa-card-d {
  left: 76.3%;
  top: 62.2%;
  width: 18.3%;
}
.fa-card-d .fa-card-img-wrap {
  width: 94.3%;
  height: auto;
  aspect-ratio: 333 / 237;
  margin-left: 2.8%;
  margin-top: 2.2%;
  border-radius: 12px;
}
.fa-card-d .fa-card-open {
  width: 48px;
  height: 48px;
  border-radius: 24px;
}
.fa-card-d .fa-card-open img {
  width: 21px;
  height: 21px;
}
.fa-card-d .fa-card-body h3 {
  font-size: 16px;
  line-height: 1.06;
  margin-top: 20px;
}
.fa-card-d .fa-card-body > p {
  font-size: 14px;
  line-height: 1.06;
  margin-top: 12px;
}
/* ============================================
   Overseas Shopping
   ============================================ */
.overseas-shopping {
  background: #fdfaf5;
  overflow: hidden;
}
/* section height 1165px -> 860px, desktop then minus 10vh; active card slightly smaller */
.os-inner {
  position: relative;
  width: 100%;
  max-width: 1920px;
  min-height: calc(860px - 10vh);
  margin: 40px auto;
  /* clip the looped slider cards at the 1920px content band; vertical
     overflow stays visible so the .os-label captions are not cut */
  overflow-x: clip;
}
.os-title {
  position: absolute;
  left: 96px;
  top: calc(375px - 5vh);
  width: 340px;
  z-index: 10;
}
.os-title h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 70px;
  font-weight: 400;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.96;
  text-align: center;
}
/* ---- OS Slider ---- */
.os-slider {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  --os-active-ratio: 0.3;
  --os-small-ratio: 0.09;
}
.os-item {
  position: relative;
  width: 9%;
  height: calc(860px - 10vh);
  border-radius: 12px;
  overflow: visible;
  flex-shrink: 0;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.os-item .os-thumb-wrap {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1), height 0.6s cubic-bezier(0.25, 1, 0.5, 1), border-radius 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.os-item.active .os-thumb-wrap {
  width: 100%;
  height: calc(860px - 10vh);
  border-radius: 20px;
}
.os-item.active {
  width: 30%;
  overflow: visible;
  justify-content: flex-start;
}
/* Thumb image */
.os-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.os-item.active .os-thumb {
  transform: scale(1);
}
/* Glass overlay */
.os-thumb-glass {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.6s cubic-bezier(0.25, 1, 0.5, 1), backdrop-filter 0.6s cubic-bezier(0.25, 1, 0.5, 1), -webkit-backdrop-filter 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}
.os-item.active .os-thumb-glass {
  background: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(11.3px);
  -webkit-backdrop-filter: blur(11.3px);
}
/* Non-active: hide subtitle/product/cta with fade-out
   (.os-cta is horizontally centered via translateX(-50%), so its
   slide offset keeps that component) */
.os-item .os-thumb-wrap .os-subtitle,
.os-item .os-thumb-wrap .os-product {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.os-item .os-thumb-wrap .os-cta {
  opacity: 0;
  transform: translate(-50%, 16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
/* Active: fade-in with slide-up, staggered delays */
.os-item.active .os-thumb-wrap .os-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1) 0.18s, transform 0.45s cubic-bezier(0.25, 1, 0.5, 1) 0.18s;
}
.os-item.active .os-thumb-wrap .os-product {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1) 0.3s, transform 0.45s cubic-bezier(0.25, 1, 0.5, 1) 0.3s;
}
.os-item.active .os-thumb-wrap .os-cta {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
  transition: opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1) 0.42s, transform 0.45s cubic-bezier(0.25, 1, 0.5, 1) 0.42s;
}
/* Non-active: fade-out smoothly */
.os-item:not(.active) .os-thumb-wrap .os-subtitle,
.os-item:not(.active) .os-thumb-wrap .os-product,
.os-item:not(.active) .os-thumb-wrap .os-cta {
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}
/* Subtitle */
.os-subtitle {
  position: absolute;
  left: 0;
  top: 63px;
  width: 100%;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  text-transform: uppercase;
  line-height: 1.06;
  text-align: center;
}
/* Product */
.os-product {
  position: absolute;
  left: 22%;
  top: 143px;
  width: 56.1%;
  height: calc(573px - 10vh);
  border-radius: 332px;
  object-fit: cover;
}
/* CTA — horizontally centered inside the active card at any width */
.os-cta {
  position: absolute;
  left: 50%;
  top: calc(774px - 10vh);
  transform: translateX(-50%);
}
/* Label */
.os-label {
  position: absolute;
  top: auto;
  bottom: -30px;
  left: 0;
  width: 100%;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 1.06;
  text-transform: capitalize;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1), font-size 0.6s cubic-bezier(0.25, 1, 0.5, 1), left 0.6s cubic-bezier(0.25, 1, 0.5, 1), top 0.6s cubic-bezier(0.25, 1, 0.5, 1), bottom 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.os-label em {
  font-style: normal;
  color: #a7987d;
}
.os-item.active .os-label {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.os-item:not(.active) .os-label {
  opacity: 0.6;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1), font-size 0.6s cubic-bezier(0.25, 1, 0.5, 1), left 0.6s cubic-bezier(0.25, 1, 0.5, 1), top 0.6s cubic-bezier(0.25, 1, 0.5, 1), bottom 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease 0.1s;
}
/* ============================================
   Book Your Next Trip
   ============================================ */
.book-trip {
  background: #fdfaf5;
  text-align: center;
  padding: 50px 0;
}
.book-trip h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 54px;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.02em;
  line-height: 0.96;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 32px;
}
.book-search {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.book-search-input {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 744px;
  height: 71px;
  border: 1px solid #59581c;
  border-radius: 56px;
  gap: 12px;
  padding: 0 16px 0 56px;
  position: relative;
}
.search-icon {
  height: 30px;
  opacity: 0.4;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.book-search-input input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 22px;
  font-weight: 700;
  color: #59581c;
  background: transparent;
}
.book-search-input input::placeholder {
  color: #59581c;
}
.btn-search-submit {
  padding: 0 32px;
  height: 71px;
  background: #694910;
  color: #ffffff;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 22px;
  font-weight: 700;
  border-radius: 56px;
  min-width: 272px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-search-submit:hover {
  background: #5a3f0e;
}
.trip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1604px;
  margin: 0 auto;
}
.trip-card {
  background: #fdfaf5;
  overflow: hidden;
}
.trip-card > img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.trip-body {
  padding: 28px 30px 22px;
}
.trip-body h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  line-height: 1.06;
  text-align: left;
  margin: 0;
  padding: 6px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trip-body > p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  line-height: 1.06;
  margin-top: 12px;
  text-align: left;
  padding: 6px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trip-num {
  color: #a7987d;
}
.trip-curator {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.trip-curator > img {
  width: 59px;
  height: 59px;
  border-radius: 50%;
  object-fit: cover;
}
/* ============================================
   Why Travel With Star Journey
   ============================================ */
.why-travel {
  background: #f8f3ed;
  text-align: center;
  padding: 50px 20px;
}
.why-travel h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.02em;
  line-height: 0.96;
  text-transform: uppercase;
}
.why-subtitle {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  line-height: 1.06;
  margin-top: 16px;
  margin-bottom: 48px;
}
.why-table {
  max-width: 1600px;
  margin: 0 auto 48px;
  border: 1px solid #e7dfd3;
  border-radius: 12px;
  overflow: hidden;
}
.why-row {
  display: flex;
}
.why-header-row {
  background: rgba(105, 73, 16, 0.08);
}
.why-row:nth-child(even):not(.why-header-row) {
  background: rgba(248, 246, 241, 0.5);
}
.why-cell {
  flex: 0 0 20%;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
}
.why-row .why-cell:first-child {
  flex: 0 0 60%;
  justify-content: flex-start;
}
.why-feature-name {
  font-weight: 700;
  color: #000000;
  font-size: 18px;
}
.why-us {
  background: rgba(105, 73, 16, 0.08);
  font-weight: 700;
  color: #694910;
  font-size: 24px;
}
.why-others {
  color: #694910;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  display: block;
  text-align: center;
}
.why-others small {
  font-size: 15px;
}
.why-cell img {
  height: 25px;
  display: block;
  margin: 0 auto;
}
/* ============================================
   How It Works
   ============================================ */
.how-it-works {
  background: #fdfaf5;
  text-align: center;
  padding: 60px 20px;
}
.how-it-works h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.02em;
  line-height: 0.96;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.steps {
  display: flex;
  gap: 32px;
  max-width: 1600px;
  margin: 0 auto 48px;
}
.step {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #e5dbd1;
  transition: transform 0.3s;
}
.step:hover {
  transform: translateY(-4px);
}
.step > img {
  width: 100%;
  height: 436px;
  object-fit: cover;
}
.step-info {
  padding: 28px 41px;
  text-align: left;
}
.step-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 24px;
  font-weight: 700;
  color: #59581c;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}
.step-info h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  line-height: 1.06;
  margin-bottom: 12px;
}
.step-info p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 20px;
  color: #000000;
  line-height: 1.06;
}
/* Scale the remaining home sections proportionally with the viewport
   (design base 1920px) so they keep the 1920px appearance on
   narrower desktop widths */
@media (min-width: 993px) and (max-width: 1920px) {
  /* From Our Advisors */
  .fa-title {
    font-size: 3.6458vw;
  }
  .fa-subtitle {
    font-size: 1.25vw;
  }
  .fa-explore > span:first-child {
    font-size: 0.9375vw;
  }
  .fa-explore-arrow {
    width: 1.9792vw;
    height: 1.9792vw;
  }
  .fa-explore-arrow img {
    width: 1.0417vw;
  }
  /* Live On Stars */
  .live-on-stars h2 {
    font-size: 2.5vw;
    margin-bottom: 1.25vw;
  }
  .live-tabs {
    gap: 0.625vw;
    margin-bottom: 1.6667vw;
  }
  .live-tab {
    padding: 0 1.25vw;
    height: 2.0833vw;
    font-size: 0.9375vw;
  }
  .live-card {
    width: 16.8229vw;
    height: 26.0938vw;
  }
  .live-card-info h3 {
    font-size: 1.25vw;
  }
  .live-card-info .live1_title {
    font-size: 1.4583vw;
    margin-bottom: 0.5208vw;
  }
  .live-card-curator img {
    width: 3.4375vw;
    height: 3.4375vw;
  }
  /* Overseas Shopping (desktop height minus 10vh; active 30%, collapsed 250px/9%) */
  .os-inner {
    min-height: calc(44.7917vw - 10vh);
  }
  .os-title {
    left: 5vw;
    top: calc(19.5313vw - 5vh);
    width: 17.7083vw;
  }
  .os-title h2 {
    font-size: 3.6458vw;
  }
  .os-item {
    height: calc(44.7917vw - 10vh);
  }
  .os-item .os-thumb-wrap {
    height: 13.0208vw;
  }
  .os-item.active .os-thumb-wrap {
    height: calc(44.7917vw - 10vh);
  }
  .os-subtitle {
    top: 3.2813vw;
  }
  .os-product {
    top: 7.4479vw;
    height: calc(29.8438vw - 10vh);
  }
  .os-cta {
    top: calc(40.3125vw - 10vh);
  }
  /* Book Your Next Trip */
  .book-trip h2 {
    font-size: 2.8125vw;
    margin-bottom: 1.6667vw;
  }
  .book-search {
    gap: 0.625vw;
    margin-bottom: 2.5vw;
  }
  .book-search-input {
    max-width: 38.75vw;
    height: 3.6979vw;
    padding: 0 0.8333vw 0 2.9167vw;
  }
  .book-search-input input {
    font-size: 1.1458vw;
  }
  .btn-search-submit {
    min-width: 14.1667vw;
    height: 3.6979vw;
    font-size: 1.1458vw;
    padding: 0 1.6667vw;
  }
  .search-icon {
    height: 1.5625vw;
    left: 1.0417vw;
  }
  /* Trip cards */
  .trip-card > img {
    height: 21.875vw;
  }
  .trip-body {
    padding: 1.4583vw 1.5625vw 1.1458vw;
  }
  .trip-body h3 {
    font-size: 1.6667vw;
  }
  .trip-body > p {
    font-size: 1.0417vw;
  }
  .trip-curator > img {
    width: 3.0729vw;
    height: 3.0729vw;
  }
  /* Why Travel */
  .why-travel h2 {
    font-size: 2.0833vw;
  }
  .why-subtitle {
    font-size: 0.9375vw;
    margin-top: 0.8333vw;
    margin-bottom: 2.5vw;
  }
  .why-others {
    font-size: 0.9375vw;
  }
  .why-cell {
    padding: 0.8333vw 1.25vw;
  }
  /* How It Works steps */
  .step > img {
    height: 22.7083vw;
  }
  .step-info {
    padding: 1.4583vw 2.1354vw;
  }
  .step-label {
    font-size: 1.25vw;
  }
  .step-info h3 {
    font-size: 1.6667vw;
  }
  .step-info p {
    font-size: 1.0417vw;
  }
}
/* ============================================
   Footer
   ============================================ */
.footer {
  background: #000000;
  color: #ffffff;
  padding: 60px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer-col h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}
.footer-col a {
  display: block;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #ffffff;
}
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
/* ============================================
   Utility
   ============================================ */
.clear::after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
/* ============================================
   Responsive - Desktop to Mobile (Large to Small)
   ============================================ */
/* ---- 1536px+ ---- */
@media (min-width: 1536px) {
  .header-inner {
    padding: 12px 80px;
  }
  .header-nav-list {
    gap: 40px;
  }
}
/* ---- 1280px+ ---- */
@media (min-width: 1280px) {
  .header-inner {
    padding: 12px 64px;
  }
  .header-nav-list {
    gap: 32px;
  }
  .header-nav-list li a {
    font-size: 18px;
  }
}
/* ---- Desktop scale-down: header & homepage CTA buttons (1001px-1920px) ---- */
@media (min-width: 1001px) and (max-width: 1920px) {
  .header .header-inner {
    padding: 0.625vw 4.1667vw;
    gap: 0.8333vw;
  }
  .header .header-logo img {
    height: 3.125vw;
    width: 4.5833vw;
  }
  .header .header-nav a,
  .header .header-nav .advisor-nav-link {
    font-size: 0.9375vw;
  }
  .header .header-nav .advisor-nav-link {
    gap: 0.3125vw;
  }
  .header .header-nav .advisor-nav-link .nav-arrow {
    width: 0.5208vw;
    height: 0.3125vw;
  }
  .header .header-actions {
    gap: 0.625vw;
  }
  .header .btn-signin,
  .header .btn-join {
    padding: 0.4167vw 1.25vw;
    font-size: 0.9375vw;
  }
  .header .header-user-name {
    font-size: 0.8333vw;
  }
  .header .header-user-avatar {
    width: 2.0833vw;
    height: 2.0833vw;
  }
  .os-cta .btn-cta {
    padding: 0.2083vw 1.0417vw;
    font-size: 0.9375vw;
    white-space: nowrap;
  }
  .os-cta .btn-cta-arrow {
    width: 1.9792vw;
    height: 1.9792vw;
    margin-left: 0.8333vw;
  }
  .os-cta .btn-cta-arrow img {
    width: 1.0417vw;
  }
  .btn-cta-outline {
    padding: 0.2083vw 1.0417vw;
    font-size: 0.9375vw;
  }
  .btn-cta-outline .btn-cta-arrow {
    width: 1.9792vw;
    height: 1.9792vw;
    margin-left: 0.8333vw;
  }
  .btn-cta-outline .btn-cta-arrow img {
    width: 1.0417vw;
  }
}
/* ---- Wide desktops (e.g. 2560px): keep the exact 1920px/1080p look.
   The vh-based height adjustments shrink the section more on taller
   screens (backwards from their intent), so freeze them to their
   1080p equivalents above the 1920px design base ---- */
@media (min-width: 1921px) {
  .os-inner {
    min-height: 752px;
  }
  .os-title {
    top: 321px;
  }
  .os-item {
    height: 752px;
  }
  .os-item.active .os-thumb-wrap {
    height: 752px;
  }
  .os-product {
    height: 465px;
  }
  .os-cta {
    top: 666px;
  }
}
/* ---- Overseas Shopping: visible item count per desktop width ---- */
@media (max-width: 1599px) {
  .os-slider {
    --os-active-ratio: 0.34;
    --os-small-ratio: 0.105;
  }
  .os-item { width: 10.5%; }
  .os-item.active { width: 34%; }
}

@media (max-width: 1199px) {
  .os-slider {
    --os-active-ratio: 0.38;
    --os-small-ratio: 0.12;
  }
  .os-item { width: 12%; }
  .os-item.active { width: 38%; }
}

/* ---- 1001px - 1400px: no fixed height on .from-advisors-inner;
   .fa-img keeps its natural aspect and drives the section height.
   Desktop-style staggered collage (A overlaps the big image, B upper
   right, C middle, D lower right) with the widened .fa-card boxes,
   positioned so they never cover .fa-text ---- */
@media (min-width: 1001px) and (max-width: 1400px) {
  .from-advisors {
    padding: 3vw 0;
  }
  .from-advisors-inner {
    height: auto;
    min-height: 0;
  }
  .fa-img {
    position: relative;
    left: 0;
    top: 0;
    width: 62%;
    height: auto;
  }
  .fa-img img {
    height: auto;
  }
  .fa-text {
    left: 66%;
    top: 3%;
    width: 32%;
  }
  .fa-title {
    width: 100%;
    font-size: 3vw;
  }
  .fa-subtitle {
    width: 100%;
    font-size: 1.1vw;
    margin-top: 1vw;
  }
  .fa-explore {
    margin-top: 1.2vw;
  }
  .fa-card-a { left: 45%; top: 21.5%; width: 21%; }
  .fa-card-b { left: 79%; top: 23%; width: 21%; }
  .fa-card-c { left: 57%; top: 61.8%; width: 21%; }
  .fa-card-d { left: 79%; top: 61%; width: 21%; }
  .fa-card-open {
    right: 0.83vw;
    top: 0.83vw;
  }
  .fa-card-a .fa-card-open {
    width: 3.67vw;
    height: 3.67vw;
  }
  .fa-card-a .fa-card-open img {
    width: 1.58vw;
    height: 1.58vw;
  }
  .fa-card-b .fa-card-open,
  .fa-card-c .fa-card-open,
  .fa-card-d .fa-card-open {
    width: 4vw;
    height: 4vw;
  }
  .fa-card-b .fa-card-open img,
  .fa-card-c .fa-card-open img,
  .fa-card-d .fa-card-open img {
    width: 1.75vw;
    height: 1.75vw;
  }
  .fa-card-body {
    padding: 0.83vw 0.83vw 1.6vw;
  }
  .fa-card-curator {
    gap: 1vw;
  }
  .fa-card-curator > img {
    width: 3.33vw;
    height: 3.33vw;
  }
  .curator-name-sm {
    font-size: 1.33vw;
    line-height: 1.2;
  }
  .fa-card-a .fa-card-body h3 {
    font-size: 1.67vw;
    margin-top: 1.6vw;
  }
  .fa-card-a .fa-card-body > p {
    font-size: 1.33vw;
    margin-top: 1.3vw;
  }
  .fa-card-b .fa-card-body h3 {
    font-size: 1.17vw;
    margin-top: 1.6vw;
  }
  .fa-card-b .fa-card-body > p {
    font-size: 1vw;
    margin-top: 1vw;
  }
  .fa-card-c .fa-card-body h3 {
    font-size: 1.25vw;
    margin-top: 1.6vw;
  }
  .fa-card-c .fa-card-body > p {
    font-size: 1.08vw;
    margin-top: 1vw;
  }
  .fa-card-d .fa-card-body h3 {
    font-size: 1.33vw;
    margin-top: 1.6vw;
  }
  .fa-card-d .fa-card-body > p {
    font-size: 1.17vw;
    margin-top: 1vw;
  }
}
/* ---- max 1000px ---- */
@media (max-width: 1000px) {
  /* Plan Trip */
  .plan-trip-inner {
    width: 100%;
    min-height: 600px;
    flex-direction: column;
  }
  .plan-left {
    width: 100%;
    height: auto;
  }
  .plan-left img {
    height: auto;
  }
  .plan-right {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .plan-right-content {
    padding: 24px;
  }
  .partner-logos {
    width: 100%;
    height: auto;
    margin: 24px auto;
    margin-top: 24px;
    max-width: 800px;
  }
  /* From Advisors */
  .from-advisors-inner {
    width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 24px;
    padding: 0 24px 32px;
    box-sizing: border-box;
  }
  .fa-img {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
  }
  .fa-img img {
    height: auto;
  }
  .fa-text {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
  }
  .fa-title {
    width: 100%;
    font-size: 36px;
  }
  .fa-subtitle {
    width: 100%;
    font-size: 18px;
    margin-top: 12px;
  }
  .fa-explore {
    margin-top: 16px;
  }
  .fa-card-a,
  .fa-card-b,
  .fa-card-c,
  .fa-card-d {
    position: relative;
    left: 0;
    top: 0;
    width: calc(50% - 12px);
    max-width: none;
    height: auto !important;
    margin: 0;
  }
  /* Overseas Shopping: vertical CSS accordion
     (JS inline transform on .os-slider suppressed) */
  .os-inner {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 24px auto;
  }
  .os-title {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0 24px 16px;
    text-align: center;
  }
  .os-title h2 {
    font-size: 40px;
  }
  .os-slider {
    position: relative;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 0 16px;
    transform: none !important;
  }
  /* clones that only exist to fill the desktop loop */
  .os-item-dup { display: none; }
  .os-item {
    width: 100%;
    height: auto;
  }
  .os-item .os-thumb-wrap {
    display: none;
  }
  .os-item.active {
    width: 100%;
    height: auto;
  }
  .os-item.active .os-thumb-wrap {
    display: block;
    position: relative;
    height: 560px;
    border-radius: 16px;
  }
  .os-item.active .os-thumb-wrap .os-subtitle {
    position: absolute;
    left: 0;
    top: 24px;
    width: 100%;
    padding: 0 24px;
    font-size: 20px;
  }
  .os-item.active .os-thumb-wrap .os-product {
    position: absolute;
    left: 50%;
    top: 90px;
    width: 50%;
    max-width: 420px;
    height: 320px;
    margin: 0;
    border-radius: 210px;
    transform: translateX(-50%);
  }
  .os-item.active .os-thumb-wrap .os-cta {
    position: absolute;
    left: 50%;
    top: auto;
    bottom: 24px;
    margin: 0;
    transform: translateX(-50%);
  }
  .os-label {
    position: relative;
    left: 0 !important;
    top: 0 !important;
    bottom: auto;
    width: 100%;
    margin: 4px 0;
    padding: 12px 16px;
    background: #f3ebe2;
    border-radius: 12px;
    white-space: normal;
    font-size: 16px;
  }
  .os-item.active .os-label,
  .os-item:not(.active) .os-label {
    opacity: 1;
  }
  /* Book Trip */
  .trip-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1100px;
  }
}
/* ---- Live On Stars max 1000px ---- */
@media (max-width: 1000px) {
  .live-cards {
    gap: 12px;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 24px;
    -webkit-overflow-scrolling: touch;
  }
  .live-card {
    width: 260px;
    height: 400px;
  }
}
/* ---- max 992px (tablet & mobile) ---- */
@media (max-width: 992px) {
  /* Header: mobile menu layout */
  .header-inner {
    flex-wrap: nowrap;
  }
  .header-nav {
    display: none;
  }
  .header-hamburger {
    display: inline-flex;
  }
  .header-actions {
    gap: 8px;
  }
  .header-user-name {
    display: none;
  }
  .header-user-avatar {
    width: 34px;
    height: 34px;
  }
  .btn-signin,
  .btn-join {
    padding: 6px 14px;
    font-size: 14px;
  }
  .advisor-dropdown {
    left: 0;
    right: 0;
    transform: none;
    padding: 0 16px 16px;
  }
  .advisor-dropdown-item {
    white-space: normal;
  }
  /* Reward cards */
  .reward-card {
    padding: 28px 24px;
  }
  .reward-card .reward-card-stamp {
    width: 150px;
    top: -40px;
    right: -8px;
  }
  .reward-card .reward-card-price {
    font-size: 56px;
  }
  .reward-card .reward-card-promo em {
    font-size: 28px;
  }
  /* Live tabs */
  .live-tabs {
    flex-wrap: wrap;
    padding: 0 16px;
  }
  .live-tab {
    padding: 0 16px;
    height: 36px;
    font-size: 15px;
  }
  /* Meet Your Advisors grid */
  .live-advisors-page {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .advisor-card img {
    height: 260px;
  }
  .advisor-card h3 {
    white-space: normal;
    font-size: 20px;
  }
  /* Live swiper 2: two per view */
  #liveSwiper2 .swiper-slide {
    width: calc((100% - 16px) / 2);
  }
  #liveSwiper2 .live-card {
    height: 420px;
  }
  /* Plan Trip filters */
  .filter-row {
    flex-wrap: wrap;
  }
  .filter-pill {
    padding: 0 14px;
    height: 36px;
    font-size: 15px;
  }
  /* From Advisors */
  .from-advisors-inner {
    min-height: 0;
    padding-bottom: 24px;
  }
  .fa-title {
    font-size: 32px;
  }
  /* Overseas Shopping: vertical CSS accordion
     (JS inline transform on .os-slider suppressed below) */
  .os-inner {
    min-height: 0;
    margin: 24px auto;
  }
  .os-title {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0 24px 16px;
  }
  .os-title h2 {
    font-size: 36px;
  }
  .os-slider {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 0 16px;
    transform: none !important;
  }
  .os-item {
    width: 100%;
    height: auto;
  }
  .os-item .os-thumb-wrap {
    display: none;
  }
  .os-item.active {
    width: 100%;
    height: auto;
  }
  .os-item.active .os-thumb-wrap {
    display: block;
    position: relative;
    height: 480px;
    border-radius: 16px;
  }
  .os-item.active .os-thumb-wrap .os-subtitle {
    position: absolute;
    left: 0;
    top: 24px;
    width: 100%;
    padding: 0 16px;
    font-size: 18px;
  }
  .os-item.active .os-thumb-wrap .os-product {
    position: absolute;
    left: 50%;
    top: 80px;
    width: 64%;
    height: 280px;
    margin: 0;
    border-radius: 150px;
    transform: translateX(-50%);
  }
  .os-item.active .os-thumb-wrap .os-cta {
    position: absolute;
    left: 50%;
    top: auto;
    bottom: 24px;
    margin: 0;
    transform: translateX(-50%);
  }
  .os-label {
    position: relative;
    left: 0;
    top: 0;
    bottom: auto;
    width: 100%;
    margin: 4px 0;
    padding: 12px 16px;
    background: #f3ebe2;
    border-radius: 12px;
    white-space: normal;
    font-size: 16px;
  }
  .os-item.active .os-label,
  .os-item:not(.active) .os-label {
    opacity: 1;
  }
  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }
}
/* ---- 1024px+ ---- */
@media (min-width: 1024px) {
  .header-inner {
    padding: 12px 48px;
  }
  .header-logo img {
    height: 60px;
    width: 88px;
  }
  .header-nav {
    display: flex;
  }
  .header-hamburger {
    display: none;
  }
  .mobile-nav {
    display: none !important;
  }
}
/* ---- max 768px ---- */
@media (max-width: 768px) {
  /* Live On Stars */
  .live-card {
    width: 220px;
    height: 340px;
  }
  .live-card-info h3 {
    font-size: 18px;
  }
  /* Book Trip */
  .book-trip h2 {
    font-size: 32px;
  }
  .trip-grid {
    grid-template-columns: 1fr;
    max-width: 527px;
  }
  .trip-card > img {
    height: 320px;
  }
  .book-search {
    flex-direction: column;
    align-items: center;
  }
  .book-search-input {
    width: 100%;
    max-width: 500px;
  }
  .btn-search-submit {
    width: 100%;
    max-width: 500px;
  }
  /* How It Works */
  .steps {
    flex-direction: column;
    max-width: 500px;
  }
  .step > img {
    height: auto;
  }
  /* From Advisors: back to single column on phones */
  .fa-card-a,
  .fa-card-b,
  .fa-card-c,
  .fa-card-d {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  /* Why Travel table */
  .why-cell {
    padding: 10px 8px;
    font-size: 13px;
  }
  .why-feature-name {
    font-size: 14px;
  }
  .why-us {
    font-size: 16px;
  }
  .why-others {
    font-size: 13px;
  }
  .why-others small {
    font-size: 11px;
  }
  .why-cell img {
    height: 18px;
  }
}
/* ---- 640px+ ---- */
@media (min-width: 640px) {
  .header-logo img {
    height: 50px;
    width: 73px;
  }
  .header-actions {
    display: flex;
  }
}
/* ---- max 640px ---- */
@media (max-width: 640px) {
  /* Hero */
  .hero {
    min-height: 480px;
  }
  .hero-content {
    width: 90%;
    top: 50%;
  }
  .hero-content h1 {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .hero-content > p {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .hero-cta {
    margin-bottom: 20px;
  }
  .hero-link {
    margin-top: 12px;
    font-size: 15px;
  }
  /* Meet Your Advisors */
  .live-advisors-title {
    font-size: 26px;
  }
  .live-advisors-page {
    gap: 12px;
  }
  .advisor-card img {
    height: 180px;
  }
  .advisor-card h3 {
    font-size: 16px;
  }
  #liveSwiper2 .live-card {
    height: 300px;
  }
  /* Plan Trip partner logos: two per row */
  .partner-logos {
    gap: 24px;
    padding: 24px;
  }
  .partner-logos img {
    width: calc(50% - 24px);
    height: 56px;
  }
  /* Overseas Shopping */
  .os-item.active .os-thumb-wrap {
    height: 420px;
  }
  .os-item.active .os-thumb-wrap .os-product {
    top: 70px;
    height: 240px;
  }
}
/* ---- 641px - 1023px ---- */
@media (min-width: 641px) and (max-width: 1023px) {
  /* Hero */
  .hero {
    min-height: 500px;
  }
  .hero-content {
    width: 80%;
  }
  .hero-content h1 {
    font-size: 40px;
  }
}
/* ---- max 640px (mobile nav) ---- */
@media (max-width: 639px) {
  .mobile-nav-actions {
    display: flex;
  }
}
/* ============================================
   Trip Modal - Plan A Trip
   ============================================ */
.trip-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}
.trip-modal-overlay.show {
  display: flex;
}
.trip-modal {
  background: #fdfaf5;
  width: 100%;
  max-width: 800px;
  max-height: 75vh;
  border-radius: 8px;
  padding: 40px 32px 48px;
  position: relative;
  overflow-y: auto;
}
.trip-modal-close {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 201;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.trip-modal-close img {
  width: 32px;
  height: 32px;
  display: block;
}
.trip-modal-header {
  text-align: center;
  margin-bottom: 32px;
}
.trip-modal-header h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  color: #000000;
  margin-bottom: 12px;
}
.trip-modal-header p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  line-height: 1.5;
  color: #666;
  max-width: 520px;
  margin: 0 auto;
}
.trip-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.trip-form .form-row.align-bottom {
  align-items: flex-end;
}
.trip-form .form-group {
  flex: 1 1 calc(50% - 8px);
  min-width: 0;
}
.trip-form .form-group.full-width {
  flex: 1 1 100%;
}
.trip-form label {
  display: block;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 6px;
}
.trip-form label .required {
  color: #c0392b;
}
.trip-form label .required-text {
  color: #c0392b;
  font-size: 11px;
  font-weight: 400;
  margin-left: 4px;
}
.trip-form .contact-sub {
  display: block;
  font-size: 11px;
  color: #666;
  margin-bottom: 4px;
  margin-top: -2px;
}
.trip-form input[type="text"],
.trip-form input[type="email"],
.trip-form input[type="tel"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #c4b49a;
  border-radius: 4px;
  background: #fdfaf5;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #000000;
}
.trip-form input[type="text"]::placeholder,
.trip-form input[type="email"]::placeholder,
.trip-form input[type="tel"]::placeholder {
  color: #999;
  font-size: 12px;
}
.trip-form .date-inputs {
  display: flex;
  gap: 12px;
}
.trip-form .date-inputs input {
  flex: 1;
}
.trip-form .custom-select {
  position: relative;
}
.trip-form .custom-select .select-trigger {
  width: 100%;
  padding: 10px 32px 10px 12px;
  border: 1px solid #c4b49a;
  border-radius: 4px;
  background: #fdfaf5;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #000000;
  cursor: pointer;
  position: relative;
  user-select: none;
}
.trip-form .custom-select .select-trigger .select-value {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.trip-form .custom-select .select-trigger .select-value.placeholder {
  color: #999;
}
.trip-form .custom-select .select-trigger::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #694910;
}
.trip-form .custom-select .select-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  background: #fdfaf5;
  border: 1px solid #c4b49a;
  border-radius: 4px;
  margin-top: 4px;
  max-height: 240px;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.trip-form .custom-select.open .select-options {
  display: block;
}
.trip-form .custom-select .select-option {
  padding: 10px 12px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #000000;
  cursor: pointer;
  transition: background 0.15s;
}
.trip-form .custom-select .select-option:hover {
  background: #f3ebe2;
}
.trip-form .custom-select .select-option.selected {
  background: #694910;
  color: #fdfaf5;
}
.trip-form .checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 12px;
  color: #999;
}
.trip-form .checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid #c4b49a;
  border-radius: 2px;
  background: #fdfaf5;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.trip-form .checkbox-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 9px;
  border: solid #694910;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.trip-form .checkbox-text {
  font-size: 12px;
  color: #999;
}
.trip-submit {
  display: inline-block;
  padding: 12px 40px;
  background: #694910;
  color: #fdfaf5;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.3s;
}
.trip-submit:hover {
  background: #5a3f0e;
}
@media (max-width: 640px) {
  .trip-modal {
    padding: 32px 20px 40px;
  }
  .trip-modal-header h2 {
    font-size: 26px;
  }
  .trip-form .form-group {
    flex: 1 1 100%;
  }
  .trip-form .date-row .form-group {
    flex: 1 1 100%;
  }
}
/* ============================================
   Hotel Page
   ============================================ */
.hotel-hero {
  position: relative;
  width: 100%;
  min-height: 900px;
  background: #f3ebe2;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hotel-hero-inner {
  max-width: 1616px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.hotel-hero-bg {
  width: 50%;
  height: 838px;
  object-fit: cover;
}
.hotel-hero-content {
  position: relative;
  z-index: 2;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-left: 50px;
}
.hotel-hero-script {
  font-family: 'Dancing Script', Helvetica, cursive;
  font-weight: 600;
  font-size: 64px;
  color: #7c6a46;
  margin-bottom: 30px;
}
.hotel-hero-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 54px;
  line-height: 57.5px;
  color: #000000;
  margin-bottom: 180px;
}
.hotel-hero-subtitle {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: normal;
  font-size: 20px;
  line-height: 21.3px;
  color: #000000;
  white-space: nowrap;
  margin-bottom: 130px;
}
/* Hotel Search Form */
.hotel-search-form {
  position: relative;
  z-index: 3;
  max-width: 1616px;
  margin: -76px auto 0;
  background: #fff;
  display: flex;
  align-items: flex-start;
  padding: 40px 50px;
  gap: 20px;
}
.hotel-search-fields {
  display: flex;
  flex: 1;
  gap: 0;
  position: relative;
}
.hotel-search-field {
  position: relative;
  flex: 1;
  min-width: 120px;
  padding-right: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.hotel-search-field img.field-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  margin-top: 4px;
}
.hotel-search-field .field-text {
  flex: 1;
}
.hotel-search-field label {
  display: block;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 15px;
  color: #1c1c1c;
  margin-bottom: 6px;
}
.hotel-search-field .field-value {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hotel-search-field .field-value span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: normal;
  font-size: 14px;
  color: rgba(28, 28, 28, 0.6);
}
.hotel-search-field .field-value img.caret {
  width: 11px;
  height: 7px;
}
.hotel-search-btn {
  width: 223px;
  height: 52px;
  background: #694910;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.hotel-search-btn span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  text-align: center;
  display: block;
  line-height: 52px;
}
/* Search Dropdown */
.search-dropdown {
  position: absolute;
  top: 100%;
  left: -50px;
  z-index: 10;
  display: none;
  margin-top: 8px;
}
.hotel-search-field[data-dropdown].open .search-dropdown {
  display: block;
}
.search-dropdown-inner {
  width: 228px;
  background: #fff;
  border-radius: 5px;
  padding: 16px 0 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
}
.search-dropdown-inner .shut_btn {
  position: absolute;
  right: 15px;
  top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.search-dropdown-inner .shut_btn img {
  display: block;
  width: 100%;
}
.search-dropdown-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 20px;
  color: #000000;
  padding: 0 15px;
  margin-bottom: 10px;
}
.search-dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.search-dropdown-option {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 50px;
  padding: 0 15px;
  cursor: pointer;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 14px;
  color: #000000;
  transition: background 0.2s;
}
.search-dropdown-option img.option-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.search-dropdown-option img.option-icon-selected {
  display: none;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.search-dropdown-option:hover {
  background: #f3ebe2;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.search-dropdown-option.selected {
  background: #694910;
  color: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.search-dropdown-option.selected img.option-icon {
  display: none;
}
.search-dropdown-option.selected img.option-icon-selected {
  display: block;
}
/* Calendar Dropdown */
.search-dropdown-inner.calendar-dropdown {
  width: 417px;
  padding: 16px 20px 20px;
}
.stay-filter-chips {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.stay-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 29px;
  padding: 8px 10px;
  border-radius: 5px;
  border: 1px solid #a7987d;
  background: transparent;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 12px;
  color: #a7987d;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.stay-chip.active {
  background: #694910;
  border-color: #694910;
  color: #fff;
}
.calendar-date-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.calendar-date-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 6px;
  height: 36px;
  padding: 8px 12px;
  border: 1px solid #a7987d;
  border-radius: 5px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 14px;
  color: #a7987d;
  cursor: pointer;
  background: transparent;
}
.calendar-date-btn img.calendar-icon {
  width: 18px;
  height: 18px;
}
.calendar-month-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.calendar-month-header span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 15px;
  color: #000000;
  margin: 0 30px;
}
.calendar-month-header button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.calendar-month-header button img {
  width: 16px;
  height: 16px;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.calendar-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: normal;
  font-size: 15px;
  color: #000000;
  cursor: pointer;
  background: rgba(167, 152, 125, 0.04);
  transition: background 0.2s;
}
.calendar-cell.muted {
  opacity: 0.2;
}
.calendar-cell.selected {
  background: #694910;
  color: #fff;
  border-radius: 5px;
}
.calendar-cell:hover:not(.muted):not(.selected) {
  background: rgba(167, 152, 125, 0.15);
}
/* Location Dropdown */
.location-dropdown {
  left: -50px;
}
.location-dropdown-card {
  width: 856px;
  background: #fff;
  border-radius: 5px;
  padding: 16px 20px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 0;
}
.location-dropdown-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 20px;
  color: #000000;
  margin-bottom: 10px;
}
.location-tabs {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.location-tab {
  white-space: nowrap;
  padding: 0 50px;
  height: 50px;
  display: flex;
  align-items: center;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  line-height: 45.9px;
}
.location-tab:hover {
  background: rgba(167, 152, 125, 0.08);
}
.location-tab.active {
  background: #694910;
  color: #fff;
}
.location-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.location-panel {
  flex: 1;
}
.location-panel-content {
  display: none;
  background: #694910;
  border-radius: 0 5px 5px 5px;
  padding: 7px 0;
  flex: 1;
}
.location-panel-content.active {
  display: block;
}
.location-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.location-col {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.2s;
}
.location-col:hover {
  background: rgba(255, 255, 255, 0.15);
}
.location-col.selected {
  background: rgba(255, 255, 255, 0.2);
}
.location-col.selected .location-name {
  color: #fff;
}
.location-col.selected .location-pct {
  color: rgba(255, 255, 255, 0.7);
}
.location-col.selected .location-radio span {
  border-color: rgba(255, 255, 255, 0.55);
  background: #fff;
}
.location-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.location-name {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: normal;
  font-size: 13px;
  color: #fff;
}
.location-pct {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: normal;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.location-radio {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.location-radio span {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
}
.location-col.selected .location-radio span,
.location-metro-item.selected .location-radio span {
  border-color: rgba(255, 255, 255, 0.55);
  background: #fff;
}
/* Metro layout - 3 columns */
.location-metro-cols {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 0;
}
.location-metro-col {
  display: flex;
  flex-direction: column;
}
.location-metro-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.2s;
}
.location-metro-item:hover {
  background: rgba(255, 255, 255, 0.15);
}
.location-metro-item.selected {
  background: rgba(255, 255, 255, 0.2);
}
.location-metro-item.selected .location-name {
  color: #fff;
}
.location-metro-item.selected .location-radio span {
  border-color: rgba(255, 255, 255, 0.55);
  background: #fff;
}
.location-metro-item .location-name {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: normal;
  font-size: 12px;
  color: #fff;
}
.metro-lines .location-metro-item {
  background: rgba(255, 255, 255, 0.08);
}
/* Location actions */
.location-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
  padding-top: 12px;
}
.location-btn-clear {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 37px;
  padding: 0 20px;
  border: 1px solid #a7987d;
  border-radius: 5px;
  background: transparent;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 13px;
  color: #a7987d;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.location-btn-clear:hover {
  background: #a7987d;
  color: #fff;
}
.location-btn-show {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 37px;
  padding: 0 20px;
  border: none;
  border-radius: 5px;
  background: #694910;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 13px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: background 0.2s;
}
.location-btn-show:hover {
  background: #46300b;
}
/* Hotel Listings */
.hotel-listings {
  max-width: 1920px;
  margin: 60px auto 0;
  display: flex;
  gap: 30px;
  padding: 0 20px;
}
/* Sidebar Filters */
.hotel-filters {
  width: 359px;
  flex-shrink: 0;
  border-radius: 5px;
  padding: 0;
  position: relative;
}
.hotel-filters-map-wrap {
  position: relative;
  margin-bottom: 40px;
}
.hotel-filters-map {
  width: 359px;
  height: 145px;
  object-fit: cover;
  display: block;
}
.hotel-filters-map-btn {
  display: block;
  width: 156px;
  height: 43px;
  background: #694910;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hotel-filters-map-btn span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  line-height: 43px;
}
.hotel-filters-nav {
  background: #fff;
  border-radius: 5px;
}
.hotel-filters-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 20px;
  color: #000000;
  padding: 36px 50px 20px;
  white-space: nowrap;
}
.hotel-filters-list {
  padding: 0 55px;
}
.hotel-filter-item {
  display: flex;
  align-items: center;
  gap: 22px;
  cursor: pointer;
  transition: background 0.2s, margin 0.2s, padding 0.2s;
}
.hotel-filter-item .checkbox {
  width: 21px;
  height: 21px;
  border: 1px solid #000000;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.hotel-filter-item span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  line-height: 45.9px;
  white-space: nowrap;
  transition: color 0.2s;
}
.hotel-filter-item:hover {
  background: #694910;
  margin: 0 -55px;
  padding: 0 55px;
}
.hotel-filter-item:hover .checkbox {
  border-color: #fff;
}
.hotel-filter-item:hover span {
  color: #fff;
}
.hotel-filter-item.selected {
  background: #694910;
  margin: 0 -55px;
  padding: 0 55px;
}
.hotel-filter-item.selected .checkbox {
  border-color: #fff;
  background: #fff;
  position: relative;
}
.hotel-filter-item.selected .checkbox::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #694910;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.hotel-filter-item.selected span {
  color: #fff;
}
.hotel-filters-less {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 16px;
  color: #694910;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 55px;
  line-height: 45.9px;
  white-space: nowrap;
}
/* Hotel Cards */
.hotel-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hotel-card {
  display: flex;
  background: #fff;
  border-radius: 0 5px 5px 0;
  overflow: hidden;
  position: relative;
}
.hotel-card-img {
  width: 303px;
  height: 260px;
  object-fit: cover;
  flex-shrink: 0;
}
.hotel-card-body {
  flex: 1;
  padding: 20px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.hotel-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.hotel-card-icon {
  width: 19px;
  height: 18px;
}
.hotel-card-score {
  display: inline-block;
  background: #694910;
  border-radius: 19px 0 19px 19px;
  padding: 2px 10px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
}
.hotel-card-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 20px;
  color: #000000;
  margin-bottom: 4px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hotel-card-title .hotel-card-stars {
  display: flex;
  gap: 2px;
}
.hotel-card-title .hotel-card-stars img {
  width: 20px;
  height: 20px;
}
.hotel-card-rating {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 20px;
  margin-bottom: 4px;
  white-space: nowrap;
}
.hotel-card-rating .rating-label {
  font-weight: bold;
  color: #694910;
}
.hotel-card-rating .rating-count {
  font-weight: normal;
  color: #000000;
}
.hotel-card-offer {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-style: italic;
  font-size: 16px;
  color: #694910;
  margin-bottom: 4px;
  white-space: nowrap;
}
.hotel-card-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.hotel-card-location {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  margin-bottom: 4px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.hotel-card-location .map-link {
  font-style: italic;
  color: #694910;
  margin-left: 20px;
}
.hotel-card-line {
  width: 50%;
  height: 1px;
  background: linear-gradient(to right, #A7987D, #fff);
  margin: 8px 0;
}
.hotel-card-room {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  margin-bottom: 2px;
  white-space: nowrap;
}
.hotel-card-breakfast {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-style: italic;
  font-size: 16px;
  color: #694910;
  margin-bottom: 2px;
  white-space: nowrap;
}
.hotel-card-booked {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: normal;
  font-size: 16px;
  color: #000000;
  margin-bottom: 8px;
  white-space: nowrap;
}
.hotel-card-price-row {
  position: absolute;
  bottom: 20px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.hotel-card-taxes {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: normal;
  font-size: 16px;
  color: #000000;
  white-space: nowrap;
}
.hotel-card-price {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 32px;
  color: #000000;
  white-space: nowrap;
}
.hotel-card-btn {
  display: inline-block;
  width: 156px;
  height: 43px;
  background: #694910;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  text-align: center;
}
.hotel-card-btn span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  line-height: 43px;
}
/* Luxurious Rooms */
.hotel-rooms {
  position: relative;
  width: 100%;
  padding: 80px 0 100px;
  overflow: hidden;
  margin: 50px auto 0;
}
.hotel-rooms-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hotel-rooms-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(124, 106, 70, 0.8);
  z-index: 1;
}
.hotel-rooms-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hotel-rooms-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 54px;
  color: #fff;
  margin-bottom: 10px;
}
.hotel-rooms-subtitle {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: normal;
  font-size: 20px;
  color: #fff;
  white-space: nowrap;
  margin-bottom: 60px;
}
.hotel-rooms-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 0 149px;
}
.hotel-room-card {
  width: 489px;
  background: #fff;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.hotel-room-card-img {
  width: 419px;
  height: 345px;
  object-fit: cover;
  display: block;
  margin: 33px auto 0;
}
.hotel-room-card-badge {
  position: absolute;
  top: 53px;
  right: 40px;
  background: #694910;
  border-radius: 2.5px;
  padding: 8px 12px;
}
.hotel-room-card-badge span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
}
.hotel-room-card-desc {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: normal;
  font-size: 17px;
  color: #000000;
  padding: 20px 35px 30px;
  line-height: normal;
}
/* Decorative vector */
.hotel-deco-vector {
  position: absolute;
  top: 0;
  right: 0;
  width: 70.69%;
  height: 98.44%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
}
/* ============================================
   Hotel Payment Page
   ============================================ */
.hp-page {
  background: #fdfaf5;
}
.hp-main {
  position: relative;
  min-height: 850px;
  background: linear-gradient(to right, #f3ebe2 50%, #fdfaf5 50%);
}
.hp-layout {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 113px 20px 60px;
  position: relative;
}
.hp-bg {
  position: absolute;
  top: 90px;
  left: 0;
  width: 50%;
  height: 990px;
  background: #f3ebe2;
}
/* Payment Section (Left) */
.hp-payment-section {
  flex: 1;
  max-width: 569px;
}
.hp-section-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  line-height: 21.3px;
  white-space: nowrap;
  margin-bottom: 10px;
}
.hp-line {
  width: 543px;
  height: 1px;
  display: block;
  margin-bottom: 20px;
}
.hp-accepted-cards {
  width: 107px;
  height: 20px;
  margin-bottom: 25px;
}
/* Card Form */
.hp-card-form {
  margin-bottom: 20px;
}
.hp-form-group {
  margin-bottom: 20px;
}
.hp-form-group-full {
  width: 100%;
}
.hp-form-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  line-height: normal;
  margin-bottom: 8px;
  display: block;
}
.hp-input-wrap {
  position: relative;
}
.hp-input {
  width: 100%;
  height: 47px;
  border: 1px solid #694910;
  border-radius: 5px;
  padding: 0 13px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #a7987d;
  line-height: normal;
  background: #fff;
  outline: none;
}
.hp-input-icon {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 12px;
  pointer-events: none;
}
.hp-input-icon-sm {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 6px;
  pointer-events: none;
}
.hp-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.hp-form-row-half .hp-form-group {
  flex: 1;
  margin-bottom: 0;
}
/* Checkbox */
.hp-checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
}
.hp-checkbox-wrap {
  position: relative;
  width: 17px;
  height: 17px;
}
.hp-checkbox-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 17px;
  height: 17px;
  border: 1px solid #a7987d;
  pointer-events: none;
}
.hp-checkbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 17px;
  height: 17px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}
.hp-checkbox-check {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 15px;
  pointer-events: none;
}
.hp-checkbox-check img {
  width: 100%;
  height: 100%;
  opacity: 0;
}
.hp-checkbox:checked ~ .hp-checkbox-check img {
  opacity: 1;
}
.hp-checkbox-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 15px;
  color: #a7987d;
  line-height: normal;
}
/* Divider lines */
.hp-divider-line {
  width: 543px;
  height: 1px;
  display: block;
  margin: 15px 0;
}
/* Alternative payment methods */
.hp-alt-method {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.hp-alt-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hp-alt-icon-bg {
  width: 37px;
  height: 26px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
.hp-alt-icon {
  width: 30px;
  height: 16px;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hp-alt-name {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: 17px;
  white-space: nowrap;
}
.hp-alt-arrow {
  display: flex;
  align-items: center;
  gap: 2px;
  position: relative;
  width: 20px;
}
.hp-alt-arrow img {
  width: 18px;
  height: 21px;
  flex-shrink: 0;
  position: absolute;
}
.hp-alt-arrow-single {
  display: flex;
  align-items: center;
  position: relative;
}
.hp-alt-arrow-single img {
  width: 18px;
  height: 20px;
  flex-shrink: 0;
  position: absolute;
}
/* Order Summary (Right) */
.hp-order-section {
  flex: 1;
  max-width: 530px;
}
.hp-order-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.hp-order-bag-icon {
  position: relative;
  width: 13px;
  height: 14px;
}
.hp-order-bag-icon img {
  position: absolute;
}
.hp-order-count {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: normal;
  white-space: nowrap;
}
.hp-order-number {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: normal;
  white-space: nowrap;
  margin-left: auto;
}
.hp-order-price {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: normal;
  white-space: nowrap;
  text-align: right;
}
.hp-order-ship {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: normal;
  white-space: nowrap;
  margin-bottom: 15px;
}
.hp-order-hotel {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.hp-order-hotel-img {
  width: 103px;
  height: 99px;
  object-fit: cover;
  flex-shrink: 0;
}
.hp-order-hotel-info {
  flex: 1;
}
.hp-order-hotel-dates {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  line-height: 14.9px;
  white-space: nowrap;
  margin-bottom: 5px;
}
.hp-order-hotel-name {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  line-height: 14.9px;
  margin-bottom: 3px;
}
.hp-order-hotel-detail {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  line-height: 14.9px;
  margin-bottom: 3px;
}
.hp-order-hotel-guest {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  line-height: 14.9px;
}
.hp-order-hotel-price {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  line-height: normal;
  white-space: nowrap;
  text-align: right;
  min-width: 120px;
}
.hp-order-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.hp-order-total-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  line-height: normal;
}
.hp-order-total-value {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  line-height: normal;
  text-align: right;
}
.hp-order-payment {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  line-height: normal;
  margin-bottom: 15px;
}
.hp-order-line {
  width: 507px;
  height: 1px;
  display: block;
  margin-bottom: 20px;
}
.hp-pay-btn {
  width: 505px;
  height: 45px;
  background: #694910;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-align: center;
  line-height: 45px;
}
/* Dialog Overlays */
.hp-dialog-nonmember {
  width: 392px;
  height: 396px;
  padding: 0;
  position: relative;
}
.hp-dialog-back {
  position: absolute;
  top: 21px;
  left: 16px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  color: #000000;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.hp-dialog-nonmember-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: 26px;
  text-align: center;
  margin: 20px 0 0;
  position: relative;
  z-index: 1;
}
.hp-dialog-nonmember-content {
  position: relative;
  margin: 20px auto 0;
  width: 100%;
  padding: 20px;
  background: #F3EBE2;
  border-radius: 10px;
}
.hp-dialog-nonmember-text {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  line-height: 21px;
  text-align: center;
}
.hp-dialog-nonmember-join {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 265px;
  height: 41px;
  background: #694910;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 21px;
  margin: 20px auto 0;
}
.hp-dialog-nonmember-browse {
  display: block;
  margin: 10px auto 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 12px;
  color: #a7987d;
  text-align: center;
  line-height: 18px;
  text-decoration: underline;
  white-space: nowrap;
}
.hp-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
}
.hp-dialog-overlay.show {
  display: flex;
}
.hp-dialog {
  position: relative;
  background: #fdfaf5;
  border-radius: 10px;
  border: 1px solid #e2e2e2;
  padding: 50px 34px 30px;
}
.hp-dialog-success {
  width: 472px;
  height: 520px;
}
.hp-dialog-error {
  width: 342px;
  height: 390px;
}
.hp-dialog-close {
  position: absolute;
  top: 21px;
  right: 21px;
  width: 27px;
  height: 27px;
  background: #f3ebe2;
  border-radius: 13.5px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.hp-dialog-close img {
  width: 19px;
  height: 19px;
}
.hp-dialog-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  text-align: center;
  line-height: 19.2px;
  white-space: nowrap;
  margin-bottom: 20px;
}
.hp-dialog-img {
  display: block;
  margin: 0 auto 20px;
}
.hp-dialog-success .hp-dialog-img {
  width: 144px;
  height: 144px;
}
.hp-dialog-error .hp-dialog-img {
  width: 156px;
  height: 156px;
}
.hp-dialog-details {
  background: #f3ebe2;
  border-radius: 7px;
  padding: 25px;
  margin-bottom: 20px;
}
.hp-dialog-detail-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  line-height: 23px;
}
.hp-dialog-error-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  color: #2a2960;
  text-align: center;
  line-height: normal;
  margin-bottom: 8px;
}
.hp-dialog-error-desc {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  text-align: center;
  line-height: 13px;
  margin-bottom: 20px;
  opacity: 0.8;
}
.hp-dialog-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.hp-dialog-btn {
  width: 196px;
  height: 40px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 17px;
  white-space: nowrap;
}
.hp-dialog-btn-outline {
  border: 1px solid #d9d9d9;
  background: transparent;
  color: #000000;
}
.hp-dialog-btn-primary {
  background: #694910;
  color: #fff;
}
.hp-dialog-btn-danger {
  width: 286px;
  height: 36px;
  background: #ff2a44;
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
  margin: 0 auto;
  display: block;
}
/* ============================================
   Advisors Page
   ============================================ */
/* Nav Dropdown */
.advisor-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0 40px 20px;
}
.advisor-dropdown.show {
  display: block;
}
.advisor-dropdown-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.advisor-dropdown-item {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  text-decoration: none;
  padding: 14px 0;
  white-space: nowrap;
  text-align: center;
  transition: color 0.2s;
}
.advisor-dropdown-item:hover {
  color: #694910;
}
.advisor-dropdown-item.active {
  color: #694910;
}
.advisor-dropdown-line {
  width: 100%;
  height: 1px;
  background: #e7dfd3;
}
/* ===== Hero Section ===== */
.advisor-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.advisor-hero-bg {
  width: 80vw;
  object-fit: cover;
  margin: 0 auto;
}
.advisor-hero-overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.advisor-hero-card {
  position: absolute;
  top: 68px;
  left: 50%;
  transform: translateX(-50%);
  width: 575px;
  height: 313px;
  background: #fdfaf5;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.advisor-hero-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 54px;
  color: #000000;
  line-height: 51.8px;
  letter-spacing: -1.08px;
  margin-bottom: 16px;
}
.advisor-hero-subtitle {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 18px;
  color: #a7987d;
  line-height: 1.5;
  max-width: 447px;
}
/* ===== Search Section ===== */
.advisor-search {
  padding: 40px 0;
}
.advisor-search-form {
  display: flex;
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 40px;
}
.advisor-search-input-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}
.advisor-search-icon {
  position: absolute;
  left: 17px;
  width: 31px;
  height: 31px;
  pointer-events: none;
}
.advisor-search-input {
  width: 100%;
  height: 71px;
  border: 1px solid #a7987d;
  border-radius: 56px;
  padding: 0 30px 0 65px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 22px;
  color: #a7987d;
  background: #fdfaf5;
  outline: none;
}
.advisor-search-input:focus {
  border-color: #694910;
}
.advisor-search-input::placeholder {
  color: #a7987d;
}
.advisor-search-btn {
  width: 272px;
  height: 71px;
  background: #694910;
  border-radius: 56px;
  border: none;
  cursor: pointer;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.advisor-search-btn:hover {
  opacity: 0.9;
}
/* ===== Story Grid Section ===== */
.advisor-story-grid {
  padding: 60px 168px 80px;
  scroll-margin-top: 24px;
}
.advisor-story-row {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
}
.advisor-story-row:last-child {
  margin-bottom: 0;
}
.advisor-story-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  flex: 0 0 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
}
.advisor-story-card {
  overflow: hidden;
  position: relative;
}
.advisor-story-img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}
.advisor-story-badge {
  position: absolute;
  top: 562px;
  left: 20px;
  background: #fff;
  padding: 8px 16px;
}
.advisor-story-badge span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  letter-spacing: 0.72px;
}
.advisor-story-body {
  padding: 0 20px;
}
.advisor-story-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 32px;
  color: #000000;
  line-height: 34.1px;
  height: 68px;
  margin: 40px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.advisor-story-desc {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 20px;
  color: #999999;
  line-height: 21.3px;
  margin-top: 12px;
}
.advisor-story-curator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.advisor-story-avatar {
  width: 59px;
  height: 59px;
  border-radius: 50%;
  object-fit: cover;
}
.advisor-story-curator-info {
  display: flex;
  flex-direction: column;
}
.advisor-story-curator-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #a7987d;
}
.advisor-story-author {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
}
.advisor-story-curator-info {
  display: flex;
  flex-direction: column;
}
.advisor-story-curator-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: normal;
  font-size: 11px;
  color: #a7987d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.advisor-story-author {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: bold;
  font-size: 14px;
  color: #000000;
}
.advisor-story-pagination-wrap {
  margin-top: 56px;
}
/* Scale advisor pages proportionally on narrow desktop widths
   (design base 1920px) */
@media (min-width: 993px) and (max-width: 1920px) {
  .advisor-hero-card {
    top: 3.5417vw;
    width: 29.9479vw;
    height: 16.3021vw;
  }
  .advisor-hero-title {
    font-size: 2.8125vw;
    line-height: 2.6979vw;
    margin-bottom: 0.8333vw;
  }
  .advisor-hero-subtitle {
    font-size: 0.9375vw;
    max-width: 23.2813vw;
  }
  .advisor-search {
    padding: 2.0833vw 0;
  }
  .advisor-search-form {
    gap: 1.0417vw;
    max-width: 54.1667vw;
    padding: 0 2.0833vw;
  }
  .advisor-search-icon {
    left: 0.8854vw;
    width: 1.6146vw;
    height: 1.6146vw;
  }
  .advisor-search-input {
    height: 3.6979vw;
    padding: 0 1.5625vw 0 3.3854vw;
    font-size: 1.1458vw;
  }
  .advisor-search-btn {
    width: 14.1667vw;
    height: 3.6979vw;
    font-size: 1.1458vw;
  }
  .advisor-story-grid {
    padding: 3.125vw 8.75vw 4.1667vw;
  }
  .advisor-story-img {
    height: 32.2917vw;
  }
  .advisor-story-badge {
    top: 29.2708vw;
    left: 1.0417vw;
    padding: 0.4167vw 0.8333vw;
  }
  .advisor-story-badge span {
    font-size: 0.9375vw;
  }
  .advisor-story-title {
    font-size: 1.6667vw;
    line-height: 1.776vw;
    height: 3.5417vw;
    margin: 2.0833vw 0;
  }
  .advisor-story-desc {
    font-size: 1.0417vw;
  }
  .advisor-detail-avatar-wrap {
    flex: 0 0 18.75vw;
    max-width: 18.75vw;
  }
  .advisor-detail-profile-card h1 {
    font-size: 1.5625vw;
  }
  .aoa-hero-text {
    padding: 3.125vw 2.5vw 3.125vw 3.9583vw;
    max-width: 41.6667vw;
  }
  .aoa-hero-text h1 {
    font-size: 2.7083vw;
  }
  .aoa-hero-right {
    gap: 1.25vw;
    padding: 2.0833vw;
    min-height: 31.25vw;
  }
  .aoa-hero-right .aoa-phone-main {
    width: 11.4583vw;
  }
  .aoa-hero-right .aoa-phone-sub {
    width: 10.4167vw;
    margin-top: 4.1667vw;
  }
  .aoa-content {
    max-width: 62.5vw;
  }
  .aoa-heading {
    font-size: 1.6667vw;
  }
}
.advisor-story-empty {
  padding: 72px 24px 24px;
  text-align: center;
}
.advisor-story-empty h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 34px;
  color: #000000;
  margin-bottom: 12px;
}
.advisor-story-empty p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  line-height: 1.5;
  color: #a7987d;
}
.advisor-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.advisor-pagination-link,
.advisor-pagination-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #d7c7ae;
  border-radius: 999px;
  background: #f7f1e8;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #694910;
  text-decoration: none;
  transition: all 0.2s ease;
}
.advisor-pagination-link:hover {
  background: #694910;
  border-color: #694910;
  color: #ffffff;
}
.advisor-pagination-link.is-active {
  background: #694910;
  border-color: #694910;
  color: #ffffff;
}
.advisor-pagination-link.is-disabled {
  border-color: #e7dfd3;
  background: #f8f5ef;
  color: #b6a78d;
  cursor: default;
}
.advisor-pagination-link--control {
  min-width: 86px;
}
.advisor-pagination-dots {
  min-width: auto;
  padding: 0 6px;
  border: none;
  background: transparent;
  color: #a7987d;
}
/* ============================================
   About Our Advisors
   ============================================ */
.aoa-page {
  background: #fdfaf5;
}
/* ===== Hero ===== */
.aoa-hero {
  display: flex;
  min-height: 600px;
  overflow: hidden;
}
.aoa-hero-left {
  position: relative;
  width: 50%;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
}
.aoa-hero-left .aoa-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.aoa-hero-left .aoa-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(75, 75, 75, 0.1);
  backdrop-filter: blur(2.6px);
  -webkit-backdrop-filter: blur(2.6px);
  z-index: 1;
}
.aoa-hero-text {
  position: relative;
  z-index: 2;
  padding: 60px 48px 60px 76px;
  max-width: 800px;
}
.aoa-hero-text h1 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.aoa-hero-text p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 15px;
  color: #fff;
  line-height: 1.6;
}
.aoa-hero-white {
  color: #fff;
}
.aoa-hero-gold {
  color: #ffc735;
}
.aoa-hero-right {
  width: 50%;
  background: #f3ebe2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px;
  min-height: 600px;
}
.aoa-hero-right .aoa-phone-main {
  width: 220px;
  height: auto;
  object-fit: contain;
}
.aoa-hero-right .aoa-phone-sub {
  width: 200px;
  height: auto;
  object-fit: contain;
  margin-top: 80px;
}
/* ===== Content ===== */
.aoa-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.aoa-section {
  margin-bottom: 48px;
}
.aoa-line {
  width: 100%;
  height: 1px;
  background: #e7dfd3;
  margin-bottom: 32px;
}
.aoa-heading {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 32px;
  color: #694910;
  line-height: 1.1;
  margin-bottom: 20px;
}
.aoa-subsection {
  position: relative;
  padding-left: 32px;
  margin-bottom: 20px;
}
.aoa-bullet {
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #45791d;
  border-radius: 2px;
}
.aoa-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 16px;
  color: #45791e;
  line-height: 1.6;
  margin-bottom: 8px;
}
.aoa-body p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 15px;
  color: #694910;
  line-height: 1.6;
  margin-bottom: 12px;
}
.aoa-body p:last-child {
  margin-bottom: 0;
}
/* ===== Collapsible ===== */
.aoa-collapsible {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.4s ease;
}
.aoa-collapsible.expanded {
  max-height: 20000px;
  opacity: 1;
}
.aoa-readmore-wrap {
  text-align: center;
  margin-top: 32px;
}
.aoa-btn-readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 48px;
  background: #694910;
  border: none;
  border-radius: 5px;
  color: #fdfaf5;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}
.aoa-btn-readmore:hover {
  background: #5a3f0e;
}
.aoa-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: #694910;
  border-radius: 5px;
  color: #fdfaf5;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.3s;
  margin-top: 16px;
  margin-bottom: 16px;
}
.aoa-btn-primary:hover {
  background: #5a3f0e;
}
.aoa-btn-wide {
  width: 100%;
  max-width: 520px;
}
.aoa-closing {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 15px;
  color: #694910;
  margin-top: 8px;
  margin-bottom: 8px;
}
/* ============================================
   About Membership - Moving up through the tiers
   ============================================ */
.about_mem_2 {
  background: #f3ebe2;
  padding: 100px 140px;
}
.about_mem_2_inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}
.am2_left {
  flex: 1;
}
.am2_title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 64px;
  font-weight: 700;
  color: #694910;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.am2_title em {
  font-style: italic;
  font-weight: 400;
  color: #e5a000;
}
.am2_desc {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #a7987d;
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 340px;
}
.am2_btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #694910;
  border-radius: 6px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  color: #694910;
  text-transform: uppercase;
  transition: all 0.3s;
}
.am2_btn:hover {
  background: rgba(105, 73, 16, 0.08);
}
.am2_right {
  flex: 1;
  display: flex;
  justify-content: center;
}
.am2_image_wrap {
  position: relative;
  width: 460px;
  height: 460px;
}
/* Scale the tiers block proportionally on narrow desktop widths */
@media (min-width: 993px) and (max-width: 1920px) {
  .am2_title {
    font-size: 3.3333vw;
  }
  .am2_image_wrap {
    width: 23.9583vw;
    height: 23.9583vw;
  }
}
.am2_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.am2_card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #694910;
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.am2_card_icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.am2_card_icon svg {
  width: 18px;
  height: 18px;
}
.am2_card_text {
  display: flex;
  flex-direction: column;
}
.am2_card_text span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 400;
}
.am2_card_top {
  top: 30px;
  right: -50px;
}
.am2_card_left {
  top: 50%;
  left: -70px;
  transform: translateY(-50%);
}
.am2_card_bottom {
  bottom: 50px;
  right: -30px;
}
/* ============================================
   About Membership - Cards & FAQ
   ============================================ */
.about_mem_3 {
  background: #fdfaf5;
  padding: 80px 140px 100px;
}
.about_mem_3_inner {
  max-width: 1000px;
  margin: 0 auto;
}
/* Feature Cards */
.am3_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.am3_card {
  background: #fff;
  border: 1px solid #e7dfd3;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.3s;
}
.am3_card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.am3_card_icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f3ebe2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.am3_card_icon svg {
  width: 24px;
  height: 24px;
}
.am3_card_title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}
.am3_card_desc {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 400;
  color: #a7987d;
  line-height: 1.5;
}
/* FAQ */
.am3_faq {
  max-width: 800px;
  margin: 0 auto;
}
.am3_faq_title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  color: #000000;
  margin-bottom: 24px;
}
.am3_faq_list {
  border-top: 1px solid #e7dfd3;
  margin-bottom: 28px;
}
.am3_faq_row {
  border-bottom: 1px solid #e7dfd3;
}
.am3_faq_q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  transition: color 0.2s;
}
.am3_faq_q span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  font-weight: 400;
  color: #000000;
}
.am3_faq_q:hover span {
  color: #694910;
}
.am3_faq_arrow {
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease;
}
.am3_faq_row.open .am3_faq_arrow {
  transform: rotate(90deg);
}
.am3_faq_a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
  padding: 0 24px 0 0;
}
.am3_faq_a p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 400;
  color: #a7987d;
  line-height: 1.6;
  padding-bottom: 18px;
}
.am3_faq_row.open .am3_faq_a {
  max-height: 300px;
  opacity: 1;
}
.am3_faq_btns {
  display: flex;
  gap: 16px;
}
.am3_faq_btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #694910;
  border-radius: 6px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-weight: 700;
  color: #694910;
  text-transform: uppercase;
  transition: all 0.3s;
}
.am3_faq_btn:hover {
  background: rgba(105, 73, 16, 0.08);
}
/* ============================================
   About Membership - Benefits at a glance
   ============================================ */
.about_mem_4 {
  background: #fdfaf5;
  padding: 60px 140px 100px;
}
.about_mem_4_inner {
  max-width: 1000px;
  margin: 0 auto;
}
.am4_title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  color: #000000;
  margin-bottom: 6px;
}
.am4_subtitle {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
  margin-bottom: 24px;
}
.am4_table_wrap {
  background: #fff;
  border: 1px solid #e7dfd3;
  border-radius: 12px;
  overflow: hidden;
}
.am4_table {
  width: 100%;
  border-collapse: collapse;
}
.am4_table th,
.am4_table td {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  text-align: center;
  padding: 14px 16px;
  border-bottom: 1px solid #e7dfd3;
}
.am4_table th {
  font-weight: 700;
  color: #000000;
  background: #f3ebe2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.am4_table td {
  font-weight: 400;
  color: #000000;
}
.am4_table tbody tr:last-child td {
  border-bottom: none;
}
.am4_table td:first-child {
  text-align: left;
  padding-left: 24px;
}
.am4_table th:first-child {
  text-align: left;
  padding-left: 24px;
}
.am4_col_voyager {
  background: #faf5ed;
}
.am4_check {
  display: inline-block;
  vertical-align: middle;
}
.am4_text {
  font-size: 13px;
  color: #000000;
}
.am4_dash {
  font-size: 13px;
  color: #a7987d;
}
/* ============================================
   Membership Journey Dialog
   ============================================ */
.am-journey-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}
.am-journey-overlay.show {
  display: flex;
}
.am-journey-dialog {
  background: #fdfaf5;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: 16px;
  padding: 56px 64px 48px;
  position: relative;
  overflow-y: auto;
}
.am-journey-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: #f3ebe2;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.am-journey-close img {
  width: 14px;
  height: 14px;
  display: block;
}
.am-journey-header {
  text-align: center;
  margin-bottom: 36px;
}
.am-journey-header h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 34px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 14px;
}
.am-journey-header p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-style: italic;
  color: #a7987d;
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto;
}
.am-journey-timeline {
  background: #ece4d8;
  border-radius: 10px;
  padding: 36px 40px;
}
.am-journey-timeline h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  color: #a08c5b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}
.am-journey-steps {
  position: relative;
  padding-left: 20px;
}
.am-journey-step {
  position: relative;
  padding-bottom: 28px;
}
.am-journey-step:last-child {
  padding-bottom: 0;
}
.am-journey-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 18px;
  bottom: -32px;
  width: 1px;
  background: #b5a98f;
}
.am-journey-dot {
  position: absolute;
  left: -22px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #a7987d;
  border: 2px solid #ece4d8;
  box-sizing: border-box;
}
.am-journey-step:nth-child(2) .am-journey-dot {
  background: #ece4d8;
  border-color: #a7987d;
}
.am-journey-info {
  padding-left: 8px;
}
.am-journey-info .am-journey-date {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: #a08c5b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}
.am-journey-info h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 6px;
}
.am-journey-info p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-style: italic;
  color: #a7987d;
  line-height: 1.6;
}
/* ============================================
   Tier Progression Dialog
   ============================================ */
.am-tier-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}
.am-tier-overlay.show {
  display: flex;
}
.am-tier-dialog {
  background: #fdfaf5;
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  border-radius: 12px;
  padding: 48px 40px 36px;
  position: relative;
  overflow-y: auto;
}
.am-tier-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.am-tier-close img {
  width: 19px;
  height: 19px;
  display: block;
}
.am-tier-header {
  text-align: center;
  margin-bottom: 28px;
}
.am-tier-header h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}
.am-tier-header p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
  line-height: 1.5;
  max-width: 520px;
  margin: 0 auto;
}
.am-tier-body {
  background: #f3ebe2;
  border-radius: 10px;
  padding: 28px 32px 20px;
}
.am-tier-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin-bottom: 16px;
}
.am-tier-table th,
.am-tier-table td {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  text-align: left;
  padding: 14px 0;
  border-bottom: 1px solid #e7dfd3;
}
.am-tier-table th {
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.am-tier-table td {
  font-weight: 400;
  color: #000000;
}
.am-tier-table td em {
  font-style: italic;
}
.am-tier-table tbody tr:last-child td {
  border-bottom: none;
}
.am-tier-note {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-style: italic;
  color: #a7987d;
  line-height: 1.5;
}
/* ============================================
   Upgrade Membership Dialog
   ============================================ */
.am-upgrade-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}
.am-upgrade-overlay.show {
  display: flex;
}
.am-upgrade-dialog {
  background: #fdfaf5;
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  border-radius: 12px;
  padding: 48px 40px 32px;
  position: relative;
  overflow-y: auto;
}
.am-upgrade-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.am-upgrade-close img {
  width: 19px;
  height: 19px;
  display: block;
}
.am-upgrade-header {
  text-align: center;
  margin-bottom: 28px;
}
.am-upgrade-header h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}
.am-upgrade-header p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
  line-height: 1.5;
  max-width: 520px;
  margin: 0 auto;
}
.am-upgrade-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.am-upgrade-card {
  background: #fff;
  border: 1px solid #e7dfd3;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.am-upgrade-card-head {
  padding: 20px 24px 16px;
}
.am-upgrade-luminary .am-upgrade-card-head {
  background: #f3ebe2;
}
.am-upgrade-sovereign .am-upgrade-card-head {
  background: #000000;
}
.am-upgrade-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  font-weight: 700;
  color: #a7987d;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 6px;
}
.am-upgrade-sovereign .am-upgrade-label {
  color: rgba(255, 255, 255, 0.7);
}
.am-upgrade-price {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 6px;
}
.am-upgrade-price span {
  font-size: 28px;
}
.am-upgrade-sovereign .am-upgrade-price {
  color: #fff;
}
.am-upgrade-fee {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-style: italic;
  color: #a7987d;
}
.am-upgrade-fee em {
  font-style: italic;
  font-weight: 700;
  color: #e5a000;
}
.am-upgrade-sovereign .am-upgrade-fee {
  color: rgba(255, 255, 255, 0.7);
}
.am-upgrade-list {
  padding: 20px 24px;
  flex: 1;
}
.am-upgrade-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.am-upgrade-list li:last-child {
  margin-bottom: 0;
}
.am-upgrade-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.am-upgrade-list li span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-style: italic;
  color: #000000;
  line-height: 1.4;
}
.am-upgrade-action {
  display: block;
  margin: 0 24px 20px;
  padding: 12px 0;
  border-radius: 6px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  transition: opacity 0.3s;
}
.am-upgrade-luminary .am-upgrade-action {
  background: #694910;
}
.am-upgrade-sovereign .am-upgrade-action {
  background: #000000;
}
.am-upgrade-action:hover {
  opacity: 0.9;
}
.am-upgrade-note {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-style: italic;
  color: #a7987d;
  line-height: 1.5;
}
/* ============================================
   My Trip Page
   ============================================ */
.trip-page {
  background: #fdfaf5;
  padding-bottom: 80px;
}
.trip-hero {
  padding: 24px 140px 0;
}
.trip-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.trip-back {
  position: absolute;
  left: -80px;
  top: 8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
}
.trip-back:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.trip-back svg {
  width: 20px;
  height: 20px;
}
.trip-breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.trip-breadcrumb a,
.trip-breadcrumb span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #a7987d;
}
.trip-breadcrumb a:hover {
  color: #694910;
}
.trip-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}
.trip-subtitle {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  font-style: italic;
  color: #a7987d;
  margin-bottom: 24px;
}
/* Trip Content */
.trip-content {
  max-width: 1200px;
  margin: 0 auto;
  background: #f3ebe2;
  border-radius: 12px;
  padding: 24px 32px 40px;
}
.trip-panel {
  background: #FDFAF5;
  border-radius: 10px;
  padding: 20px;
}
/* Vouchers page: flush panel (no background/padding) */
.trip-panel--flush {
  background: transparent;
  padding: 0;
}
/* My Profile Page */
.mpf-page {
  padding-bottom: 110px;
}
.mpf-shell {
  max-width: 960px;
  padding: 28px 28px 24px;
}
.mpf-panel {
  padding: 18px 16px 14px;
  background: #fffaf4;
}
.pmt-page {
  padding-bottom: 120px;
}
.pmt-hero {
  padding-top: 18px;
}
.pmt-content {
  max-width: 1198px;
  padding: 64px 48px 36px;
  border-radius: 6px;
}
.pmt-panel {
  padding: 36px 32px;
  background: #fffdf9;
  border-radius: 6px;
}
.pmt-section + .pmt-section {
  margin-top: 0;
}
.pmt-section-head {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 48px;
  background: #f1e8d6;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 15px;
  color: #231f20;
  text-transform: uppercase;
}
.pmt-list {
  background: #fffdf9;
}
.pmt-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  padding: 0 48px;
  border: 0;
  border-bottom: 1px solid #e7dfd3;
  background: transparent;
  text-align: left;
}
.pmt-item:last-child {
  border-bottom: none;
}
.pmt-item-main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1;
}
.pmt-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #f5ede3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #231f20;
}
.pmt-item-copy {
  min-width: 0;
}
.pmt-item-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #231f20;
}
.pmt-item-sub {
  margin-top: 2px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: #231f20;
  white-space: pre-line;
}
.pmt-item-sub--empty {
  color: #b8a891;
  font-style: italic;
}
.pmt-item-sub--address {
  max-width: 420px;
  margin-top: 1px;
  line-height: 1.22;
  white-space: normal;
}
.pmt-item--plain {
  cursor: default;
}
.pmt-item-value {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 17px;
  color: #9c6a16;
  line-height: 1.2;
  white-space: nowrap;
  padding-right: 2px;
}
.pmt-item-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
  min-width: 148px;
}
.pmt-item-chip {
  border: 1px solid transparent;
  min-width: 62px;
  height: 28px;
  padding: 0 16px;
  border-radius: 999px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 26px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pmt-item-chip--edit {
  background: #e6f1c9;
  color: #799243;
}
.pmt-item-chip--edit:hover {
  background: #dbe8b7;
}
.pmt-item-chip--add {
  background: #ffffff;
  border-color: #d6c4a8;
  color: #231f20;
}
.pmt-item-chip--add:hover {
  border-color: #694910;
  color: #694910;
}
.pmt-item-chip--delete {
  background: #ffffff;
  border-color: #e7c0c7;
  color: #cc1735;
}
.pmt-item-chip--delete:hover {
  background: #fff5f7;
  border-color: #cc1735;
}
.pmt-modal {
  padding: 28px 28px 10px;
  background: #fffdf9;
}
.pmt-modal--address {
  padding-bottom: 4px;
}
.pmt-modal-title {
  margin-bottom: 18px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 24px;
  color: #231f20;
}
.pmt-modal-field {
  margin-bottom: 16px;
}
.pmt-modal-field label {
  display: block;
  margin-bottom: 6px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 15px;
  color: #231f20;
}
.pmt-modal-field input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid #231f20;
  border-radius: 5px;
  background: #fff;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #231f20;
}
.pmt-modal-field input:focus {
  outline: none;
  border-color: #694910;
}
.pmt-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 14px;
}
.pmt-layer {
  border-radius: 8px !important;
  overflow: hidden;
}
.pmt-layer .layui-layer-content {
  overflow: visible !important;
}
.pmt-layer .layui-layer-btn {
  padding: 0 28px 26px !important;
  text-align: left !important;
}
.pmt-layer .layui-layer-btn a {
  height: 40px !important;
  line-height: 40px !important;
  margin: 0 10px 0 0 !important;
  padding: 0 22px !important;
  border-radius: 5px !important;
  border: 1px solid #d7c5ac !important;
  background: #694910 !important;
  color: #fff !important;
  font-family: 'Inria Serif', Helvetica, serif !important;
  font-size: 14px !important;
}
.pmt-layer .layui-layer-btn .layui-layer-btn1 {
  background: #fff !important;
  color: #231f20 !important;
}
.pmt-confirm .layui-layer-content {
  padding: 34px 28px 10px !important;
  font-family: 'Inria Serif', Helvetica, serif !important;
  font-size: 18px !important;
  color: #231f20 !important;
  line-height: 1.5 !important;
  text-align: center;
}
.pmt-confirm .layui-layer-btn {
  padding: 0 0 28px !important;
  text-align: center !important;
}
.pmt-confirm .layui-layer-btn a {
  min-width: 92px;
  height: 38px !important;
  line-height: 38px !important;
  border-radius: 5px !important;
  font-family: 'Inria Serif', Helvetica, serif !important;
}
.pmt-confirm .layui-layer-btn0 {
  background: #694910 !important;
  border-color: #694910 !important;
}
.pmt-confirm .layui-layer-btn1 {
  background: #fff !important;
  color: #231f20 !important;
  border-color: #d7c5ac !important;
}
.mpf-summary {
  padding: 14px 18px 20px;
}
.mpf-summary-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.mpf-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.mpf-avatar-wrap {
  position: relative;
}
.mpf-hidden-file {
  display: none;
}
.mpf-summary-copy {
  min-width: 0;
}
.mpf-summary-copy p {
  font-size: 13px;
  color: #a7987d;
  margin: 3px 0 0;
}
.mpf-summary-name-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mpf-summary-name-row h2 {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}
.mpf-section {
  margin-bottom: 14px;
}
.mpf-section-title {
  padding: 11px 22px 10px;
  background: #f4ecdf;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
}
.mpf-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 18px 12px 22px;
  border-bottom: 1px solid #eee4d6;
}
.mpf-row--dob {
  justify-content: flex-start;
}
.mpf-row--last {
  border-bottom: none;
}
.mpf-row-body {
  flex: 1;
  min-width: 0;
}
.mpf-row-label {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}
.mpf-row-value {
  font-size: 14px;
  line-height: 1.5;
  color: #a7987d;
  white-space: pre-line;
}
.mpf-row-value.is-empty {
  font-style: italic;
  color: #d1c3ab;
}
.mpf-row-note {
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.4;
  color: #f18f8f;
  font-style: italic;
}
.mpf-date-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  flex-wrap: wrap;
}
.mpf-date-select-wrap {
  position: relative;
  display: inline-flex;
}
.mpf-date-select-wrap:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 10px;
  height: 6px;
  transform: translateY(-50%);
  background: url('../i/vector-16.svg') center center / contain no-repeat;
  pointer-events: none;
}
.mpf-date-select {
  min-width: 104px;
  height: 28px;
  padding: 0 30px 0 10px;
  border: 1px solid #ccb08a;
  border-radius: 4px;
  background: #fff;
  color: #9f855f;
  font-size: 12px;
  font-family: 'Inria Serif', Helvetica, serif;
  appearance: none;
}
.mpf-date-select.is-placeholder {
  color: #c9b89b;
  font-style: italic;
}
.mpf-date-box {
  min-width: 104px;
  height: 28px;
  padding: 0 10px;
  border: 1px solid #ccb08a;
  border-radius: 4px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #9f855f;
  font-size: 12px;
}
.mpf-date-box img {
  width: 10px;
  height: 6px;
  flex-shrink: 0;
}
.mpf-date-box.is-placeholder {
  color: #c9b89b;
  font-style: italic;
}
.mpf-badge {
  flex-shrink: 0;
  min-width: 34px;
  height: 18px;
  padding: 0 10px;
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  font-family: 'Inria Serif', Helvetica, serif;
}
.mpf-badge--edit {
  background: #edf7dd;
  color: #8db15d;
}
.mpf-badge--add {
  background: #fbe1e1;
  color: #eb9393;
}
.mpf-layer {
  border-radius: 18px !important;
  overflow: hidden;
}
.mpf-modal {
  position: relative;
  padding: 30px 24px 24px;
  background: #fdfaf5;
}
.mpf-modal-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  color: #000000;
  margin-bottom: 18px;
}
.mpf-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f4ecdf;
  color: #694910;
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mpf-modal-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mpf-modal-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.mpf-modal-field label {
  font-size: 13px;
  font-weight: 700;
  color: #000000;
}
.mpf-modal-input,
.mpf-modal-textarea,
.mpf-modal-select {
  width: 100%;
  border: 1px solid #ccb08a;
  border-radius: 10px;
  background: #fff;
  color: #000000;
  font-size: 14px;
  font-family: 'Inria Serif', Helvetica, serif;
}
.mpf-modal-input,
.mpf-modal-select {
  height: 46px;
  padding: 0 14px;
}
.mpf-modal-textarea {
  min-height: 118px;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.5;
}
.mpf-modal-select {
  appearance: auto;
}
.mpf-phone-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mpf-phone-code-select {
  flex: 0 0 112px;
}
.mpf-phone-input {
  flex: 1;
  min-width: 0;
}
.mpf-modal-code-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mpf-modal-input--code {
  flex: 1;
}
.mpf-modal-code-btn {
  min-width: 126px;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #edf7dd;
  color: #8db15d;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.mpf-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}
.mpf-modal-btn {
  min-width: 112px;
  height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.mpf-modal-btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.mpf-modal-btn--ghost {
  background: #f4ecdf;
  color: #694910;
}
.mpf-modal-btn--primary {
  background: #694910;
  color: #fff;
}
.mpf-modal-code-btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.mpf-layer--address {
  border-radius: 16px !important;
}
.mpf-modal--address {
  padding: 46px 40px 40px;
}
.mpf-modal-title--address {
  margin-bottom: 28px;
  text-align: center;
}
.mpf-modal-close--address {
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
}
.mpf-modal-body--address {
  gap: 18px;
}
.mpf-address-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mpf-address-field label {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
}
.mpf-address-field label span {
  color: #000000;
}
.mpf-address-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 12px;
}
.mpf-address-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mpf-address-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mpf-address-input-wrap {
  position: relative;
}
.mpf-address-input-wrap img {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 10px;
  height: 6px;
  transform: translateY(-50%);
  pointer-events: none;
}
.mpf-address-input {
  padding-right: 34px;
}
@media (max-width: 1024px) {
  .mpf-shell {
    margin: 0 20px;
  }
}
@media (max-width: 768px) {
  .mpf-shell {
    padding: 18px;
  }
  .pmt-content {
    padding: 32px 20px 22px;
  }
  .pmt-panel {
    padding: 22px 14px;
  }
  .pmt-section-head,
  .pmt-item {
    padding-left: 18px;
    padding-right: 18px;
  }
  .pmt-item-actions {
    min-width: 0;
  }
  .pmt-item-sub--address {
    max-width: none;
  }
  .pmt-modal-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .mpf-row {
    padding: 12px 16px;
    flex-direction: column;
    gap: 10px;
  }
  .mpf-date-box {
    min-width: 92px;
  }
  .mpf-date-select {
    min-width: 92px;
  }
  .mpf-modal {
    padding: 28px 18px 20px;
  }
  .mpf-modal--address {
    padding: 42px 18px 24px;
  }
  .mpf-address-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mpf-address-grid--three {
    grid-template-columns: 1fr;
  }
  .mpf-modal-code-row,
  .mpf-modal-actions {
    flex-direction: column;
  }
  .mpf-modal-code-btn,
  .mpf-modal-btn {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .pmt-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .pmt-item-main {
    width: 100%;
  }
  .pmt-item-actions,
  .pmt-item-chip {
    align-self: flex-end;
  }
  .pmt-item-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .pmt-item-value {
    align-self: flex-end;
  }
  .pmt-section-head {
    min-height: 34px;
    font-size: 14px;
  }
  .mpf-summary,
  .mpf-section-title,
  .mpf-row {
    padding-left: 14px;
    padding-right: 14px;
  }
  .mpf-summary-name-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .mpf-date-row {
    flex-direction: column;
    align-items: stretch;
  }
  .mpf-date-select-wrap {
    width: 100%;
  }
  .mpf-date-select {
    width: 100%;
  }
  .mpf-date-box {
    width: 100%;
  }
  .mpf-address-grid {
    grid-template-columns: 1fr;
  }
}
/* Tabs */
.trip-tabs {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid #e7dfd3;
  margin-bottom: 20px;
}
.trip-tab {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  font-weight: 700;
  color: #a7987d;
  padding-bottom: 10px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.trip-tab span {
  font-weight: 400;
}
.trip-tab.active {
  color: #694910;
  border-bottom-color: #694910;
}
.trip-tab:hover {
  color: #694910;
}
/* ============================================
   My Trip Page (scoped)
   ============================================ */
.my-trip-page {
  background: #f3ebe2;
}
.my-trip-page .trip-content {
  background: #fdfaf5;
  border-radius: 12px;
  padding: 24px 32px 40px;
}
.my-trip-page .trip-tabs {
  gap: 72px;
}
.my-trip-page .trip-tab {
  font-size: 16px;
  color: #000000;
}
.my-trip-page .trip-tab.active,
.my-trip-page .trip-tab:hover {
  color: #000000;
}
.my-trip-page .trip-tab.active {
  border-bottom-color: #694910;
}
.trip-toolbar {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.trip-sort {
  position: relative;
}
.trip-sort-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 220px;
  height: 42px;
  padding: 0 18px;
  background: #fff;
  border: 1px solid #e7dfd3;
  border-radius: 42px;
  cursor: pointer;
}
.trip-sort-btn .trip-sort-label {
  flex: 1;
  text-align: center;
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: italic;
  font-size: 14px;
  color: #a7987d;
}
.trip-sort-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 24px;
  min-width: 180px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  padding: 4px 0;
  display: none;
  z-index: 50;
}
.trip-sort.open .trip-sort-menu {
  display: block;
}
.trip-sort-option {
  display: block;
  width: 100%;
  padding: 10px 18px;
  background: none;
  border: none;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #a7987d;
  text-align: left;
  cursor: pointer;
}
.trip-sort-option.active {
  background: #694910;
  color: #fff;
}
.trip-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 480px;
  height: 42px;
  padding: 0 18px;
  background: #fff;
  border: 1px solid #e7dfd3;
  border-radius: 42px;
}
.trip-search input {
  flex: 1;
  border: none;
  outline: none;
  background: none;
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: normal;
  font-size: 14px;
  color: #000000;
}
.trip-search input::placeholder {
  color: #a7987d;
}
.trip-banner {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 32px;
}
.trip-banner-img {
  position: relative;
  width: 100%;
  height: 190px;
  border-radius: 10px;
  overflow: hidden;
}
.trip-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trip-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.45) 100%);
}
.trip-banner-title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: #fff;
}
.trip-date-heading {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.trip-order-card {
  background: #fff;
  border: 1px solid #f0e9dc;
  border-radius: 10px;
  padding: 18px 24px;
  margin-bottom: 0;
}
.trip-order-item {
  margin-bottom: 28px;
}
.trip-order-payment-time {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 10px 6px;
}
.trip-order-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.trip-order-id {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
}
.trip-order-status {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #a08c5b;
  background: #f7efdc;
  border-radius: 20px;
  padding: 4px 14px;
}
.trip-order-status.confirmed {
  color: #7a8c3f;
  background: #eaf3de;
}
.trip-order-status.cancelled {
  color: #8a8a8a;
  background: #ececec;
}
.trip-order-divider {
  height: 1px;
  background: #e7dfd3;
  margin: 14px 0;
}
.trip-order-body {
  display: flex;
  align-items: center;
  gap: 18px;
}
.trip-order-thumb {
  width: 110px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
}
.trip-order-dates {
  display: block;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  font-style: italic;
  color: #a7987d;
  margin-bottom: 2px;
}
.trip-order-info h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2px;
}
.trip-order-info p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-style: italic;
  color: #a7987d;
}
.trip-order-foot {
  display: flex;
  justify-content: flex-end;
}
.trip-order-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #694910;
  border-radius: 24px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  transition: background 0.3s;
}
.trip-order-btn:hover {
  background: #5a3f0e;
}
/* Main Card */
.trip-main-card {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.trip-main-img {
  position: relative;
  width: 100%;
  height: 220px;
}
.trip-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trip-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.45) 100%);
}
.trip-main-title {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.trip-main-info {
  padding: 14px 20px 16px;
}
.trip-main-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.trip-main-date {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-style: italic;
  color: #a7987d;
}
.trip-main-status {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-weight: 700;
  color: #1BA076;
}
.trip-main-advisor {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.trip-main-advisor span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
}
.trip-main-advisor span strong {
  font-weight: 700;
  color: #000000;
}
.trip-main-link {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-weight: 700;
  color: #a7987d;
  text-decoration: underline;
}
.trip-main-link:hover {
  color: #694910;
}
/* Section */
.trip-section {
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
}
.trip-section-header {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  transition: background 0.2s;
}
.trip-section-header:hover {
  background: rgba(243, 235, 226, 0.5);
}
.trip-section-header h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.trip-section-arrow {
  transition: transform 0.3s ease;
  margin-left: 30px;
}
.trip-section:not(.open) .trip-section-arrow {
  transform: rotate(180deg);
}
.trip-section-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}
.trip-section.open .trip-section-body {
  max-height: 800px;
  opacity: 1;
}
/* Journey List */
.trip-journey-list {
  padding: 0 20px 16px;
}
.trip-journey-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e7dfd3;
}
.trip-journey-item:last-child {
  border-bottom: none;
}
.trip-journey-item > img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.trip-journey-info {
  flex: 1;
}
.trip-journey-info h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}
.trip-journey-info p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-style: italic;
  color: #a7987d;
}
.trip-journey-status {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  flex-shrink: 0;
}
.trip-journey-status.completed {
  color: #1BA076;
  background: rgba(27, 160, 118, 0.08);
}
/* Hotel Table */
.trip-hotel-table-wrap {
  padding: 0 20px 16px;
}
.trip-hotel-table {
  width: 100%;
  border-collapse: collapse;
}
.trip-hotel-table th,
.trip-hotel-table td {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid #e7dfd3;
}
.trip-hotel-table th {
  font-weight: 700;
  color: #000000;
  background: #f3ebe2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
}
.trip-hotel-table tbody tr:last-child td {
  border-bottom: none;
}
.trip-hotel-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trip-hotel-cell img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.trip-hotel-cell > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trip-hotel-name {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-weight: 700;
  color: #000000;
}
.trip-hotel-tag {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #694910;
  padding: 4px 10px;
  border-radius: 3px;
  display: inline-block;
  width: fit-content;
}
.trip-hotel-status {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
}
.trip-hotel-status.completed {
  color: #1BA076;
  background: rgba(27, 160, 118, 0.08);
}
.trip-hotel-status.confirmed {
  color: #694910;
  background: rgba(105, 73, 16, 0.08);
}
.trip-hotel-status.cancelled {
  color: #999;
  background: #f0f0f0;
}
.trip-hotel-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.trip-hotel-link svg {
  width: 16px;
  height: 16px;
}
/* ============================================
   Trip Detail Page
   ============================================ */
.trip-detail-page {
  background: #fdfaf5;
}
.trip-detail-page .trip-content {
  background: #f3ebe2;
  border-radius: 12px;
  padding: 24px 32px 40px;
}
.td-status-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.td-status-bar {
  background: #f7efdc;
  color: #a08c5b;
  text-align: center;
  padding: 14px 0;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  margin-bottom: 20px;
}
.td-status-bar.completed {
  background: #694910;
  color: #fff;
}
.td-status-bar.upcoming {
  background: #694910;
  color: #fff;
}
.td-status-bar.confirmed {
  background: #eaf3de;
  color: #7a8c3f;
}
.td-status-bar.cancelled {
  background: #ececec;
  color: #8a8a8a;
}
.td-booking-id {
  text-align: center;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #000000;
  margin-bottom: 20px;
}
.td-action-btn {
  display: block;
  width: calc(100% - 48px);
  margin: 0 auto 12px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 44px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e7dfd3;
  color: #a7987d;
}
.td-action-btn.primary {
  background: #f5eee0;
  border-color: #f5eee0;
  color: #694910;
}
.td-action-btn:last-child {
  margin-bottom: 0;
}
.td-items-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 24px;
}
.td-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e7dfd3;
}
.td-item:first-child {
  padding-top: 0;
}
.td-item-thumb {
  width: 160px;
  height: 110px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.td-item-info {
  flex: 1;
  min-width: 0;
}
.td-item-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 6px;
}
.td-item-sub {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #a7987d;
  margin-bottom: 12px;
}
.td-item-divider {
  height: 1px;
  background: #e7dfd3;
  margin-bottom: 12px;
}
.td-item-meta {
  display: flex;
  gap: 48px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #a7987d;
  margin-bottom: 12px;
}
.td-item-cancel {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #694910;
}
.td-item-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  flex-shrink: 0;
}
.td-item-price {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}
.td-item-more {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #694910;
  text-decoration: underline;
}
.td-item.is-cancelled {
  background: #f7f7f7;
  border-color: #e4e4e4;
  border-radius: 10px;
  padding-left: 12px;
  padding-right: 12px;
}
.td-item.is-cancelled .td-item-title,
.td-item.is-cancelled .td-item-sub,
.td-item.is-cancelled .td-item-meta,
.td-item.is-cancelled .td-item-price,
.td-item.is-cancelled .td-item-more {
  color: #8a8a8a;
}
.td-item.is-cancelled .td-item-more {
  border-color: #cfcfcf;
}
.trip-detail-page.is-cancelled .td-status-card,
.trip-detail-page.is-cancelled .td-items-card,
.trip-detail-page.is-cancelled .td-rate-card {
  background: #f6f6f6;
  filter: none;
  opacity: 1;
}
.trip-detail-page.is-cancelled .td-status-card {
  padding-bottom: 0;
}
.trip-detail-page.is-cancelled .td-status-bar {
  background: #ececec;
  color: #8a8a8a;
}
.trip-detail-page.is-cancelled .td-booking-id {
  margin-bottom: 20px;
}
.trip-detail-page.is-cancelled .td-booking-id,
.trip-detail-page.is-cancelled .td-item-title,
.trip-detail-page.is-cancelled .td-item-sub,
.trip-detail-page.is-cancelled .td-item-meta,
.trip-detail-page.is-cancelled .td-item-price,
.trip-detail-page.is-cancelled .td-item-more {
  color: #8a8a8a;
}
.trip-detail-page.is-cancelled .td-items-card {
  background: #f6f6f6;
}
.td-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}
.td-rate-card {
  background: #fbf6ec;
  border-radius: 12px;
  padding: 36px 24px 44px;
  text-align: center;
}
.td-rate-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 17px;
  font-weight: 700;
  color: #694910;
  margin-bottom: 22px;
}
.td-rate-stars {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 26px;
}
.td-rate-stars img {
  width: 48px;
  height: 47px;
  padding: 14px 13px;
  background: #f3ecdd;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.td-rate-stars img.active {
  background: #f2b32c;
}
.td-rate-readonly-stars {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 26px;
}
.td-rate-readonly-stars img {
  width: 48px;
  height: 47px;
  padding: 14px 13px;
  background: #f3ecdd;
  border-radius: 8px;
  object-fit: contain;
}
.td-rate-readonly-stars img.active {
  background: #f2b32c;
}
.td-rate-input {
  width: 450px;
  max-width: 100%;
  height: 68px;
  background: #fff;
  border: 1px solid #d9d2c4;
  border-radius: 6px;
  padding: 10px 14px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: normal;
  font-size: 13px;
  color: #000000;
  resize: none;
  outline: none;
  margin-bottom: 26px;
}
.td-rate-input::placeholder {
  color: #a7987d;
}
.td-rate-submit {
  display: block;
  margin: 0 auto;
  width: 170px;
  height: 44px;
  background: #694910;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}
.td-rate-submit:hover {
  background: #5a3f0e;
}
/* Trip Item Detail Page */
.ti-info-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 24px;
}
.ti-status {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 20px;
  font-weight: 700;
  color: #4e7a41;
  margin-bottom: 14px;
}
.ti-pay-row {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 20px;
}
.ti-amount {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
}
.ti-paid {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  font-weight: 700;
  color: #4e7a41;
}
.ti-divider {
  width: 34%;
  height: 1px;
  background: #e7dfd3;
  margin-bottom: 20px;
}
.ti-policy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 14px;
  cursor: pointer;
}
.ti-policy-box {
  width: 260px;
  height: 38px;
  border: 1px solid #cfc8ba;
  border-radius: 6px;
  margin-bottom: 24px;
}
.ti-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #000000;
  margin-bottom: 10px;
}
.ti-meta-row:last-child {
  margin-bottom: 0;
}
.ti-item-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  padding: 28px 28px 0;
  margin-bottom: 24px;
}
.ti-item-card .td-item-thumb {
  width: 170px;
  height: 135px;
}
.ti-item-main {
  display: flex;
  gap: 20px;
}
.ti-item-price {
  flex-shrink: 0;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
}
.ti-order-details {
  display: block;
  text-align: right;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #694910;
  text-decoration: underline;
  margin: 18px 0 24px;
}
.ti-letter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 -28px;
  padding: 16px 28px;
  background: #ada180;
  color: #fff;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  cursor: pointer;
}
.ti-sheet-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: flex-end;
  justify-content: center;
}
.ti-sheet-overlay.show {
  display: flex;
}
.ti-sheet {
  background: #fff;
  width: 100%;
  min-height: 55vh;
  border-radius: 20px 20px 0 0;
  padding: 20px 40px 60px;
  position: relative;
}
.ti-sheet-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}
.ti-sheet-close {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #f5eee0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.ti-sheet-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}
.ti-sheet-divider {
  height: 1px;
  background: #e7dfd3;
  margin: 16px -40px 28px;
}
.ti-sheet-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #000000;
}
.ti-sheet-open {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #a08c5b;
  cursor: pointer;
}
.ti-sheet-text {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  line-height: 1.7;
  color: #000000;
}
.ti-sheet-text p + p {
  margin-top: 4px;
}
/* Cancelled order: grey out the detail cards */
.trip-item-page.is-cancelled .ti-info-card,
.trip-item-page.is-cancelled .ti-item-card {
  background: #f6f6f6;
  filter: none;
  opacity: 1;
  pointer-events: none;
  user-select: none;
}
.td-cancel-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.td-cancel-overlay.show {
  display: flex;
}
.td-cancel-modal {
  background: #fbf6ec;
  width: 100%;
  max-width: 460px;
  border-radius: 12px;
  padding: 48px 40px 44px;
  position: relative;
  text-align: center;
}
.td-cancel-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #f5eee0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.td-cancel-modal-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #000000;
  margin-bottom: 18px;
}
.td-cancel-modal-text {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 30px;
}
.td-cancel-modal-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.td-cancel-modal-btn {
  width: 130px;
  height: 44px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #694910;
  color: #694910;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.3s;
}
.td-cancel-modal-btn.primary {
  background: #694910;
  color: #fff;
}
.td-cancel-modal-btn.primary:hover {
  background: #5a3f0e;
}
.td-panel {
  background: #FDFAF5;
  border-radius: 10px;
  padding: 28px 32px;
}
/* Hotel Header */
.td-hotel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.td-hotel-main {
  flex: 1;
}
.td-hotel-name {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 6px;
}
.td-hotel-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.td-stars {
  display: flex;
  gap: 2px;
}
.td-score {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
}
.td-hotel-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.td-tag {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-weight: 700;
  color: #000000;
}
.td-tag-light {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  font-style: italic;
  color: #a7987d;
}
.td-hotel-address {
  display: flex;
  align-items: center;
  gap: 6px;
}
.td-hotel-address svg {
  flex-shrink: 0;
}
.td-hotel-address span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #a7987d;
}
.td-hotel-address a {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  font-weight: 700;
  color: #694910;
  text-decoration: underline;
}
.td-hotel-price {
  text-align: right;
  flex-shrink: 0;
  margin-left: 24px;
}
.td-price {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 22px;
  font-weight: 700;
  color: #000000;
}
.td-price span {
  font-size: 28px;
}
.td-price-note {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #a7987d;
}
.td-price-credit {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 11px;
  color: #a7987d;
}
/* Description */
.td-desc {
  margin-bottom: 24px;
}
.td-desc p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #a7987d;
  line-height: 1.6;
  margin-bottom: 4px;
}
.td-desc a {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-weight: 700;
  color: #000000;
  text-decoration: underline;
}
.td-desc a:hover {
  color: #694910;
}
/* Block */
.td-block {
  margin-bottom: 24px;
}
.td-block:last-child {
  margin-bottom: 0;
}
.td-block-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}
.td-link {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-weight: 700;
  color: #000000;
  text-decoration: underline;
}
.td-link:hover {
  color: #694910;
}
/* Location */
.td-location-list {
  margin-bottom: 8px;
}
.td-location-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  max-width: 360px;
}
.td-location-item span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #000000;
}
.td-location-item span:first-child {
  color: #a7987d;
}
/* Amenities */
.td-amenity-list {
  margin-bottom: 8px;
}
.td-amenity-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  max-width: 360px;
}
.td-amenity-item span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #000000;
}
/* Room Gallery */
.td-room-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.td-room-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.td-room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.td-room-more {
  position: relative;
}
.td-room-more::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.td-room-more span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  z-index: 1;
}
/* Room Info */
.td-room-info {
  margin-bottom: 12px;
}
.td-room-name {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}
.td-room-features {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.td-room-features span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #a7987d;
  display: flex;
  align-items: center;
  gap: 4px;
}
.td-room-features span img {
  width: 16px;
  height: 14px;
  object-fit: contain;
}
.td-room-price {
  margin-bottom: 12px;
}
.td-room-price span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-weight: 700;
  color: #694910;
}
/* Room Services */
.td-room-services {
  margin-bottom: 12px;
}
.td-service-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
}
.td-service-item img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}
.td-service-item span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #000000;
}
.td-service-item.td-service-green span {
  color: #1BA076;
}
.td-service-item.td-service-red span {
  color: #c0392b;
}
.td-detail-icon-placeholder {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
/* Room Extras */
.td-room-extras {
  margin-bottom: 12px;
}
.td-room-extras p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #a7987d;
  line-height: 1.6;
  margin-bottom: 4px;
}
.td-last-tag {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  font-weight: 700;
  color: #694910;
}
/* Trip hotel row cursor */
.trip-hotel-row {
  cursor: pointer;
  transition: background 0.2s;
}
.trip-hotel-row:hover {
  background: rgba(105, 73, 16, 0.03);
}
/* ============================================
   My Advisor Page
   ============================================ */
.my-advisor-page .trip-panel {
  background: #f3ebe2;
}
.ma-section-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.ma-advisor-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
}
.ma-advisor-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.ma-advisor-card + .ma-advisor-card {
  margin-top: 18px;
}
.ma-advisor-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.ma-advisor-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.ma-advisor-info {
  flex: 1;
}
.ma-advisor-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.ma-advisor-name {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}
.ma-advisor-status {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  font-weight: 700;
  color: #1BA076;
  background: rgba(27, 160, 118, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
}
.ma-advisor-desc {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #a7987d;
  margin-bottom: 8px;
}
.ma-advisor-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ma-tag {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  font-weight: 700;
  color: #a7987d;
  background: #f3ebe2;
  padding: 4px 10px;
  border-radius: 12px;
}
.ma-tag.ma-tag-primary {
  color: #fff;
  background: #694910;
}
.ma-divider {
  width: 100%;
  height: 1px;
  background: #e7dfd3;
  margin-bottom: 20px;
}
/* Itinerary List */
.ma-itinerary-list {
  margin-bottom: 20px;
}
.ma-itinerary-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #e7dfd3;
}
.ma-itinerary-item:last-child {
  border-bottom: none;
}
.ma-itinerary-item > img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.ma-itinerary-info {
  flex: 1;
}
.ma-itinerary-info h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 3px;
}
.ma-itinerary-info p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  font-style: italic;
  color: #a7987d;
}
.ma-itinerary-status {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.ma-itinerary-status.confirmed {
  color: #694910;
  background: rgba(105, 73, 16, 0.08);
}
.ma-itinerary-status.completed {
  color: #1BA076;
  background: rgba(27, 160, 118, 0.08);
}
/* Actions */
.ma-actions {
  display: flex;
  gap: 12px;
}
.ma-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 24px;
  border-radius: 6px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
}
.ma-btn-outline {
  border: 1px solid #694910;
  color: #694910;
  background: transparent;
}
.ma-btn-outline:hover {
  background: rgba(105, 73, 16, 0.05);
}
.ma-btn-primary {
  background: #694910;
  color: #fff;
  border: 1px solid #694910;
}
.ma-btn-primary:hover {
  background: #5a3f0e;
}
/* ============================================
   Shop Orders Page
   ============================================ */
.so-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.so-tab {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-weight: 700;
  color: #a7987d;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid #e7dfd3;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.so-tab span {
  font-weight: 400;
}
.so-tab.active {
  background: #694910;
  color: #fff;
  border-color: #694910;
}
.so-tab:hover {
  border-color: #694910;
}
/* Order Card */
.so-order-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 16px;
}
.so-order-left {
  width: 160px;
  flex-shrink: 0;
}
.so-order-field {
  margin-bottom: 12px;
}
.so-order-field:last-child {
  margin-bottom: 0;
}
.so-order-label {
  display: block;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2px;
}
.so-order-value {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-style: italic;
  color: #a7987d;
}
.so-order-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-style: italic;
  color: #a7987d;
}
.so-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.so-dot.so-dot-yellow {
  background: #e5a000;
}
.so-dot.so-dot-green {
  background: #1BA076;
}
.so-order-right {
  flex: 1;
}
.so-product-list {
  margin-bottom: 16px;
}
.so-product-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #e7dfd3;
}
.so-product-item:last-child {
  border-bottom: none;
}
.so-product-item > img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.so-product-info {
  flex: 1;
}
.so-product-info h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 3px;
}
.so-product-info p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  font-style: italic;
  color: #a7987d;
}
.so-product-price {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  flex-shrink: 0;
}
.so-order-actions {
  display: flex;
  gap: 12px;
}
.so-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 20px;
  border-radius: 6px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s;
}
.so-btn-outline {
  border: 1px solid #694910;
  color: #694910;
  background: transparent;
}
.so-btn-outline:hover {
  background: rgba(105, 73, 16, 0.05);
}
.so-btn-primary {
  background: #694910;
  color: #fff;
  border: 1px solid #694910;
}
.so-btn-primary:hover {
  background: #5a3f0e;
}
/* ============================================
   Order Details Page
   ============================================ */
.od-ship-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
}
.od-ship-label strong {
  font-weight: 700;
}
.od-layout {
  display: flex;
  gap: 20px;
}
.od-left {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  padding: 24px;
}
.od-right {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.od-side-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
}
.od-side-card h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}
.od-side-card p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-style: italic;
  color: #a7987d;
  line-height: 1.6;
}
/* Product List */
.od-product-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #e7dfd3;
}
.od-product-item:last-child {
  border-bottom: none;
}
.od-product-item > img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.od-product-info {
  flex: 1;
  min-width: 0;
}
.od-product-info h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 3px;
}
.od-product-info p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  font-style: italic;
  color: #a7987d;
}
.od-product-price {
  width: 100px;
  text-align: right;
  flex-shrink: 0;
}
.od-price-sale {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  color: #694910;
}
.od-price-orig {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #a7987d;
  text-decoration: line-through;
  margin-left: 6px;
}
.od-price-current {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
}
.od-product-qty {
  width: 40px;
  text-align: center;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #000000;
  flex-shrink: 0;
}
.od-product-total {
  width: 80px;
  text-align: right;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  flex-shrink: 0;
}
.od-divider {
  width: 100%;
  height: 1px;
  background: #e7dfd3;
  margin: 16px 0;
}
/* Delivery */
.od-block-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}
.od-delivery-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.od-delivery-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.od-delivery-info > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.od-delivery-logo {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.od-delivery-name {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
}
.od-delivery-desc {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  font-style: italic;
  color: #a7987d;
}
.od-delivery-price {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
}
/* Payment */
.od-payment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
.od-payment-row span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #000000;
}
.od-payment-row span:last-child {
  font-weight: 700;
}
/* ============================================
   Vouchers Page
   ============================================ */
.vc-layout {
  display: block;
  width: 100%;
}
.vc-voucher-grid {
  width: 100%;
}
.vc-voucher-topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e7dfd3;
}
.vc-voucher-tabs {
  flex: 1;
  min-width: 0;
  border-bottom: 0;
  margin-bottom: 0;
}
.vc-voucher-search-wrap {
  flex: 0 0 460px;
  display: flex;
  justify-content: flex-end;
}
.vc-voucher-search {
  width: 100%;
  max-width: 460px;
}
.vc-tab-panel {
  display: none;
}
.vc-tab-panel.is-active {
  display: block;
}
.vc-voucher-grid-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.vc-voucher-grid-inner.is-hidden {
  display: none;
}
/* Voucher Card */
.vc-voucher-card {
  position: relative;
  background: #fdfaf5;
  border-radius: 10px;
  padding: 20px 24px;
  /* Coupon notches: semicircles punched into the left/right edges,
     filled with the panel background so they read as cutouts */
}
.vc-voucher-card::before,
.vc-voucher-card::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  background: #f3ebe2;
  border-radius: 50%;
  transform: translateY(-50%);
}
.vc-voucher-card::before {
  left: -12px;
}
.vc-voucher-card::after {
  right: -12px;
}
.vc-voucher-amount {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 6px;
}
.vc-voucher-amount span {
  font-size: 24px;
}
.vc-voucher-desc {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-style: italic;
  color: #a7987d;
  margin-bottom: 10px;
}
.vc-voucher-code {
  display: inline-block;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 11px;
  font-weight: 700;
  color: #a7987d;
  background: #f3ebe2;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.vc-voucher-valid {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  font-style: italic;
  color: #a7987d;
}
.vc-empty {
  border: 1px solid #e7dfd3;
  border-radius: 10px;
  background: #fff;
  padding: 26px 24px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
}
.vc-voucher-search-empty {
  margin-top: 14px;
}
@media (max-width: 680px) {
  .vc-voucher-topbar {
    flex-direction: column;
    align-items: stretch;
  }
  .vc-voucher-search-wrap {
    flex: 1 1 auto;
    width: 100%;
  }
  .vc-voucher-search {
    max-width: none;
  }
  .vc-voucher-grid-inner {
    grid-template-columns: 1fr;
  }
  .vc-voucher-tabs {
    width: 100%;
  }
}
/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .aoa-hero {
    flex-direction: column;
  }
  .aoa-hero-left,
  .aoa-hero-right {
    width: 100%;
  }
  .aoa-hero-text h1 {
    font-size: 36px;
  }
  .aoa-hero-right {
    min-height: auto;
    padding: 40px 24px;
  }
  .aoa-hero-right .aoa-phone-main,
  .aoa-hero-right .aoa-phone-sub {
    width: 160px;
  }
}
@media (max-width: 768px) {
  .aoa-hero-text {
    padding: 40px 24px;
  }
  .aoa-hero-text h1 {
    font-size: 28px;
  }
  .aoa-hero-text p {
    font-size: 14px;
  }
  .aoa-heading {
    font-size: 24px;
  }
  .aoa-hero-right .aoa-phone-main,
  .aoa-hero-right .aoa-phone-sub {
    width: 120px;
  }
}
/* ============================================
   Become a Travel Advisor (New)
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.adv-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: #694910;
  border-radius: 5px;
  color: #fdfaf5;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  font-weight: 700;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}
.adv-btn-primary:hover {
  background: #5a3f0e;
}
.adv-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: transparent;
  border: 1px solid #694910;
  border-radius: 5px;
  color: #694910;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}
.adv-btn-outline:hover {
  background: rgba(105, 73, 16, 0.08);
}
/* ===== Hero ===== */
.adv-hero {
  background: #fdfaf5;
  padding: 60px 24px 40px;
}
.adv-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.adv-hero-text {
  flex: 1;
}
.adv-hero-text h1 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 60px;
  color: #000000;
  line-height: 1.05;
  margin-bottom: 20px;
}
.adv-hero-text > p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #666;
  line-height: 1.3;
  margin-bottom: 32px;
}
.adv-hero-form {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.adv-hero-field {
  position: relative;
  flex: 1;
}
.adv-hero-field input[type="email"] {
  width: 100%;
  height: 49px;
  border: 1px solid #694910;
  border-radius: 5px;
  padding: 0 14px ;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  font-weight: 700;
  color: #A7987D;
}
.adv-hero-field input[type="email"]:placeholder-shown + .adv-hero-label {
  top: 15px;
  font-size: 16px;
  font-weight: 700;
  color: #a7987d;
}
.adv-hero-form button {
  height: 49px;
  padding: 0 28px;
  background: #694910;
  border: none;
  border-radius: 5px;
  color: #fdfaf5;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}
.adv-hero-form button:hover {
  background: #5a3f0e;
}
.adv-hero-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}
.adv-hero-dots .adv-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.69);
  border-radius: 40px;
}
.adv-hero-dots .adv-dot.active {
  width: 72px;
}
.adv-hero-terms {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #666;
  margin-bottom: 24px;
}
.adv-hero-terms a {
  text-decoration: underline;
  color: #666;
}
.adv-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}
.adv-stars img {
  width: 22px;
  height: 22px;
}
.adv-stars span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #666;
  margin-left: 12px;
}
.adv-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.adv-hero-image img {
  max-width: 520px;
  width: 100%;
  height: auto;
}
.adv-featured-span {
  display: block;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-align: center;
}
.adv-featured {
  width: 100%;
  margin: 0 auto 0;
  text-align: center;
}
.adv-featured img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
/* ===== Commission ===== */
.adv-commission {
  background: #fdfaf5;
  padding: 80px 24px;
}
.adv-commission-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.adv-commission-inner h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 60px;
  color: #000000;
  line-height: 1.15;
  margin-bottom: 20px;
}
.adv-commission-inner > p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  color: #000000;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto 24px;
}
.adv-commission-body {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 48px;
  text-align: left;
}
.adv-commission-examples {
  flex: 1;
}
.adv-commission-examples h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  color: #000000;
  margin-bottom: 24px;
}
.adv-commission-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f6efe7;
  border-radius: 99px;
  padding: 12px 20px;
  margin-bottom: 16px;
}
.adv-commission-icon {
  width: 50px;
  height: 50px;
  background: #fdfaf5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.adv-commission-icon img {
  width: 20px;
  height: 20px;
}
.adv-commission-info {
  flex: 1;
}
.adv-commission-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
}
.adv-commission-subtitle {
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: italic;
  font-size: 14px;
  color: #a7987d;
}
.adv-commission-amount {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #6b8252;
  white-space: nowrap;
}
.adv-commission-image {
  flex: 1;
  position: relative;
}
.adv-commission-image img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 50px;
  object-fit: cover;
  display: block;
}
.adv-commission-mask {
  position: absolute;
  inset: 0;
  max-width: 560px;
  background: rgba(167, 152, 125, 0.31);
  border-radius: 50px;
}
/* ===== Income ===== */
.adv-income {
  background: linear-gradient(270deg, #fdfaf5 0%, #f3ebe2 49%, #fdfaf5 100%);
  padding: 80px 24px;
  text-align: center;
}
.adv-income h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 60px;
  color: #000000;
  line-height: 1.15;
}
/* ===== Process ===== */
.adv-process {
  background: #fdfaf5;
  padding: 80px 24px;
}
.adv-process-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.adv-process-inner h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 60px;
  color: #000000;
  line-height: 1.15;
  margin-bottom: 16px;
}
.adv-process-inner > p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 48px;
}
.adv-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.adv-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
  position: relative;
}
.adv-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 60px;
  width: 2px;
  height: calc(100% + 24px);
  background: #a7987d;
}
.adv-step-num {
  width: 60px;
  height: 60px;
  background: #a7987d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.adv-step-content h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  margin-bottom: 6px;
}
.adv-step-content p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: italic;
  font-size: 16px;
  color: #694910;
  line-height: 1.5;
}
/* ===== Tools ===== */
.adv-tools {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  max-width: 1400px;
  margin: 0 auto;
}
.adv-tools-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 50px;
  overflow: hidden;
}
.adv-tools-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.adv-tools-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  z-index: 1;
  border-radius: 50px;
}
.adv-tools-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.adv-tools-text {
  max-width: 520px;
}
.adv-tools-text h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 60px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.adv-tools-text p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #fff;
  line-height: 1.4;
}
.adv-tool-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 380px;
  transform: translate(120px, 60px);
}
.adv-tool-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px 24px;
  box-shadow: 0 13px 29px rgba(0, 0, 0, 0.1);
}
.adv-tool-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.adv-tool-dot {
  width: 11px;
  height: 11px;
  background: #45791d;
  border-radius: 50%;
  flex-shrink: 0;
}
.adv-tool-card h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  color: #000000;
  text-decoration: underline;
  margin-bottom: 0;
}
.adv-tool-card p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #000000;
  line-height: 1.3;
}
/* ===== Testimonial ===== */
.adv-testimonial {
  background: linear-gradient(270deg, #fdfaf5 0%, #f3ebe2 49%, #fdfaf5 100%);
  padding: 80px 24px;
}
.adv-testimonial-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.adv-testimonial-inner blockquote {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 32px;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 24px;
}
.adv-testimonial-inner .txt {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: italic;
  font-size: 18px;
  color: #000000;
}
.adv-testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 16px 0 0;
  object-fit: cover;
}
/* ===== Platform ===== */
.adv-platform {
  background: #fdfaf5;
  padding: 80px 24px;
}
.adv-platform-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.adv-platform-inner h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 60px;
  color: #000000;
  line-height: 1.15;
  margin-bottom: 16px;
}
.adv-platform-inner > p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 24px;
}
/* ===== Properties ===== */
.adv-properties {
  background: #fdfaf5;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.adv-properties .adv-properties-glow {
  position: absolute;
  top: -100px;
  left: -195px;
  width: 2254px;
  height: 1403px;
  z-index: 0;
  pointer-events: none;
}
.adv-properties .adv-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(262px);
}
.adv-properties .adv-glow-1 {
  top: 76px;
  left: 87px;
  width: 584px;
  height: 511px;
  background: #ffe2d5;
}
.adv-properties .adv-glow-2 {
  top: 0;
  left: 1447px;
  width: 807px;
  height: 743px;
  background: #c6e9ff;
}
.adv-properties .adv-glow-3 {
  top: 634px;
  left: 0;
  width: 576px;
  height: 577px;
  background: #d8f0ff;
}
.adv-properties .adv-glow-4 {
  top: 606px;
  left: 1502px;
  width: 737px;
  height: 784px;
  background: #ffe2d5;
  transform: rotate(2.14deg);
}
.adv-properties .adv-glow-5 {
  top: 43px;
  left: 441px;
  width: 1475px;
  height: 714px;
  background: #ffefda;
}
.adv-properties-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}
.adv-properties-sidebar {
  width: 380px;
  flex-shrink: 0;
  padding-top: 100px;
}
.adv-properties-sidebar h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 28px;
  color: #000000;
  line-height: 1.15;
  margin-bottom: 12px;
}
.adv-properties-sidebar > p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 32px;
}
.adv-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.adv-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 9px;
  background: #fdfaf5;
  border: 1px solid #a7987d;
  cursor: pointer;
  transition: all 0.2s;
}
.adv-feature input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.adv-feature.active {
  background: #694910;
  border-color: #694910;
}
.adv-feature.active .adv-feature-box {
  background: #7b6132;
}
.adv-feature.active .adv-feature-box img {
  filter: brightness(1000%);
}
.adv-feature.active .adv-feature-label {
  color: #fff;
}
.adv-feature-box {
  width: 36px;
  height: 36px;
  border-radius: 5px;
  background: #ede2d6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.adv-feature-box img {
  width: 18px;
  height: 18px;
}
.adv-feature-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #000000;
}
.adv-properties-main {
  flex: 1;
  padding: 50px 80px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 25px;
}
.adv-properties-main .title_head {
  text-align: center;
  font-family: "Inria Serif";
  margin-bottom: 40px;
}
.adv-properties-main .title_head h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.adv-properties-main .title_head p {
  font-size: 16px;
  color: #000;
}
.adv-property-search {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  gap: 24px;
}
.adv-search-input-wrap {
  position: relative;
  width: 400px;
}
.adv-search-input-wrap input {
  width: 100%;
  height: 46px;
  border: 1px solid #a7987d;
  border-radius: 56px;
  padding: 0 16px 0 48px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #a7987d;
  background: transparent;
}
.adv-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
.adv-search-btn {
  height: 46px;
  padding: 0 28px;
  background: #694910;
  border: none;
  border-radius: 56px;
  color: #fff;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}
.adv-property-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.adv-property-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(18px);
}
.adv-property-card h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  margin-bottom: 10px;
}
.adv-property-thumb {
  width: 114px;
  height: 95px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.adv-property-location {
  display: flex;
  align-items: center;
  gap: 4px;
}
.adv-property-location img {
  width: 14px;
  height: 14px;
}
.adv-property-location span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #a7987d;
}
.adv-property-price {
  margin-left: auto;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  white-space: nowrap;
}
.adv-partner-bar {
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.adv-partner-bar .nav_dl {
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  padding: 6px;
  background: #694910;
}
.adv-partner-bar .li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 46px;
  border-radius: 10px;
}
.adv-partner-bar .li:hover,
.adv-partner-bar .li.active {
  background: #fff;
}
.adv-partner-bar .li:hover img,
.adv-partner-bar .li.active img {
  filter: brightness(0) saturate(100%) invert(29%) sepia(36%) saturate(1271%) hue-rotate(357deg) brightness(94%) contrast(88%);
}
/* Feature tab panels */
.adv-feature::after {
  content: "";
  margin-left: auto;
  width: 15px;
  height: 12px;
  flex-shrink: 0;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a7987d' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h16'/%3E%3Cpath d='M14 6l6 6-6 6'/%3E%3C/svg%3E") no-repeat center / contain;
  transition: transform 0.2s ease;
}
.adv-feature:not(.active):hover::after {
  transform: translateX(3px);
}
.adv-feature.active::after {
  content: none;
}
.adv-properties-main .adv-panel {
  display: none;
}
.adv-properties-main .adv-panel.active {
  display: block;
  animation: advPanelFade 0.4s ease;
}
@keyframes advPanelFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Payments panel */
.adv-pay-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.adv-pay-stat {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.adv-pay-stat-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #000000;
}
.adv-pay-stat-value {
  font-family: 'Abhaya Libre ExtraBold', 'Inria Serif', serif;
  font-size: 30px;
  color: #000000;
  line-height: 1;
}
.adv-pay-stat-note {
  font-size: 13px;
  color: #a7987d;
}
.adv-pay-stat-note.up {
  color: #2f9e68;
}
.adv-pay-chart {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}
.adv-pay-chart .dot-travel {
  background: #2f9e68;
}
.adv-pay-chart .dot-product {
  background: #cfe6d9;
}
.adv-pay-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.adv-pay-chart-head h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 15px;
  color: #000000;
}
.adv-pay-legend {
  display: flex;
  gap: 16px;
}
.adv-pay-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #000000;
}
.adv-pay-legend .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.adv-pay-chart-body {
  display: flex;
  gap: 10px;
}
.adv-pay-yaxis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 26px;
  font-size: 12px;
  color: #a7987d;
  text-align: right;
}
.adv-pay-plot {
  flex: 1;
  display: flex;
  justify-content: space-around;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.07) 1px, transparent 1px);
  background-size: 100% 60px;
  background-repeat: repeat;
}
.adv-pay-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.adv-pay-bars {
  height: 180px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.adv-pay-bars .bar {
  width: 26px;
  border-radius: 6px 6px 0 0;
}
.adv-pay-bars .bar-travel {
  background: #2f9e68;
}
.adv-pay-bars .bar-product {
  background: #cfe6d9;
}
.adv-pay-month {
  margin-top: 8px;
  font-size: 12px;
  color: #a7987d;
}
.adv-pay-table-wrap {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 10px 20px 14px;
  overflow-x: auto;
}
.adv-pay-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inria Serif', Helvetica, serif;
}
.adv-pay-table .dot-travel {
  background: #2f9e68;
}
.adv-pay-table .dot-product {
  background: #cfe6d9;
}
.adv-pay-table th {
  text-align: left;
  font-size: 14px;
  color: #8a7a5c;
  font-weight: 400;
  padding: 12px 10px;
  background: #f2ead9;
}
.adv-pay-table thead th:first-child {
  border-radius: 8px 0 0 8px;
}
.adv-pay-table thead th:last-child {
  border-radius: 0 8px 8px 0;
}
.adv-pay-table td {
  padding: 14px 10px;
  font-size: 14px;
  color: #000000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.adv-pay-table tbody tr:last-child td {
  border-bottom: none;
}
.adv-pay-source {
  display: flex;
  align-items: center;
  gap: 8px;
}
.adv-pay-source .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.adv-pay-status {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 13px;
}
.adv-pay-status.settled {
  background: #e4f3ec;
  color: #2f9e68;
}
.adv-pay-status.pending {
  background: #f5ecdd;
  color: #8a6d2f;
}
/* Itineraries panel */
.adv-itin-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.adv-itin-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 12px;
}
.adv-itin-card h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  margin: 12px 0 8px;
}
.adv-itin-thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 220px;
}
.adv-itin-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.adv-itin-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(105, 73, 16, 0.92);
  color: #ffffff;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 6px;
}
.adv-itin-meta {
  display: flex;
  gap: 16px;
}
.adv-itin-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #a7987d;
}
.adv-itin-meta img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}
/* Workflow panel */
.adv-flow-head h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
}
.adv-flow-head p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: italic;
  font-size: 13px;
  color: #a7987d;
  margin: 4px 0 14px;
}
.adv-flow-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.adv-flow-stat {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 16px 20px;
}
.adv-flow-stat-label {
  display: block;
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: italic;
  font-size: 14px;
  color: #000000;
  margin-bottom: 8px;
}
.adv-flow-stat-value {
  font-family: 'Abhaya Libre ExtraBold', 'Inria Serif', serif;
  font-size: 28px;
  color: #000000;
  line-height: 1;
}
.adv-flow-list {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 8px 20px;
}
.adv-flow-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.adv-flow-item:last-child {
  border-bottom: none;
}
.adv-flow-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.adv-flow-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.adv-flow-info strong {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #000000;
}
.adv-flow-info span {
  font-size: 13px;
  color: #6b6b6b;
}
.adv-flow-badge {
  margin-left: auto;
  padding: 5px 14px;
  border-radius: 20px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  white-space: nowrap;
}
.adv-flow-badge.planning {
  background: #eaf3fb;
  color: #3b7cb8;
}
.adv-flow-badge.inquiry {
  background: #e4f3ec;
  color: #2f9e68;
}
.adv-flow-badge.confirmed {
  background: #f5ecdd;
  color: #8a6d2f;
}
/* Training panel */
.adv-train {
  display: flex;
  gap: 20px;
  align-items: stretch;
}
.adv-train-list {
  flex: 1;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.adv-train-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.adv-train-item:last-child {
  border-bottom: none;
}
.adv-train-info {
  flex: 1;
  min-width: 0;
}
.adv-train-info strong {
  display: block;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #000000;
  margin-bottom: 4px;
}
.adv-train-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: #6b6b6b;
}
.adv-train-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.adv-train-meta svg {
  width: 14px;
  height: 14px;
}
.adv-train-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.adv-train-progress span {
  font-size: 12px;
  color: #6b6b6b;
}
.adv-train-progress-bar {
  flex: 1;
  height: 5px;
  border-radius: 5px;
  background: #ece4d8;
  overflow: hidden;
}
.adv-train-progress-bar i {
  display: block;
  height: 100%;
  background: #694910;
  border-radius: 5px;
}
.adv-train-check {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.adv-train-check svg {
  width: 100%;
  height: 100%;
  display: block;
}
.adv-train-chevron {
  width: 20px;
  height: 20px;
  color: #694910;
  flex-shrink: 0;
}
.adv-train-video {
  position: relative;
  width: 45%;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  min-height: 300px;
}
.adv-train-video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.adv-train-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
}
.adv-train-play svg {
  width: 100%;
  height: 100%;
  display: block;
}
.adv-partnerships {
  background: #fdfaf5;
}
.adv-partnerships .adv-partnerships-bg {
  position: relative;
}
.adv-partnerships .adv-partnerships-bg img {
  width: 100%;
  height: auto;
  display: block;
}
.adv-partnerships .adv-partnerships-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(0, 0, 0, 0.47);
  backdrop-filter: blur(10px);
}
.adv-partnerships .adv-partnerships-text {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 500px;
}
.adv-partnerships .adv-partnerships-text h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 36px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.adv-partnerships .adv-partnerships-text p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #fff;
  line-height: 1.4;
}
.adv-partnerships .adv-partnerships-logos {
  background: #fdfaf5;
  text-align: center;
}
.adv-partnerships .adv-partnerships-logos img {
  width: 100%;
  height: auto;
}
/* ===== CTA Bottom ===== */
.adv-cta-bottom {
  background: #fdfaf5;
  padding: 80px 24px;
}
.adv-cta-bottom .adv-cta-bottom-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.adv-cta-bottom .adv-cta-bottom-inner h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 36px;
  color: #000000;
  line-height: 1.15;
  margin-bottom: 12px;
}
.adv-cta-bottom .adv-cta-bottom-inner > p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #666;
  margin-bottom: 24px;
}
.adv-cta-bottom .adv-cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto 24px;
}
.adv-cta-bottom .adv-cta-form input[type="email"] {
  height: 49px;
  border: 1px solid #694910;
  border-radius: 5px;
  padding: 0 14px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #000000;
  background: #fff;
}
.adv-cta-bottom .adv-cta-form input[type="email"]::placeholder {
  color: #a7987d;
}
.adv-cta-bottom .adv-cta-form button {
  height: 49px;
  background: #694910;
  border: none;
  border-radius: 5px;
  color: #fdfaf5;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}
.adv-cta-bottom .adv-cta-form button:hover {
  background: #5a3f0e;
}
/* ===== FAQ ===== */
.adv-faq {
  background: #fdfaf5;
  padding: 80px 24px;
}
.adv-faq .adv-faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
}
.adv-faq .adv-faq-header {
  width: 380px;
  flex-shrink: 0;
}
.adv-faq .adv-faq-header h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 36px;
  color: #000000;
  line-height: 1.15;
  margin-bottom: 24px;
}
.adv-faq .adv-faq-list {
  flex: 1;
}
.adv-faq .adv-faq-item {
  border-bottom: 1px solid #e7dfd3;
}
.adv-faq .adv-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.adv-faq .adv-faq-question span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  line-height: 1.06;
}
.adv-faq .adv-faq-icon {
  width: 22px;
  height: 22px;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.adv-faq .adv-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.adv-faq .adv-faq-answer p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #a7987d;
  line-height: 1.7;
  padding-bottom: 16px;
  margin: 0;
}
.adv-faq .adv-faq-item.expanded .adv-faq-answer {
  max-height: 300px;
  opacity: 1;
}
.adv-faq .adv-faq-item.expanded .adv-faq-icon {
  transform: rotate(45deg);
}
/* ===== Inspiration ===== */
.adv-inspiration {
  background: #f3ebe2;
  padding: 60px 24px;
}
.adv-inspiration .adv-inspiration-inner {
  padding: 0 5vw;
  margin: 0 auto;
}
.adv-inspiration .adv-inspiration-inner h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 28px;
  color: #000000;
  margin-bottom: 16px;
}
.adv-inspiration .adv-inspiration-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #e7dfd3;
}
.adv-inspiration .adv-inspiration-nav h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #a7987d;
  cursor: pointer;
  transition: color 0.2s;
  padding-bottom: 4px;
  border-bottom: 4px solid transparent;
}
.adv-inspiration .adv-inspiration-nav h3:hover {
  color: #000000;
}
.adv-inspiration .adv-inspiration-nav h3.active {
  color: #000;
  border-bottom: 4px solid #a7987d;
}
.adv-inspiration .adv-inspiration-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.adv-inspiration .adv-inspiration-col {
  min-width: 140px;
  display: none;
}
.adv-inspiration .adv-inspiration-col.active {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.adv-inspiration .adv-inspiration-col .adv-inspiration-col-inner {
  min-width: 140px;
}
.adv-inspiration .adv-inspiration-col a {
  display: block;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #a7987d;
  text-decoration: underline;
  line-height: 2.2;
}
.adv-inspiration .adv-inspiration-col a:hover {
  color: #694910;
}
/* ===== Footer ===== */
.adv-footer {
  background: #694910;
  color: #fdfaf5;
  padding: 56px 0 20px;
}
.adv-footer .adv-footer-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: minmax(120px, 160px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.adv-footer .adv-footer-brand {
  padding-top: 4px;
}
.adv-footer .adv-footer-logo {
  display: block;
  width: 92px;
  height: auto;
}
.adv-footer .adv-footer-main {
  display: grid;
  gap: 40px;
  align-items: start;
}
.adv-footer .adv-footer-nav {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 24px 56px;
  align-items: start;
}
.adv-footer .adv-footer-col h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: #fdfaf5;
  margin-bottom: 16px;
}
.adv-footer .adv-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}
.adv-footer .adv-footer-col li a {
  display: inline-block;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  line-height: 1.4;
  color: #fdfaf5;
  transition: opacity 0.2s;
}
.adv-footer .adv-footer-col li a:hover {
  opacity: 0.8;
}
.adv-footer .adv-footer-bottom {
  padding: 0 0 22px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 40px 80px;
  align-items: start;
  justify-content: start;
}
.adv-footer .adv-footer-subscribe {
  max-width: 920px;
  padding-top: 2px;
}
.adv-footer .adv-footer-subscribe h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: #fdfaf5;
  margin-bottom: 8px;
}
.adv-footer .adv-footer-subscribe > p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  line-height: 1.5;
  color: #fdfaf5;
  margin-bottom: 12px;
  max-width: 900px;
}
.adv-footer .adv-subscribe-form {
  display: flex;
  gap: 12px;
  align-items: center;
}
.adv-footer .adv-subscribe-form input[type="email"] {
  width: min(100%, 470px);
  height: 46px;
  border: 2px solid rgba(253, 250, 245, 0.95);
  border-radius: 6px;
  padding: 0 16px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #fdfaf5;
  background: transparent;
}
.adv-footer .adv-subscribe-form input[type="email"]::placeholder {
  color: rgba(253, 250, 245, 0.55);
}
.adv-footer .adv-subscribe-form button {
  height: 46px;
  min-width: 140px;
  padding: 0 26px;
  background: #fdfaf5;
  border: none;
  border-radius: 6px;
  color: #694910;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}
.adv-footer .adv-subscribe-form button:hover {
  opacity: 0.92;
}
.adv-footer .adv-footer-social {
  padding-top: 0;
}
.adv-footer .adv-footer-social h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: #fdfaf5;
  margin-bottom: 14px;
}
.adv-footer .adv-social-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.adv-footer .adv-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
}
.adv-footer .adv-social-links a img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.adv-footer .adv-footer-copy {
  max-width: 1500px;
  margin: 16px auto 0;
  padding: 16px 48px 0;
  border-top: 1px solid rgba(253, 250, 245, 0.2);
  text-align: center;
}
.adv-footer .adv-footer-copy p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  line-height: 1.4;
  color: #fdfaf5;
}
/* Scale the become-advisor page proportionally with the viewport
   (design base 1920px) so headings, panels and cards keep their
   1920px appearance on narrower desktop widths */
@media (min-width: 1025px) and (max-width: 1920px) {
  .adv-hero {
    padding: 3.125vw 1.25vw 2.0833vw;
  }
  .adv-hero-inner {
    gap: 3.125vw;
  }
  .adv-hero-text h1 {
    font-size: 3.125vw;
    margin-bottom: 1.0417vw;
  }
  .adv-hero-image img {
    max-width: 27.0833vw;
  }
  .adv-commission,
  .adv-income,
  .adv-process,
  .adv-testimonial,
  .adv-platform,
  .adv-properties,
  .adv-cta-bottom,
  .adv-faq {
    padding: 4.1667vw 1.25vw;
  }
  .adv-commission-inner h2,
  .adv-income h2,
  .adv-process-inner h2,
  .adv-platform-inner h2,
  .adv-tools-text h2 {
    font-size: 3.125vw;
  }
  .adv-testimonial-inner blockquote {
    font-size: 1.6667vw;
    margin-bottom: 1.25vw;
  }
  .adv-properties-inner {
    gap: 2.0833vw;
  }
  .adv-properties-sidebar {
    width: max(19.7917vw, 265px);
    padding-top: 5.2083vw;
  }
  .adv-properties-sidebar h2 {
    font-size: 1.4583vw;
  }
  .adv-properties-sidebar > p {
    font-size: max(12px, 0.7813vw);
  }
  .adv-feature {
    gap: 0.625vw;
    padding: 0.625vw 0.8333vw;
  }
  .adv-feature-box {
    width: 1.875vw;
    height: 1.875vw;
  }
  .adv-feature-box img {
    width: 0.9375vw;
    height: 0.9375vw;
  }
  .adv-feature-label {
    font-size: max(12px, 0.8333vw);
  }
  .adv-properties-main {
    padding: 2.6042vw 4.1667vw;
  }
  .adv-properties-main .title_head {
    margin-bottom: 2.0833vw;
  }
  .adv-properties-main .title_head h2 {
    font-size: 1.875vw;
    margin-bottom: 1.0417vw;
  }
  .adv-property-thumb {
    width: 5.9375vw;
    height: 4.9479vw;
  }
  .adv-search-input-wrap {
    width: 20.8333vw;
  }
  .adv-cta-bottom-inner h2,
  .adv-faq-header h2 {
    font-size: 1.875vw;
  }
  .adv-faq-inner {
    gap: 3.125vw;
  }
  .adv-faq-header {
    width: 19.7917vw;
  }
}
/* ===== Responsive ===== */
/* The tool cards' 120px horizontal offset pushes them past the viewport
   right edge when it is narrower than ~1540px (.adv-tools caps at 1400px);
   drop the horizontal shift there and keep only the vertical one */
@media (min-width: 1281px) and (max-width: 1540px) {
  .adv-tool-cards {
    transform: translate(0, 60px);
  }
}
@media (max-width: 1280px) {
  .adv-tool-cards {
    transform: none;
  }
}
@media (max-width: 1024px) {
  .adv-hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .adv-hero-text h1 {
    font-size: 36px;
  }
  .adv-hero-form {
    justify-content: center;
  }
  .adv-stars {
    justify-content: center;
  }
  .adv-commission-body {
    flex-direction: column;
    align-items: center;
  }
  .adv-commission-image {
    order: -1;
  }
  .adv-tools-inner {
    flex-direction: column;
  }
  .adv-properties-inner {
    flex-direction: column;
  }
  .adv-properties-sidebar {
    width: 100%;
  }
  .adv-partnerships-overlay {
    width: 100%;
  }
  .adv-partnerships-text {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
  }
  .adv-faq-inner {
    flex-direction: column;
  }
  .adv-faq-header {
    width: 100%;
  }
  .adv-footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }
  .adv-footer-nav {
    grid-template-columns: repeat(2, auto);
    gap: 28px 40px;
  }
  .adv-footer-bottom {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 0 20px;
  }
  .adv-footer-social {
    justify-self: start;
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .adv-footer {
    padding-top: 40px;
  }
  .adv-footer-nav {
    grid-template-columns: 1fr;
  }
  .adv-footer .adv-subscribe-form {
    flex-direction: column;
    align-items: stretch;
  }
  .adv-footer .adv-subscribe-form input[type="email"],
  .adv-footer .adv-subscribe-form button {
    width: 100%;
    min-width: 0;
  }
  .adv-footer-social {
    padding-top: 0;
  }
  .adv-social-links {
    gap: 18px;
  }
  .adv-hero-text h1 {
    font-size: 28px;
  }
  .adv-income h2,
  .adv-process-inner h2,
  .adv-platform-inner h2,
  .adv-commission-inner h2 {
    font-size: 28px;
  }
  .adv-tools {
    border-radius: 24px;
  }
  .adv-tools-overlay {
    border-radius: 24px;
  }
  .adv-tool-cards {
    width: 100%;
  }
  .adv-property-cards {
    grid-template-columns: 1fr;
  }
  .adv-property-search {
    flex-direction: column;
  }
  .adv-pay-stats,
  .adv-flow-stats,
  .adv-itin-cards {
    grid-template-columns: 1fr;
  }
  .adv-train {
    flex-direction: column;
  }
  .adv-train-video {
    width: 100%;
  }
  .adv-inspiration-columns {
    gap: 24px;
  }
}
/* ============================================
   Dashboard (Customer Management)
   ============================================ */
.db-page {
  display: flex;
  height: 100vh;
  overflow: hidden;
  background: #fdfaf5;
  font-family: 'Inria Serif', Helvetica, serif;
}
.db-page--flow {
  height: auto;
  min-height: calc(100vh - var(--db-page-offset, 74px));
  overflow: visible;
}
/* ---- Sidebar ---- */
.db-sidebar {
  width: 262px;
  height: 100vh;
  background: #f3ebe2;
  flex-shrink: 0;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
  transition: width 0.35s ease;
}
.db-page--flow .db-sidebar {
  height: auto;
  min-height: calc(100vh - var(--db-page-offset, 74px));
}
.db-sidebar.collapsed {
  width: 70px;
}
.db-sidebar.collapsed .db-sidebar-brand {
  opacity: 0;
  pointer-events: none;
}
.db-sidebar.collapsed .db-nav-item {
  padding: 16px 0;
  justify-content: center;
  gap: 0;
}
.db-sidebar.collapsed .db-nav-item span {
  display: none;
}
.db-sidebar.collapsed .db-nav-item.active {
  background: transparent;
}
.db-sidebar-brand {
  display: block;
  font-family: 'Inder', Helvetica, sans-serif;
  font-size: 26px;
  color: #694910;
  width: 100%;
  padding: 12px 0px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.25s ease;
  user-select: none;
  text-align: center;
}
.db-sidebar-nav {
  position: relative;
}
.db-nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 62px;
  position: relative;
  z-index: 1;
  transition: background 0.2s;
}
.db-nav-item:hover {
  background: rgba(253, 250, 245, 0.72);
}
.db-nav-item span {
  font-family: 'Inder', Helvetica, sans-serif;
  font-size: 18px;
  color: #000000;
}
.db-nav-item.active {
  background: #fdfaf5;
}
.db-nav-item.active:hover {
  background: #fdfaf5;
}
.db-nav-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
/* ---- Main ---- */
.db-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fdfaf5;
  min-height: 0;
  overflow: hidden;
}
.db-main--flow {
  min-height: calc(100vh - var(--db-page-offset, 74px));
  overflow: visible;
}
/* ---- Header ---- */
.db-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 0 20px;
  height: 81px;
  flex-shrink: 0;
}
.db-search {
  position: relative;
}
.db-search input {
  width: 202px;
  height: 37px;
  border: 1px solid #a7987d;
  border-radius: 5px;
  padding: 0 14px 0 38px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #a7987d;
  background: #fff;
}
.db-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
}
.db-user {
  display: flex;
  align-items: center;
  gap: 14px;
}
.db-user-avatar {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  object-fit: cover;
}
.db-user-name {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #694910;
}
.db-user-divider {
  width: 1px;
  height: 31px;
}
.db-btn-exit {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid #694910;
  border-radius: 6px;
  cursor: pointer;
}
.db-btn-exit img {
  width: 20px;
  height: 20px;
}
.db-btn-exit span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #694910;
}
/* ---- Page Title ---- */
.db-page-title {
  grid-area: title;
  font-family: 'Inder', Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  padding: 6px 20px;
  background: #f3ebe2;
  line-height: 24px;
}
/* ---- Message List ---- */
.db-message-list {
  grid-area: list;
  padding: 0 20px 12px;
  background: #f3ebe2;
  overflow-y: auto;
}
.db-list-filter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-bottom: 12px;
}
.db-list-filter img {
  width: 20px;
  height: 20px;
}
.db-list-filter span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
}
.db-message-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.db-message-item.active {
  background: #fff;
}
.db-message-highlight {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #694910;
  border-radius: 0 2px 2px 0;
}
.db-message-avatar {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.db-message-status {
  position: absolute;
  left: 56px;
  bottom: 14px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
}
.db-message-status.online {
  background: #71e582;
}
.db-message-info {
  flex: 1;
  min-width: 0;
}
.db-message-name {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  margin-bottom: 2px;
}
.db-message-preview {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.db-message-time {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
  white-space: nowrap;
}
/* ---- Divider ---- */
.db-divider {
  grid-area: divider;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3ebe2;
}
.db-divider img {
  width: 1px;
  height: 100%;
  max-height: calc(100vh - 117px);
}
/* ---- Chat ---- */
.db-chat {
  grid-area: chat;
  display: flex;
  flex-direction: column;
  padding: 0 20px 20px;
  background: #f3ebe2;
  min-height: 0;
  overflow: hidden;
}
.db-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.db-chat-user {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}
.db-chat-avatar {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  object-fit: cover;
}
.db-chat-status {
  position: absolute;
  left: 39px;
  bottom: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
}
.db-chat-status.online {
  background: #71e582;
}
.db-chat-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.db-chat-name {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
}
.db-chat-topic {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #000000;
}
.db-chat-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.db-chat-call {
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
}
.db-chat-call img {
  width: 24px;
  height: 24px;
}
.db-chat-video {
  width: 35px;
  height: 35px;
  background: #694910;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}
.db-chat-video img {
  position: absolute;
}
/* ---- Chat Body ---- */
.db-chat-body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 12px;
}
.db-chat-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 4px 0;
  flex-shrink: 0;
}
.db-chat-date img {
  flex: 1;
  max-width: 200px;
  height: 1px;
  object-fit: cover;
}
.db-chat-date span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
  white-space: nowrap;
  padding: 4px 16px;
  border: 1px solid #a7987d;
  border-radius: 63px;
}
.db-chat-bubble {
  max-width: 70%;
  padding: 12px 20px;
  border-radius: 10px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  line-height: 20px;
  flex-shrink: 0;
}
.db-chat-bubble.left {
  align-self: flex-start;
  background: #fff;
  color: #000000;
}
.db-chat-bubble.right {
  align-self: flex-end;
  background: #694910;
  color: #fdfaf5;
}
/* ---- Chat Input ---- */
.db-chat-input {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #694910;
  border-radius: 10px;
  padding: 10px 14px;
  flex-shrink: 0;
}
.db-chat-input input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #a7987d;
  background: transparent;
  padding-right: 120px;
}
.db-input-divider {
  width: 1px;
  height: 24px;
  margin: 0 12px;
}
.db-btn-attach {
  width: 31px;
  height: 31px;
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 12px;
}
.db-btn-attach img {
  width: 31px;
  height: 31px;
}
.db-btn-send {
  width: 46px;
  height: 46px;
  background: #694910;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-90deg);
  flex-shrink: 0;
}
.db-btn-send img {
  width: 20px;
  height: 20px;
}
/* ---- Bookings Layout ---- */
.db-main--bookings {
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
  grid-template-rows: none;
  grid-template-areas: none;
}
/* ---- Messages Layout ---- */
.db-msg-layout {
  flex: 1;
  display: flex;
  min-height: 0;
  overflow: hidden;
}
.db-msg-list-panel {
  width: 360px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding: 20px 16px 12px;
  min-height: 0;
}
.db-msg-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  flex-shrink: 0;
}
.db-msg-list-header h3 {
  font-family: 'Inder', Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
}
.db-msg-time-filter {
  display: flex;
  align-items: center;
  gap: 6px;
}
.db-msg-time-filter img {
  width: 20px;
  height: 20px;
}
.db-msg-time-filter span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
}
.db-msg-list {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 12px;
}
.db-msg-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.2s;
  background: #fff;
  border: 1px solid #E5DBD3;
}
.db-msg-item.active {
  background: #fff;
}
.db-msg-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #694910;
  border-radius: 0 2px 2px 0;
}
.db-msg-avatar {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.db-msg-online-dot {
  position: absolute;
  left: 56px;
  bottom: 14px;
  width: 8px;
  height: 8px;
  background: #71e582;
  border-radius: 2px;
}
.db-msg-online-dot.is-offline {
  background: #c6b79f;
}
.db-msg-unread-dot {
  position: absolute;
  left: 56px;
  bottom: 14px;
  width: 8px;
  height: 8px;
  background: #71e582;
  border-radius: 2px;
}
.db-msg-item-info {
  flex: 1;
  min-width: 0;
}
.db-msg-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}
.db-msg-item-top h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
}
.db-msg-time {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
  white-space: nowrap;
}
.db-msg-item-info p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.db-msg-divider {
  width: 1px;
  flex-shrink: 0;
  background: #e7dfd3;
}
.db-msg-chat-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  padding: 20px;
}
.db-msg-chat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 12px;
  flex-shrink: 0;
  position: relative;
}
.db-msg-chat-avatar {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.db-msg-chat-info {
  flex: 1;
  min-width: 0;
}
.db-msg-chat-info h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.db-msg-chat-info p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.db-msg-chat-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.db-msg-chat-actions button {
  width: 35px;
  height: 35px;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.db-msg-chat-actions button img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: filter 0.2s;
}
.db-msg-chat-actions button:hover {
  background: #694910;
}
.db-msg-chat-actions button:hover img {
  filter: brightness(0) invert(1);
}
.db-msg-chat-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: #b79968 #f3ebe2;
}
.db-msg-chat-body::-webkit-scrollbar {
  width: 8px;
}
.db-msg-chat-body::-webkit-scrollbar-track {
  background: #f3ebe2;
  border-radius: 999px;
}
.db-msg-chat-body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ccb894 0%, #b79968 100%);
  border-radius: 999px;
  border: 2px solid #f3ebe2;
}
.db-msg-chat-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #c3ad86 0%, #a7834e 100%);
}
.db-msg-date-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 4px 0;
  flex-shrink: 0;
}
.db-msg-date-divider span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
  white-space: nowrap;
  padding: 4px 16px;
  border: 1px solid #a7987d;
  border-radius: 63px;
}
.db-msg-date-line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: #e7dfd3;
}
.db-msg-bubble {
  max-width: 70%;
  padding: 12px 20px;
  border-radius: 10px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  line-height: 20px;
  flex-shrink: 0;
}
.db-msg-bubble--client {
  align-self: flex-start;
  background: #fff;
  color: #000000;
}
.db-msg-bubble--advisor {
  align-self: flex-end;
  background: #694910;
  color: #fdfaf5;
}
.db-msg-chat-input {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #694910;
  border-radius: 10px;
  padding: 10px 14px;
  flex-shrink: 0;
  min-height: 68px;
}
.db-msg-chat-input input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #a7987d;
  background: transparent;
  padding-right: 120px;
}
.db-msg-chat-input input::placeholder {
  color: #a7987d;
}
.db-msg-input-divider {
  width: 1px;
  height: 24px;
  margin: 0 12px;
}
.db-msg-attach-btn {
  width: 31px;
  height: 31px;
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 12px;
}
.db-msg-attach-btn img {
  width: 31px;
  height: 31px;
}
.db-msg-send-btn {
  width: 46px;
  height: 46px;
  background: #694910;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.db-msg-send-btn img {
  width: 20px;
  height: 20px;
}
.db-msg-chat-header .db-msg-online-dot {
  position: static;
  flex-shrink: 0;
  margin-left: 8px;
}
/* ===== Booking Detail Dialog ===== */
.db-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.db-dialog-overlay.show {
  opacity: 1;
  visibility: visible;
}
.db-dialog {
  position: relative;
  width: 920px;
  max-width: calc(100vw - 48px);
  background: #FDFAF5;
  border-radius: 10px;
  padding: 36px 40px 32px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}
.db-dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: #f3ebe2;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.db-dialog-close img {
  width: 16px;
  height: 16px;
}
.db-dialog-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.db-dialog-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.db-dialog-header-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.db-dialog-trip {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
}
.db-dialog h1 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 28px;
  color: #000000;
  margin: 0;
}
.db-dialog-status-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  align-self: flex-start;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 6px 14px;
  border-radius: 63px;
  white-space: nowrap;
}
.db-dialog-status-badge--planning {
  background: #d4edda;
  color: #155724;
}
.db-dialog-status-badge--confirmed {
  background: #cce5ff;
  color: #004085;
}
.db-dialog-status-badge--new-inquiry {
  background: #fff3cd;
  color: #856404;
}
.db-dialog-status-badge--in-discussion {
  background: #e2e3e5;
  color: #383d41;
}
.db-dialog-status-tag {
  display: inline-block;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 63px;
  background: #d4edda;
  color: #155724;
}
.db-dialog-divider {
  height: 1px;
  background: #e7dfd3;
  margin: 10px 0;
}
.db-dialog-section h2 {
  font-family: 'Inder', Helvetica, sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-bottom: 16px;
}
.db-dialog-row-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.db-dialog-row {
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.db-dialog-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #a7987d;
  min-width: 0;
}
.db-dialog-value {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  min-width: 0;
  text-align: right;
  word-break: break-word;
}
.db-dialog-value--gold {
  color: #694910;
  text-decoration: underline;
}
.db-dialog-item-group + .db-dialog-item-group {
  margin-top: 18px;
}
.db-dialog-item-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}
.db-dialog-pdf-link {
  color: #694910;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  text-decoration: underline;
}
.db-dialog-status-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.db-dialog-status-btn {
  padding: 6px 14px;
  border: 1px solid #e7dfd3;
  border-radius: 63px;
  background: #fff;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #000000;
  cursor: pointer;
  transition: all 0.2s;
}
.db-dialog-status-btn.active {
  background: #694910;
  border-color: #694910;
  color: #fff;
}
.db-dialog-status-btn:hover {
  border-color: #694910;
}
.db-dialog-note {
  width: 100%;
  border: 1px solid #e7dfd3;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #000000;
  background: transparent;
  resize: vertical;
  outline: none;
}
.db-dialog-note:focus {
  border-color: #694910;
}
.db-dialog-note::placeholder {
  color: #a7987d;
}
.db-dialog-save {
  width: 100%;
  height: 49px;
  background: #694910;
  border: none;
  border-radius: 5px;
  color: #fdfaf5;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 24px;
  transition: background 0.3s;
}
.db-dialog-save:hover {
  background: #5a3f0e;
}
.db-book-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px 30px 20px;
}
/* Tabs */
.db-book-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  border-bottom: 1px solid #a7987d;
}
.db-book-tab {
  padding: 10px 20px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  border-radius: 5px 5px 0 0;
  background: transparent;
  border: 1px solid #a7987d;
  color: #694910;
  cursor: pointer;
}
.db-book-tab.active {
  background: #694910;
  color: #f3ebe2;
  border-color: #694910;
}
/* Section title */
.db-book-section-main {
  display: none;
}
.db-book-section-main.active {
  display: block;
}
.db-book-section-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
  margin-bottom: 4px;
}
.db-book-section-subtitle {
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: italic;
  font-size: 16px;
  color: #000000;
  margin-bottom: 20px;
}
/* Stats */
.db-book-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.db-book-stat-card {
  width: 258px;
  height: 99px;
  background: #f3ebe2;
  border-radius: 7px;
  padding: 22px 35px;
}
.db-book-stat-card h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  color: #000000;
  margin-bottom: 8px;
}
.db-book-stat-card p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 28px;
  color: #000000;
}
/* Panel */
.db-book-panel {
  background: #fff;
  border-radius: 10px;
  padding: 15px 37px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  border: 1px solid #e2e2e2;
}
.db-book-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.db-book-panel-header .header_title {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
}
.db-book-panel-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.db-book-search {
  position: relative;
}
.db-book-search input {
  width: 263px;
  height: 40px;
  border: 1px solid #d9d9d9;
  border-radius: 7px;
  padding: 0 12px 0 41px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #999;
  background: #fff;
}
.db-book-search img {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.db-book-viewall {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid #694910;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
}
.db-book-viewall span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #694910;
}
.db-book-viewall img {
  height: 14px;
}
/* Filters */
.db-book-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.db-book-filter {
  padding: 10px 20px;
  border: 1px solid #d9d9d9;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
}
.db-book-filter.active {
  background: #694910;
  color: #fff;
  border-color: #694910;
}
/* List */
.db-book-list {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}
.db-book-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #f0eadd;
}
.db-book-row:last-child {
  border-bottom: none;
}
.db-book-row-user {
  display: flex;
  align-items: center;
  gap: 18px;
}
.db-book-row-user img {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  object-fit: cover;
}
.db-book-row-info h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  margin-bottom: 2px;
}
.db-book-row-info p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #000000;
}
.db-book-status {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 74px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
}
.db-book-status--planning {
  background: #e8f1fa;
  color: #22487b;
}
.db-book-status--new-inquiry {
  background: #e5f5ef;
  color: #2a5649;
}
.db-book-status--confirmed {
  background: #f8eedc;
  color: #694910;
}
.db-book-status--in-discussion {
  background: #eeedfd;
  color: #692f1a;
}
/* ============================================
   Earnings Page
   ============================================ */
.db-main--earnings {
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
  grid-template-rows: none;
  grid-template-areas: none;
}
.db-earnings-subtitle {
  font-family: 'Inder', Helvetica, sans-serif;
  font-size: 16px;
  color: #694910;
  line-height: 19.9px;
}
.db-earnings-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px 30px 20px;
}
.db-earnings-row-top {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.db-earnings-summary {
  display: flex;
  gap: 20px;
}
.db-earnings-card {
  width: 258px;
  background: #f3ebe2;
  border-radius: 7px;
  padding: 22px 31px;
  position: relative;
}
.db-earnings-card h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  color: #000000;
  margin-bottom: 4px;
}
.db-earnings-value {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 28px;
  color: #000000;
  margin-bottom: 8px;
}
.db-earnings-sub {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
}
.db-earnings-sub--green {
  color: #45791e;
}
.db-earnings-withdraw {
  flex: 1;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 24px 29px;
  position: relative;
}
.db-earnings-withdraw h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  color: #000000;
  margin-bottom: 2px;
}
.db-earnings-withdraw-btn {
  position: absolute;
  top: 44px;
  right: 29px;
  width: 217px;
  height: 40px;
  border: 1px solid #d9d9d9;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
}
.db-earnings-withdraw-btn span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  white-space: nowrap;
}
.db-earnings-withdraw-btn img {
  width: 11px;
  height: 13px;
}
.db-earnings-row-bottom {
  display: flex;
  gap: 20px;
}
/* ---- Chart ---- */
.db-earnings-chart {
  width: 808px;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 0 31px 20px;
  flex-shrink: 0;
}
.db-earnings-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 42px 0 20px;
}
.db-earnings-chart-header h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  color: #000000;
}
.db-earnings-chart-legend {
  display: flex;
  align-items: center;
  gap: 17px;
}
.db-earnings-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
}
.db-earnings-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
}
.db-earnings-legend-dot--pending {
  background: rgba(27, 160, 118, 0.34);
}
.db-earnings-legend-dot--settled {
  background: #1ba076;
}
.db-earnings-legend-dot--travel {
  background: rgba(27, 160, 118, 0.34);
}
.db-earnings-legend-dot--product {
  background: rgba(27, 160, 118, 0.36);
}
.db-earnings-chart-body {
  position: relative;
  height: 290px;
}
#earningsChart {
  width: 100%;
  height: 290px;
}
.db-earnings-grid-lines {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 76px 0 70px;
}
.db-earnings-grid-lines .db-earnings-grid-line {
  display: block;
  width: 100%;
  height: 1px;
  background: #e2e2e2;
}
.db-earnings-bars {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 100%;
  padding: 76px 30px 0;
  z-index: 1;
}
.db-earnings-bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.db-earnings-bar {
  width: 55px;
  border-radius: 2px 2px 0 0;
}
.db-earnings-bar--travel {
  background: #1ba076;
}
.db-earnings-bar--travel-light {
  background: rgba(27, 160, 118, 0.58);
}
.db-earnings-bar--product {
  width: 54px;
  background: rgba(27, 160, 118, 0.24);
}
.db-earnings-bar-label {
  display: block;
  margin-top: 8px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  color: #a7987d;
}
/* ---- Transactions Table ---- */
.db-earnings-transactions {
  flex: 1;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.db-earnings-tx-header {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 108px 96px 104px;
  align-items: center;
  column-gap: 12px;
  padding: 14px 24px;
  background: #f3ebe2;
}
.db-earnings-tx-header span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.db-earnings-tx-list {
  flex: 1;
  overflow-y: auto;
}
.db-earnings-tx-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 108px 96px 104px;
  align-items: center;
  column-gap: 12px;
  padding: 13px 24px;
  border-bottom: 1px solid #f0eadd;
}
.db-earnings-tx-row > span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.db-earnings-tx-header span:nth-child(4),
.db-earnings-tx-row > span:nth-child(4) {
  text-align: left;
}
.db-earnings-tx-header span:nth-child(5),
.db-earnings-tx-row > span:nth-child(5) {
  justify-self: start;
}
.db-earnings-tx-source {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.db-earnings-tx-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.db-earnings-tx-dot--pending {
  background: rgba(27, 160, 118, 0.34);
}
.db-earnings-tx-dot--settled {
  background: #1ba076;
}
.db-earnings-tx-dot--travel {
  background: rgba(27, 160, 118, 0.34);
}
.db-earnings-tx-dot--product {
  background: #1ba076;
}
.db-earnings-tx-status {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 43px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.db-earnings-tx-status--settled {
  background: #eaf6e0;
  color: #6b8252;
}
.db-earnings-tx-status--pending {
  background: #faf5eb;
  color: #694910;
}
/* ===== Profile Page ===== */
.db-main--profile {
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
  grid-template-rows: none;
  grid-template-areas: none;
}
.db-main--profile .db-header {
  background: none;
}
.db-main--profile .db-header .title_head {
  font-size: 16px;
  color: #694910;
}
.db-pf-content {
  flex: 1;
  padding: 0 35px 30px 31px;
  overflow-y: auto;
}
.db-pf-content--flow {
  overflow: visible;
}
.db-pf-card {
  background: #fff;
  border-radius: 5px;
  padding: 25px 0 30px;
  min-height: 100%;
}
.db-pf-nav {
  display: flex;
  gap: 0;
  padding: 0 81px;
  border-bottom: 1px solid #e2e2e2;
}
.db-pf-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 0 18px;
  margin-right: 28px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #a7987d;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.db-pf-nav-link.active {
  color: #694910;
}
.db-pf-nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 5px;
  background: #694910;
}
/* ---- Tabs ---- */
.db-pf-tabs {
  display: flex;
  gap: 0;
  padding: 0 81px;
  position: relative;
}
.db-pf-tab {
  background: none;
  border: none;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #a7987d;
  cursor: pointer;
  padding: 0 0 18px;
  margin-right: 28px;
  white-space: nowrap;
}
.db-pf-tab.active {
  color: #694910;
}
.db-pf-tab-line {
  height: 1px;
  background: #e2e2e2;
  margin: 0 34px;
  position: relative;
  --db-pf-line-left: 48px;
  --db-pf-line-width: 132px;
}
.db-pf-tab-line::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: var(--db-pf-line-left);
  width: var(--db-pf-line-width);
  height: 5px;
  background: #694910;
  transition: left 0.2s ease, width 0.2s ease;
}
/* ---- Panels ---- */
.db-pf-panel {
  display: none;
  padding: 30px 81px;
}
.db-pf-panel.active {
  display: block;
}
.db-pf-panel--static {
  padding-top: 34px;
}
/* ---- Avatar Area (Tab 1) ---- */
.db-pf-avatar-area {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}
.db-pf-avatar {
  width: 116px;
  height: 116px;
  object-fit: cover;
}
.db-pf-avatar-edit {
  position: absolute;
  top: 23px;
  left: 136px;
  width: 16px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.db-pf-avatar-edit img {
  width: 16px;
  height: 16px;
}
.db-pf-avatar-edit.is-busy {
  opacity: 0.6;
  cursor: wait;
}
.db-pf-avatar-status {
  margin-top: 12px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  line-height: 1.4;
  color: #a7987d;
  min-height: 17px;
}
/* ---- Fields ---- */
.db-pf-form {
  max-width: 524px;
}
.db-pf-fields {
  display: flex;
  flex-direction: column;
}
.db-pf-field {
  margin-bottom: 20px;
}
.db-pf-field label {
  display: block;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #a7987d;
  margin-bottom: 4px;
}
.db-pf-input,
.db-pf-textarea,
.db-pf-readonly {
  width: 524px;
  max-width: 100%;
  border: 1px solid #a7987d;
  border-radius: 5px;
  background: #fff;
  box-sizing: border-box;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #694910;
}
.db-pf-input,
.db-pf-readonly {
  height: 40px;
  padding: 0 12px;
  line-height: 40px;
}
.db-pf-textarea {
  min-height: 110px;
  padding: 10px 12px;
  line-height: 1.6;
  resize: vertical;
}
.db-pf-textarea--summary {
  min-height: 140px;
}
.db-pf-input:focus,
.db-pf-textarea:focus {
  outline: none;
  border-color: #694910;
}
.db-pf-readonly {
  color: #a7987d;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.db-pf-hidden {
  display: none;
}
.db-pf-field-value {
  display: flex;
  align-items: center;
  gap: 8px;
}
.db-pf-field-value span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
}
.db-pf-field-edit {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.db-pf-field-edit img {
  width: 16px;
  height: 16px;
}
/* ---- Upload Boxes (Tab 2, 4) ---- */
.db-pf-upload-row {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.db-pf-upload-box {
  width: 106px;
  height: 106px;
  border: 1px dashed #a7987d;
  background: #fff;
  cursor: pointer;
  position: relative;
  padding: 0;
  overflow: hidden;
}
.db-pf-upload-box:hover {
  background: #fdfaf5;
}
.db-pf-upload-box.is-busy {
  cursor: wait;
  opacity: 0.8;
}
.db-pf-upload-box.has-image .db-pf-upload-h,
.db-pf-upload-box.has-image .db-pf-upload-v {
  display: none;
}
.db-pf-upload-box:focus {
  outline: none;
}
.db-pf-upload-box:focus,
.db-pf-upload-box:focus-visible {
  border-color: #694910;
  background: #fff;
}
.db-pf-upload-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.db-pf-upload-h {
  position: absolute;
  top: 52px;
  left: 33px;
  width: 39px;
  height: 1px;
}
.db-pf-upload-v {
  position: absolute;
  top: 34px;
  left: 52px;
  width: 1px;
  height: 39px;
}
.db-pf-upload-status {
  margin-top: 10px;
  min-height: 17px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  line-height: 1.4;
  color: #a7987d;
}
.db-pf-submit-wrap {
  margin-top: 14px;
}
.db-pf-panel--story-form {
  padding-top: 40px;
}
.db-pf-upload-row--story {
  margin-top: 0;
}
.db-pf-story-cover-box {
  width: 200px;
  height: 140px;
}
.db-pf-story-cover-box .db-pf-upload-h {
  top: 69px;
  left: 80px;
}
.db-pf-story-cover-box .db-pf-upload-v {
  top: 50px;
  left: 99px;
}
.db-pf-story-content {
  min-height: 240px;
}
.db-pf-submit-btn {
  min-width: 140px;
  height: 42px;
  padding: 0 28px;
  border: none;
  border-radius: 5px;
  background: #694910;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}
.db-pf-submit-btn:hover {
  background: #5a3f0e;
}
.db-pf-submit-btn.is-loading {
  opacity: 0.7;
  cursor: wait;
}
/* ---- Cases (Tab 3) ---- */
.db-pf-section-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  margin: 0 0 15px;
}
.db-pf-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
}
.db-pf-section-head .db-pf-section-title {
  margin-bottom: 0;
}
.db-pf-section-head--story-form {
  margin-bottom: 20px;
}
.db-pf-section-title--form {
  margin: 18px 0 20px;
}
.db-pf-story-back,
.db-pf-story-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 40px;
  padding: 0 20px;
  border: 1px solid #694910;
  border-radius: 5px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #694910;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}
.db-pf-story-back:hover,
.db-pf-story-action:hover {
  background: #694910;
  color: #fff;
}
.db-pf-story-pagination {
  margin-top: 6px;
}
.db-pf-cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
.db-pf-case {
  display: flex;
  gap: 0;
}
.db-pf-case-media,
.db-pf-case-body {
  color: inherit;
  text-decoration: none;
}
.db-pf-case:hover .db-pf-case-content {
  background: #e6d7c7;
}
.db-pf-case-media {
  display: block;
  flex-shrink: 0;
}
.db-pf-case-img {
  width: 236px;
  height: 258px;
  object-fit: cover;
  flex-shrink: 0;
}
.db-pf-case-content {
  width: 341px;
  height: 258px;
  background: #ede2d6;
  border-radius: 5px;
  padding: 20px 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.db-pf-case-body {
  display: block;
  flex: 1;
}
.db-pf-case-content h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  margin: 0 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.db-pf-case-date {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 13px;
  color: #a7987d;
  margin-bottom: 10px;
}
.db-pf-case-content p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #694910;
  line-height: 1.4;
  margin: 8px 0 0;
}
.db-pf-case-content p a {
  text-decoration: underline;
  color: #694910;
}
.db-pf-case-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.db-pf-case-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 34px;
  padding: 0 16px;
  border: 1px solid #694910;
  border-radius: 5px;
  background: transparent;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 13px;
  color: #694910;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.db-pf-case-btn:hover {
  background: #694910;
  color: #fff;
}
.db-pf-case-btn.is-loading {
  opacity: 0.7;
  cursor: wait;
}
.db-pf-case-btn--delete {
  background: #694910;
  color: #fff;
}
.db-pf-case-btn--delete:hover {
  background: #5a3f0e;
  border-color: #5a3f0e;
}
.db-pf-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.db-pf-tag {
  display: inline-block;
  height: 27px;
  line-height: 27px;
  background: #fdfaf5;
  border-radius: 56px;
  padding: 0 10px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #694910;
  text-align: center;
  white-space: nowrap;
}
/* ---- Clients Input (Tab 3) ---- */
.db-pf-clients-input {
  margin-top: 10px;
}
.db-pf-clients-input input {
  width: 524px;
  height: 40px;
  border: 1px solid #a7987d;
  border-radius: 5px;
  padding: 0 12px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #694910;
  box-sizing: border-box;
}
.db-pf-clients-input input:focus {
  outline: none;
  border-color: #694910;
}
.db-pf-empty {
  width: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2d6c8;
  border-radius: 5px;
  background: #f7f1ea;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #a7987d;
}
/* ---- Education Cols (Tab 4) ---- */
.db-pf-edu-cols {
  display: flex;
  gap: 0;
}
.db-pf-edu-col {
  flex: 1;
}
.db-pf-edu-col + .db-pf-edu-col {
  margin-left: 30px;
}
/* ============================================
   Shop / Overseas Shopping Page
   ============================================ */
.shop-header {
  background: #fdfaf5;
  position: sticky;
  top: 0;
  z-index: 100;
}
.shop-header-inner {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 188px;
}
.shop-logo {
  flex-shrink: 0;
}
.shop-logo img {
  height: 60px;
  width: 88px;
  object-fit: cover;
}
.shop-nav {
  display: flex;
  gap: 40px;
}
.shop-nav a {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  transition: color 0.2s;
  white-space: nowrap;
}
.shop-nav a:hover {
  color: #694910;
}
.shop-nav a.active {
  color: #694910;
}
.shop-header-actions {
  display: flex;
  gap: 12px;
}
/* ---- Hero ---- */
.shop-hero {
  position: relative;
  width: 100%;
  height: 449px;
  overflow: hidden;
}
.shop-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 300px;
}
.shop-hero-watermark {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 54px;
  color: #fdfaf5;
  letter-spacing: -1.08px;
  line-height: 51.8px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.shop-hero-watermark-sub {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 20px;
  color: #fdfaf5;
  line-height: 21.3px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.shop-hero-card {
  background: rgba(253, 250, 245, 0.95);
  border-radius: 0;
  padding: 68px 100px 0;
  text-align: center;
  position: absolute;
  z-index: 2;
}
.shop-hero-card h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 54px;
  color: #000000;
  letter-spacing: -1.08px;
  line-height: 51.8px;
  margin-bottom: 16px;
}
.shop-hero-card p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 20px;
  color: #666;
  line-height: 21.3px;
  margin-bottom: 60px;
}
/* ---- Filters ---- */
.shop-filters {
  background: #fdfaf5;
  padding: 30px 0;
  text-align: center;
}
.shop-filter-bar {
  display: inline-flex;
  align-items: center;
  background: #f4efe7;
  border-radius: 56px;
  padding: 0;
  height: 71px;
}
.shop-filter-field {
  position: relative;
  display: flex;
  align-items: center;
  width: auto;
  min-width: 220px;
  max-width: none;
  flex: 0 0 auto;
  height: 71px;
}
.shop-filter-field img {
  position: absolute;
  right: 24px;
  width: 12px;
  height: 7px;
  pointer-events: none;
}
.shop-filter-select {
  width: 100%;
  height: 71px;
  padding: 0 48px 0 24px;
  background: none;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  outline: none;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 22px;
  color: #000000;
  white-space: nowrap;
}
.shop-filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  height: 71px;
  background: none;
  border: none;
  cursor: pointer;
}
.shop-filter-btn span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 22px;
  color: #000000;
  white-space: nowrap;
}
.shop-filter-btn img {
  width: 12px;
  height: 7px;
}
.shop-filter-divider {
  width: 1px;
  height: 26px;
  background: #e7dfd3;
}
.shop-filter-search {
  height: 71px;
  padding: 0 40px;
  background: #694910;
  border: none;
  border-radius: 56px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}
.shop-filter-search:hover {
  background: #5a3f0e;
}
/* ---- Products Grid ---- */
.shop-products {
  background: #fdfaf5;
  padding: 20px 0 60px;
}
.shop-products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  max-height: 700px;
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.shop-products-grid.expanded {
  max-height: 5000px;
}
.shop-read-more {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(253, 250, 245, 0) 0%, rgba(253, 250, 245, 0.92) 55%, #fdfaf5 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 28px;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s;
}
.shop-read-more span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #694910;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.shop-products-grid.expanded .shop-read-more {
  opacity: 0;
  pointer-events: none;
}
.shop-products-empty {
  grid-column: 1 / -1;
  padding: 80px 24px 100px;
  text-align: center;
}
.shop-products-empty h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 28px;
  color: #000000;
  margin-bottom: 12px;
}
.shop-products-empty p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #a7987d;
  line-height: 1.7;
  margin: 0;
}
.shop-products-pagination {
  max-width: 1200px;
  margin: 36px auto 0;
}
/* Member-only modal */
.shop-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.shop-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
.shop-modal-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: 480px;
  max-width: calc(100% - 32px);
  background: #fdfaf5;
  border-radius: 16px;
  padding: 48px 36px 36px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  text-align: center;
}
.shop-modal-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.shop-modal-popup .shop-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: #a7987d;
  line-height: 1;
  padding: 0;
}
.shop-modal-popup .shop-modal-close:hover {
  color: #000000;
}
.shop-modal-popup h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 22px;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 20px;
}
.shop-modal-popup .shop-modal-box {
  background: #f3ebe2;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.shop-modal-popup .shop-modal-box p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #000000;
  line-height: 1.7;
  margin: 0;
}
.shop-modal-popup .shop-modal-btn {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #694910;
  border-radius: 8px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
  transition: background 0.3s;
}
.shop-modal-popup .shop-modal-btn:hover {
  background: #5a3f0e;
}
.shop-modal-popup .shop-modal-link {
  background: none;
  border: none;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  font-style: italic;
  color: #a7987d;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.shop-modal-popup .shop-modal-link:hover {
  color: #694910;
}
@media (max-width: 768px) {
  .shop-modal-popup {
    padding: 36px 24px 28px;
  }
  .shop-modal-popup h3 {
    font-size: 20px;
  }
}
.shop-card {
  display: flex;
  border: 1px solid #000000;
  border-radius: 0;
  overflow: hidden;
  background: #fdfaf5;
}
.shop-card-info {
  flex: 1;
  padding: 12px 24px 16px;
  display: flex;
  flex-direction: column;
}
.shop-card-info h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
  margin-bottom: 8px;
  line-height: 25.6px;
}
.shop-card-info > p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #000000;
  line-height: 17px;
  margin-bottom: 12px;
}
.shop-card-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.shop-card-tag {
  display: inline-block;
  padding: 2px 10px;
  border: 1px solid #000000;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 13px;
  color: #000000;
  white-space: nowrap;
}
.shop-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.shop-card-location img {
  width: 15px;
  height: 15px;
}
.shop-card-location span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 15px;
  color: #a7987d;
  white-space: nowrap;
}
.shop-card-advisor {
  margin-top: auto;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.shop-card-advisor img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.shop-card-advisor p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #a7987d;
  line-height: 14.9px;
  font-style: normal;
}
.shop-card-image-wrap {
  position: relative;
  width: 305px;
  flex-shrink: 0;
}
.shop-card-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
  color: inherit;
}
.shop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shop-card-image .share {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 33px;
  height: auto;
}
.shop-card-favorite {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 33px;
  height: 33px;
  padding: 0;
  background: transparent;
  border: none;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.shop-card-favorite img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.shop-card-favorite:hover {
  transform: scale(1.06);
}
.shop-card-favorite.is-saved img {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(18%) sepia(92%) saturate(6228%) hue-rotate(344deg) brightness(92%) contrast(106%);
}
.shop-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}
.shop-card-bottom {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.shop-card-price {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 36px;
  color: #fdfaf5;
}
.shop-card-cart {
  width: 31px;
  height: 32px;
  border: 1px solid #fff;
  border-radius: 16px;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-card-cart img {
  width: 20px;
  height: 20px;
}
/* ============================================
   Shop Detail Page
   ============================================ */
.sd-product {
  background: #fdfaf5;
}
.sd-product-inner {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  padding: 0 clamp(24px, calc((100vw - 1200px) / 2), 360px) 60px;
  position: relative;
}
/* ---- Back Button ---- */
.sd-back-btn {
  position: absolute;
  top: 8px;
  left: clamp(12px, calc((100vw - 1200px) / 2 - 75px), 285px);
  width: 57px;
  height: 57px;
  background: #f3ebe2;
  border: none;
  border-radius: 28.5px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.09);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sd-back-btn img {
  width: 41px;
  height: 38px;
}
/* ---- Images ---- */
.sd-images {
  width: 515px;
  flex-shrink: 0;
  padding-top: 27px;
}
.sd-main-image {
  width: 100%;
  height: 541px;
  overflow: hidden;
  position: relative;
}
.sd-main-image .swiper-wrapper,
.sd-main-image .swiper-slide {
  height: 100%;
}
.sd-main-image .sd-main-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sd-main-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: rgba(105, 73, 16, 0.96);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.sd-main-nav img {
  width: 20px;
  height: 20px;
  display: block;
}
.sd-main-nav:hover {
  background: #553c0d;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}
.sd-main-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
.sd-main-prev {
  left: 16px;
}
.sd-main-prev img {
  transform: rotate(180deg);
}
.sd-main-next {
  right: 16px;
}
.sd-thumb-row {
  margin-top: 11px;
  overflow: hidden;
  height: 100px;
}
.sd-thumb-row .swiper-wrapper {
  align-items: stretch;
}
.sd-thumb-slide {
  width: 100px !important;
  min-width: 100px;
  max-width: 100px;
  height: 100px;
  min-height: 100px;
  max-height: 100px;
  flex: 0 0 100px;
}
.sd-thumb {
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0.7;
  transition: opacity 0.3s ease, box-shadow 0.3s ease;
}
.sd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sd-thumb-slide.swiper-slide-thumb-active .sd-thumb {
  opacity: 1;
  box-shadow: inset 0 0 0 2px #694910;
}
/* ---- Info ---- */
.sd-info {
  flex: 1;
  padding-top: 27px;
  max-width: 539px;
}
.sd-info h1 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 54px;
  color: #000000;
  line-height: 57.5px;
  margin: 0 0 3px;
}
.sd-subtitle {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 20px;
  color: #000000;
  line-height: 21.3px;
  margin: 0 0 16px;
}
.sd-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.sd-tag {
  display: inline-block;
  height: 31px;
  line-height: 31px;
  padding: 0 12px;
  border: 1px solid #000000;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 13px;
  color: #000000;
  white-space: nowrap;
}
.sd-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.sd-location img {
  width: 20px;
  height: 20px;
}
.sd-location span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 15px;
  color: #a7987d;
  line-height: 16px;
}
/* ---- Quantity & Cart ---- */
.sd-qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.sd-qty-inner {
  display: flex;
  align-items: center;
  height: 31px;
  border: 1px solid #a7987d;
  margin-right: 20px;
}
.sd-qty-btn {
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.sd-qty-btn img {
  width: 24px;
  height: 24px;
}
.sd-qty-sep {
  width: 1px;
  height: 30px;
  background: #a7987d;
}
.sd-qty-num {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #a7987d;
  min-width: 30px;
  text-align: center;
}
.sd-cart-icon {
  width: 34px;
  height: 34px;
  border: 1px solid #a7987d;
  border-radius: 17px;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sd-cart-icon img {
  width: 23px;
  height: 23px;
}
/* ---- Action Buttons ---- */
.sd-action-row {
  display: flex;
  gap: 30px;
  margin-bottom: 36px;
}
.sd-notify-btn,
.sd-look-btn {
  display: flex;
  align-items: center;
  width: 211px;
  height: 46px;
  border-radius: 28px;
  cursor: pointer;
  position: relative;
  padding: 0;
}
.sd-notify-btn span,
.sd-look-btn span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 13px;
  width: calc(100% - 46px);
  text-align: center;
  transform: translateX(4px);
}
.sd-notify-btn {
  background: #fdfaf5;
  border: 1px solid #694910;
}
.sd-notify-btn span {
  color: #694910;
}
.sd-look-btn {
  background: #694910;
  border: 1px solid #694910;
}
.sd-look-btn span {
  color: #fdfaf5;
}
.sd-action-circle {
  width: 38px;
  height: 38px;
  border-radius: 19px;
  position: absolute;
  right: 4px;
  top: 3px;
}
.sd-action-circle--gold {
  background: #694910;
}
.sd-action-circle--light {
  background: #fdfaf5;
}
.sd-action-arrow {
  position: absolute;
  right: 14px;
  top: 13px;
  width: 18px;
  height: 18px;
}
/* ---- Sections ---- */
.sd-section-h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: 17px;
  margin: 0 0 16px;
}
.sd-section-h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  line-height: 14.9px;
  margin: 20px 0 8px;
}
/* ---- Reviews ---- */
.sd-review-stars {
  display: inline-flex;
  gap: 4px;
}
.sd-review-stars img {
  width: 18px;
  height: 18px;
}
.sd-review-stars .layui-icon {
  font-size: 18px;
  color: #ffb800;
  line-height: 18px;
}
.sd-review-count {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
  margin-left: 4px;
}
.sd-review-empty {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
  line-height: 14.9px;
  margin: 8px 0;
}
.sd-write-review {
  background: none;
  border: none;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  margin-bottom: 24px;
}
/* ---- Shipping & Returns ---- */
.sd-policy-text {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
  line-height: 14.9px;
  margin: 0 0 8px;
}
.sd-policy-text a {
  color: #a7987d;
  text-decoration: underline;
}
.sd-policy-detail {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
  line-height: 14.9px;
  margin: 0 0 8px;
}
/* ---- You May Also Like ---- */
.sd-related {
  background: #fdfaf5;
}
.sd-related-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 clamp(24px, calc((100vw - 1200px) / 2), 360px) 80px;
}
.sd-related-inner h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
  margin: 0;
}
.sd-related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.sd-related-navs {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sd-related-nav {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: rgba(105, 73, 16, 0.96);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.sd-related-nav img {
  width: 20px;
  height: 20px;
  display: block;
}
.sd-related-nav:hover {
  background: #553c0d;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}
.sd-related-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
.sd-related-prev img {
  transform: rotate(180deg);
}
.sd-related-swiper {
  overflow: hidden;
}
.sd-related-slide {
  height: auto;
}
.sd-related-card-wrap {
  position: relative;
  width: 100%;
}
.sd-related-card {
  width: 100%;
  display: block;
  cursor: pointer;
  position: relative;
}
.sd-related-card > img:first-child {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.sd-related-card .share {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 33px;
  height: auto;
}
.sd-related-info {
  padding: 8px 0;
}
.sd-related-info h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sd-related-price {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #694910;
}
/* ---- Review Dialog ---- */
html.sd-review-lock,
body.sd-review-lock {
  overflow: hidden;
}
.sd-review-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.39);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  overscroll-behavior: contain;
}
.sd-review-overlay.show {
  opacity: 1;
  visibility: visible;
}
.sd-review-dialog {
  position: absolute;
  top: 0;
  right: 0;
  width: 632px;
  height: 100vh;
  background: #fdfaf5;
  padding: 38px 44px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sd-review-dialog--write {
  overflow-y: auto;
}
.sd-review-close {
  background: none;
  border: none;
  cursor: pointer;
}
.sd-review-close img {
  width: 27px;
  height: 27px;
}
.sd-review-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.sd-review-close--back img {
  width: 41px;
  height: 38px;
  transform: rotate(180deg);
}
.sd-review-dialog-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
}
/* Review List */
.sd-review-list {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.sd-review-item {
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e2e2;
}
.sd-review-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.sd-review-item .sd-review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}
.sd-review-item .sd-review-stars img {
  width: 18px;
  height: 18px;
}
.sd-review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.sd-review-name {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
}
.sd-review-date {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #a7987d;
}
.sd-review-text {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #000000;
  line-height: 1.5;
  margin: 0;
}
.sd-review-item .sd-review-photos {
  margin-top: 12px;
  flex-wrap: wrap;
}
.sd-review-photo-link {
  display: block;
}
.sd-review-item .sd-review-photos img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  display: block;
}
.sd-review-load-status {
  min-height: 20px;
  padding-top: 14px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #a7987d;
  text-align: center;
  flex-shrink: 0;
}
.sd-review-list-bottom {
  padding-top: 20px;
  flex-shrink: 0;
  margin-top: auto;
}
.sd-review-write-btn {
  width: 100%;
  height: 46px;
  background: #694910;
  border: none;
  border-radius: 7px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}
.sd-review-write-btn:hover {
  background: #5a3f0e;
}
.sd-review-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.sd-review-rating-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #a7987d;
}
.sd-review-rating-stars {
  display: flex;
  gap: 4px;
}
.sd-review-rating-stars .layui-rate {
  padding: 0;
}
.sd-review-rating-stars .layui-rate li {
  margin-top: 0 !important;
}
.sd-review-rating-stars .layui-rate li i.layui-icon {
  font-size: 22px;
  margin-right: 6px;
  color: #ffb800;
}
.sd-dlg-star {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.sd-dlg-star img {
  width: 20px;
  height: 20px;
}
.sd-review-field {
  margin-bottom: 24px;
}
.sd-review-field label {
  display: block;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #a7987d;
  margin-bottom: 8px;
}
.sd-review-field input,
.sd-review-field textarea {
  width: 100%;
  border: 1px solid #e7dfd3;
  border-radius: 6px;
  padding: 10px 12px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #000000;
  box-sizing: border-box;
}
.sd-review-field input:focus,
.sd-review-field textarea:focus {
  outline: none;
  border-color: #694910;
}
.sd-review-field textarea {
  height: 120px;
  resize: vertical;
}
.sd-review-photos {
  display: flex;
  gap: 12px;
}
.sd-review-photo-inputs {
  display: none;
}
.sd-review-photo-add {
  width: 86px;
  height: 86px;
  border: 1px dashed #a7987d;
  background: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.sd-review-photo-add:hover {
  background: #fdfaf5;
}
.sd-review-photo-add.has-image {
  border-style: solid;
}
.sd-review-photo-add.has-image .sd-photo-add-h,
.sd-review-photo-add.has-image .sd-photo-add-v {
  display: none;
}
.sd-photo-add-h {
  position: absolute;
  top: 42px;
  left: 27px;
  width: 33px;
  height: 1px;
}
.sd-photo-add-v {
  position: absolute;
  top: 27px;
  left: 42px;
  width: 1px;
  height: 33px;
}
.sd-review-photo-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sd-review-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}
.sd-review-cancel,
.sd-review-submit {
  width: 154px;
  height: 40px;
  border-radius: 7px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.sd-review-cancel {
  background: #fff;
  border: 1px solid #e7dfd3;
  color: #000000;
}
.sd-review-cancel:hover {
  background: #f3ebe2;
}
.sd-review-submit {
  background: #694910;
  border: none;
  color: #fff;
}
.sd-review-submit:hover {
  background: #5a3f0e;
}
.sd-review-submit[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
/* ============================================
   Shop Cart / Checkout Page
   ============================================ */
.sc-page {
  max-width: 1920px;
  margin: 0 auto;
  background: #f3ebe2;
  min-height: 100vh;
}
.sc-layout {
  display: block;
  min-height: 100vh;
}
/* ---- Left: Cart Items ---- */
.sc-cart {
  width: 100%;
  background: #f3ebe2;
  padding: 75px 0 60px;
  position: relative;
  flex-shrink: 0;
}
.sc-cart-header,
.sc-cart-items,
.sc-cart-empty,
.sc-summary-panel,
.sc-recommend {
  width: 872px;
  max-width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
}
.sc-back-btn {
  position: absolute;
  top: 80px;
  left: max(24px, calc(50% - 436px - 90px));
  width: 57px;
  height: 57px;
  background: #fdfaf5;
  border: none;
  border-radius: 28.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1), 0px 6px 6px rgba(0, 0, 0, 0.09), 0px 14px 8px rgba(0, 0, 0, 0.05);
  padding: 0;
  z-index: 2;
}
.sc-back-btn img {
  width: 24px;
  height: 24px;
}
.sc-cart-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin-bottom: 40px;
}
.sc-select-all {
  width: 17px;
  height: 17px;
  border: none;
  background: #a7987d;
  border-radius: 8.5px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 12px;
}
.sc-select-all .sc-select-dot {
  width: 9px;
  height: 9px;
  background: #f3ebe2;
  border-radius: 4.5px;
  display: block;
}
.sc-select-all.active .sc-select-dot {
  background: #694910;
}
.sc-heading {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
  margin: 0;
}
.sc-count-badge {
  width: 21px;
  height: 21px;
  background: #fff;
  border-radius: 10.5px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 12px;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-delete-all {
  margin-left: auto;
  margin-right: 0;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #9b0800;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sc-delete-all img {
  width: 13px;
  height: 14px;
}
.sc-delete-all.is-disabled {
  opacity: 0.45;
  cursor: default;
}
.sc-cart-items {
  padding: 0;
}
.sc-cart-empty {
  padding: 10px 0 0;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #a7987d;
}
.sc-summary-panel {
  margin-top: 40px;
  padding: 0;
  display: block;
}
.sc-summary-panel-inner {
  width: 100%;
  max-width: none;
  background: #fdfaf5;
  border-radius: 8px;
  padding: 28px 32px 32px;
}
.sc-summary-divider {
  height: 1px;
  background: #a7987d;
  margin: 0;
}
.sc-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  position: relative;
}
.sc-item-select {
  width: 17px;
  height: 17px;
  border: none;
  background: #a7987d;
  border-radius: 8.5px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}
.sc-item-select .sc-select-dot {
  width: 9px;
  height: 9px;
  background: #f3ebe2;
  border-radius: 4.5px;
  display: block;
}
.sc-item-select.active .sc-select-dot {
  background: #694910;
}
.sc-item-image {
  width: 83px;
  height: 95px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.sc-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sc-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sc-item-info h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  margin: 0;
}
.sc-item-desc {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  margin: 0;
}
.sc-item-location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.sc-item-location img {
  width: 14px;
  height: 14px;
}
.sc-item-location span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #a7987d;
}
.sc-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.sc-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sc-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-item-remove img {
  width: 13px;
  height: 14px;
}
.sc-item-price {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  text-align: right;
}
.sc-qty {
  display: flex;
  align-items: center;
  border: 1px solid #a7987d;
  width: 74px;
  height: 22px;
}
.sc-qty button {
  width: 22px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.sc-qty button img {
  width: 14px;
  height: 14px;
}
.sc-qty-num {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #a7987d;
  min-width: 26px;
  text-align: center;
  line-height: 22px;
  border-left: 1px solid #a7987d;
  border-right: 1px solid #a7987d;
}
.sc-item-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #a7987d;
}
/* ---- Recommendations ---- */
.sc-recommend {
  margin-top: 40px;
  padding: 0;
}
.sc-recommend h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  margin: 0;
}
.sc-recommend-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.sc-recommend-navs {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sc-recommend-nav {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: rgba(105, 73, 16, 0.96);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.sc-recommend-nav img {
  width: 18px;
  height: 18px;
  display: block;
}
.sc-recommend-nav:hover {
  background: #553c0d;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}
.sc-recommend-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
.sc-recommend-prev img {
  transform: rotate(180deg);
}
.sc-recommend-swiper {
  overflow: hidden;
}
.sc-recommend-swiper .swiper-wrapper {
  align-items: stretch;
}
.sc-recommend-slide {
  height: auto;
  display: flex;
}
.sc-recommend-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  text-align: center;
  text-decoration: none;
}
.sc-recommend-item img {
  width: 100%;
  height: 124px;
  object-fit: cover;
  margin-bottom: 8px;
}
.sc-recommend-item p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #a7987d;
  width: 100%;
  height: 34px;
  margin: 0 0 6px;
  line-height: 1.4;
  overflow: hidden;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.sc-recommend-item span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  margin-top: auto;
}
.sc-order-summary {
  padding: 0 0 16px;
}
.sc-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
}
.sc-summary-row span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
}
.sc-order-total {
  padding: 16px 0 0;
}
.sc-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.sc-total-row span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
}
.sc-payment-method {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}
.sc-member-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
  background: #694910;
  border: none;
  border-radius: 5px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  margin-top: 24px;
}
.sc-member-checkout:hover {
  background: #5a3d0d;
}
.sc-member-checkout.is-disabled {
  opacity: 0.45;
  cursor: default;
}
/* ---- Cart Responsive ---- */
@media (max-width: 1000px) {
  .sc-back-btn {
    left: 24px;
  }
}
@media (max-width: 768px) {
  .sc-cart {
    padding: 36px 0 40px;
  }
  .sc-back-btn {
    position: static;
    margin: 0 0 24px 16px;
  }
  .sc-cart-header,
  .sc-cart-items,
  .sc-cart-empty,
  .sc-summary-panel,
  .sc-recommend {
    max-width: calc(100% - 32px);
  }
  .sc-cart-header {
    margin-bottom: 28px;
  }
  .sc-item {
    gap: 14px;
  }
  .sc-item-image {
    width: 72px;
    height: 82px;
  }
  .sc-heading {
    font-size: 22px;
  }
  .sc-item-right {
    gap: 10px;
  }
  .sc-recommend-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .sc-recommend-item p {
    height: 34px;
  }
  .sc-recommend-nav {
    width: 40px;
    height: 40px;
  }
  .sc-recommend-nav img {
    width: 16px;
    height: 16px;
  }
}
/* ============================================
   Membership Page
   ============================================ */
/* ---- Hero ---- */
.mem-hero {
  position: relative;
  background: #fdfaf5;
  overflow: hidden;
}
.mem-hero-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 100px 360px 80px;
  text-align: center;
  position: relative;
}
.mem-hero-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 164, 103, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.mem-hero-badge {
  display: inline-block;
  padding: 6px 24px;
  border: 1px solid #694910;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #694910;
  letter-spacing: 3px;
  margin-bottom: 24px;
}
.mem-hero-inner h1 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 54px;
  color: #000000;
  line-height: 1.05;
  margin-bottom: 20px;
  position: relative;
}
.mem-hero-inner > p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  color: #a7987d;
  line-height: 1.5;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.mem-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: #694910;
  border-radius: 28px;
  transition: background 0.3s;
}
.mem-hero-cta:hover {
  background: #5a3f0e;
}
.mem-hero-cta span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #fdfaf5;
  text-transform: uppercase;
}
.mem-hero-cta img {
  width: 10px;
  height: 14px;
}
/* ---- Benefits ---- */
.mem-benefits {
  max-width: 1920px;
  margin: 0 auto;
  padding: 60px 360px;
}
.mem-benefits h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 36px;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}
.mem-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mem-benefit-card {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
}
.mem-benefit-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}
.mem-benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mem-benefit-card h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  margin-bottom: 8px;
}
.mem-benefit-card p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
  line-height: 1.5;
}
/* ---- Plans & Pricing ---- */
.mem-plans {
  background: #f3ebe2;
  padding: 60px 0;
}
.mem-plans h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 36px;
  color: #000000;
  text-align: center;
  margin-bottom: 8px;
}
.mem-plans-sub {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #a7987d;
  text-align: center;
  margin-bottom: 32px;
}
.mem-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}
.mem-plan {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  cursor: pointer;
  border: 1px solid #e7dfd3;
  background: #fff;
  transition: all 0.2s;
}
.mem-plan:first-child {
  border-radius: 28px 0 0 28px;
}
.mem-plan:last-child {
  border-radius: 0 28px 28px 0;
  border-left: none;
}
.mem-plan.active {
  background: #694910;
  border-color: #694910;
}
.mem-plan.active span {
  color: #fdfaf5;
}
.mem-plan.active .mem-toggle-save {
  background: rgba(255, 255, 255, 0.3);
  color: #fdfaf5;
}
.mem-plan span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
}
.mem-toggle-save {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  background: rgba(105, 73, 16, 0.15);
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 12px !important;
  color: #694910 !important;
}
.mem-plan-grid {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  justify-content: center;
  padding: 0 360px;
}
.mem-plan-card {
  width: 320px;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.mem-plan-card--featured {
  border-color: #694910;
  border-width: 2px;
  box-shadow: 0 4px 24px rgba(193, 164, 103, 0.15);
}
.mem-plan-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 20px;
  background: #694910;
  border-radius: 14px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 12px;
  color: #fdfaf5;
  letter-spacing: 1px;
  white-space: nowrap;
}
.mem-plan-badge {
  display: inline-block;
  padding: 4px 18px;
  border-radius: 4px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.mem-plan-badge--silver {
  background: #e8e8e8;
  color: #666;
}
.mem-plan-badge--gold {
  background: rgba(105, 73, 16, 0.15);
  color: #694910;
}
.mem-plan-badge--diamond {
  background: #eeedfd;
  color: #4a3aab;
}
.mem-plan-price {
  margin-bottom: 8px;
}
.mem-price-amount {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 40px;
  color: #000000;
}
.mem-price-period {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #a7987d;
}
.mem-save {
  display: inline-block;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #6b8252;
  margin-bottom: 20px;
}
.mem-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
  flex: 1;
}
.mem-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.mem-feature:last-child {
  border-bottom: none;
}
.mem-feature img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.mem-feature span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #000000;
}
.mem-feature.excluded {
  opacity: 0.4;
}
.mem-feature.excluded span {
  text-decoration: line-through;
}
.mem-plan-btn {
  width: 100%;
  height: 48px;
  border: 2px solid #000000;
  border-radius: 24px;
  background: transparent;
  cursor: pointer;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  text-transform: uppercase;
  transition: all 0.3s;
}
.mem-plan-btn:hover {
  background: #000000;
  color: #fdfaf5;
}
.mem-plan-btn--gold {
  background: #694910;
  border-color: #694910;
  color: #fdfaf5;
}
.mem-plan-btn--gold:hover {
  background: #5a3f0e;
  border-color: #5a3f0e;
  color: #fdfaf5;
}
/* ---- Compare Table ---- */
.mem-compare {
  max-width: 1920px;
  margin: 0 auto;
  padding: 60px 360px;
}
.mem-compare h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 36px;
  color: #000000;
  text-align: center;
  margin-bottom: 32px;
}
.mem-compare-table {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  overflow: hidden;
}
.mem-compare-table table {
  width: 100%;
  border-collapse: collapse;
}
.mem-compare-table thead {
  background: #f3ebe2;
}
.mem-compare-table th {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  padding: 16px 24px;
  text-align: center;
}
.mem-compare-table th:first-child {
  text-align: left;
}
.mem-compare-table th.mem-col-featured {
  color: #694910;
}
.mem-compare-table td {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #000000;
  padding: 14px 24px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}
.mem-compare-table td:first-child {
  text-align: left;
  font-weight: 700;
}
.mem-compare-table td img {
  width: 18px;
  height: 18px;
}
.mem-compare-table tbody tr:hover {
  background: rgba(105, 73, 16, 0.03);
}
/* ---- FAQ ---- */
.mem-faq {
  max-width: 1920px;
  margin: 0 auto;
  padding: 60px 360px 80px;
}
.mem-faq h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 36px;
  color: #000000;
  text-align: center;
  margin-bottom: 32px;
}
.mem-faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.mem-faq-item {
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  margin-bottom: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s;
}
.mem-faq-item:hover {
  border-color: #694910;
}
.mem-faq-item.open {
  border-color: #694910;
}
.mem-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}
.mem-faq-q span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
}
.mem-faq-q img {
  width: 10px;
  height: 14px;
  transition: transform 0.2s;
}
.mem-faq-item.open .mem-faq-q img {
  transform: rotate(180deg);
}
.mem-faq-answer {
  display: none;
  padding: 0 24px 18px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #a7987d;
  line-height: 1.6;
}
/* ============================================
   Membership Checkout Page
   ============================================ */
.mc-page {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 360px 60px;
  background: #fdfaf5;
}
.mc-layout {
  display: flex;
  gap: 40px;
}
/* ---- Left: Form ---- */
.mc-form-section {
  flex: 1;
}
.mc-breadcrumb {
  padding: 20px 0;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
}
.mc-breadcrumb a {
  color: #a7987d;
  transition: color 0.2s;
}
.mc-breadcrumb a:hover {
  color: #694910;
}
.mc-breadcrumb-sep {
  margin: 0 8px;
}
.mc-breadcrumb-current {
  color: #000000;
  font-weight: 700;
}
.mc-heading {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 36px;
  color: #000000;
  margin-bottom: 24px;
}
/* Plan Summary Bar */
.mc-plan-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: rgba(105, 73, 16, 0.08);
  border: 1px solid rgba(105, 73, 16, 0.25);
  border-radius: 10px;
  margin-bottom: 32px;
}
.mc-plan-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mc-plan-info h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  margin-bottom: 2px;
}
.mc-plan-info p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #a7987d;
}
.mc-plan-price .mc-price-val {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 28px;
  color: #000000;
}
.mc-plan-price .mc-price-period {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
}
/* Sections */
.mc-section {
  margin-bottom: 28px;
}
.mc-section h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e7dfd3;
}
/* Fields */
.mc-field-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.mc-field-row {
  display: flex;
  gap: 14px;
  width: 100%;
}
.mc-field {
  flex: 1;
}
.mc-field label {
  display: block;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #a7987d;
  margin-bottom: 6px;
}
.mc-field input {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #e7dfd3;
  border-radius: 6px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #000000;
  background: #fff;
  transition: border-color 0.2s;
}
.mc-field input:focus {
  outline: none;
  border-color: #694910;
}
.mc-field input.error {
  border-color: #c44;
}
.mc-field input::placeholder {
  color: #bbb;
}
.mc-field--full {
  width: 100%;
}
/* Payment Methods */
.mc-methods {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.mc-method {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid #e7dfd3;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
}
.mc-method.active {
  border-color: #694910;
  background: rgba(105, 73, 16, 0.05);
}
.mc-method span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
}
.mc-method-radio {
  width: 18px;
  height: 18px;
  border: 2px solid #e7dfd3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mc-method-radio .mc-method-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.2s;
}
.mc-method.active .mc-method-radio {
  border-color: #694910;
}
.mc-method.active .mc-method-radio .mc-method-dot {
  background: #694910;
}
.mc-method-icon {
  width: 32px;
  height: 20px;
  object-fit: contain;
}
.mc-card-form .mc-field-grid {
  flex-direction: column;
  gap: 14px;
}
/* ---- Right: Sidebar ---- */
.mc-sidebar {
  width: 420px;
  flex-shrink: 0;
}
.mc-summary-card {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 28px 26px;
  position: sticky;
  top: 100px;
}
.mc-summary-card h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 22px;
  color: #000000;
  margin-bottom: 20px;
}
.mc-summary-plan {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #f3ebe2;
  border-radius: 8px;
  margin-bottom: 20px;
}
.mc-summary-plan h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  margin-bottom: 2px;
}
.mc-summary-plan p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #a7987d;
}
.mc-summary-plan-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.mc-summary-plan-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Rows */
.mc-rows {
  margin-bottom: 16px;
}
.mc-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e7dfd3;
}
.mc-row span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #000000;
}
.mc-row.mc-row-total {
  border-bottom: none;
  border-top: 2px solid #000000;
  padding-top: 14px;
  margin-top: 4px;
}
.mc-row.mc-row-total span {
  font-weight: 700;
  font-size: 17px;
}
.mc-row.mc-row-discount span:last-child {
  color: #6b8252;
}
.mc-renews {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #a7987d;
}
.mc-renews img {
  width: 14px;
  height: 14px;
}
/* Promo */
.mc-promo {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.mc-promo input {
  flex: 1;
  height: 38px;
  border: 1px solid #e7dfd3;
  border-radius: 6px;
  padding: 0 12px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #000000;
  background: #fff;
}
.mc-promo input::placeholder {
  color: #bbb;
}
.mc-promo-btn {
  height: 38px;
  padding: 0 16px;
  background: #f3ebe2;
  border: 1px solid #e7dfd3;
  border-radius: 6px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 13px;
  color: #000000;
  cursor: pointer;
}
.mc-promo-btn:hover {
  background: #ecdfd0;
}
.mc-promo-applied {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #6b8252;
}
.mc-promo-applied img {
  width: 12px;
  height: 12px;
}
/* Benefits List */
.mc-benefits-list {
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid #e7dfd3;
}
.mc-benefits-list h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  margin-bottom: 12px;
}
.mc-benefits-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mc-benefits-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}
.mc-benefits-list li img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.mc-benefits-list li span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #a7987d;
}
/* Submit */
.mc-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  background: #694910;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.mc-submit:hover {
  background: #5a3f0e;
}
.mc-submit span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #fdfaf5;
  text-transform: uppercase;
}
.mc-submit img {
  width: 10px;
  height: 14px;
}
.mc-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #a7987d;
}
.mc-secure img {
  width: 12px;
  height: 12px;
}
.mc-terms {
  text-align: center;
  margin-top: 10px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 11px;
  color: #a7987d;
}
.mc-terms a {
  color: #694910;
  transition: opacity 0.2s;
}
.mc-terms a:hover {
  opacity: 0.7;
}
/* ============================================
   Membership Payment Page
   ============================================ */
.mp-page {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 360px 60px;
  background: #fdfaf5;
}
.mp-layout {
  display: flex;
  gap: 40px;
}
.mp-form-section {
  flex: 1;
}
.mp-breadcrumb {
  padding: 20px 0;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
}
.mp-breadcrumb a {
  color: #a7987d;
}
.mp-breadcrumb a:hover {
  color: #694910;
}
.mp-breadcrumb-sep {
  margin: 0 8px;
}
.mp-breadcrumb-current {
  color: #000000;
  font-weight: 700;
}
.mp-heading {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 36px;
  color: #000000;
  margin-bottom: 8px;
}
.mp-subtitle {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #a7987d;
  margin-bottom: 28px;
}
/* Order Detail */
.mp-order-detail {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
}
.mp-order-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.mp-order-row:last-child {
  border-bottom: none;
}
.mp-order-row span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #000000;
}
.mp-order-row span:first-child {
  color: #a7987d;
}
.mp-card-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mp-card-info img {
  width: 28px;
  height: 18px;
  object-fit: contain;
}
/* Price Box */
.mp-price-box {
  background: rgba(105, 73, 16, 0.06);
  border: 1px solid rgba(105, 73, 16, 0.2);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 20px;
}
.mp-price-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}
.mp-price-row span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #000000;
}
.mp-price-row.mp-price-total {
  border-top: 2px solid #000000;
  padding-top: 12px;
  margin-top: 4px;
}
.mp-price-row.mp-price-total span {
  font-weight: 700;
  font-size: 18px;
}
/* Terms Checkbox */
.mp-terms-check {
  margin-bottom: 20px;
}
.mp-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
  line-height: 1.5;
}
.mp-checkbox input {
  display: none;
}
.mp-checkbox a {
  color: #694910;
}
.mp-checkbox a:hover {
  opacity: 0.7;
}
.mp-checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e7dfd3;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  transition: all 0.2s;
}
.mp-checkbox input:checked + .mp-checkmark {
  background: #694910;
  border-color: #694910;
}
.mp-checkbox input:checked + .mp-checkmark::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
/* Confirm Button */
.mp-confirm-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 54px;
  background: #694910;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.mp-confirm-btn:hover {
  background: #5a3f0e;
}
.mp-confirm-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}
.mp-confirm-btn span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #fdfaf5;
  text-transform: uppercase;
}
.mp-confirm-btn img {
  width: 10px;
  height: 14px;
}
.mp-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #a7987d;
}
.mp-secure img {
  width: 12px;
  height: 12px;
}
/* ---- Success State ---- */
.mp-success {
  text-align: center;
  padding: 48px 0 32px;
}
.mp-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eaf6e0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.mp-success-icon img {
  width: 32px;
  height: 32px;
}
.mp-success h1 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 32px;
  color: #000000;
  margin-bottom: 8px;
}
.mp-success p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  color: #a7987d;
}
.mp-success-detail {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
}
.mp-success-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.mp-success-row:last-child {
  border-bottom: none;
}
.mp-success-row span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #000000;
}
.mp-success-row span:first-child {
  color: #a7987d;
}
.mp-success-benefits {
  background: rgba(105, 73, 16, 0.06);
  border: 1px solid rgba(105, 73, 16, 0.2);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
}
.mp-success-benefits h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  margin-bottom: 12px;
}
.mp-success-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mp-success-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}
.mp-success-benefits li img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.mp-success-benefits li span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
}
.mp-success-actions {
  display: flex;
  gap: 12px;
}
.mp-dashboard-btn {
  flex: 1;
  height: 48px;
  background: #694910;
  border: none;
  border-radius: 8px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #fdfaf5;
  cursor: pointer;
  transition: background 0.3s;
}
.mp-dashboard-btn:hover {
  background: #5a3f0e;
}
.mp-back-btn {
  flex: 1;
  height: 48px;
  background: transparent;
  border: 2px solid #000000;
  border-radius: 8px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s;
}
.mp-back-btn:hover {
  background: #000000;
  color: #fdfaf5;
}
/* ---- Right: Sidebar ---- */
.mp-sidebar {
  width: 420px;
  flex-shrink: 0;
}
.mp-summary-card {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 28px 26px;
  position: sticky;
  top: 100px;
}
.mp-summary-card h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 22px;
  color: #000000;
  margin-bottom: 20px;
}
.mp-summary-plan {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #f3ebe2;
  border-radius: 8px;
  margin-bottom: 20px;
}
.mp-summary-plan h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  margin-bottom: 2px;
}
.mp-summary-plan p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #a7987d;
}
.mp-summary-plan-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.mp-summary-plan-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mp-rows {
  margin-bottom: 16px;
}
.mp-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e7dfd3;
}
.mp-row span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #000000;
}
.mp-row.mp-row-total {
  border-bottom: none;
  border-top: 2px solid #000000;
  padding-top: 14px;
  margin-top: 4px;
}
.mp-row.mp-row-total span {
  font-weight: 700;
  font-size: 17px;
}
.mp-renews {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #a7987d;
}
.mp-renews img {
  width: 14px;
  height: 14px;
}
.mp-benefits-list {
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid #e7dfd3;
}
.mp-benefits-list h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  margin-bottom: 12px;
}
.mp-benefits-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mp-benefits-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}
.mp-benefits-list li img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.mp-benefits-list li span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #a7987d;
}
.mp-security {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  background: #f3ebe2;
  border-radius: 8px;
}
.mp-security > img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.mp-security h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  margin-bottom: 4px;
}
.mp-security p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #a7987d;
  line-height: 1.4;
}
/* Payment Responsive */
@media (max-width: 1000px) {
  .mp-page {
    padding: 0 24px 40px;
  }
}
@media (max-width: 768px) {
  .mp-layout {
    flex-direction: column;
  }
  .mp-sidebar {
    width: 100%;
  }
  .mp-success-actions {
    flex-direction: column;
  }
}
/* ---- Checkout Responsive ---- */
@media (max-width: 1000px) {
  .mc-page {
    padding: 0 24px 40px;
  }
}
@media (max-width: 768px) {
  .mc-layout {
    flex-direction: column;
  }
  .mc-sidebar {
    width: 100%;
  }
  .mc-plan-summary {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .mc-heading {
    font-size: 24px;
  }
  .mc-methods {
    flex-direction: column;
  }
}
/* ---- Membership Responsive ---- */
@media (max-width: 1000px) {
  .mem-hero-inner,
  .mem-benefits,
  .mem-plan-grid,
  .mem-compare,
  .mem-faq {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 768px) {
  .mem-benefits-grid {
    grid-template-columns: 1fr;
  }
  .mem-plan-grid {
    flex-direction: column;
    align-items: center;
  }
  .mem-plan-card {
    width: 100%;
    max-width: 360px;
  }
  .mem-hero-inner h1 {
    font-size: 32px;
  }
  .mem-compare-table {
    overflow-x: auto;
  }
}
/* ============================================
   Membership Page
   ============================================ */
@media (max-width: 1200px) {
  .sd-product-inner {
    padding: 0 24px 40px;
    gap: 24px;
  }
  .sd-back-btn {
    left: 36px;
    top: 16px;
    z-index: 10;
  }
  .sd-images {
    width: 44%;
    min-width: 380px;
  }
  .sd-main-image {
    height: auto;
    aspect-ratio: 515 / 541;
  }
  .sd-info h1 {
    font-size: 36px;
    line-height: 1.15;
  }
  .sd-action-row {
    gap: 12px;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .sd-product-inner {
    flex-direction: column;
  }
  .sd-images {
    width: 100%;
    min-width: 0;
  }
  .sd-main-image {
    height: 350px;
    aspect-ratio: auto;
  }
  .sd-info {
    max-width: 100%;
    padding-top: 0;
  }
  .sd-info h1 {
    font-size: 28px;
  }
  .sd-related-inner {
    padding: 0 24px 56px;
  }
  .sd-related-head {
    gap: 16px;
  }
  .sd-related-nav {
    width: 46px;
    height: 46px;
  }
}
/* Scale the shop page proportionally on narrow desktop widths
   (design base 1920px) */
@media (min-width: 993px) and (max-width: 1920px) {
  .shop-hero {
    height: 23.3854vw;
  }
  .shop-hero-content {
    padding: 0 15.625vw;
  }
  .shop-hero-watermark {
    font-size: 2.8125vw;
    line-height: 2.6979vw;
    margin-bottom: 0.8333vw;
  }
  .shop-hero-watermark-sub {
    font-size: 1.0417vw;
    margin-bottom: 2.0833vw;
  }
  .shop-hero-card {
    padding: 3.5417vw 5.2083vw 0;
  }
  .shop-hero-card h2 {
    font-size: 2.8125vw;
    line-height: 2.6979vw;
    margin-bottom: 0.8333vw;
  }
  .shop-hero-card p {
    font-size: 1.0417vw;
    margin-bottom: 3.125vw;
  }
  .shop-filter-bar {
    height: 3.6979vw;
  }
  .shop-filter-field {
    width: auto;
    min-width: 11.4583vw;
    max-width: none;
    flex: 0 0 auto;
    height: 3.6979vw;
  }
  .shop-filter-field img {
    right: 1.25vw;
  }
  .shop-filter-select {
    height: 3.6979vw;
    padding: 0 2.5vw 0 1.25vw;
    font-size: 1.1458vw;
  }
  .shop-filter-btn {
    padding: 0 1.25vw;
    height: 3.6979vw;
  }
  .shop-filter-btn span {
    font-size: 1.1458vw;
  }
  .shop-filter-search {
    height: 3.6979vw;
    padding: 0 2.0833vw;
    font-size: 1.1458vw;
  }
}
/* ---- Shop Responsive ---- */
@media (max-width: 1000px) {
  .shop-products-grid {
    max-width: 1100px;
  }
  .shop-card-image-wrap {
    width: 240px;
  }
}
@media (max-width: 768px) {
  .shop-products-grid {
    grid-template-columns: 1fr;
    max-width: 590px;
  }
  .shop-products-pagination {
    margin-top: 28px;
    padding: 0 20px;
  }
  .shop-hero {
    height: 300px;
  }
  .shop-hero-watermark {
    font-size: 32px;
  }
  .shop-hero-card h2 {
    font-size: 32px;
  }
  .shop-filter-bar {
    flex-wrap: wrap;
    height: auto;
    padding: 12px;
    border-radius: 20px;
  }
  .shop-filter-field {
    min-width: 200px;
  }
}
/* ===== Dashboard Responsive ===== */
@media (min-width: 1001px) and (max-width: 1650px) {
  .db-earnings-summary {
    flex: 1 1 auto;
    min-width: 0;
  }
  .db-earnings-card {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .db-earnings-value {
    font-size: 24px;
  }
  .db-earnings-withdraw {
    flex: 0 1 320px;
    min-width: 280px;
  }
  .db-earnings-withdraw-btn {
    position: static;
    margin-top: 12px;
  }
  .db-earnings-row-bottom {
    flex-direction: column;
  }
  .db-earnings-chart {
    width: 100%;
    flex-shrink: 1;
  }
}
@media (max-width: 1000px) {
  .db-main {
    grid-template-columns: 280px 1px 1fr;
  }
  .db-earnings-row-top,
  .db-earnings-row-bottom {
    flex-direction: column;
  }
  .db-earnings-summary {
    flex-wrap: wrap;
  }
  .db-earnings-card {
    width: auto;
    flex: 1 1 200px;
  }
  .db-earnings-chart {
    width: 100%;
    flex-shrink: 1;
  }
}
@media (max-width: 1024px) {
  .db-sidebar {
    width: 200px;
  }
  .db-main {
    grid-template-columns: 220px 1px 1fr;
  }
}
@media (max-width: 768px) {
  .db-page {
    flex-direction: column;
  }
  .db-sidebar {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    padding: 16px 0;
  }
  .db-main {
    grid-template-columns: 1fr;
    grid-template-areas: "header" "title" "chat";
  }
  .db-message-list,
  .db-divider {
    display: none;
  }
  .db-earnings-content {
    padding: 16px;
  }
  .db-earnings-withdraw-btn {
    position: static;
    width: 100%;
    margin-top: 12px;
    justify-content: center;
  }
  .db-earnings-chart {
    padding: 0 16px 16px;
  }
  .db-earnings-chart-header {
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 0 12px;
  }
  .db-earnings-transactions {
    overflow-x: auto;
  }
  .db-earnings-tx-header,
  .db-earnings-tx-list {
    min-width: 480px;
  }
}
/* ============================================
   Room Detail Page
   ============================================ */
.room-detail-page {
  background: #f3ebe2;
}
.rd-gold {
  color: #694910;
}
.rd-back-panel {
  max-width: 1551px;
  margin: 50px auto;
  position: relative;
  z-index: 2;
}
/* Back Button */
.rd-back-btn {
  width: 57px;
  height: 57px;
  z-index: 20;
  border: none;
  background: none;
  cursor: pointer;
}
.rd-back-circle {
  width: 57px;
  height: 57px;
  background: rgba(253, 250, 245, 0.64);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  backdrop-filter: blur(3.9px);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  position: relative;
}
.rd-back-arrow {
  position: absolute;
  width: 41px;
  height: 38px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Hero */
.rd-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 838px;
  overflow: hidden;
}
.rd-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rd-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(209, 145, 49, 0.22);
  backdrop-filter: blur(13.95px);
}
/* Search Panel */
.rd-search-panel {
  position: relative;
  z-index: 5;
  max-width: 1551px;
  margin: 40px auto 0;
  background: #fff;
  border-radius: 5px;
  padding: 35px 0;
}
.rd-search-content {
  padding: 0 50px;
}
.rd-search-row {
  padding: 14px 0;
  border-bottom: 1px solid #a7987d;
}
.rd-search-row:last-child {
  border-bottom: none;
}
.rd-search-dates-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rd-hotel-name {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: 24px;
}
.rd-search-dates {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: 24px;
}
.rd-search-night {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.rd-search-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.rd-night-badge {
  width: 54px;
  height: 24px;
}
.rd-night-text {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #694910;
  text-align: center;
  line-height: 21px;
}
.rd-dropdown-arrow {
  width: 19px;
  height: 14px;
  margin-left: 10px;
}
.rd-check-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 43px;
  background: #694910;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 21px;
}
/* Room Section */
.rd-room-section {
  position: relative;
  z-index: 5;
  max-width: 1551px;
  margin: 30px auto 0;
  background: #fff;
  border-radius: 5px;
  padding: 35px 0 40px;
}
.rd-hotel-info {
  padding: 0 50px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.rd-hotel-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 24px;
  color: #0f0f0f;
  line-height: 36px;
  margin-right: 15px;
}
.rd-stars {
  display: flex;
  gap: 4px;
}
.rd-stars img {
  width: 20px;
  height: 23px;
}
.rd-rating-score {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  color: #0f0f0f;
  line-height: 30px;
  margin-left: 10px;
}
.rd-rating-badge {
  background: #694910;
  border-radius: 19px 0 19px 19px;
  padding: 3px 10px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
  line-height: 24px;
}
.rd-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 50px;
}
.rd-rating-reviews {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  line-height: 30px;
}
.rd-rating-reviews strong {
  color: #694910;
}
.rd-rating-quote {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 16px;
  color: #694910;
  white-space: nowrap;
  line-height: 24px;
}
/* Location Info */
.rd-location-info {
  padding: 5px 50px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rd-location-icon {
  width: 19px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}
.rd-location-address {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: 24px;
}
.rd-link {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 16px;
  color: #694910;
  text-decoration: underline;
  white-space: nowrap;
  line-height: 24px;
}
.rd-link:hover {
  opacity: 0.8;
}
.rd-section-pad {
  padding: 0 50px;
}
.rd-divider {
  height: 1px;
  display: block;
  margin: 10px 0;
}
.rd-rank,
.rd-location-happy,
.rd-highlight-tag {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 24px;
}
.rd-sub-heading {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 24px;
  color: #0f0f0f;
  margin: 10px 0;
  line-height: 36px;
}
/* Location list */
.rd-location-list {
  padding: 0;
}
.rd-location-row {
  display: flex;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 24px;
  padding: 3px 0;
}
.rd-location-row > span:first-child {
  width: 295px;
}
.rd-distance {
  width: 80px;
}
/* Amenity list */
.rd-amenity-list {
  padding: 0;
}
.rd-amenity-row {
  display: flex;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 24px;
  padding: 3px 0;
}
.rd-amenity-left {
  width: 295px;
}
.rd-amenity-free {
  width: 80px;
}
.rd-amenity-mid {
  margin-left: auto;
}
/* Filter Tags */
.rd-filter-tags {
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.rd-filter-tag {
  position: relative;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #a7987d;
  border-radius: 5px;
  background: transparent;
  padding: 0 12px;
}
.rd-filter-tag .rd-filter-img {
  display: none;
}
.rd-filter-tag span {
  position: relative;
  z-index: 1;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #694910;
  text-align: center;
  line-height: 21px;
  white-space: nowrap;
}
.rd-filter-tag.active {
  background: #694910;
  border-color: #694910;
}
.rd-filter-tag.active span {
  color: #fff;
}
.rd-filter-tag-icon .rd-filter-icon {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  margin-right: 4px;
}
/* Room Cards */
.rd-room-card {
  margin: 15px 0;
  border: 1px solid #a7987d;
  border-radius: 5px;
  padding: 20px;
}
.rd-room-images-wrap {
  position: relative;
  margin-bottom: 15px;
}
.rd-room-images {
  display: flex;
  gap: 10px;
  overflow: hidden;
}
.rd-room-images img {
  width: 263px;
  height: 136px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 3px;
}
.rd-room-images.expanded {
  flex-wrap: wrap;
  overflow: visible;
}
.rd-room-more {
  position: absolute;
  right: 0;
  top: 0;
  width: 93px;
  height: 136px;
  background: #f6f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  cursor: pointer;
}
.rd-room-more span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 15px;
  color: #000000;
  line-height: 22px;
}
.rd-room-images-wrap.expanded .rd-room-more {
  display: none;
}
.rd-room-body {
  position: relative;
}
.rd-room-left {
  flex: 1;
  padding-right: 282px;
}
.rd-room-right {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 262px;
}
.rd-room-header {
  margin-bottom: 10px;
}
.rd-room-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #0f0f0f;
  margin-bottom: 5px;
  line-height: 27px;
}
.rd-room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.rd-room-features span {
  display: flex;
  align-items: center;
  margin-right: 12px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: #694910;
  line-height: 22px;
  white-space: nowrap;
}
.rd-room-features img {
  margin-right: 4px;
}
/* Rate badge */
.rd-rate-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 10px 0;
}
.rd-rate-badge-img {
  width: 324px;
  height: 35px;
}
.rd-rate-badge span {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #694910;
  white-space: nowrap;
  line-height: 21px;
}
/* Room details */
.rd-room-details {
  margin: 10px 0;
  line-height: 22.5px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
}
.rd-room-details > div {
  display: flex;
  align-items: center;
}
.rd-room-details img {
  margin-right: 6px;
}
.rd-detail-green,
.rd-detail-normal,
.rd-detail-red {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.rd-detail-green img,
.rd-detail-normal img,
.rd-detail-red img,
.rd-detail-green .rd-detail-icon-placeholder,
.rd-detail-normal .rd-detail-icon-placeholder,
.rd-detail-red .rd-detail-icon-placeholder {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 4px;
}
.rd-detail-green .rd-detail-icon-placeholder,
.rd-detail-normal .rd-detail-icon-placeholder,
.rd-detail-red .rd-detail-icon-placeholder {
  visibility: hidden;
}
.rd-detail-green {
  color: #6b8252;
  margin-bottom: 5px;
}
.rd-detail-normal {
  color: #000000;
  margin-bottom: 5px;
}
.rd-detail-red {
  color: #d54745;
}
/* Price area */
.rd-price {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 32px;
  color: #0f0f0f;
  text-align: right;
  line-height: 48px;
}
.rd-price-tax {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  text-align: right;
  line-height: 24px;
}
.rd-price-coins {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #a7987d;
  text-align: right;
  line-height: 21px;
}
.rd-select-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 262px;
  height: 43px;
  background: #694910;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 21px;
  margin-top: 10px;
}
/* Collapsed room card */
.rd-room-expand-content {
  display: none;
}
.rd-room-collapsed .rd-room-body {
  align-items: center;
}
.rd-room-collapsed .rd-room-right {
  justify-content: center;
}
.rd-room-collapsed .rd-price {
  font-size: 32px;
}
.rd-room-expanded .rd-room-expand-content {
  display: block;
}
/* Show more rates */
.rd-divider-section {
  margin: 15px 0;
}
.rd-show-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 0;
  cursor: pointer;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  line-height: 27px;
}
.rd-show-more-arrow {
  width: 15px;
}
/* ============================================
   Room Detail Form Page
   ============================================ */
.rf-page {
  background: #f3ebe2;
}
.rf-link {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 16px;
  color: #694910;
  text-decoration: underline;
  white-space: nowrap;
  line-height: normal;
}
.rf-link:hover {
  opacity: 0.8;
}
.rf-green-text {
  color: #6b8252;
}
.rf-divider {
  height: 1px;
  display: block;
  width: 100%;
}
/* Hero */
.rf-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 838px;
  overflow: hidden;
}
.rf-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rf-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(209, 145, 49, 0.22);
  backdrop-filter: blur(13.95px);
  -webkit-backdrop-filter: blur(13.95px) brightness(100%);
}
/* Back Button */
.rf-back-panel {
  max-width: 1551px;
  margin: 53px auto 0;
  padding-left: 142px;
  position: relative;
  z-index: 2;
}
.rf-back-btn {
  width: 57px;
  height: 57px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}
.rf-back-circle {
  width: 57px;
  height: 57px;
  background: rgba(253, 250, 245, 0.64);
  border-radius: 50%;
  position: relative;
  backdrop-filter: blur(3.9px);
  -webkit-backdrop-filter: blur(3.9px) brightness(100%);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.09), 0 14px 8px rgba(0, 0, 0, 0.05), 0 25px 10px rgba(0, 0, 0, 0.01);
}
.rf-back-arrow {
  position: absolute;
  width: 41px;
  height: 38px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Summary Panel */
.rf-summary-panel {
  position: relative;
  z-index: 5;
  max-width: 1551px;
  margin: 40px auto 0;
  border-radius: 5px;
  overflow: hidden;
}
.rf-summary-white {
  background: #fff;
}
.rf-summary-gold {
  background: #fdfaf5;
}
.rf-summary-content {
  position: relative;
  padding: 0 0 25px 0;
}
.rf-summary-row {
  padding: 0 263px;
}
.rf-summary-dates-row {
  display: flex;
  align-items: center;
  padding-top: 23px;
  padding-bottom: 0;
}
.rf-summary-dates {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
  line-height: normal;
}
.rf-summary-night {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: normal;
  margin-left: 15px;
  white-space: nowrap;
}
.rf-room-details-link {
  margin-left: auto;
  flex-shrink: 0;
}
.rf-summary-divider-wrap {
  padding: 0 264px;
}
.rf-summary-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}
.rf-summary-left-col {
  flex: 1;
}
.rf-summary-right-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 200px;
}
.rf-summary-price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 15px;
}
.rf-summary-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}
.rf-summary-icons .li {
  display: flex;
  align-items: center;
  margin-right: 40px;
}
.rf-summary-icons .li img {
  margin-right: 6px;
}
.rf-summary-icons .li .txt {
  margin-left: 10px;
}
.rf-star-small {
  width: 14px;
  height: 14px;
}
.rf-star-composite {
  position: relative;
  width: 26px;
  height: 26px;
  display: inline-block;
}
.rf-star-composite img {
  position: absolute;
}
.rf-star-bg {
  width: 27px;
  height: 27px;
  top: -1px;
  left: -1px;
}
.rf-star-inner {
  width: 21px;
  height: 25px;
  top: 1px;
  left: 5px;
}
.rf-summary-room-type {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: normal;
  margin-bottom: 10px;
}
.rf-summary-room-details-row {
  display: flex;
  gap: 30px;
  margin-bottom: 8px;
}
.rf-summary-room-detail {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: normal;
  white-space: nowrap;
}
.rf-summary-cancel-info {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 16px;
  color: #000000;
  line-height: 22px;
}
.rf-summary-cancel-info .li {
  display: flex;
  align-items: center;
}
.rf-summary-cancel-info .li + .li {
  margin-top: 8px;
}
.rf-summary-cancel-info .li img {
  margin-right: 10px;
}
.rf-summary-cancel-info .li span {
  margin-right: 10px;
}
.rf-summary-bed-icon {
  margin-bottom: 5px;
}
.rf-summary-bed-icon img {
  height: 20px;
}
.rf-icon-sm {
  width: 18px;
  height: 18px;
}
.rf-composite-icon {
  position: relative;
  width: 26px;
  height: 26px;
  display: inline-block;
}
.rf-composite-icon img {
  position: absolute;
}
.rf-comp-bg {
  width: 100%;
  height: 100%;
}
.rf-comp-inner1 {
  width: 42%;
  height: 78%;
  top: 22%;
  left: 58%;
}
.rf-comp-inner2 {
  width: 103%;
  height: 102%;
  top: -2%;
  left: -3%;
}
.rf-comp-inner3 {
  width: 45%;
  height: 80%;
  top: 20%;
  left: 55%;
}
.rf-summary-feature-icons {
  display: flex;
  gap: 0;
  margin-top: 10px;
}
.rf-feature-icon {
  width: 86%;
  height: auto;
}
.rf-price {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 32px;
  color: #000000;
  text-align: right;
  line-height: normal;
  white-space: nowrap;
}
.rf-price-tax {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  text-align: right;
  line-height: normal;
  white-space: nowrap;
}
.rf-price-coins {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #a7987d;
  text-align: right;
  line-height: normal;
}
.rf-summary-gold-content {
  padding: 16px 260px;
}
.rf-summary-free-cancel {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  color: #694910;
  line-height: 19.4px;
  display: flex;
  align-items: center;
  padding: 4px 0;
}
.rf-summary-free-cancel img {
  margin-right: 10px;
}
/* Form */
.rf-form {
  position: relative;
  z-index: 5;
  max-width: 1551px;
  margin: 15px auto 0;
}
.rf-card {
  background: #fff;
  border-radius: 5px;
  margin-bottom: 20px;
}
.rf-card-content {
  padding: 23px 263px;
}
.rf-heading {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
  line-height: 25.6px;
  white-space: nowrap;
  margin: 0;
}
/* Guest Info Card */
.rf-guest-header {
  margin-bottom: 20px;
  position: relative;
}
.rf-required-note {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  color: #000000;
  line-height: 17px;
  white-space: nowrap;
  margin-left: 1px;
}
.rf-guest-edit-icon {
  margin-left: auto;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.rf-guest-edit-icon img {
  width: 30px;
  height: 30px;
}
/* Form Fields */
.rf-field {
  margin-bottom: 8px;
}
.rf-field:last-child {
  margin-bottom: 0;
}
.rf-field-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: normal;
  white-space: nowrap;
  margin-bottom: 8px;
  display: block;
}
.rf-input {
  width: 100%;
  height: 53px;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 0 17px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: normal;
  background: #fff;
  outline: none;
}
.rf-input:focus {
  border-color: #694910;
}
.rf-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.rf-phone-input {
  border-left: none;
}
.rf-phone-row {
  display: flex;
  gap: 0;
}
.rf-phone-code {
  width: 120px;
  height: 53px;
  border: 1px solid #000000;
  border-right: none;
  border-radius: 5px 0 0 5px;
  padding: 0 12px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: normal;
  background: #fff;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23000' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.rf-phone-input {
  border-radius: 0 5px 5px 0;
  flex: 1;
}
.rf-field-hint {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.4);
  line-height: normal;
  margin-top: 6px;
}
/* Checkbox */
.rf-checkbox-row {
  margin-top: 29px;
}
.rf-checkbox-row .rf-field-label {
  margin-bottom: 5px;
}
.rf-checkbox-wrap {
  position: relative;
  width: 53px;
  height: 53px;
}
.rf-checkbox-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 53px;
  height: 53px;
  border: 1px solid #000000;
  border-radius: 5px;
  pointer-events: none;
}
.rf-checkbox-box img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rf-checkbox-box input {
  width: 100%;
  height: 100%;
}
/* Card sections with arrow */
.rf-card-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
  position: relative;
}
.rf-card-arrow {
  object-fit: contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.rf-card-arrows {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.rf-card-arrows .rf-card-arrow {
  height: 56px;
}
/* Text */
.rf-text {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: normal;
  white-space: nowrap;
}
/* Radio */
.rf-radio-row {
  margin-top: 15px;
}
.rf-radio-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: normal;
  white-space: nowrap;
  margin-bottom: 8px;
  position: relative;
}
.rf-radio-option {
  display: flex;
  align-items: center;
  gap: 7px;
}
.rf-radio-wrap {
  position: relative;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.rf-radio-outer {
  width: 17px;
  height: 17px;
  border: 2px solid #694910;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.rf-radio-inner {
  width: 9px;
  height: 9px;
  background: #694910;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
}
.rf-radio-text {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: normal;
}
.rf-divider-wrap {
  margin: 10px 0;
}
/* Discounts */
.rf-discount-item {
  margin-bottom: 8px;
}
.rf-discount-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: normal;
  white-space: nowrap;
  margin-bottom: 5px;
  position: relative;
}
.rf-discount-coins {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #694910;
  line-height: normal;
  white-space: nowrap;
  margin-bottom: 8px;
}
.rf-discount-desc {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: normal;
}
/* Terms */
.rf-terms-text {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: normal;
  margin-top: 15px;
}
.rf-terms-link {
  text-decoration: underline;
  color: #000000;
}
.rf-terms-link:hover {
  opacity: 0.7;
}
/* Special Deals */
.rf-special-deals-row {
  position: relative;
  z-index: 5;
  max-width: 1551px;
  margin: 15px auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 264px;
}
.rf-checkbox-square {
  width: 21px;
  height: 21px;
  border: 1px solid #000000;
  flex-shrink: 0;
  pointer-events: none;
}
.rf-checkbox-deals {
  position: absolute;
  width: 21px;
  height: 21px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}
.rf-special-deals-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: normal;
  white-space: nowrap;
}
/* Book Button */
.rf-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1551px;
  height: 43px;
  background: #694910;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 21px;
  margin: 20px auto 40px;
  position: relative;
  z-index: 5;
}
/* Guest Popup */
.rf-guest-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
}
.rf-guest-popup.show {
  display: flex;
}
.rf-guest-popup-inner {
  position: relative;
  width: 392px;
  background: #fdfaf5;
  border-radius: 5px;
  padding: 60px 40px 30px;
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.1), 0 30px 30px rgba(0, 0, 0, 0.09), 0 67px 40px rgba(0, 0, 0, 0.05);
}
.rf-guest-popup-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: 26px;
  white-space: nowrap;
  margin-bottom: 20px;
  text-align: center;
}
.rf-guest-popup-hint {
  position: relative;
  margin-bottom: 20px;
  text-align: center;
}
.rf-guest-hint-bg {
  width: 100%;
  height: 24px;
  object-fit: cover;
}
.rf-guest-popup-hint span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 12px;
  color: #694910;
  white-space: nowrap;
  line-height: 18px;
}
.rf-guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.rf-guest-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  line-height: 25px;
  white-space: nowrap;
}
.rf-guest-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rf-guest-minus,
.rf-guest-plus {
  width: 22px;
  height: 22px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rf-guest-minus {
  background: #ecf1f6;
  border-radius: 25px;
}
.rf-guest-plus {
  background: #694910;
  border-radius: 25px;
}
.rf-guest-minus img,
.rf-guest-plus img {
  width: 14px;
  height: 14px;
}
.rf-guest-value {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 13px;
  color: #171725;
  text-align: center;
  line-height: 28px;
  min-width: 20px;
}
.rf-guest-line {
  width: 230px;
  height: 1px;
  display: block;
  margin: 0 auto;
}
.rf-guest-done {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 265px;
  height: 41px;
  background: #694910;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 21px;
  margin: 20px auto 0;
}
/* ============================================
   WITHDRAW PAGE
============================================ */
.db-main--withdraw {
  display: flex;
  flex-direction: column;
}
.db-wd-content {
  flex: 1;
  display: flex;
  gap: 20px;
  padding: 0 35px 30px 31px;
  min-height: 0;
  overflow: hidden;
}
.db-wd-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}
.db-wd-right {
  flex: 1;
}
.db-wd-card {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 22px 31px;
}
.db-wd-card h1,
.db-wd-card h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  margin: 0;
}
.db-wd-back {
  width: 57px;
  height: 57px;
  background: #fdfaf5;
  border: none;
  border-radius: 28.5px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.09);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.db-wd-back img {
  width: 41px;
  height: 38px;
}
.db-wd-available {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}
.db-wd-amount-big {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 28px;
  color: #000000;
}
.db-wd-amount-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
}
.db-wd-note {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #45791e;
  margin: 10px 0 0;
  line-height: 1.5;
}
.db-wd-input-wrap {
  margin-top: 17px;
}
.db-wd-input-wrap input {
  width: 100%;
  height: 40px;
  border: 1px solid #d9d9d9;
  border-radius: 7px;
  padding: 0 20px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  box-sizing: border-box;
}
.db-wd-input-wrap input:focus {
  outline: none;
  border-color: #694910;
}
.db-wd-card h2 {
  margin-bottom: 20px;
}
.db-wd-method {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
}
.db-wd-method.selected .db-wd-radio-outer {
  border-color: #000000;
}
.db-wd-method.selected .db-wd-radio-inner {
  display: block;
}
.db-wd-method-icon {
  width: 43px;
  height: 43px;
  background: #f3ebe2;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  flex-shrink: 0;
}
.db-wd-method-info {
  display: flex;
  flex-direction: column;
  margin-left: 17px;
  flex: 1;
}
.db-wd-method-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
}
.db-wd-method-sub {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}
.db-wd-method-radio {
  position: relative;
  width: 22px;
  height: 22px;
}
.db-wd-method-radio input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.db-wd-radio-outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 2px solid #d9d9d9;
  border-radius: 11px;
}
.db-wd-radio-inner {
  display: none;
  position: absolute;
  top: 6px;
  left: 6px;
  width: 10px;
  height: 10px;
  background: #000000;
  border-radius: 5px;
}
.db-wd-divider {
  height: 1px;
  background: #e2e2e2;
  margin: 0;
}
.db-wd-add-btn {
  display: flex;
  align-items: center;
  gap: 17px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 15px 0 5px;
}
.db-wd-add-btn span:last-child {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}
.db-wd-add-icon {
  width: 33px;
  height: 33px;
  border: 1px solid #999;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.db-wd-add-icon img {
  width: 24px;
  height: 24px;
}
.db-wd-summary-card {
  display: flex;
  flex-direction: column;
  padding-bottom: 34px;
}
.db-wd-summary-rows {
  margin-top: 8px;
}
.db-wd-summary-row {
  display: flex;
  justify-content: space-between;
}
.db-wd-summary-left,
.db-wd-summary-right {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  line-height: 32.4px;
}
.db-wd-summary-right {
  text-align: right;
}
.db-wd-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}
.db-wd-summary-total h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  margin: 0;
}
.db-wd-total-value {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
}
.db-wd-timeline {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}
.db-wd-timeline li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 7px;
}
.db-wd-timeline li span:last-child {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  line-height: 32.4px;
}
.db-wd-timeline-dot {
  width: 8px;
  height: 8px;
  background: #1ba076;
  border-radius: 4px;
  margin-top: 12px;
  flex-shrink: 0;
}
.db-wd-warning {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 18px;
  color: #a7987d;
  text-align: center;
  margin: 34px auto 0;
}
.db-wd-submit {
  width: 100%;
  height: 50px;
  background: #694910;
  border: none;
  border-radius: 7px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  margin-top: auto;
}
.db-wd-submit:hover {
  background: #3d2a09;
}
/* ---- Confirmation Dialog ---- */
.db-wd-confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.39);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.db-wd-confirm-overlay.show {
  opacity: 1;
  visibility: visible;
}
.db-wd-confirm-dialog {
  position: relative;
  width: 425px;
  background: #fdfaf5;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 28px 48px 28px 48px;
  text-align: center;
}
.db-wd-confirm-dialog h1 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  margin: 0;
}
.db-wd-confirm-icon-wrap {
  position: relative;
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
}
.db-wd-confirm-icon-bg {
  position: absolute;
  inset: 0;
  background: #eaf4df;
  border-radius: 23px;
}
.db-wd-confirm-icon {
  width: 100%;
}
.db-wd-confirm-desc {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 1;
  margin: 10px 0 0;
}
.db-wd-confirm-details {
  background: #f3ebe2;
  border-radius: 7px;
  padding: 18px 24px;
  margin-top: 17px;
  text-align: left;
}
.db-wd-confirm-row {
  display: flex;
  justify-content: space-between;
}
.db-wd-confirm-row + .db-wd-confirm-row {
  margin-top: 6px;
}
.db-wd-confirm-row span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 26.2px;
}
.db-wd-confirm-actions {
  display: flex;
  gap: 11px;
  margin-top: 20px;
}
.db-wd-confirm-cancel,
.db-wd-confirm-ok {
  width: 154px;
  height: 40px;
  border: 1px solid #d9d9d9;
  border-radius: 7px;
  background: #fff;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  cursor: pointer;
}
.db-wd-confirm-cancel:hover,
.db-wd-confirm-ok:hover {
  background: #f3ebe2;
}
.db-wd-confirm-ok {
  background: #694910;
  border-color: #694910;
  color: #fff;
}
.db-wd-confirm-ok:hover {
  background: #3d2a09;
}
.db-wd-confirm-close {
  position: absolute;
  top: 340px;
  left: 1125px;
  width: 27px;
  height: 27px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.db-wd-confirm-close-bg {
  position: absolute;
  inset: 0;
  background: #f3ebe2;
  border-radius: 13.5px;
}
.db-wd-confirm-close img {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 19px;
  height: 19px;
}
/* ============================================
   CART DIALOG
============================================ */
.sd-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.39);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.sd-cart-overlay.show {
  opacity: 1;
  visibility: visible;
}
.sd-cart-dialog {
  position: absolute;
  top: 0;
  right: 0;
  width: 597px;
  height: 100vh;
  background: #fdfaf5;
  padding: 20px 44px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.sd-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #a7987d;
}
.sd-cart-header h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  margin: 0;
}
.sd-cart-close {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  width: 28px;
  height: 28px;
  padding: 0;
}
.sd-cart-close img {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 100%;
  height: 100%;
}
.sd-cart-close-circle {
  position: absolute;
  inset: 0;
  width: 28px;
  height: 28px;
  border-radius: 14px;
}
.sd-cart-items {
  flex: 1;
  min-height: 0;
  max-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #b79968 #efe3d4;
}
.sd-cart-items::-webkit-scrollbar {
  width: 8px;
}
.sd-cart-items::-webkit-scrollbar-track {
  background: #efe3d4;
  border-radius: 999px;
}
.sd-cart-items::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ccb894 0%, #b79968 100%);
  border-radius: 999px;
  border: 2px solid #efe3d4;
}
.sd-cart-items::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #c3ad86 0%, #a7834e 100%);
}
.sd-cart-empty {
  flex: 1;
  padding: 36px 0 24px;
  text-align: center;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
}
.sd-cart-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e7dfd3;
}
.sd-cart-item:last-child {
  border-bottom: none;
}
.sd-cart-item-img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 4px;
}
.sd-cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sd-cart-item-info .sd-cart-item-brand {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  margin: 0;
}
.sd-cart-item-info .sd-cart-item-name {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 13px;
  color: #a7987d;
  margin: 0;
  font-style: italic;
}
.sd-cart-item-info .sd-cart-item-note {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 11px;
  color: #a7987d;
  margin: 4px 0 0;
  line-height: 1.4;
}
.sd-cart-item-info .sd-cart-item-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.sd-cart-item-info .sd-cart-item-actions a,
.sd-cart-item-info .sd-cart-item-actions .sd-cart-item-remove {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 2px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.sd-cart-item-info .sd-cart-item-actions a:hover,
.sd-cart-item-info .sd-cart-item-actions .sd-cart-item-remove:hover {
  color: #694910;
}
.sd-cart-item-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #a7987d;
  height: 24px;
}
.sd-cart-item-qty-btn {
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
}
.sd-cart-item-qty-num {
  min-width: 30px;
  line-height: 24px;
  text-align: center;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 12px;
  color: #a7987d;
  border-left: 1px solid #a7987d;
  border-right: 1px solid #a7987d;
}
.sd-cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.sd-cart-item-price {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  white-space: nowrap;
}
.sd-cart-item-wish {
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.6;
}
.sd-cart-item-wish img {
  width: 20px;
  height: 20px;
}
.sd-cart-item-wish:hover {
  opacity: 1;
}
.sd-cart-shipping-note {
  text-align: center;
  padding: 16px 0;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #000000;
  border-top: 1px solid #e7dfd3;
  border-bottom: 1px solid #e7dfd3;
}
.sd-cart-summary {
  padding: 16px 0;
}
.sd-cart-summary .sd-cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.sd-cart-summary .sd-cart-summary-row span:first-child {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  line-height: 1.4;
}
.sd-cart-summary .sd-cart-summary-row span:last-child {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
}
.sd-cart-actions {
  display: flex;
  gap: 16px;
  padding-top: 20px;
}
.sd-cart-checkout {
  width: 236px;
  height: 46px;
  background: #694910;
  border: none;
  border-radius: 4px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.sd-cart-checkout:hover {
  background: #5a3d0d;
}
.sd-cart-continue {
  width: 236px;
  height: 46px;
  background: transparent;
  border: 1px solid #694910;
  border-radius: 4px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #694910;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.sd-cart-continue:hover {
  background: #f3ebe2;
}
.sd-cart-checkout.is-disabled,
.sd-cart-continue.is-disabled {
  opacity: 0.45;
  cursor: default;
}
.sd-cart-recommend {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #a7987d;
}
.sd-cart-recommend h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  margin: 0;
}
.sd-cart-recommend-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.sd-cart-recommend-navs {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sd-cart-recommend-nav {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: rgba(105, 73, 16, 0.96);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.sd-cart-recommend-nav img {
  width: 18px;
  height: 18px;
  display: block;
}
.sd-cart-recommend-nav:hover {
  background: #553c0d;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}
.sd-cart-recommend-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
.sd-cart-recommend-prev img {
  transform: rotate(180deg);
}
.sd-cart-recommend-swiper {
  overflow: hidden;
}
.sd-cart-recommend-slide {
  height: auto;
  display: flex;
}
.sd-cart-recommend-item {
  width: 140px;
  display: block;
  text-align: center;
  text-decoration: none;
  margin: 0 auto;
}
.sd-cart-recommend-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.sd-cart-recommend-item p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #000000;
  margin: 0 0 4px;
  line-height: 1.4;
  min-height: 34px;
}
.sd-cart-recommend-item span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 13px;
  color: #000000;
  display: block;
}
/* ============================================
   NOTIFY ME DIALOG
============================================ */
.sd-notify-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.39);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sd-notify-overlay.show {
  opacity: 1;
  visibility: visible;
}
.sd-notify-dialog {
  position: relative;
  width: 420px;
  background: #fdfaf5;
  border-radius: 8px;
  padding: 40px 32px 32px;
  box-sizing: border-box;
  text-align: center;
}
.sd-notify-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  background: #694910;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.sd-notify-close img {
  width: 24px;
  height: 24px;
}
.sd-notify-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 24px;
  font-style: italic;
  color: #000000;
  margin: 0 0 16px;
}
.sd-notify-desc {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
  margin: 0 0 24px;
  line-height: 1.5;
}
.sd-notify-field {
  margin-bottom: 12px;
  text-align: left;
}
.sd-notify-field .sd-notify-product {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #a7987d;
  border-radius: 4px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #000000;
  background: #fff;
  box-sizing: border-box;
}
.sd-notify-field input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #a7987d;
  border-radius: 4px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #000000;
  background: #fff;
  box-sizing: border-box;
}
.sd-notify-field input::placeholder {
  color: #a7987d;
}
.sd-notify-terms {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0 24px;
  text-align: left;
}
.sd-notify-checkbox {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.sd-notify-checkbox input {
  position: absolute;
  opacity: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.sd-notify-checkbox .sd-notify-checkmark {
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #a7987d;
  border-radius: 2px;
  background: #fff;
  box-sizing: border-box;
}
.sd-notify-checkbox input:checked + .sd-notify-checkmark {
  background: #694910;
  border-color: #694910;
}
.sd-notify-terms-text {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #a7987d;
  line-height: 1.4;
}
.sd-notify-terms-text a {
  color: #a7987d;
  text-decoration: underline;
}
.sd-notify-terms-text a:hover {
  color: #694910;
}
.sd-notify-submit {
  width: 100%;
  height: 46px;
  background: #694910;
  border: none;
  border-radius: 4px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}
.sd-notify-submit:hover {
  background: #5a3d0d;
}
/* ============================================
   Membership Page (会员权益开通)
   ============================================ */
.membership-page {
  background: #f3ebe2;
  min-height: 100vh;
  padding-top: 90px;
  position: relative;
}
/* Back Button */
.membership-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 57px;
  background: #fdfaf5;
  border-radius: 50%;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1), 0px 6px 6px rgba(0, 0, 0, 0.09), 0px 14px 8px rgba(0, 0, 0, 0.05), 0px 25px 10px rgba(0, 0, 0, 0.01);
  position: absolute;
  top: 80px;
  left: 207px;
  z-index: 10;
  transition: transform 0.2s ease;
}
.membership-back:hover {
  transform: scale(1.05);
}
.membership-back img {
  width: 18px;
  height: 14px;
}
/* Header Section */
.membership-header {
  text-align: center;
  padding: 90px 0 40px;
}
.membership-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 48px;
  color: #694910;
  line-height: 48px;
  margin-bottom: 8px;
}
.membership-subtitle {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 20px;
  color: #694910;
  line-height: 48px;
  margin-bottom: 8px;
}
.membership-desc {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 20px;
  color: #a7987d;
  line-height: 19px;
  max-width: 1112px;
  margin: 0 auto;
}
/* Plans Section */
.membership-plans {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 0 40px 60px;
  max-width: 1600px;
  margin: 0 auto;
}
/* Membership Card */
.membership-card {
  width: 469px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 36px;
  border: 1px solid #a7987d;
  backdrop-filter: brightness(108%) saturate(80%);
  -webkit-backdrop-filter: brightness(108%) saturate(80%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.membership-card:hover {
  background: #fff;
}
.membership-card:nth-child(1):hover {
  border-color: #55ba76;
}
.membership-card:nth-child(2):hover {
  border-color: #ffae00;
}
.membership-card:nth-child(3):hover {
  border-color: #6e00ff;
}
.membership-card-header {
  padding: 59px 30px 20px;
  text-align: center;
}
.membership-card-badge {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 20px;
  margin-bottom: 43px;
}
.entry-badge {
  color: #1ba076;
}
.popular-badge {
  color: #ffae00;
}
.sovereign-badge {
  color: #6e00ff;
}
.membership-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.price-value {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 48px;
  color: #694910;
  line-height: 32px;
}
.price-period {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  color: #694910;
  line-height: 32px;
}
.membership-card-name {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  color: #a7987d;
  line-height: 32px;
}
.membership-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 272px;
  height: 50px;
  border-radius: 5px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-align: center;
  line-height: 24px;
  margin: 0 auto 30px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.membership-card-btn:hover {
  opacity: 0.9;
}
.entry-btn {
  background: #55ba76;
}
.popular-btn {
  background: #ffae00;
}
.sovereign-btn {
  background: #6e00ff;
}
.membership-card-body {
  padding: 0 30px 40px;
  flex: 1;
}
.membership-feature-group {
  margin-bottom: 24px;
}
.membership-feature-group:last-child {
  margin-bottom: 0;
}
.membership-feature-group h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  color: #694910;
  line-height: 24px;
  margin-bottom: 8px;
}
.membership-feature-group p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #694910;
  line-height: 24px;
  position: relative;
  padding-left: 22px;
}
.membership-feature-group p::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
}
.membership-feature-group p + p {
  margin-top: 6px;
}
.membership-card:nth-child(1) .membership-feature-group p::before {
  color: #55ba76;
}
.membership-card:nth-child(2) .membership-feature-group p::before {
  color: #ffae00;
}
.membership-card:nth-child(3) .membership-feature-group p::before {
  color: #6e00ff;
}
/* Footer Disclaimer */
.membership-footer {
  max-width: 1489px;
  margin: 0 auto;
  padding: 40px 40px 80px;
  text-align: center;
}
.membership-footer p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #a7987d;
  line-height: 19px;
}
/* ============================================
   Membership Page Responsive
   ============================================ */
@media (max-width: 1440px) {
  .membership-plans {
    gap: 20px;
  }
  .membership-card {
    width: 420px;
  }
}
/* Keep the three plan cards in one row on narrow desktop widths by
   scaling them proportionally instead of wrapping into a 2+1 layout */
@media (min-width: 993px) and (max-width: 1440px) {
  .membership-plans {
    gap: 1.5625vw;
    padding: 0 2.0833vw 3.125vw;
  }
  .membership-card {
    width: calc(33.333% - 1.0417vw);
    max-width: none;
  }
  .membership-card-header {
    padding: 3.0729vw 1.5625vw 1.0417vw;
  }
  .membership-card-badge {
    font-size: 1.6667vw;
    line-height: 1.0417vw;
    margin-bottom: 2.2396vw;
  }
  .membership-card-price {
    gap: 0.4167vw;
    margin-bottom: 0.4167vw;
  }
  .price-value {
    font-size: 2.5vw;
    line-height: 1.6667vw;
  }
  .price-period {
    font-size: 1.0417vw;
    line-height: 1.6667vw;
  }
  .membership-card-name {
    font-size: 1.25vw;
    line-height: 1.6667vw;
  }
  .membership-card-btn {
    width: 14.1667vw;
    height: 2.6042vw;
    font-size: 0.9375vw;
    line-height: 1.25vw;
    margin-bottom: 1.5625vw;
  }
  .membership-card-body {
    padding: 0 1.5625vw 2.0833vw;
  }
  .membership-feature-group h4 {
    font-size: clamp(16px, 1.0417vw, 20px);
    line-height: 1.25vw;
  }
  .membership-feature-group p {
    font-size: clamp(12px, 0.7292vw, 14px);
    line-height: 1.25vw;
    padding-left: 1.1458vw;
  }
}
/* Extend the same proportional font scaling up to the 1920px design
   base (cards keep their fixed 469px width there) */
@media (min-width: 1441px) and (max-width: 1920px) {
  .membership-plans {
    gap: 1.5625vw;
    padding: 0 2.0833vw 3.125vw;
  }
  .membership-card-header {
    padding: 3.0729vw 1.5625vw 1.0417vw;
  }
  .membership-card-badge {
    font-size: 1.6667vw;
    line-height: 1.0417vw;
    margin-bottom: 2.2396vw;
  }
  .membership-card-price {
    gap: 0.4167vw;
    margin-bottom: 0.4167vw;
  }
  .price-value {
    font-size: 2.5vw;
    line-height: 1.6667vw;
  }
  .price-period {
    font-size: 1.0417vw;
    line-height: 1.6667vw;
  }
  .membership-card-name {
    font-size: 1.25vw;
    line-height: 1.6667vw;
  }
  .membership-card-btn {
    width: 14.1667vw;
    height: 2.6042vw;
    font-size: 0.9375vw;
    line-height: 1.25vw;
    margin-bottom: 1.5625vw;
  }
  .membership-card-body {
    padding: 0 1.5625vw 2.0833vw;
  }
  .membership-feature-group h4 {
    font-size: clamp(16px, 1.0417vw, 20px);
    line-height: 1.25vw;
  }
  .membership-feature-group p {
    font-size: clamp(12px, 0.7292vw, 14px);
    line-height: 1.25vw;
    padding-left: 1.1458vw;
  }
}
@media (max-width: 1280px) {
  .membership-back {
    left: 20px;
    top: 80px;
  }
  .membership-title {
    font-size: 36px;
  }
}
@media (max-width: 992px) {
  .membership-plans {
    flex-wrap: wrap;
    gap: 30px;
  }
  .membership-card {
    width: 100%;
    max-width: 469px;
  }
}
@media (max-width: 768px) {
  .membership-header {
    padding: 90px 20px 30px;
  }
  .membership-title {
    font-size: 28px;
    line-height: 1.2;
  }
  .membership-subtitle,
  .membership-desc {
    font-size: 16px;
    line-height: 1.4;
  }
  .membership-card {
    width: 100%;
  }
  .membership-card-btn {
    width: calc(100% - 60px);
  }
}
/* ============================================
   Membership Checkout Page (会员权益开通结算)
   ============================================ */
.mc-checkout-page {
  background: #f3ebe2;
  min-height: 100vh;
  padding-top: 0;
  position: relative;
}
.mc-checkout-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f3ebe2;
}
/* Back Button */
.mc-checkout-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 57px;
  background: #fdfaf5;
  border-radius: 50%;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1), 0px 6px 6px rgba(0, 0, 0, 0.09), 0px 14px 8px rgba(0, 0, 0, 0.05), 0px 25px 10px rgba(0, 0, 0, 0.01);
  position: absolute;
  top: 80px;
  left: 207px;
  z-index: 10;
  transition: transform 0.2s ease;
}
.mc-checkout-back:hover {
  transform: scale(1.05);
}
.mc-checkout-back img {
  width: 18px;
  height: 14px;
}
/* Main Content */
.mc-checkout-main {
  position: relative;
  z-index: 1;
  max-width: 766px;
  margin: 0 auto;
  padding: 70px 20px 40px;
}
.mc-checkout-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Billing Cycle */
.mc-checkout-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  color: #000000;
  line-height: 21.3px;
  margin-bottom: 6px;
}
.mc-checkout-price {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 24px;
  color: #3b6d11;
  line-height: 25.6px;
  margin-bottom: 24px;
}
/* What's Included */
.mc-checkout-subtitle {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  line-height: normal;
  margin-bottom: 16px;
}
.mc-checkout-included {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 19px;
}
.mc-checkout-included li {
  position: relative;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: 32px;
  padding-left: 19px;
}
.mc-checkout-included li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: #45791d;
  border-radius: 2px;
}
/* Order Summary */
.mc-checkout-line {
  width: 100%;
  height: 1px;
  background: #000000;
  margin: 16px 0;
}
.mc-checkout-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.mc-checkout-row span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  line-height: normal;
}
.mc-checkout-row.mc-checkout-promo span {
  color: #45791e;
}
.mc-checkout-row.mc-checkout-total-row {
  margin-bottom: 4px;
}
.mc-checkout-row.mc-checkout-total-row span {
  font-size: 18px;
}
.mc-checkout-status-value {
  text-align: right;
  max-width: 52%;
}
/* Toggle Switch */
.mc-checkout-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.mc-checkout-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.mc-checkout-toggle input:checked + .mc-toggle-slider {
  background: #3b6d11;
}
.mc-checkout-toggle input:checked + .mc-toggle-slider::before {
  transform: translateX(29px);
}
.mc-toggle-slider {
  position: relative;
  width: 64px;
  height: 35px;
  background: #a7987d;
  border-radius: 61px;
  transition: background 0.3s ease;
}
.mc-toggle-slider::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 29px;
  height: 29px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1), 0px 3px 3px rgba(0, 0, 0, 0.09), 0px 7px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.mc-checkout-renewal {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  color: #000000;
  line-height: 32px;
  margin-bottom: 16px;
}
/* Agreement */
.mc-checkout-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin: 24px 0;
}
.mc-checkout-agree input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.mc-checkout-agree input:checked + .mc-agree-box {
  background: #694910;
  border-color: #694910;
}
.mc-checkout-agree input:checked + .mc-agree-box::after {
  content: '✓';
  color: #fff;
  font-size: 12px;
  line-height: 1;
}
.mc-agree-box {
  width: 21px;
  height: 21px;
  border: 1px solid #a7987d;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.mc-agree-text {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  color: #a7987d;
  line-height: normal;
}
/* Confirm Button */
.mc-checkout-confirm {
  display: block;
  width: 100%;
  height: 45px;
  background: #694910;
  border: none;
  border-radius: 5px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  margin: 24px 0 16px;
  transition: background 0.3s ease;
}
.mc-checkout-confirm:hover {
  background: #5a3f0e;
}
.mc-checkout-confirm.is-disabled,
.mc-checkout-confirm:disabled {
  background: #a7987d;
  cursor: not-allowed;
}
.mc-checkout-confirm.is-disabled:hover,
.mc-checkout-confirm:disabled:hover {
  background: #a7987d;
}
.mc-checkout-secure {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #a7987d;
  line-height: 28px;
  text-align: center;
  margin-bottom: 4px;
}
.mc-checkout-secure::before {
  content: '🔒';
  margin-right: 4px;
}
.mc-checkout-renews {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #a7987d;
  line-height: 28px;
  text-align: center;
  margin-bottom: 40px;
}
.mc-checkout-payment-wrap {
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
}
.mc-checkout-payment-wrap .mp-payment-main {
  padding-top: 16px;
}
/* Footer */
.mc-checkout-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 34px;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 18px 16px 38px;
  flex-wrap: wrap;
  background: transparent;
}
.mc-checkout-footer a {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  line-height: 1.3;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.mc-checkout-footer a:hover {
  color: #694910;
}
/* ============================================
   Membership Checkout Responsive
   ============================================ */
@media (max-width: 768px) {
  .mc-checkout-back {
    left: 20px;
    top: 80px;
  }
  .mc-checkout-main {
    padding-top: 100px;
  }
  .mc-checkout-included li {
    font-size: 14px;
    line-height: 28px;
  }
  .mc-checkout-row span {
    font-size: 16px;
  }
  .mc-checkout-footer {
    gap: 12px 22px;
    padding: 20px;
  }
}
/* ============================================
   Membership Payment Page (会员权益开通结算支付)
   ============================================ */
.mp-payment-page {
  background: #f3ebe2;
  min-height: 100vh;
  padding-top: 0;
  position: relative;
}
.mp-payment-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  background: #f3ebe2;
}
/* Back Button */
.mp-payment-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 80px;
  left: calc(max((100vw - 1600px) / 2, 0px) + 48px);
  z-index: 10;
  transition: box-shadow 0.2s ease;
}
.mp-payment-back:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.mp-payment-back img {
  width: 18px;
  height: 14px;
}
/* Main Layout */
.mp-payment-main {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
  padding: 70px 40px 40px;
  gap: 40px;
}
/* Left: Form Area */
.mp-payment-form-area {
  flex: 1;
  max-width: 953px;
  background: #f3ebe2;
  padding: 0 0 0 160px;
}
.mp-payment-section {
  margin-bottom: 24px;
}
.mp-payment-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  line-height: 21.3px;
  margin-bottom: 10px;
}
.mp-payment-required {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  color: #000000;
  line-height: 14.9px;
  margin-bottom: 24px;
}
.mp-saved-address-panel {
  margin-bottom: 18px;
}
.mp-saved-address-card {
  border: 1px solid #694910;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  padding: 18px 18px 16px;
  cursor: pointer;
}
.mp-saved-address-card.is-active {
  background: #fffdf9;
}
.mp-saved-address-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.mp-saved-address-head-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.mp-saved-address-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #694910;
  flex-shrink: 0;
  position: relative;
}
.mp-saved-address-card.is-active .mp-saved-address-dot::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: #694910;
}
.mp-saved-address-name {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mp-saved-address-lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #000000;
  line-height: 1.35;
}
.mp-saved-address-lines p {
  margin: 0;
}
.mp-saved-address-new {
  width: 100%;
  margin-top: 12px;
  height: 42px;
  border: 1px solid #694910;
  background: transparent;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  cursor: pointer;
}
.mp-payment-address-form[hidden] {
  display: none !important;
}
.mp-payment-divider {
  width: 100%;
  height: 1px;
  background: #000000;
  margin: 24px 0;
}
/* Form Groups */
.mp-form-group {
  margin-bottom: 16px;
}
.mp-form-group label {
  display: block;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  line-height: normal;
  margin-bottom: 8px;
}
.mp-form-group.is-invalid label {
  color: #b55454;
}
.mp-form-group.is-invalid .mp-form-input,
.mp-form-group.is-invalid .mp-form-select {
  border-color: #b55454;
}
.mp-form-input {
  width: 100%;
  height: 47px;
  border: 1px solid #694910;
  border-radius: 5px;
  padding: 0 13px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #000000;
  background: transparent;
  outline: none;
}
.mp-form-input::placeholder {
  color: #a7987d;
}
.mp-form-select {
  width: 100%;
  height: 47px;
  border: 1px solid #694910;
  border-radius: 5px;
  padding: 0 13px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
  background: transparent;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.mp-select-wrap {
  position: relative;
}
.mp-select-wrap::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #a7987d;
  border-bottom: 1.5px solid #a7987d;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.mp-select-wrap .mp-form-select {
  padding-right: 38px;
}
.mp-form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.mp-form-row .mp-form-group {
  margin-bottom: 0;
}
.mp-form-group-sm {
  flex: 0 0 120px;
}
.mp-form-group-lg {
  flex: 1;
}
.mp-form-group-xs {
  flex: 0 0 176px;
}
.mp-form-group-md {
  flex: 1;
}
/* Checkbox */
.mp-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-top: 16px;
}
.mp-form-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.mp-form-checkbox input:checked + .mp-check-box {
  background: #694910;
  border-color: #694910;
}
.mp-form-checkbox input:checked + .mp-check-box::after {
  content: '✓';
  color: #fff;
  font-size: 12px;
  line-height: 1;
}
.mp-form-checkbox span:last-child {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #a7987d;
  line-height: normal;
}
.mp-check-box {
  width: 17px;
  height: 17px;
  border: 1px solid #a7987d;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
/* Card Icons */
.mp-card-icons {
  margin-bottom: 24px;
}
.mp-card-icons img {
  height: 20px;
  width: auto;
  object-fit: contain;
}
/* Payment Methods */
.mp-payment-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #e7dfd3;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.mp-payment-method:last-child {
  border-bottom: none;
}
.mp-payment-method:hover {
  opacity: 0.88;
}
.mp-payment-method.is-active .mp-method-name {
  color: #694910;
}
.mp-payment-method.is-active .mp-method-radio span {
  width: 12px;
  height: 12px;
  border-color: #694910;
  background: #694910;
  box-shadow: 0 0 0 3px rgba(105, 73, 16, 0.12);
}
.mp-method-icon {
  width: 37px;
  height: 26px;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mp-method-icon img {
  width: 30px;
  height: 16px;
  object-fit: contain;
}
.mp-method-icon-more span {
  width: 18px;
  height: 18px;
  border: 1px solid #a7987d;
  border-radius: 50%;
  display: block;
}
.mp-method-name {
  flex: 1;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: 17px;
}
.mp-method-radio {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mp-method-radio span {
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid #a7987d;
  border-radius: 50%;
}
/* Right: Sidebar */
.mp-payment-sidebar {
  width: 507px;
  flex-shrink: 0;
}
.mp-order-summary {
  background: transparent;
}
.mp-order-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mp-order-header span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: normal;
}
.mp-order-ship {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.mp-order-ship span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: normal;
}
.mp-order-ship .mp-order-ship-price {
  font-size: 16px;
}
/* Order Items */
.mp-order-items {
  margin-bottom: 24px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: #b79968 #efe3d4;
}
.mp-order-items::-webkit-scrollbar {
  width: 8px;
}
.mp-order-items::-webkit-scrollbar-track {
  background: #efe3d4;
  border-radius: 999px;
}
.mp-order-items::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ccb894 0%, #b79968 100%);
  border-radius: 999px;
  border: 2px solid #efe3d4;
}
.mp-order-items::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #c3ad86 0%, #a7834e 100%);
}
.mp-order-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e7dfd3;
}
.mp-order-item:last-child {
  border-bottom: none;
}
.mp-order-item-cover {
  width: 87px;
  height: 99px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mp-order-item-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mp-order-item-cover--placeholder {
  background: linear-gradient(180deg, #8f6b2d 0%, #694910 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.mp-order-item-cover--placeholder span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.08em;
  color: #fff;
}
.mp-order-item-info {
  flex: 1;
}
.mp-order-item-info h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: 17px;
  margin-bottom: 4px;
}
.mp-order-item-info p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 17px;
  margin-bottom: 8px;
}
.mp-order-item-meta {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mp-order-item-meta img {
  width: 14px;
  height: 13px;
}
.mp-order-item-meta span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #a7987d;
  line-height: 14.9px;
}
.mp-order-item-meta.is-plain {
  gap: 0;
}
.mp-order-item-price {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  line-height: normal;
  text-align: right;
  flex-shrink: 0;
}
.mp-payment-empty {
  padding: 12px 0 18px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: #a7987d;
  line-height: 1.6;
}
.mp-order-voucher-select {
  margin: 18px 0 16px;
}
.mp-order-voucher-select .mp-form-select {
  height: 37px;
  font-size: 12px;
  color: #a7987d;
}
.mp-order-voucher-row span:last-child {
  color: #694910;
}
.mp-order-voucher-card {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 70px;
  margin: 10px 0 30px;
  background: #efe4d8;
  border-radius: 6px;
  overflow: hidden;
}
.mp-order-voucher-card[hidden] {
  display: none;
}
.mp-order-voucher-card::before,
.mp-order-voucher-card::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 16px;
  height: 22px;
  background: #f3ebe2;
  transform: translateY(-50%);
  z-index: 2;
}
.mp-order-voucher-card::before {
  left: -8px;
  border-radius: 0 999px 999px 0;
}
.mp-order-voucher-card::after {
  right: -8px;
  border-radius: 999px 0 0 999px;
}
.mp-order-voucher-icon {
  width: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mp-order-voucher-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.mp-order-voucher-cut {
  width: 1px;
  margin: 10px 0;
  border-left: 1px dashed rgba(105, 73, 16, 0.22);
  flex-shrink: 0;
}
.mp-order-voucher-main {
  flex: 1;
  min-width: 0;
  padding: 14px 18px 10px 28px;
}
.mp-order-voucher-main strong {
  display: block;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  line-height: 1.1;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mp-order-voucher-dates,
.mp-order-voucher-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  max-width: 180px;
}
.mp-order-voucher-dates span,
.mp-order-voucher-values span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 9px;
  line-height: 1.2;
  color: #a7987d;
}
.mp-order-voucher-values {
  margin-top: 3px;
}
.mp-order-voucher-values span {
  color: rgba(167, 152, 125, 0.78);
}
.mp-order-voucher-arrow {
  width: 64px;
  position: relative;
  flex-shrink: 0;
}
.mp-order-voucher-arrow::before {
  content: '';
  position: absolute;
  left: 6px;
  right: 20px;
  bottom: 16px;
  height: 1px;
  background: rgba(105, 73, 16, 0.35);
}
.mp-order-voucher-arrow::after {
  content: '';
  position: absolute;
  right: 20px;
  bottom: 13px;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(105, 73, 16, 0.35);
  border-right: 1px solid rgba(105, 73, 16, 0.35);
  transform: rotate(45deg);
}
.mp-order-stock-warning {
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid #f0b3b3;
  border-radius: 14px;
  background: #fff7f7;
}
.mp-order-stock-warning-title {
  margin-bottom: 10px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 13px;
  color: #8c2f2f;
}
.mp-order-stock-warning-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mp-order-stock-warning-item {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  line-height: 1.5;
  color: #5f1f1f;
}
.mp-order-stock-warning-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
  color: #421111;
}
.mp-order-stock-warning-item span {
  display: block;
}
/* Order Totals */
.mp-order-totals {
  margin-bottom: 24px;
}
.mp-order-line {
  width: 100%;
  height: 1px;
  background: #000000;
  margin: 12px 0;
}
.mp-order-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.mp-order-total-row span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  line-height: normal;
}
.mp-order-grand-total span {
  font-size: 14px;
}
.mp-order-payment-method {
  margin-top: 8px;
}
.mp-order-payment-method span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  line-height: normal;
}
/* Member Checkout Button */
.mp-member-checkout {
  display: block;
  width: 100%;
  height: 45px;
  background: #694910;
  border: none;
  border-radius: 5px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease;
}
.mp-member-checkout:hover {
  background: #5a3f0e;
}
.mp-member-checkout.is-disabled,
.mp-member-checkout:disabled {
  background: #bfae93;
  cursor: not-allowed;
  pointer-events: none;
}
.mp-pay-dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(105, 98, 89, 0.68);
}
.mp-pay-dialog-overlay.show {
  display: flex;
}
.mp-pay-dialog {
  position: relative;
  width: 100%;
  background: #f7f3ee;
  border-radius: 18px;
  border: 1px solid rgba(169, 151, 125, 0.24);
  box-shadow: 0 22px 48px rgba(44, 32, 18, 0.18);
}
.mp-pay-dialog--success {
  max-width: 688px;
  padding: 38px 54px 44px;
}
.mp-pay-dialog--error {
  max-width: 622px;
  padding: 38px 54px 52px;
}
.mp-pay-dialog-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1e8dd;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.mp-pay-dialog-close img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.mp-pay-dialog-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
}
.mp-pay-dialog-figure {
  width: 168px;
  height: 168px;
  margin: 26px auto 28px;
}
.mp-pay-dialog-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mp-pay-dialog--error .mp-pay-dialog-figure {
  width: 176px;
  height: 176px;
  margin-bottom: 18px;
}
.mp-pay-dialog-details {
  background: #efe4d8;
  border-radius: 14px;
  padding: 28px 26px;
}
.mp-pay-dialog-detail {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  line-height: 1.45;
  color: #000000;
}
.mp-pay-dialog-detail span:first-child {
  flex: 0 0 150px;
}
.mp-pay-dialog-detail span:last-child {
  flex: 1;
  text-align: right;
  word-break: break-word;
}
.mp-pay-dialog-detail + .mp-pay-dialog-detail {
  margin-top: 6px;
}
.mp-pay-dialog-actions {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}
.mp-pay-dialog-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 12px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-align: center;
}
.mp-pay-dialog-btn--outline {
  border: 1px solid #d0d0d0;
  background: #f7f3ee;
  color: #000000;
}
.mp-pay-dialog-btn--primary {
  background: #694910;
  color: #ffffff;
}
.mp-pay-dialog-error-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  color: #2a2960;
  text-align: center;
  margin-bottom: 10px;
}
.mp-pay-dialog-error-desc {
  max-width: 360px;
  margin: 0 auto 34px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  color: #000000;
  text-align: center;
}
.mp-pay-dialog-btn--danger {
  width: 100%;
  min-height: 52px;
  background: #ff2b45;
  color: #ffffff;
  border-radius: 8px;
}
/* ============================================
   Membership Payment Responsive
   ============================================ */
@media (max-width: 1280px) {
  .mp-payment-main {
    flex-direction: column;
    padding: 40px 20px;
  }
  .mp-payment-back {
    position: relative;
    top: auto;
    left: auto;
    margin: 24px 0 0 20px;
  }
  .mp-payment-form-area {
    max-width: 100%;
    padding: 0;
  }
  .mp-payment-sidebar {
    width: 100%;
  }
  .mp-pay-dialog--success,
  .mp-pay-dialog--error {
    max-width: 640px;
  }
}
@media (max-width: 767px) {
  .mp-pay-dialog-overlay {
    padding: 16px;
  }
  .mp-pay-dialog--success,
  .mp-pay-dialog--error {
    padding: 28px 20px 24px;
  }
  .mp-pay-dialog-title {
    font-size: 22px;
  }
  .mp-pay-dialog-figure {
    width: 132px;
    height: 132px;
    margin: 20px auto 22px;
  }
  .mp-pay-dialog-detail {
    gap: 14px;
    font-size: 16px;
  }
  .mp-pay-dialog-detail span:first-child {
    flex-basis: 108px;
  }
  .mp-pay-dialog-actions {
    flex-direction: column;
  }
  .mp-pay-dialog-btn {
    min-height: 50px;
    font-size: 18px;
  }
  .mp-pay-dialog-error-title {
    font-size: 26px;
  }
  .mp-pay-dialog-error-desc {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
/* ============================================
   Membership Checkout (summary card + promo modal)
   ============================================ */
.mc-checkout-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  margin: 0 auto;
  padding: 46px 20px 36px;
}
.mc-checkout-card {
  padding: 34px 30px 28px;
  border: 1px solid rgba(169, 151, 125, 0.28);
  border-radius: 14px;
  background: #f7f1e8;
  box-shadow: 0 12px 30px rgba(97, 71, 29, 0.08);
}
.mc-checkout-card-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}
.mc-checkout-card-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
}
.mc-checkout-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 14px;
  gap: 6px;
  border-radius: 999px;
  background: #efe0bc;
  color: #8b631f;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.mc-checkout-badge img {
  width: 11px;
  height: 11px;
  object-fit: contain;
  flex-shrink: 0;
}
.mc-checkout-plan-head {
  margin-bottom: 14px;
}
.mc-checkout-plan-name {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: #486e19;
  text-transform: uppercase;
}
.mc-checkout-plan-price {
  margin-top: 4px;
}
.mc-checkout-price-original {
  display: block;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(72, 110, 25, 0.28);
  text-decoration: line-through;
}
.mc-checkout-price-current {
  display: block;
  margin-top: 2px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #486e19;
}
.mc-checkout-section-title {
  margin-bottom: 10px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
}
.mc-checkout-card .mc-checkout-included {
  margin: 0 0 24px;
}
.mc-checkout-card .mc-checkout-included li {
  padding-left: 18px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  color: #000000;
}
.mc-checkout-card .mc-checkout-included li::before {
  top: 10px;
  width: 7px;
  height: 7px;
  background: #486e19;
  border-radius: 50%;
}
.mc-checkout-card .mc-checkout-line {
  margin: 14px 0;
  background: rgba(169, 151, 125, 0.34);
}
.mc-checkout-card .mc-checkout-row {
  margin-bottom: 0;
}
.mc-checkout-card .mc-checkout-total-row {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
}
.mc-checkout-card .mc-checkout-total-row span {
  font-size: 15px;
  font-weight: 700;
}
.mc-checkout-promo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  gap: 12px;
}
.mc-checkout-promo-trigger {
  padding: 0;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  color: #486e19;
  text-decoration: none;
  background: transparent;
}
.mc-checkout-promo-applied {
  display: none;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  color: #486e19;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}
.mc-checkout-promo-applied.is-visible {
  display: inline-flex;
}
.mc-checkout-promo-applied-icon {
  font-size: 15px;
  line-height: 1;
}
.mc-checkout-renew-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 2px 2px;
}
.mc-checkout-renew-copy {
  min-width: 0;
}
.mc-checkout-renew-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  text-transform: none;
}
.mc-checkout-renew-note {
  margin-top: 4px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-style: italic;
  line-height: 1.35;
  color: #6c5d48;
}
.mc-promo-dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(105, 98, 89, 0.34);
}
.mc-promo-dialog-overlay.show {
  display: flex;
}
.mc-promo-dialog {
  position: relative;
  width: 100%;
  max-width: 540px;
  padding: 28px 32px 30px;
  border: 1px solid #e7dfd3;
  border-radius: 14px;
  background: #f7f2eb;
  box-shadow: 0 18px 44px rgba(44, 32, 18, 0.16);
}
.mc-promo-dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1e8dd;
}
.mc-promo-dialog-close img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.mc-promo-dialog-icon {
  width: 96px;
  height: auto;
  margin: 10px auto 18px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.mc-promo-dialog-icon img {
  width: 100%;
  height: auto;
  object-fit: initial;
}
.mc-promo-dialog-title {
  margin-bottom: 10px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.1;
  color: #2f2b67;
  text-align: center;
}
.mc-promo-dialog-desc {
  margin: 0 auto 26px;
  max-width: 420px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  line-height: 1.4;
  color: #8b86a4;
  text-align: center;
}
.mc-promo-dialog-form {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mc-promo-dialog-input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #eadfd0;
  border-radius: 8px;
  background: #ffffff;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #000000;
}
.mc-promo-dialog-input::placeholder {
  color: #b5aec5;
}
.mc-promo-dialog-btn {
  min-width: 112px;
  height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  background: #8a641a;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}
@media (max-width: 768px) {
  .mc-checkout-shell {
    padding: 32px 16px 24px;
  }
  .mc-checkout-card {
    padding: 26px 20px 22px;
  }
  .mc-checkout-renew-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .mc-promo-dialog {
    padding: 24px 20px 22px;
  }
  .mc-promo-dialog-form {
    flex-direction: column;
    align-items: stretch;
  }
  .mc-promo-dialog-btn {
    width: 100%;
  }
}
/* ============================================
   About Membership Page
   ============================================ */
.about_mem_1 {
  position: relative;
  background: #fdfaf5;
  overflow: hidden;
}
/* Decorative blobs */
.about_mem_1::before,
.about_mem_1::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.about_mem_1::before {
  width: 584px;
  height: 550px;
  background: #FFE2D5;
  filter: blur(80px);
  opacity: 0.5;
  left: -200px;
  top: 460px;
}
.about_mem_1::after {
  width: 807px;
  height: 800px;
  background: #C7E9FF;
  filter: blur(80px);
  opacity: 0.45;
  right: -200px;
  top: 500px;
}
/* Hero Banner */
.am-hero {
  position: relative;
  width: 100%;
  height: 534px;
  overflow: hidden;
}
.am-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.am-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.54);
  z-index: 1;
}
.am-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 125px;
  height: 100%;
  text-align: center;
  padding-left: 24px;
  padding-right: 24px;
}
.am-hero-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 64px;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.am-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 33px;
  padding: 0 28px;
  background: #694910;
  border-radius: 63px;
  color: #ffffff;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  transition: background 0.3s;
}
.am-hero-btn:hover {
  background: #5a3f0e;
}
.am-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  color: #ffffff;
  line-height: 1;
}
.am-hero-credits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 10px;
}
.am-credits-main {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  color: #ffffff;
  line-height: 1;
}
.am-credits-main em {
  font-style: italic;
  font-size: 48px;
  margin-right: 4px;
}
.am-credits-pending {
  position: relative;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 16px;
  line-height: 1;
  padding: 6px 14px;
  border: 1px solid #a7987d;
  border-radius: 34px;
  color: #a7987d;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.am-credits-pending:hover {
  color: #ffeac6;
  border-color: #ffeac6;
}
.am-credits-pending:hover .am-tip-badge {
  opacity: 1;
  visibility: visible;
}
.am-tip-badge {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-block;
  padding: 4px 16px;
  border-radius: 34px;
  background: linear-gradient(90deg, #ffebc6 0%, #ffdb9a 50%, #ffebc6 100%);
  color: #000000;
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.am-hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 126px;
  background: rgba(56, 56, 56, 0.74);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 160px;
  padding: 0 40px;
}
@media (max-width: 1000px) {
  .am-hero {
    height: 534px;
  }
  .am-hero-content {
    padding-top: 110px;
  }
  .am-hero-stats {
    gap: 48px;
  }
}
/* Scale the hero title proportionally on narrow desktop widths so it
   keeps the same share of the viewport as in the 1920px design */
@media (min-width: 993px) and (max-width: 1920px) {
  .am-hero-title {
    font-size: 3.3333vw;
  }
}
.am-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.am-stat-icon {
  width: 62px;
  height: 62px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.am-stat-icon svg {
  width: 30px;
  height: 30px;
}
.am-stat-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.am-stat-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.am-stat-value {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  line-height: 1;
}
.am-stat-sub {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  color: #ffffff;
  line-height: 1;
}
/* Upgrade Section */
.am-upgrade {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.35);
  padding: 40px 60px;
  margin-bottom: 40px;
}
.am-upgrade-left {
  max-width: 600px;
}
.am-upgrade-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #a7987d;
  margin-bottom: 8px;
}
.am-upgrade-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  color: #000;
  margin-bottom: 8px;
}
.am-upgrade-desc {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  margin-bottom: 12px;
}
.am-upgrade-features {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
}
.am-upgrade-features li {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #694910;
  position: relative;
  padding-left: 12px;
}
.am-upgrade-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #6b8252;
  border-radius: 50%;
}
.am-upgrade-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.am-upgrade-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 49px;
  padding: 0 24px;
  background: #694910;
  border-radius: 5px;
  color: #fdfaf5;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.3s;
}
.am-upgrade-btn:hover {
  background: #5a3f0e;
}
.am-upgrade-link {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #694910;
  text-decoration: underline;
}
/* Tabs */
.am-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.am-tab {
  height: 56px;
  padding: 0 40px;
  border: 1px solid #a7987d;
  background: transparent;
  color: #a7987d;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
}
.am-tab:first-child {
  border-radius: 5px 0 0 5px;
  border-right: none;
}
.am-tab:last-child {
  border-radius: 0 5px 5px 0;
}
.am-tab.active {
  background: #694910;
  border-color: #694910;
  color: #fff;
}
/* Benefits Panel */
.am-benefits-panel {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 36px;
  padding: 48px 60px;
  margin-bottom: 40px;
}
.am-benefits-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.am-benefits-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 32px;
  color: #000;
  text-align: center;
}
.am-benefits-expire {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  color: #a7987d;
  width: 170px;
  text-align: center;
  white-space: nowrap;
}
.am-benefit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}
.am-benefit-img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.am-benefit-detail {
  flex: 1;
}
.am-benefit-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.am-benefit-top h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
}
.am-benefit-tag {
  display: inline-block;
  padding: 4px 12px;
  background: #eaf6e0;
  border-radius: 74px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 11px;
  color: #6b8252;
}
.am-benefit-detail > p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  color: #a7987d;
}
.am-benefit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 34px;
  padding: 0 10px;
  background: #694910;
  border-radius: 5px;
  color: #fff;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 13px;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: background 0.3s;
}
.am-benefit-btn:hover {
  background: #5a3f0e;
}
.am-benefit-divider {
  width: 100%;
  height: 1px;
  background: #e7dfd3;
  margin: 8px 0;
}
/* Tab Panels */
.am-tab-panel {
  display: none;
}
.am-tab-panel.active {
  display: block;
}
/* About Star Journey Panel */
.am-about-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
}
.am-about-row-img {
  width: 46%;
  border-radius: 10px;
  object-fit: cover;
}
.am-about-row-detail {
  flex: 1;
}
.am-about-row-detail h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 28px;
  color: #000;
  margin-bottom: 16px;
}
.am-about-row-detail p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: italic;
  font-size: 14px;
  color: #a7987d;
  line-height: 1.6;
  margin-bottom: 24px;
}
.am-about-row-link {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #694910;
  text-decoration: underline;
}
.am-notice {
  background: #fff;
  border-radius: 36px;
  padding: 40px 60px;
  margin-bottom: 40px;
}
.am-notice-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 24px;
  color: #000;
  margin-bottom: 24px;
}
.am-notice-list {
  list-style: none;
}
.am-notice-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}
.am-notice-list li:last-child {
  margin-bottom: 0;
}
.am-notice-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1ba076;
}
.am-notice-list h4 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  margin-bottom: 4px;
}
.am-notice-list p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: italic;
  font-size: 13px;
  color: #a7987d;
  line-height: 1.6;
}
/* Unlock Section */
.am-unlock-section {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 36px;
  padding: 48px 40px;
  margin-bottom: 40px;
}
.am-unlock-title {
  text-align: center;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 32px;
  color: #000;
  margin-bottom: 32px;
}
.am-unlock-title .am-highlight {
  color: #6b8252;
}
.am-unlock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.am-unlock-card {
  background: #fff;
  border: 1px solid #a7987d;
  border-radius: 10px;
  overflow: hidden;
}
.am-unlock-card img {
  width: 100%;
  height: 138px;
  object-fit: cover;
}
.am-unlock-card h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  padding: 16px 16px 8px;
}
.am-unlock-card p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  color: #a7987d;
  padding: 0 16px 16px;
  line-height: 1.5;
}
/* Activity */
.am-activity {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 36px;
  padding: 40px;
  margin-bottom: 40px;
}
.am-activity-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.am-activity-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 24px;
  color: #000;
  margin-bottom: 8px;
}
.am-activity-sub {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  color: #a7987d;
}
.am-activity-legend {
  display: flex;
  gap: 16px;
}
.am-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 13px;
  color: #000;
}
.am-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
}
.am-dot-green {
  background: #1ba076;
}
.am-dot-gold {
  background: #a07c1b;
}
.am-dot-blue {
  background: #261ba0;
}
.am-activity-table {
  border: 1px solid #e6ded0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}
.am-activity-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 16px;
  padding: 12px 24px;
  background: #f3ebe2;
}
.am-activity-head span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 13px;
  color: #000;
}
.am-activity-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 16px;
  padding: 16px 24px;
  background: #fff;
}
.am-activity-row span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 13px;
  color: #000;
}
.am-activity-row span:first-child {
  font-weight: 400;
  font-style: italic;
  font-size: 12px;
}
.am-activity-note {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  color: #694910;
}
/* Content */
.am-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.am-section {
  margin-bottom: 56px;
}
.am-section-line {
  width: 100%;
  height: 1px;
  background: #e7dfd3;
  margin-bottom: 32px;
}
.am-heading {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 32px;
  color: #694910;
  line-height: 1.1;
  margin-bottom: 24px;
}
.am-body-text {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 1.7;
  max-width: 900px;
}
.am-body-text.am-small {
  font-size: 14px;
  color: #a7987d;
  line-height: 1.8;
}
.am-closing-text {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 15px;
  color: #694910;
  margin-top: 16px;
}
/* Steps */
.am-step-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.am-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.am-step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #694910;
  color: #fdfaf5;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.am-step-body h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  margin-bottom: 8px;
}
.am-step-body p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 15px;
  color: #a7987d;
  line-height: 1.6;
}
.am-cta-row {
  text-align: center;
}
.am-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 48px;
  background: #694910;
  border-radius: 5px;
  color: #fdfaf5;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.3s;
}
.am-cta-btn:hover {
  background: #5a3f0e;
}
/* Benefits Grid */
.am-benefit-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.am-benefit-card {
  padding: 32px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e7dfd3;
  transition: transform 0.3s, box-shadow 0.3s;
}
.am-benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.am-benefit-card .am-benefit-icon {
  margin-bottom: 16px;
}
.am-benefit-card .am-benefit-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.am-benefit-card h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  margin-bottom: 10px;
}
.am-benefit-card p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 15px;
  color: #a7987d;
  line-height: 1.6;
}
/* Membership Tiers */
.am-tier-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.am-tier-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e7dfd3;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.am-tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.am-tier-header {
  padding: 28px 24px 20px;
  text-align: center;
}
.am-tier-entry .am-tier-header {
  background: rgba(105, 73, 16, 0.05);
}
.am-tier-popular .am-tier-header {
  background: rgba(105, 73, 16, 0.1);
}
.am-tier-sovereign .am-tier-header {
  background: rgba(105, 73, 16, 0.15);
}
.am-tier-badge {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 4px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.am-tier-badge.entry-badge {
  background: #a7987d;
  color: #fff;
}
.am-tier-badge.popular-badge {
  background: #694910;
  color: #fff;
}
.am-tier-badge.sovereign-badge {
  background: #1a1a1a;
  color: #ffd700;
}
.am-tier-price {
  margin-bottom: 8px;
}
.am-tier-price .am-price-val {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 36px;
  color: #000000;
}
.am-tier-price .am-price-period {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 16px;
  color: #a7987d;
}
.am-tier-name {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  font-style: italic;
}
.am-tier-btn {
  display: block;
  margin: 0 24px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 5px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: opacity 0.3s;
}
.am-tier-btn:hover {
  opacity: 0.9;
}
.am-tier-btn.entry-btn {
  background: #a7987d;
  color: #fff;
}
.am-tier-btn.popular-btn {
  background: #694910;
  color: #fff;
}
.am-tier-btn.sovereign-btn {
  background: #1a1a1a;
  color: #ffd700;
}
.am-tier-body {
  padding: 24px;
}
.am-tier-body p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 14px;
  color: #a7987d;
  line-height: 1.8;
}
/* Extra decorative blobs via pseudo elements on content */
.am-content::before {
  content: '';
  position: absolute;
  width: 576px;
  height: 622px;
  background: #D9F0FF;
  filter: blur(80px);
  opacity: 0.4;
  left: -300px;
  top: 800px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
.am-content::after {
  content: '';
  position: absolute;
  width: 737px;
  height: 770px;
  background: #FFE2D5;
  filter: blur(80px);
  opacity: 0.4;
  right: -300px;
  top: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
/* ============================================
   User Profile Popup
   ============================================ */
.user-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.user-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}
.user-popup {
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100%;
  height: 100%;
  background: #fdfaf5;
  overflow-y: auto;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.user-popup-overlay.show .user-popup {
  transform: translateX(0);
}
.user-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.user-popup-header h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
  margin: 0;
}
.user-popup-close {
  width: 32px;
  height: 32px;
  background: #694910;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.user-popup-card {
  background: #f3ebe2;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}
.user-popup-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.user-popup-card-top em {
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: italic;
  font-size: 14px;
  color: #000000;
}
.user-popup-tier {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 12px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 12px;
  padding: 2px 10px;
}
.user-popup-membership {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: 12px;
  color: #a7987d;
  margin-bottom: 12px;
}
.user-popup-credits {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}
.user-popup-credits-num {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 48px;
  color: #000000;
  line-height: 1;
}
.user-popup-credits-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
}
.user-popup-stats {
  display: flex;
  justify-content: space-between;
}
.user-popup-stat {
  text-align: center;
}
.user-popup-stat strong {
  display: block;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
}
.user-popup-stat span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #a7987d;
}
.user-popup-advisor {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f3ebe2;
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid #e7dccd;
  box-shadow: 0 10px 24px rgba(105, 73, 16, 0.08);
}
.user-popup-advisor-inbox {
  flex: 0 0 auto;
  display: block;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  color: #694910;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  line-height: 1;
}
.user-popup-advisor-info {
  flex: 1;
  min-width: 0;
}
.user-popup-advisor-btn {
  flex-shrink: 0;
  min-width: 92px;
  padding: 10px 22px;
  background: #694910;
  border-radius: 999px;
  color: #fff;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(105, 73, 16, 0.18);
}
.user-popup-section {
  margin-bottom: 16px;
}
.user-popup-section-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 12px;
  color: #a7987d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.user-popup-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 1px solid #e8e0d4;
}
.user-popup-link .user-popup-link-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.user-popup-link .user-popup-link-left span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #000000;
}
.user-popup-link .user-popup-link-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.user-popup-link-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}
.user-popup-badge {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #a7987d;
  background: #f3ebe2;
  border-radius: 10px;
  padding: 2px 8px;
  flex-shrink: 0;
}
.user-popup-badge--green {
  color: #4a7c59;
  background: #e8f5e9;
}
.user-popup-link-arrow {
  flex-shrink: 0;
}
.user-popup-dot {
  width: 8px;
  height: 8px;
  background: #c44b4b;
  border-radius: 50%;
  flex-shrink: 0;
}
.user-popup-view-link {
  display: block;
  text-align: center;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #000000;
  text-decoration: underline;
  margin: 16px 0;
}
.user-popup-logout {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  text-decoration: none;
}
.user-popup-logout span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #000000;
}
/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .am-hero {
    height: 500px;
  }
  .am-hero-title {
    font-size: 36px;
  }
  .am-benefit-group {
    grid-template-columns: 1fr;
  }
  .am-tier-group {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .am-separator {
    height: 80px;
  }
}
@media (max-width: 768px) {
  .am-hero {
    height: 480px;
  }
  .am-hero-title {
    font-size: 28px;
  }
  .am-hero-btns {
    flex-direction: column;
    gap: 10px;
  }
  .am-separator {
    height: 40px;
  }
  .am-heading {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .mp-form-row {
    flex-direction: column;
    gap: 0;
  }
  .mp-saved-address-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .mp-saved-address-new {
    width: 100%;
    text-align: left;
  }
  .mp-form-row .mp-form-group-sm,
  .mp-form-row .mp-form-group-xs,
  .mp-form-row .mp-form-group-md,
  .mp-form-row .mp-form-group-lg {
    flex: 1;
    width: 100%;
  }
  .mp-order-item {
    flex-wrap: wrap;
  }
  .mp-order-item-price {
    width: 100%;
    text-align: left;
    margin-top: 8px;
  }
}
/* ============================================
   Property Search Map Results
   ============================================ */
.property-search-page {
  background: #fdfaf5;
  min-height: 100vh;
}
.property-search-layout {
  display: flex;
  max-width: 1616px;
  margin: 0 auto;
  min-height: 600px;
  overflow: hidden;
}
/* ---- Left: Filters ---- */
.property-filters {
  width: 300px;
  flex-shrink: 0;
  background: #fdfaf5;
  border-right: 1px solid #e7dfd3;
  padding: 20px 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filter-group label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
}
.filter-select {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #e7dfd3;
  border-radius: 6px;
  background: #fff;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #000000;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23694910' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}
.filter-select:focus {
  border-color: #694910;
}
.filter-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filter-slider-wrap .filter-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-slider-wrap .filter-slider-header label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
}
.filter-slider-wrap .filter-slider-header .filter-slider-val {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #a7987d;
  border: 1px solid #e7dfd3;
  padding: 2px 8px;
  border-radius: 4px;
  background: #fff;
}
.filter-slider-track {
  position: relative;
  height: 4px;
  background: #e7dfd3;
  border-radius: 2px;
  margin: 8px 0;
}
.filter-slider-track .filter-slider-fill {
  position: absolute;
  left: 0;
  right: 20%;
  top: 0;
  height: 100%;
  background: #694910;
  border-radius: 2px;
}
.filter-slider-track .filter-slider-thumb {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: #694910;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.filter-price-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}
.filter-price-inputs input {
  flex: 1;
  width: 100px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #e7dfd3;
  border-radius: 6px;
  background: #fff;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #000000;
}
.filter-price-inputs .filter-price-arrow {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a7987d;
  font-size: 12px;
}
.filter-slider-labels {
  display: flex;
  justify-content: space-between;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 11px;
  color: #a7987d;
  margin-top: 2px;
}
.btn-filter-submit {
  width: 100%;
  height: 40px;
  background: #694910;
  color: #fff;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background 0.3s;
  margin-top: 4px;
}
.btn-filter-submit:hover {
  background: #5a3f0e;
}
/* ---- Center: Map ---- */
.property-map {
  flex: 1;
  position: relative;
  background: #f0ece3;
  overflow: hidden;
}
.property-map .map-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-marker {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.map-marker .map-marker-dot {
  width: 18px;
  height: 18px;
  background: #000000;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}
.map-marker .map-marker-price {
  background: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 13px;
  color: #000000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
.map-marker .map-marker-more {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a7987d;
  font-size: 16px;
  line-height: 1;
}
.map-popup-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  width: 220px;
  z-index: 10;
}
.map-popup-card .map-popup-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.map-popup-card .map-popup-body {
  padding: 12px;
}
.map-popup-card .map-popup-price {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  margin-bottom: 6px;
}
.map-popup-card .map-popup-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #a7987d;
  margin-bottom: 8px;
}
.map-popup-card .map-popup-location img,
.map-popup-card .map-popup-location svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.map-popup-card .map-popup-meta {
  display: flex;
  gap: 10px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 11px;
  color: #a7987d;
}
.map-popup-card .map-popup-meta span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.map-zoom-controls {
  position: absolute;
  right: 16px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 10;
}
.map-zoom-controls .map-zoom-btn {
  width: 32px;
  height: 32px;
  background: #694910;
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition: background 0.2s;
}
.map-zoom-controls .map-zoom-btn:hover {
  background: #5a3f0e;
}
/* ---- Right: Detail Panel ---- */
.property-detail-panel {
  width: 380px;
  flex-shrink: 0;
  background: #fdfaf5;
  border-left: 1px solid #e7dfd3;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.detail-panel-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #694910;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: background 0.2s;
  flex-shrink: 0;
}
.detail-panel-close:hover {
  background: #5a3f0e;
}
.detail-gallery {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f3ebe2;
}
.detail-gallery .detail-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-gallery .detail-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}
.detail-gallery .detail-gallery-nav:hover {
  background: #fff;
}
.detail-gallery .detail-gallery-nav img {
  width: 14px;
  height: 14px;
}
.detail-gallery .detail-gallery-nav.prev {
  left: 10px;
}
.detail-gallery .detail-gallery-nav.next {
  right: 10px;
}
.detail-gallery .detail-gallery-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.detail-gallery .detail-gallery-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s;
}
.detail-gallery .detail-gallery-dots .dot.active {
  background: #fff;
}
.detail-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.detail-price .detail-price-currency {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
}
.detail-price .detail-price-value {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 28px;
  color: #000000;
  letter-spacing: -0.01em;
}
.detail-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.detail-spec-item {
  border: 1px solid #e7dfd3;
  border-radius: 8px;
  padding: 14px 8px;
  text-align: center;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.detail-spec-item .detail-spec-row {
  display: flex;
  align-items: center;
  gap: 4px;
}
.detail-spec-item .detail-spec-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.detail-spec-item .detail-spec-num {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
}
.detail-spec-item .detail-spec-label {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #a7987d;
}
.detail-desc {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #000000;
  line-height: 1.7;
}
.detail-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}
.detail-actions .btn-detail-cancel {
  flex: 1;
  height: 44px;
  border: 1px solid #e7dfd3;
  border-radius: 6px;
  background: #fff;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  transition: all 0.2s;
}
.detail-actions .btn-detail-cancel:hover {
  border-color: #694910;
  color: #694910;
}
.detail-actions .btn-detail-primary {
  flex: 1;
  height: 44px;
  background: #694910;
  border-radius: 6px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  transition: background 0.2s;
}
.detail-actions .btn-detail-primary:hover {
  background: #5a3f0e;
}
/* ---- Responsive ---- */
@media (max-width: 1000px) {
  .property-search-layout {
    flex-direction: column;
    height: auto;
    overflow: visible;
  }
  .property-filters {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e7dfd3;
    padding: 20px 16px;
  }
  .property-map {
    min-height: 400px;
  }
  .property-detail-panel {
    width: 100%;
    border-left: none;
    border-top: 1px solid #e7dfd3;
    padding: 20px 16px;
  }
}
/* ============================================
   Modal Popup
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
.modal-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: 720px;
  max-width: calc(100% - 32px);
  background: #fdfaf5;
  border-radius: 16px;
  padding: 48px 40px 40px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  text-align: center;
}
.modal-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.modal-popup .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.modal-popup .modal-close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.modal-popup h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-style: italic;
  font-size: 28px;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 16px;
}
.modal-popup p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
  line-height: 1.6;
  margin-bottom: 24px;
}
.modal-popup p a {
  color: #694910;
  text-decoration: underline;
}
.modal-popup p a:hover {
  color: #5a3f0e;
}
.modal-popup .modal-body {
  display: none;
}
.modal-popup .modal-body.active {
  display: block;
}
.modal-popup .modal-success {
  position: relative;
  padding-top: 35px;
}
.modal-popup .modal-success .modal-confetti {
  position: absolute;
  top: -48px;
  left: -40px;
  right: -40px;
  height: 120px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.modal-popup .modal-success .modal-confetti img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.modal-popup .modal-success h3,
.modal-popup .modal-success p {
  position: relative;
  z-index: 1;
}
.modal-popup .modal-field {
  position: relative;
  text-align: left;
  margin-bottom: 12px;
}
.modal-popup .modal-field input[type="email"] {
  width: 100%;
  height: 50px;
  padding: 18px 16px 6px;
  border: 1px solid #e7dfd3;
  border-radius: 8px;
  background: #fff;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #000000;
  transition: background 0.2s, border-color 0.2s;
}
.modal-popup .modal-field input[type="email"]:focus {
  background: #f3ebe2;
  border-color: #694910;
}
.modal-popup .modal-field input[type="email"]:focus + label,
.modal-popup .modal-field input[type="email"]:not(:placeholder-shown) + label {
  top: 6px;
  transform: translateY(0);
  font-size: 11px;
  color: #a7987d;
}
.modal-popup .modal-field label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #a7987d;
  pointer-events: none;
  transition: top 0.2s, transform 0.2s, font-size 0.2s, color 0.2s;
}
.modal-popup button[type="button"]:not(.modal-close) {
  width: 100%;
  height: 50px;
  background: #694910;
  border-radius: 8px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}
.modal-popup button[type="button"]:not(.modal-close):hover {
  background: #5a3f0e;
}
@media (max-width: 768px) {
  .modal-popup {
    padding: 36px 24px 28px;
  }
  .modal-popup h3 {
    font-size: 22px;
  }
}
/* Message advisor modal */
.msg-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: 980px;
  max-width: calc(100% - 32px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #fdfaf5;
  border-radius: 16px;
  padding: 40px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.msg-modal.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.msg-modal .msg-confetti {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 280px;
  overflow: hidden;
  pointer-events: none;
  border-radius: 16px 16px 0 0;
}
.msg-modal .msg-confetti img {
  max-width: 100%;
  object-fit: cover;
  object-position: center top;
}
.msg-modal.sent .msg-confetti {
  display: flex;
  justify-content: center;
}
.msg-modal .msg-modal-close {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.msg-modal .msg-modal-close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.msg-modal-head {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
  margin: -40px -40px 24px;
  padding: 16px 40px 14px;
  border-bottom: 1px solid #e7dfd3;
}
.msg-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  position: relative;
  z-index: 1;
}
.msg-gallery {
  width: 400px;
  flex-shrink: 0;
}
.msg-gallery-main {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 340px;
  margin-bottom: 14px;
}
.msg-gallery-main > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.msg-gallery-nav {
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.msg-gallery-nav button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s;
}
.msg-gallery-nav button:hover {
  background: #fff;
}
.msg-gallery-nav button svg {
  width: 16px;
  height: 16px;
  color: #694910;
}
.msg-gallery-thumbs {
  display: flex;
  gap: 10px;
}
.msg-thumb {
  flex: 1;
  height: 78px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color 0.2s;
}
.msg-thumb.active {
  border-color: #694910;
}
.msg-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.msg-panel {
  flex: 1;
  min-width: 0;
}
.msg-panel h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 28px;
  color: #000000;
  margin-bottom: 6px;
}
.msg-body {
  display: none;
}
.msg-body.active {
  display: block;
}
.msg-sub {
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: italic;
  font-size: 14px;
  color: #a7987d;
  margin-bottom: 22px;
}
.msg-field {
  margin-bottom: 14px;
}
.msg-field label {
  display: block;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  margin-bottom: 6px;
}
.msg-field input,
.msg-field textarea {
  width: 100%;
  border: 1px solid #e7dfd3;
  border-radius: 8px;
  background: #fff;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #000000;
  transition: background 0.2s, border-color 0.2s;
}
.msg-field input:focus,
.msg-field textarea:focus {
  outline: none;
  background: #f3ebe2;
  border-color: #694910;
}
.msg-field input {
  height: 44px;
  padding: 0 16px;
}
.msg-field textarea {
  min-height: 110px;
  padding: 12px 16px;
  resize: none;
}
.msg-field textarea::placeholder {
  color: #b9ac93;
  font-style: italic;
}
.msg-btn {
  width: 100%;
  height: 50px;
  margin-top: 10px;
  background: #694910;
  border: none;
  border-radius: 8px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.msg-btn:hover {
  background: #5a3f0e;
}
.msg-review {
  background: #f3ebe2;
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 24px;
}
.msg-review-from {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
  margin-bottom: 14px;
}
.msg-name-badge {
  background: #fff;
  border-radius: 20px;
  padding: 5px 16px;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
}
.msg-review-text {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #a7987d;
  line-height: 1.7;
}
/* Success state: thumbnails expand to full-width bottom row */
.msg-modal.sent .msg-gallery {
  display: contents;
}
.msg-modal.sent .msg-gallery-main {
  width: 400px;
  flex-shrink: 0;
  order: 1;
}
.msg-modal.sent .msg-panel {
  order: 2;
}
.msg-modal.sent .msg-gallery-thumbs {
  order: 3;
  width: 100%;
}
.msg-modal.sent .msg-thumb {
  height: 120px;
}
@media (max-width: 768px) {
  .msg-modal {
    padding: 36px 24px 28px;
  }
  .msg-modal-head {
    margin: -36px -24px 20px;
    padding: 14px 24px 12px;
  }
  .msg-layout {
    flex-direction: column;
    gap: 24px;
  }
  .msg-gallery {
    width: 100%;
  }
  .msg-gallery-main,
  .msg-modal.sent .msg-gallery-main {
    width: 100%;
    height: 240px;
  }
  .msg-panel h3 {
    font-size: 22px;
  }
}
/* ============================================
   Membership Benefits Page
   ============================================ */
.mb-page {
  background: #fdfaf5;
}
.mb-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.mb-hero .mb-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.mb-hero .mb-hero-card {
  position: relative;
  z-index: 2;
  background: #fff;
  max-width: 760px;
  width: 100%;
  padding: 56px 64px;
  text-align: center;
}
.mb-hero h1 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 40px;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 16px;
}
.mb-hero h1 span {
  font-weight: 700;
  font-style: normal;
}
.mb-hero h1 .mb-hero-gold {
  color: #c9a55c;
  font-style: italic;
  font-weight: 700;
}
.mb-hero .mb-hero-price {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #666;
  text-decoration: underline;
  margin-bottom: 32px;
}
.mb-hero .mb-hero-divider {
  width: 60px;
  height: 1px;
  background: #e0d8c8;
  margin: 0 auto 32px;
}
.mb-hero .mb-hero-lead {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 15px;
  color: #000000;
  margin-bottom: 12px;
}
.mb-hero .mb-hero-desc {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  font-style: italic;
}
/* Scale the membership-benefits page proportionally on narrow desktop
   widths (design base 1920px) */
@media (min-width: 993px) and (max-width: 1920px) {
  .mb-hero {
    min-height: 26.0417vw;
    padding: 2.0833vw 1.25vw;
  }
  .mb-hero .mb-hero-card {
    max-width: 39.5833vw;
    padding: 2.9167vw 3.3333vw;
  }
  .mb-hero h1 {
    font-size: 2.0833vw;
    margin-bottom: 0.8333vw;
  }
  .mb-hero .mb-hero-price {
    margin-bottom: 1.6667vw;
  }
  .mb-hero .mb-hero-divider {
    margin-bottom: 1.6667vw;
  }
  .mb-hero-features {
    gap: 2.5vw;
    padding: 1.25vw 0;
  }
  .mb-section {
    max-width: 46.875vw;
    padding: 3.125vw 1.25vw;
  }
  .mb-section h2 {
    font-size: 1.4583vw;
    margin-bottom: 1.25vw;
  }
}
.mb-hero-features {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  padding: 24px 0;
  background: #F3EBE2;
}
.mb-hero-features a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 11px;
  color: #694910;
  letter-spacing: 0.05em;
  text-align: center;
  transition: opacity 0.2s;
}
.mb-hero-features a:hover {
  opacity: 0.7;
}
.mb-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px;
  border-bottom: 1px solid #e0d8c8;
}
.mb-section:last-of-type {
  border-bottom: none;
}
.mb-section h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 28px;
  color: #694910;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.mb-section h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  margin-bottom: 4px;
}
.mb-section p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}
.mb-section p strong {
  font-weight: 700;
  color: #000000;
}
.mb-section p em {
  font-style: italic;
  color: #694910;
}
.mb-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}
.mb-section ul li {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}
.mb-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #694910;
  border-radius: 50%;
}
.mb-section ul li strong {
  font-weight: 700;
  color: #000000;
}
.mb-section .mb-sub-list {
  margin-top: 8px;
  padding-left: 16px;
}
.mb-section .mb-sub-list li {
  padding-left: 12px;
  margin-bottom: 4px;
}
.mb-section .mb-sub-list li::before {
  content: '·';
  background: none;
  color: #694910;
  font-weight: 700;
  top: 0;
  width: auto;
  height: auto;
}
.mb-section .mb-disclaimer {
  font-size: 12px;
  color: #999;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #e0d8c8;
}
.mb-full-img {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: block;
}
.mb-footer {
  text-align: center;
  padding: 40px 24px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  color: #999;
}
@media (max-width: 768px) {
  .mb-hero {
    height: auto;
    padding: 80px 0 120px;
  }
  .mb-hero h1 {
    font-size: 32px;
  }
  .mb-hero .mb-hero-features {
    flex-wrap: wrap;
    gap: 16px;
    padding: 12px;
  }
  .mb-section {
    padding: 40px 20px;
  }
}
/* ============================================
   Hotel Page (banner / regions / brands)
   ============================================ */
/* ---- Hotel Banner (region list) ---- */
.hotel-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hotel-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0) 75%);
  pointer-events: none;
}
.hotel-banner-bg {
  display: block;
  width: 100%;
  height: auto;
}
.hotel-banner-regions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0;
  padding: 0 20px;
  list-style: none;
  box-sizing: border-box;
}
.hotel-region-item {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 400;
  font-size: clamp(30px, 4vw, 64px);
  line-height: 1.5;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}
.hotel-region-item:hover .hotel-region-explore {
  opacity: 1;
  visibility: visible;
}
.hotel-region-link {
  color: inherit;
  text-decoration: none;
}
.hotel-region-link:hover,
.hotel-region-link:visited,
.hotel-region-link:visited:hover,
.hotel-region-link:focus {
  color: #ffffff;
  text-decoration: none;
}
.hotel-region-explore {
  margin-left: 22px;
  font-size: 13px;
  letter-spacing: 3px;
  color: #ffffff;
  text-decoration: none;
  vertical-align: middle;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.hotel-region-explore:visited,
.hotel-region-explore:visited:hover {
  color: #ffffff;
}
.hotel-region-explore:hover {
  text-decoration: underline;
}
/* ---- Hotel Brands ---- */
.hotel-brands {
  background: #ffffff;
  padding: 90px 20px 95px;
}
/* Hotel page: keep side breathing room and proportional vertical rhythm
   on narrow desktop widths */
@media (min-width: 993px) and (max-width: 1420px) {
  .hotel-banner-regions {
    max-width: 64.5833vw;
    padding: 0 1.0417vw;
  }
  .hotel-brands {
    padding: 4.6875vw 1.0417vw 4.9479vw;
  }
  .hotel-brands-grid {
    max-width: 62.5vw;
    gap: 1.5625vw;
  }
  .hotel-brands-more {
    margin-top: 2.8646vw;
  }
}
#hotel-properties {
  scroll-margin-top: 72px;
}
.hotel-brands-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.hotel-brand-card {
  position: relative;
  display: block;
  overflow: hidden;
}
.hotel-brand-card:hover .hotel-brand-img {
  transform: scale(1.04);
}
.hotel-brand-card-dim::after {
  display: none;
}
.hotel-brand-img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}
.hotel-brand-name {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 16px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.hotel-brands-more {
  display: block;
  width: fit-content;
  margin: 55px auto 0;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 16px;
  letter-spacing: 3px;
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hotel-brands-more:hover {
  color: #694910;
}
.hotel-brand-pagination {
  max-width: 1200px;
  margin: 50px auto 0;
}
.hotel-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.hotel-pagination-link,
.hotel-pagination-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #d7c7ae;
  border-radius: 999px;
  background: #f7f1e8;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #694910;
  text-decoration: none;
  transition: all 0.2s ease;
}
.hotel-pagination-link:hover {
  background: #694910;
  border-color: #694910;
  color: #ffffff;
}
.hotel-pagination-link.is-active {
  background: #694910;
  border-color: #694910;
  color: #ffffff;
}
.hotel-pagination-link.is-disabled {
  border-color: #e7dfd3;
  background: #f8f5ef;
  color: #b6a78d;
  cursor: default;
}
.hotel-pagination-link--control {
  min-width: 86px;
}
.hotel-pagination-dots {
  min-width: auto;
  padding: 0 6px;
  border: none;
  background: transparent;
  color: #a7987d;
}
/* Compact pagination slightly earlier, around 1000px (matches the
   max-width: 900px values so nothing changes below 900px) */
@media (max-width: 1000px) {
  .hotel-pagination {
    gap: 10px;
  }
  .hotel-pagination-link,
  .hotel-pagination-dots {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
  }
}
/* ============================================
   Hotel Detail Page
   ============================================ */
/* ---- Banner: current region ---- */
.hotel-banner-det .hotel-region-item {
  font-size: clamp(22px, 2.8vw, 42px);
  opacity: 0.75;
}
.hotel-banner-det .hotel-region-item.current {
  font-size: clamp(38px, 5.6vw, 88px);
  opacity: 1;
}
.hotel-banner-det .hotel-region-item.current .hotel-region-link:hover {
  text-decoration: none;
}
/* ---- Explore Europe collage ---- */
.det-explore {
  background: #ffffff;
  padding: 110px 20px 90px;
}
.det-explore-inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  aspect-ratio: 1080 / 984;
}
.det-explore-img {
  position: absolute;
  display: block;
  height: auto;
}
.det-explore-img1 {
  left: 0;
  top: 0;
  width: 38%;
}
.det-explore-img2 {
  left: 43.3%;
  top: 36.6%;
  width: 56.7%;
  z-index: 2;
}
.det-explore-img3 {
  left: 5.7%;
  top: 54.5%;
  width: 43%;
}
.det-explore-text {
  position: absolute;
  right: 0;
  top: 10.8%;
  width: 45%;
  text-align: center;
  z-index: 3;
}
.det-explore-text h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 44px;
  color: #694910;
  margin-bottom: 22px;
}
.det-explore-text p {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 14px;
  line-height: 1.9;
  color: #6b6b6b;
}
/* ---- Inspiration ---- */
.det-inspire {
  background: #ffffff;
  padding: 20px 20px 90px;
}
.det-inspire-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.det-inspire-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  color: #1a1a1a;
  margin-bottom: 40px;
}
.det-inspire-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.det-inspire-card {
  display: block;
  color: #1a1a1a;
  text-decoration: none;
}
.det-inspire-card-img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 18px;
}
.det-inspire-card-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 17px;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.det-inspire-card-desc {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12.5px;
  line-height: 1.75;
  color: #777777;
  margin-bottom: 16px;
}
.det-inspire-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.det-inspire-author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.det-inspire-author span {
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  color: #1a1a1a;
}
/* ---- Hotel responsive ---- */
@media (max-width: 900px) {
  .hotel-brands {
    padding: 50px 20px 60px;
  }
  .hotel-brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .hotel-brand-pagination {
    margin-top: 40px;
  }
  .hotel-pagination {
    gap: 10px;
  }
  .hotel-pagination-link,
  .hotel-pagination-dots {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
  }
  .det-explore {
    padding: 50px 20px 60px;
  }
  .det-explore-inner {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .det-explore-img,
  .det-explore-text {
    position: static;
    width: 100%;
  }
  .det-inspire-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 560px) {
  .hotel-brands-grid {
    grid-template-columns: 1fr;
  }
  .hotel-pagination {
    justify-content: flex-start;
  }
  .hotel-pagination-link--control {
    min-width: 78px;
  }
  .hotel-region-explore {
    margin-left: 12px;
    letter-spacing: 2px;
  }
}
/* ============================================
   Hotel Detail 3: Hilton brand page
   ============================================ */
.ht-hero {
  position: relative;
  overflow: hidden;
}
.ht-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.3) 45%, rgba(0, 0, 0, 0.55));
}
.ht-hero-bg {
  width: 100%;
  display: block;
}
.ht-hero-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 0 24px;
}
.ht-hero-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  margin: 0 0 22px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.ht-hero-perks {
  margin-bottom: 24px;
}
.ht-hero-perk {
  max-width: 560px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}
.ht-hero-perk + .ht-hero-perk {
  margin-top: 14px;
}
.ht-hero-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: background 0.25s;
  animation: ht-hero-play-float 3s ease-in-out infinite;
}
.ht-hero-play:hover {
  background: rgba(255, 255, 255, 0.22);
}
.ht-hero-play svg {
  width: 22px;
  height: 22px;
  margin-left: 4px;
}
@keyframes ht-hero-play-float {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, calc(-50% - 10px));
  }
}
.ht-hero-note {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.ht-brands {
  width: 100%;
  overflow: hidden;
  padding: 18px 0;
}
.ht-brand-swiper {
  width: 100%;
  height: 90px;
}
.ht-brand-swiper .swiper-wrapper {
  height: 90px;
  align-items: center;
  transition-timing-function: linear !important;
}
.ht-brand-slide {
  width: 230px !important;
  min-width: 230px;
  max-width: 230px;
  flex: 0 0 230px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ht-brand-slide img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}
.ht-intro {
  text-align: center;
  padding: 44px 24px 46px;
}
.ht-intro-lead {
  font-style: italic;
  font-size: 14px;
  line-height: 2;
  color: #333333;
  max-width: 680px;
  margin: 0 auto 26px;
}
.ht-intro-title {
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 4px;
  color: #1a1a1a;
  margin: 0 0 20px;
}
.ht-intro-sub {
  font-size: 11.5px;
  line-height: 2;
  color: #999999;
  max-width: 640px;
  margin: 0 auto;
}
.ht-wide {
  width: 91%;
  margin: 0 auto;
}
.ht-wide img {
  width: 100%;
  display: block;
}
.ht-cards {
  width: 91%;
  margin: 0 auto;
  padding: 64px 0 10px;
  display: flex;
  gap: 36px;
  align-items: center;
}
.ht-cards-lead {
  flex: 0 0 190px;
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: italic;
  font-size: 12px;
  line-height: 2.1;
  color: #333333;
  margin: 0;
}
.ht-cards-swiper {
  flex: 1;
  min-width: 0;
}
.ht-card img {
  width: 100%;
  display: block;
}
.ht-divider {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  height: 1px;
  background: rgba(160, 138, 77, 0.25);
  margin: 100px auto 0;
}
.ht-cards-pagination.swiper-pagination.swiper-pagination-progressbar {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  width: 25% !important;
  height: 1px !important;
  /* background: #694910 !important; */
  margin: 100px auto 0 !important;
}
.ht-cards-pagination .swiper-pagination-progressbar-fill {
  background: #694910;
}
.ht-duo {
  width: 91%;
  margin: 64px auto 0;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.ht-duo img {
  width: 100%;
  display: block;
}
.ht-duo-left {
  flex: 0 0 31%;
  margin-top: 210px;
}
.ht-duo-right {
  flex: 1;
}
.ht-cap {
  margin-top: 18px;
}
.ht-cap p {
  font-size: 11.5px;
  line-height: 2;
  color: #a7987d;
  margin: 0;
}
.ht-cap--serif .ht-cap-title {
  font-size: 19px;
  font-style: italic;
  letter-spacing: 0;
}
.ht-cap--right {
  max-width: 420px;
  margin-left: auto;
}
.ht-cap-title {
  display: block;
  font-family: 'Inria Serif', Helvetica, serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  color: #694910;
  margin-bottom: 12px;
}
.ht-sec-head {
  text-align: center;
  padding: 70px 24px 40px;
}
.ht-sec-head h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  color: #1a1a1a;
  margin: 0 0 14px;
}
.ht-sec-head p {
  font-style: italic;
  font-size: 12px;
  color: #999999;
  margin: 0;
}
.ht-gold {
  display: block;
  font-style: italic;
  font-size: 11.5px;
  color: #a08a4d;
  margin-top: 22px;
}
.ht-stay {
  position: relative;
  width: 91%;
  margin: 54px auto 0;
}
.ht-stay-slide {
  display: flex;
  align-items: stretch;
}
.ht-stay-media {
  flex: 0 0 64%;
}
.ht-stay-media img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  display: block;
}
.ht-stay-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 8% 140px 60px;
}
.ht-stay-text h3 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 1px;
  color: #694910;
  margin: 0 0 30px;
}
.ht-stay-text p {
  font-size: 13px;
  font-style: italic;
  line-height: 2.2;
  color: #a7987d;
  margin: 0;
}
.ht-stay-bar.swiper-pagination.swiper-pagination-progressbar {
  position: absolute !important;
  left: auto !important;
  top: auto !important;
  right: 8%;
  bottom: 100px;
  z-index: 3;
  width: 22% !important;
  height: 1px !important;
  background: #e2d8c6 !important;
  margin: 0 !important;
}
.ht-stay-bar .swiper-pagination-progressbar-fill {
  background: #694910;
}
@media (max-width: 1024px) {
  .ht-stay-media img {
    height: 460px;
  }
  .ht-stay-text {
    padding: 40px 6% 110px 40px;
  }
  .ht-stay-text h3 {
    font-size: 24px;
  }
  .ht-stay-bar.swiper-pagination.swiper-pagination-progressbar {
    right: 6%;
    bottom: 70px;
  }
}
@media (max-width: 768px) {
  .ht-stay-slide {
    flex-direction: column;
  }
  .ht-stay-media {
    flex: none;
  }
  .ht-stay-media img {
    height: 300px;
  }
  .ht-stay-text {
    padding: 30px 24px 80px;
  }
  .ht-stay-bar.swiper-pagination.swiper-pagination-progressbar {
    left: 24px !important;
    right: 24px;
    bottom: 32px;
    width: auto !important;
  }
}
.ht-pair {
  width: 91%;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: stretch;
}
.ht-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ht-pair-narrow {
  flex: 0 0 32%;
}
.ht-pair-wide {
  flex: 1;
}
.ht-pair-caps {
  width: 91%;
  margin: 16px auto 0;
}
.ht-pair-caps .ht-cap {
  max-width: 32%;
  margin-top: 0;
}
.ht-trio {
  width: 91%;
  margin: 60px auto 0;
}
.ht-trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ht-trio-grid img {
  width: 100%;
  display: block;
}
.ht-trio-caps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.ht-trio-caps .ht-cap {
  margin-top: 0;
}
.ht-cta {
  width: 91%;
  margin: 80px auto 0;
  position: relative;
  overflow: hidden;
}
.ht-cta > img {
  width: 100%;
  display: block;
}
.ht-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}
.ht-cta-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  color: #ffffff;
}
.ht-cta-content h2 {
  font-family: 'Inria Serif', Helvetica, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 0 0 18px;
}
.ht-cta-content p {
  font-size: 11.5px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  margin: 0 0 30px;
}
.ht-cta-content svg {
  width: 15px;
  height: 15px;
}
.ht-cta-book {
  display: block;
  font-style: italic;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}
/* ---- Hotel Detail 3 responsive ---- */
@media (max-width: 900px) {
  .ht-hero-perks {
    flex-direction: column;
    gap: 18px;
  }
  .ht-hero-perk {
    max-width: 420px;
  }
  .ht-hero-perk--l,
  .ht-hero-perk--r {
    text-align: center;
  }
  .ht-cards {
    flex-direction: column;
    align-items: stretch;
  }
  .ht-cards-lead {
    flex: none;
  }
  .ht-duo {
    flex-direction: column;
    gap: 40px;
  }
  .ht-duo-left {
    flex: none;
    margin-top: 0;
  }
  .ht-cap--right {
    max-width: 100%;
    margin-left: 0;
  }
  .ht-pair {
    flex-direction: column;
  }
  .ht-pair-narrow {
    flex: none;
  }
  .ht-pair-caps .ht-cap {
    max-width: 100%;
  }
  .ht-trio-grid,
  .ht-trio-caps {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   Hotel Detail 2 (inf-)
   ============================================ */
/* ===== Hero Banner ===== */
.inf-hero {
  position: relative;
  height: 640px;
  overflow: hidden;
}
.inf-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inf-hero-back {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}
.inf-hero-back:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.inf-hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 24px 64px;
}
.inf-hero-content-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.inf-hero-meta {
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
}
.inf-hero-meta i {
  font-style: normal;
  color: #694910;
  margin: 0 14px;
}
.inf-hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 4px;
  line-height: 1.15;
  margin-bottom: 18px;
}
.inf-hero-sub {
  max-width: 680px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}
/* ===== Property Overview / SmartFlyer Exclusives ===== */
.inf-overview {
  padding: 72px 24px 0;
}
.inf-overview-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
}
.inf-overview-col {
  flex: 1;
}
.inf-overview-col h2 {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 18px;
}
.inf-overview-col p {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(0, 0, 0, 0.7);
}
.inf-excl {
  list-style: none;
}
.inf-excl li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 2;
  color: rgba(0, 0, 0, 0.7);
}
.inf-excl li::before {
  content: '·';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #694910;
}
.inf-agent-tips {
  max-width: 1400px;
  margin: 60px auto 0;
  background: #f3ebe2;
  padding: 48px 80px;
  display: flex;
  align-items: center;
  gap: 80px;
}
.inf-agent-tips h3 {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}
.inf-agent-tips p {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(0, 0, 0, 0.7);
}
/* ===== Accommodations ===== */
.inf-accom {
  margin-top: 72px;
  background: #694910;
  padding: 80px 24px;
}
.inf-accom-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}
.inf-accom-text {
  flex: 1;
}
.inf-accom-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 14px 0 24px;
}
.inf-accom-text p {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
}
.inf-accom-media {
  flex: 1;
}
.inf-accom-media img {
  width: 100%;
  display: block;
}
.inf-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #694910;
}
.inf-accom-text .inf-label {
  color: #fff;
}
/* ===== Content Blocks (Pool + Gym / SPA / Restaurant) ===== */
.inf-block {
  padding: 72px 24px;
}
.inf-block-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
}
.inf-block-head {
  flex: 1;
}
.inf-block-head h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
  margin-top: 14px;
}
.inf-block-text {
  flex: 1;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(0, 0, 0, 0.7);
  padding-top: 30px;
}
.inf-fullimg {
  width: 100%;
}
.inf-fullimg img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
/* ===== Vibe / Who's It For / Location ===== */
.inf-vibe {
  padding: 72px 24px;
}
.inf-vibe-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.inf-vibe-row {
  display: flex;
  gap: 80px;
}
.inf-vibe-col {
  flex: 1;
}
.inf-vibe-col h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 14px;
}
.inf-vibe-col p {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(0, 0, 0, 0.7);
  max-width: 520px;
}
.inf-vibe-loc {
  margin-top: 56px;
}
.inf-vibe-loc h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 14px;
}
.inf-vibe-loc p {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(0, 0, 0, 0.7);
  max-width: 560px;
}
/* ===== Start Your Bespoke Journey ===== */
.inf-journey {
  background: #f3ebe2;
  padding: 80px 24px;
  text-align: center;
}
.inf-journey h2 {
  font-size: 36px;
  font-weight: 700;
  font-style: italic;
  color: #694910;
}
.inf-journey-sub {
  font-size: 15px;
  font-style: italic;
  color: #a7987d;
  margin-top: 12px;
}
.inf-journey-line {
  width: 220px;
  height: 1px;
  background: rgba(105, 73, 16, 0.4);
  margin: 34px auto;
}
.inf-journey-book {
  font-size: 16px;
  color: #694910;
}
.inf-journey-chevron {
  display: block;
  width: 22px;
  height: 22px;
  margin: 14px auto 0;
}
/* ===== Booking Steps ===== */
.inf-steps {
  max-width: 900px;
  margin: 0 auto;
  padding: 90px 24px 80px;
}
.inf-steps-list {
  list-style: none;
}
.inf-step {
  position: relative;
  display: flex;
  gap: 32px;
  padding-bottom: 52px;
}
.inf-step:last-child {
  padding-bottom: 0;
}
.inf-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 1px;
  background: rgba(105, 73, 16, 0.25);
}
.inf-step-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #d9c8ab;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}
.inf-step-body {
  padding-top: 10px;
}
.inf-step-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 14px;
}
.inf-step-body p {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(0, 0, 0, 0.7);
}
.inf-step-body p em {
  display: block;
  font-style: italic;
  color: #694910;
}
.inf-quick {
  max-width: 620px;
  margin: 70px auto 0;
  text-align: center;
}
.inf-quick h4 {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}
.inf-quick p {
  font-size: 12px;
  font-style: italic;
  line-height: 1.9;
  color: #a7987d;
}
.inf-start {
  text-align: center;
  margin-top: 50px;
}
/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .inf-hero {
    height: 480px;
  }
  .inf-hero-title {
    font-size: 40px;
  }
  .inf-overview-inner,
  .inf-accom-inner,
  .inf-block-inner,
  .inf-vibe-row {
    flex-direction: column;
    gap: 40px;
  }
  .inf-agent-tips {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 40px;
  }
  .inf-block-text {
    padding-top: 0;
  }
  .inf-fullimg img {
    height: 360px;
  }
}
@media (max-width: 640px) {
  .inf-hero {
    height: 400px;
  }
  .inf-hero-content {
    padding-bottom: 40px;
  }
  .inf-hero-title {
    font-size: 28px;
    letter-spacing: 2px;
  }
  .inf-accom-text h2,
  .inf-journey h2 {
    font-size: 26px;
  }
  .inf-block-head h2 {
    font-size: 24px;
  }
  .inf-agent-tips {
    padding: 28px 24px;
  }
  .inf-step {
    gap: 20px;
  }
  .inf-step:not(:last-child)::after {
    left: 21px;
    top: 44px;
  }
  .inf-step-num {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  .inf-fullimg img {
    height: 240px;
  }
}
/* ============================================
   Hotel Detail 4 - Meet Your Travel Advisor (mya-)
   ============================================ */
.mya-hero {
  position: relative;
  padding: 60px 24px 20px;
}
.mya-back {
  top: 32px;
  left: 24px;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.mya-back:hover {
  transform: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.mya-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.mya-hero-map {
  flex: 0 0 55%;
}
.mya-hero-map img {
  width: 100%;
  display: block;
}
.mya-hero-intro {
  flex: 1;
  text-align: center;
}
.mya-hero-intro h1 {
  font-size: 34px;
  font-weight: 700;
  font-style: italic;
  color: #694910;
  line-height: 1.3;
  margin-bottom: 24px;
}
.mya-hero-intro p {
  font-size: 13px;
  font-style: italic;
  line-height: 2;
  color: rgba(0, 0, 0, 0.65);
}
.mya-agents {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 100px;
}
.mya-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 70px;
}
.mya-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(105, 73, 16, 0.2);
}
.mya-divider-text {
  font-size: 18px;
  font-style: italic;
  color: #694910;
  white-space: nowrap;
}
.mya-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 50px 30px;
}
.mya-card {
  text-align: center;
}
.mya-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 16px;
  transition: transform 0.3s;
}
.mya-card:hover img {
  transform: scale(1.06);
}
.mya-card h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000000;
  margin-bottom: 6px;
}
.mya-card p {
  font-size: 11px;
  font-style: italic;
  color: #a7987d;
}
.mya-more {
  text-align: center;
  margin-top: 70px;
}
.mya-more .adv-btn-primary {
  padding: 10px 40px;
  font-size: 13px;
  letter-spacing: 1px;
  border-radius: 4px;
}
@media (max-width: 1024px) {
  .mya-hero-inner {
    flex-direction: column;
    gap: 30px;
  }
  .mya-hero-map {
    flex: none;
    width: 100%;
  }
  .mya-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .mya-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 20px;
  }
}
@media (max-width: 640px) {
  .mya-hero-intro h1 {
    font-size: 24px;
  }
  .mya-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ============================================
   Hotel Payment embedded in room_detail_form
   ============================================ */
.rf-form .hp-wrap {
  background: #fff;
  border-radius: 5px;
  margin-bottom: 20px;
}
.rf-form .hp-main {
  min-height: 0;
  background: transparent;
}
.rf-form .hp-layout {
  max-width: 1200px;
  padding: 40px 60px 50px;
}
@media (max-width: 1024px) {
  .rf-form .hp-layout {
    padding: 30px 24px 40px;
  }
}
@media (max-width: 768px) {
  .rf-form .hp-layout {
    flex-direction: column;
  }
  .rf-form .hp-payment-section,
  .rf-form .hp-order-section {
    max-width: 100%;
  }
}
/* Wishlist Page */
.wishlist-panel {
  padding: 20px;
}
.wishlist-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  margin-bottom: 18px;
  border-bottom: 1px solid #e7dfd3;
}
.wishlist-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 16px;
  border-radius: 14px;
  background: #f4eee6;
  color: #694910;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}
.wishlist-tab.active {
  background: #694910;
  color: #fff;
}
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 12px;
}
.wishlist-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}
.wishlist-card-image {
  height: 90px;
  overflow: hidden;
}
.wishlist-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wishlist-card-body {
  min-height: 52px;
  padding: 8px 10px 10px;
}
.wishlist-card-body h2 {
  overflow: hidden;
  margin-bottom: 3px;
  color: #000000;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wishlist-card-body p {
  color: #a7987d;
  font-family: 'Inria Serif', Helvetica, serif;
  font-size: 11px;
  font-style: italic;
  line-height: 1.3;
}
@media (max-width: 900px) {
  .wishlist-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .wishlist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 460px) {
  .wishlist-panel {
    padding: 16px;
  }
  .wishlist-tabs {
    flex-wrap: wrap;
  }
  .wishlist-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Mobile Responsive Fixes (390-1000px)
   ============================================ */

/* ---- max 1000px ---- */
@media (max-width: 1000px) {
  .advisor-story-grid { padding: 60px 40px 80px; }
  .about_mem_2 { padding: 60px 40px; }
  .about_mem_3 { padding: 60px 40px 80px; }
  .about_mem_4 { padding: 40px 40px 80px; }
}

/* ---- max 992px ---- */
@media (max-width: 992px) {
  .hero-bg {
    position: absolute;
    inset: 0;
    height: 100%;
  }
  .os-cta { max-width: calc(100% - 24px); }
  .os-cta .btn-cta {
    white-space: nowrap;
    font-size: 14px;
    padding: 4px 14px;
  }
  .os-cta .btn-cta-arrow {
    width: 32px;
    height: 32px;
    margin-left: 10px;
  }
  .os-cta .btn-cta-arrow img { width: 16px; }
  .advisor-story-grid { padding: 40px 24px 60px; }
  .advisor-story-row {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .advisor-story-card-link {
    flex: 0 0 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
    margin-bottom: 40px;
  }
  .advisor-story-img { height: 440px; }
  .advisor-story-badge { top: 382px; }
  .advisor-story-title {
    font-size: 24px;
    line-height: 1.1;
    height: auto;
    min-height: 53px;
    margin: 20px 0;
  }
  .about_mem_2_inner {
    flex-direction: column;
    gap: 48px;
  }
  .am2_image_wrap {
    width: 100%;
    max-width: 420px;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .am2_card_top { right: 0; }
  .am2_card_left { left: 0; }
  .am2_card_bottom { right: 0; }
  .am3_cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .am-unlock-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .am-about-row {
    flex-direction: column;
    gap: 24px;
  }
  .am-about-row-img { width: 100%; }
}

/* ---- max 768px ---- */
@media (max-width: 768px) {
  .plan-right h2 { font-size: 32px; }
  .advisor-search-form {
    flex-direction: column;
    padding: 0 20px;
  }
  .advisor-search-input {
    height: 56px;
    font-size: 16px;
  }
  .advisor-search-btn {
    width: 100%;
    height: 56px;
    font-size: 18px;
  }
  .am-hero { height: 620px; }
  .am-hero-content { padding-top: 80px; }
  .am-hero-meta {
    flex-direction: column;
    gap: 6px;
  }
  .am-hero-stats {
    flex-wrap: wrap;
    height: auto;
    padding: 14px 16px;
    gap: 14px 24px;
  }
  .am-stat-item { gap: 10px; }
  .am-stat-icon {
    width: 44px;
    height: 44px;
  }
  .am-stat-icon svg {
    width: 22px;
    height: 22px;
  }
  .am-upgrade {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 20px;
  }
  .am-upgrade-features { flex-wrap: wrap; }
  .am-tab {
    flex: 1;
    height: 48px;
    padding: 0 10px;
    font-size: 13px;
  }
  .am-benefits-panel {
    padding: 28px 16px;
    border-radius: 20px;
  }
  .am-benefits-header { grid-template-columns: 1fr; }
  .am-benefits-title { font-size: 24px; }
  .am-benefits-expire { width: auto; }
  .am-benefit-row { flex-wrap: wrap; }
  .am-benefit-detail { min-width: 0; }
  .am-benefit-btn {
    width: 100%;
    margin-top: 12px;
  }
  .am-unlock-section {
    padding: 28px 16px;
    border-radius: 20px;
  }
  .am-unlock-title { font-size: 24px; }
  .am-notice {
    padding: 28px 16px;
    border-radius: 20px;
  }
  .am-activity {
    padding: 24px 16px;
    border-radius: 20px;
  }
  .am-activity-header {
    flex-direction: column;
    gap: 12px;
  }
  .am-activity-table { overflow-x: auto; }
  .am-activity-head,
  .am-activity-row { min-width: 540px; }
  .about_mem_2 { padding: 48px 20px; }
  .about_mem_3 { padding: 48px 20px 60px; }
  .about_mem_4 { padding: 40px 20px 60px; }
  .am2_title { font-size: 36px; }
  .am3_faq_btns { flex-wrap: wrap; }
  .am4_table_wrap { overflow-x: auto; }
  .am4_table { min-width: 560px; }
  .shop-hero-content { padding: 0; }
  .shop-hero-card {
    left: 16px;
    right: 16px;
    padding: 28px 20px 0;
  }
  .shop-hero-card p {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .so-tabs { flex-wrap: wrap; }
  .adv-partnerships .adv-partnerships-overlay { width: 100%; }
  .adv-partnerships .adv-partnerships-bg img {
    height: 320px;
    object-fit: cover;
  }
  .adv-partnerships .adv-partnerships-text h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .adv-partnerships .adv-partnerships-text p { font-size: 13px; }
  .adv-step-content {
    flex: 1;
    min-width: 0;
  }
}

/* ---- max 640px ---- */
@media (max-width: 640px) {
  .plan-right h2 { font-size: 26px; }
  .why-row .why-cell:first-child { flex-basis: 40%; }
  .why-cell {
    flex-basis: 30%;
    padding: 10px 6px;
    font-size: 12px;
  }
  .why-feature-name { font-size: 13px; }
  .why-us { font-size: 15px; }
  .why-others { font-size: 12px; }
  .why-others small { font-size: 10px; }
  .why-cell img { height: 16px; }
  .advisor-story-card-link {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .advisor-story-img { height: 400px; }
  .advisor-story-badge { top: 342px; }
  .aoa-hero-right {
    gap: 12px;
    padding: 32px 12px;
  }
  .aoa-hero-right .aoa-phone-main,
  .aoa-hero-right .aoa-phone-sub { width: 130px; }
  .aoa-hero-right .aoa-phone-sub { margin-top: 40px; }
  .auth-row {
    flex-direction: column;
    align-items: stretch;
  }
  .auth-row .auth-input { margin-bottom: 16px; }
  .auth-code-btn {
    width: 100%;
    margin-left: 0;
  }
}
