/* Arasan Price Menu — Legas / The7 site styling */

:root {
  --arasan-accent: #e31e23;
  --arasan-accent-dark: #c9191e;
  --arasan-accent-soft: rgba(227, 30, 35, 0.08);
  --arasan-heading: #495271;
  --arasan-text: #333333;
  --arasan-text-muted: #767676;
  --arasan-text-light: #b4b5bb;
  --arasan-bg: #ffffff;
  --arasan-bg-soft: #f7f8fa;
  --arasan-bg-muted: #eef0f4;
  --arasan-border: #e2e5eb;
  --arasan-closed-bg: #fff5f5;
  --arasan-closed-text: #c9191e;
  --arasan-radius: 6px;
  --arasan-radius-md: 10px;
  --arasan-radius-lg: 14px;
  --arasan-radius-pill: 999px;
  --arasan-shadow: 0 2px 8px rgba(73, 82, 113, 0.07);
  --arasan-shadow-hover: 0 6px 20px rgba(227, 30, 35, 0.14);
  --arasan-font-display: "Roboto Slab", Georgia, serif;
  --arasan-font-body: "Roboto", "Segoe UI", system-ui, sans-serif;
  --arasan-max-width: 100%;
  --arasan-transition: 0.2s ease;
}

.arasan-menu-wrap {
  font-family: var(--arasan-font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--arasan-text);
  background: transparent;
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: clip;
}

.arasan-menu-wrap,
.arasan-menu-wrap * {
  box-sizing: border-box;
}

#arasan-menu-app {
  max-width: var(--arasan-max-width);
  margin: 0 auto;
  padding: 0 0 2rem;
}

.am-top {
  margin-bottom: 0.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--arasan-border);
}

.am-top-home {
  border-bottom: none;
  padding-bottom: 0;
}

.am-top-home .am-header {
  justify-content: flex-end;
}

.am-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2rem;
}

.am-back-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--arasan-accent);
  padding: 0.35rem 0.5rem 0.35rem 0;
  font-family: var(--arasan-font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--arasan-transition);
}

.am-back-btn::before {
  content: "\2190\00a0";
}

.am-back-btn:hover {
  color: var(--arasan-accent-dark);
}

.am-back-btn[hidden] {
  display: none;
}

.am-screen-title {
  font-family: var(--arasan-font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--arasan-heading);
  margin: 1rem 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px dashed rgba(73, 82, 113, 0.14);
}

.am-lang-switch {
  display: flex;
  gap: 0.15rem;
  background: var(--arasan-bg-soft);
  border: 1px solid var(--arasan-border);
  border-radius: var(--arasan-radius-pill);
  padding: 0.2rem;
  margin-left: auto;
}

.am-lang-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--arasan-text-muted);
  font-family: var(--arasan-font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: var(--arasan-radius-pill);
  cursor: pointer;
  line-height: 1.4;
  transition: background var(--arasan-transition), color var(--arasan-transition);
}

.am-lang-btn.is-active {
  background: var(--arasan-accent);
  color: #fff;
  box-shadow: 0 2px 6px rgba(227, 30, 35, 0.25);
}

.am-lang-btn:not(.is-active):hover {
  color: var(--arasan-accent);
}

.am-breadcrumb {
  font-size: 13px;
  color: var(--arasan-text-light);
  margin: 0 0 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.am-home {
  text-align: left;
}

.am-home-brand {
  display: none;
}

.am-home-tagline {
  font-family: var(--arasan-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--arasan-heading);
  margin: 0 0 0.35rem;
}

.am-home-hint {
  font-size: 13px;
  color: var(--arasan-text-muted);
  margin: 0 0 1.25rem;
}

.am-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 100%;
  margin: 0;
}

@media (min-width: 768px) {
  .am-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.am-nav-card {
  appearance: none;
  border: 1px solid var(--arasan-border);
  border-left: 4px solid var(--arasan-accent);
  text-align: left;
  background: var(--arasan-bg);
  border-radius: var(--arasan-radius-md);
  padding: 1.15rem 2.75rem 1.15rem 1.25rem;
  cursor: pointer;
  box-shadow: var(--arasan-shadow);
  transition: border-color var(--arasan-transition), box-shadow var(--arasan-transition), transform var(--arasan-transition);
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.am-nav-card::after {
  content: "\203A";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--arasan-accent);
  opacity: 0.45;
  transition: opacity var(--arasan-transition), transform var(--arasan-transition);
}

.am-nav-card:hover {
  border-color: var(--arasan-accent);
  border-left-color: var(--arasan-accent);
  box-shadow: var(--arasan-shadow-hover);
  transform: translateY(-1px);
}

.am-nav-card:hover::after {
  opacity: 1;
  transform: translate(2px, -50%);
}

.am-nav-card-title {
  font-family: var(--arasan-font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--arasan-heading);
  margin: 0 0 0.3rem;
  line-height: 1.3;
}

.am-nav-card-sub {
  font-size: 13px;
  color: var(--arasan-text-muted);
  margin: 0;
  line-height: 1.45;
}

.am-hub-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 100%;
  margin: 0;
}

.am-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .am-two-col {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.am-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.am-section-title {
  font-family: var(--arasan-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--arasan-heading);
  margin: 0 0 0.65rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--arasan-accent-soft);
}

.am-section.am-bordered {
  border: 1px solid var(--arasan-border);
  border-radius: var(--arasan-radius-md);
  padding: 1rem 1.15rem;
  background: var(--arasan-bg);
  box-shadow: var(--arasan-shadow);
}

.am-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0;
  font-size: 0.875rem;
  line-height: 1.4;
  border-bottom: 1px solid var(--arasan-border);
}

.am-price-row:last-child {
  border-bottom: none;
}

.am-price-row-name {
  flex: 1;
  min-width: 0;
}

.am-price-row-duration {
  color: var(--arasan-accent);
  font-size: 0.8rem;
  white-space: nowrap;
  margin-right: 0.5rem;
}

.am-price-row-price {
  color: var(--arasan-accent);
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
}

.am-dual-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.am-dual-table th {
  text-align: left;
  color: var(--arasan-accent);
  font-weight: 700;
  padding: 0.35rem 0.5rem 0.35rem 0;
  font-size: 0.8rem;
}

.am-dual-table td {
  padding: 0.3rem 0.5rem 0.3rem 0;
  vertical-align: top;
}

.am-dual-table td:not(:first-child) {
  text-align: right;
  color: var(--arasan-accent);
  font-weight: 600;
}

.am-fitness-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .am-fitness-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.am-fitness-card {
  background: var(--arasan-bg);
  border: 1px solid var(--arasan-border);
  border-left: 3px solid var(--arasan-accent);
  border-radius: var(--arasan-radius-md);
  padding: 1rem 1.15rem;
  box-shadow: var(--arasan-shadow);
  transition: box-shadow var(--arasan-transition);
}

.am-fitness-card:hover {
  box-shadow: var(--arasan-shadow-hover);
}

.am-fitness-card-sub {
  font-size: 0.78rem;
  color: var(--arasan-text-muted);
  margin: 0.15rem 0 0.5rem;
}

.am-single-visit {
  background: var(--arasan-bg);
  border: 1px solid var(--arasan-border);
  border-left: 3px solid var(--arasan-accent);
  border-radius: var(--arasan-radius-md);
  padding: 0.85rem 1.15rem;
  margin: 1rem 0;
  box-shadow: var(--arasan-shadow);
}

.am-footnote {
  font-size: 0.78rem;
  color: var(--arasan-text-muted);
  margin: 1rem 0;
  line-height: 1.5;
}

.am-tariff-controls {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 1.25rem;
  align-items: center;
  background: var(--arasan-bg-soft);
  border: 1px solid var(--arasan-border);
  border-radius: var(--arasan-radius-pill);
  padding: 4px;
}

.am-tariff-controls + .am-tariff-controls,
.am-period-controls {
  margin-bottom: 0.75rem;
}

.am-period-controls {
  margin-top: 0.35rem;
}

.am-toggle-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--arasan-text-muted);
  border-radius: var(--arasan-radius-pill);
  padding: 0.5rem 1.1rem;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--arasan-transition), color var(--arasan-transition), box-shadow var(--arasan-transition);
  white-space: nowrap;
}

.am-toggle-btn.is-active {
  background: var(--arasan-accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(227, 30, 35, 0.28);
}

.am-toggle-btn:not(.is-active):hover {
  color: var(--arasan-accent);
  background: rgba(255, 255, 255, 0.7);
}

.am-tariff-status {
  background: var(--arasan-bg);
  border: 1px solid var(--arasan-border);
  border-left: 4px solid var(--arasan-accent);
  border-radius: var(--arasan-radius-md);
  padding: 0.85rem 1rem;
  margin-bottom: 1.15rem;
  font-size: 0.875rem;
  box-shadow: var(--arasan-shadow);
  text-align: center;
  color: var(--arasan-heading);
  font-weight: 500;
}

.am-tariff-status.is-closed {
  background: var(--arasan-closed-bg);
  color: var(--arasan-closed-text);
}

.am-tariff-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.25rem;
  max-width: 100%;
}

.am-table-scroll {
  position: relative;
}

.am-table-scroll::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 24px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95));
  pointer-events: none;
}

.am-tariff-table-wrap::after,
.am-luxe-table-wrap::after,
.am-ceremony-matrix::after {
  content: "";
  display: block;
  height: 0;
}

.am-tariff-table {
  width: 100%;
  min-width: 520px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--arasan-bg);
  border-radius: var(--arasan-radius-md);
  overflow: hidden;
  box-shadow: var(--arasan-shadow);
  border: 1px solid var(--arasan-border);
  font-size: 0.875rem;
}

.am-tariff-table th,
.am-tariff-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--arasan-border);
  border-right: 1px solid var(--arasan-border);
  text-align: center;
  vertical-align: middle;
}

.am-tariff-table th:last-child,
.am-tariff-table td:last-child {
  border-right: none;
}

.am-tariff-table tbody tr:last-child td {
  border-bottom: none;
}

.am-tariff-table thead th {
  background: linear-gradient(135deg, var(--arasan-accent) 0%, var(--arasan-accent-dark) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  border-color: rgba(255, 255, 255, 0.15);
}

.am-tariff-table tbody tr:nth-child(even) td:not(.am-row-label) {
  background: var(--arasan-bg-soft);
}

.am-tariff-table .am-row-label {
  text-align: left;
  font-weight: 600;
  background: var(--arasan-bg-muted);
  color: var(--arasan-heading);
  min-width: 120px;
}

.am-tariff-table .am-price-cell {
  color: var(--arasan-accent);
  font-weight: 700;
}

.am-tariff-heading {
  font-family: var(--arasan-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--arasan-heading);
  margin: 1.25rem 0 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--arasan-accent);
  display: inline-block;
}

.am-tariff-note {
  font-size: 0.78rem;
  color: var(--arasan-text-muted);
  margin: 0.35rem 0 0.75rem;
  line-height: 1.45;
}

.am-accessories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem 1.5rem;
  background: var(--arasan-bg);
  border-radius: var(--arasan-radius);
  padding: 1rem 1.15rem;
  box-shadow: var(--arasan-shadow);
  margin-bottom: 1rem;
}

@media (min-width: 600px) {
  .am-accessories-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.am-promo-box {
  border: 1px solid var(--arasan-border);
  border-left: 3px solid var(--arasan-accent);
  border-radius: var(--arasan-radius-md);
  padding: 1rem 1.15rem;
  margin-bottom: 1rem;
  background: var(--arasan-bg);
  box-shadow: var(--arasan-shadow);
}

.am-promo-title {
  font-family: var(--arasan-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--arasan-heading);
  margin: 0 0 0.5rem;
}

.am-promo-body {
  font-size: 0.85rem;
  line-height: 1.45;
  margin: 0.25rem 0;
}

.am-info-box {
  background: linear-gradient(135deg, var(--arasan-accent) 0%, var(--arasan-accent-dark) 100%);
  color: #fff;
  border-radius: var(--arasan-radius-lg);
  padding: 1.15rem 1.35rem;
  margin-top: 1.5rem;
  font-size: 14px;
  line-height: 1.6;
  box-shadow: 0 4px 16px rgba(227, 30, 35, 0.22);
}

.am-info-box-title {
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.am-pill {
  background: linear-gradient(135deg, var(--arasan-accent) 0%, var(--arasan-accent-dark) 100%);
  color: #fff;
  border-radius: var(--arasan-radius-lg);
  padding: 1rem 1.35rem;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin-top: 1.5rem;
  line-height: 1.5;
  box-shadow: 0 4px 16px rgba(227, 30, 35, 0.18);
}

.am-spa-pairs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.am-spa-pair-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 900px) {
  .am-spa-pair-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.am-spa-program {
  background: var(--arasan-bg);
  border: 1px solid var(--arasan-border);
  border-top: 3px solid var(--arasan-accent);
  border-radius: var(--arasan-radius-md);
  padding: 1rem 1.1rem;
  box-shadow: var(--arasan-shadow);
}

.am-spa-program-title {
  font-family: var(--arasan-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--arasan-accent);
  margin: 0 0 0.65rem;
  text-transform: none;
}

.am-spa-item {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.82rem;
  padding: 0.2rem 0;
  line-height: 1.35;
}

.am-spa-item-duration {
  color: var(--arasan-accent);
  white-space: nowrap;
}

.am-spa-total {
  display: flex;
  justify-content: space-between;
  margin-top: 0.65rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--arasan-border);
  font-weight: 700;
  color: var(--arasan-accent);
}

.am-spa-total-duration {
  opacity: 0.65;
  font-weight: 600;
}

.am-wellness-split {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.am-wellness-day-card {
  background: var(--arasan-bg);
  border: 1px solid var(--arasan-border);
  border-left: 3px solid var(--arasan-accent);
  border-radius: var(--arasan-radius-md);
  padding: 1rem 1.15rem;
  box-shadow: var(--arasan-shadow);
}

.am-wellness-day-title {
  font-family: var(--arasan-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--arasan-accent);
  margin: 0 0 0.65rem;
  text-transform: none;
}

.am-wellness-split-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 600px) {
  .am-wellness-split-cols {
    grid-template-columns: 1fr 1fr;
  }
}

.am-wellness-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.am-wellness-grid-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 600px) {
  .am-wellness-grid-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.am-wellness-grid-row.am-cols-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .am-wellness-grid-row.am-cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.am-wellness-item {
  font-size: 0.82rem;
  padding: 0.15rem 0 0.15rem 1rem;
  position: relative;
  line-height: 1.35;
}

.am-wellness-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--arasan-accent);
}

.am-luxe-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
  max-width: 100%;
}

.am-luxe-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--arasan-bg);
  border-radius: var(--arasan-radius);
  overflow: hidden;
  box-shadow: var(--arasan-shadow);
  font-size: 0.82rem;
}

.am-luxe-table th {
  background: var(--arasan-accent);
  color: var(--arasan-bg);
  padding: 0.55rem 0.5rem;
  font-weight: 700;
  text-align: center;
  font-size: 0.75rem;
}

.am-luxe-table td {
  padding: 0.45rem 0.5rem;
  border-bottom: 1px solid var(--arasan-border);
  text-align: center;
}

.am-luxe-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.am-luxe-table .am-luxe-price {
  color: var(--arasan-accent);
  font-weight: 700;
}

.am-luxe-tariff-label {
  font-family: var(--arasan-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--arasan-accent);
  margin: 0 0 0.25rem;
}

.am-luxe-tariff-hours {
  font-size: 0.82rem;
  color: var(--arasan-text-muted);
  margin: 0 0 0.75rem;
}

.am-luxe-footnotes {
  font-size: 0.82rem;
  color: var(--arasan-accent);
  line-height: 1.5;
  margin: 0.75rem 0;
}

.am-luxe-promo {
  border: 1px solid var(--arasan-accent);
  border-radius: var(--arasan-radius);
  overflow: hidden;
  margin-bottom: 1rem;
}

.am-luxe-promo-head {
  background: var(--arasan-accent);
  color: var(--arasan-bg);
  padding: 0.55rem 1rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.am-luxe-promo-body {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  line-height: 1.45;
}

.am-luxe-promo-body .is-highlight {
  font-weight: 700;
  color: var(--arasan-accent);
}

.am-ceremony-block {
  margin-bottom: 2rem;
}

.am-ceremony-title {
  font-family: var(--arasan-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--arasan-accent);
  margin: 0 0 0.35rem;
}

.am-ceremony-desc {
  font-size: 0.9rem;
  margin: 0 0 1rem;
  line-height: 1.45;
}

.am-ceremony-matrix {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

.am-ceremony-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  background: var(--arasan-bg);
  border-radius: var(--arasan-radius);
  overflow: hidden;
  box-shadow: var(--arasan-shadow);
  font-size: 0.85rem;
}

.am-ceremony-table th,
.am-ceremony-table td {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--arasan-border);
  text-align: center;
}

.am-ceremony-table thead th {
  background: var(--arasan-bg-soft);
  color: var(--arasan-accent);
  font-weight: 700;
}

.am-ceremony-table td.am-ceremony-price {
  color: var(--arasan-accent);
  font-weight: 700;
}

.am-nav-card:focus-visible,
.am-back-btn:focus-visible,
.am-lang-btn:focus-visible,
.am-toggle-btn:focus-visible {
  outline: 2px solid var(--arasan-accent);
  outline-offset: 2px;
}

.am-ceremony-note {
  text-align: center;
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--arasan-border);
  border-radius: var(--arasan-radius-md);
  font-size: 14px;
  color: var(--arasan-text-muted);
  background: var(--arasan-bg-soft);
}

.am-loading,
.am-error {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--arasan-text-muted);
}

.am-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 14px;
}

.am-loading::before {
  content: "";
  width: 36px;
  height: 36px;
  border: 3px solid var(--arasan-border);
  border-top-color: var(--arasan-accent);
  border-radius: 50%;
  animation: am-spin 0.75s linear infinite;
}

@keyframes am-spin {
  to {
    transform: rotate(360deg);
  }
}

.am-error {
  color: var(--arasan-closed-text);
}

.am-group-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 900px) {
  .am-group-row {
    grid-template-columns: 1fr 1fr;
  }
}

.am-towel-section {
  margin-top: 1rem;
}

/* ── Mobile / phone ── */
@media (max-width: 767px) {
  #arasan-menu-app {
    padding: 0 0 1.5rem;
  }

  .am-table-scroll {
    overflow-x: visible;
  }

  .am-table-scroll::after {
    display: none;
  }

  .am-responsive-table {
    min-width: 0 !important;
    width: 100%;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .am-responsive-table thead {
    display: none;
  }

  .am-responsive-table tbody tr {
    display: block;
    margin-bottom: 0.85rem;
    border: 1px solid var(--arasan-border);
    border-radius: var(--arasan-radius-md);
    overflow: hidden;
    background: var(--arasan-bg);
    box-shadow: var(--arasan-shadow);
  }

  .am-responsive-table tbody td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.6rem 0.85rem;
    border: none;
    border-bottom: 1px solid var(--arasan-border);
    text-align: right !important;
    min-width: 0;
    font-size: 14px;
  }

  .am-responsive-table tbody td:nth-child(even):not(.am-row-label) {
    background: var(--arasan-bg-soft);
  }

  .am-responsive-table tbody td.am-row-label {
    display: block;
    background: linear-gradient(135deg, var(--arasan-accent) 0%, var(--arasan-accent-dark) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-align: center !important;
    padding: 0.7rem 0.85rem;
    letter-spacing: 0.02em;
  }

  .am-responsive-table .am-price-cell {
    color: var(--arasan-accent);
    font-weight: 700;
    font-size: 15px;
  }

  .am-responsive-table tbody td:not(.am-row-label)::before {
    content: attr(data-label);
    flex: 1 1 50%;
    font-weight: 500;
    color: var(--arasan-heading);
    text-align: left;
    font-size: 13px;
    line-height: 1.35;
    white-space: normal;
  }

  .am-responsive-table tbody td.am-row-label::before {
    display: none;
  }

  .am-responsive-table tbody td:last-child {
    border-bottom: none;
  }

  .am-tariff-controls {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    width: 100%;
    border-radius: var(--arasan-radius-md);
    padding: 6px;
  }

  .am-toggle-btn {
    width: 100%;
    min-height: 44px;
    text-align: center;
    font-size: 13px;
    line-height: 1.25;
    padding: 0.6rem 0.85rem;
    border-radius: var(--arasan-radius);
  }

  .am-toggle-btn.is-active {
    box-shadow: 0 2px 8px rgba(227, 30, 35, 0.25);
  }

  .am-lang-switch {
    border: 1px solid var(--arasan-border);
    background: var(--arasan-bg-soft);
    padding: 0.25rem;
  }

  .am-top {
    margin-bottom: 0.35rem;
    padding-bottom: 0.65rem;
  }

  .am-header {
    gap: 0.5rem;
  }

  .am-back-btn {
    font-size: 14px;
    min-height: 44px;
    padding: 0.5rem 0.25rem 0.5rem 0;
    display: inline-flex;
    align-items: center;
  }

  .am-lang-switch {
    flex-shrink: 0;
    gap: 0.15rem;
  }

  .am-lang-btn {
    font-size: 12px;
    min-height: 44px;
    min-width: 44px;
    padding: 0.35rem 0.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .am-screen-title {
    font-size: 20px;
    margin: 0.65rem 0 1rem;
    line-height: 1.25;
  }

  .am-home-tagline {
    font-size: 18px;
  }

  .am-nav-card {
    min-height: 72px;
    padding: 1rem;
  }

  .am-nav-card-title {
    font-size: 16px;
  }

  .am-hub-list {
    max-width: 100%;
  }

  .am-section-title,
  .am-tariff-heading,
  .am-promo-title {
    font-size: 16px;
    line-height: 1.35;
  }

  .am-price-row {
    font-size: 13px;
    gap: 0.35rem 0.5rem;
    align-items: flex-start;
  }

  .am-price-row-duration {
    font-size: 12px;
  }

  .am-tariff-status {
    font-size: 13px;
    padding: 0.65rem 0.75rem;
    line-height: 1.45;
  }

  .am-tariff-table-wrap,
  .am-luxe-table-wrap,
  .am-ceremony-matrix {
    margin-left: 0;
    margin-right: 0;
    overflow-x: visible;
  }

  .am-ceremony-title {
    font-size: 1.2rem;
  }

  .am-spa-item {
    flex-wrap: wrap;
    font-size: 13px;
  }

  .am-spa-total {
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .am-wellness-item {
    font-size: 13px;
  }

  .am-info-box,
  .am-pill {
    font-size: 13px;
    padding: 0.85rem 1rem;
    line-height: 1.5;
  }

  .am-breadcrumb {
    font-size: 12px;
    margin-bottom: 0.75rem;
  }

  .am-dual-table {
    font-size: 13px;
  }

  .am-fitness-card,
  .am-single-visit,
  .am-accessories-grid,
  .am-spa-program,
  .am-wellness-day-card {
    padding: 0.85rem;
  }

  .am-group-row {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .am-two-col {
    gap: 1rem;
  }

  .am-tariff-note,
  .am-footnote {
    font-size: 12px;
    line-height: 1.45;
  }
}

@media (max-width: 399px) {
  .am-lang-btn {
    font-size: 11px;
    min-width: 40px;
    padding: 0.35rem 0.4rem;
  }

  .am-screen-title {
    font-size: 18px;
  }

  .am-price-row {
    flex-wrap: wrap;
  }

  .am-price-row-name {
    flex: 1 1 100%;
  }

  .am-price-row-duration {
    margin-right: auto;
  }

  .am-price-row-price {
    margin-left: auto;
  }
}
