/* === menu.css — Hamburger, Menu Drawer, Language, QuickActions === */

/* 3. NÚT MENU PREMIUM (GLASS-FAB STYLE) */
#menuToggleBtn {
  position: fixed;
  bottom: 35px;
  left: 35px;
  width: 54px;
  height: 54px;
  /* VNPT PREMIUM BLUE - Mix từ màu Logo VNPT (Deep Navy + VNPT Blue) */
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  z-index: 4000;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.4),
    inset 0 0 12px rgba(255, 255, 255, 0.4);
  animation: menuBreath 3s infinite ease-in-out;
}

#menuToggleBtn.visible {
  opacity: 1;
  visibility: visible;
}

/* Hiệu ứng nhịp thở nhè nhẹ cho nút */
@keyframes menuBreath {
  0%,
  100% {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 15px 55px rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
  }
}

/* Các thanh ngang Menu - Màu Vàng Kim đồng bộ V12 */
#menuToggleBtn span {
  width: 22px;
  height: 2.5px;
  background: #da251d;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 10px;
  display: block;
}

/* Thanh giữa ngắn hơn tạo nét phá cách hiện đại */
#menuToggleBtn span:nth-child(2) {
  width: 15px;
  align-self: flex-start;
  margin-left: 16px;
}

#menuToggleBtn:hover {
  background: #ffffff;
  border-color: rgba(218, 37, 29, 0.45);
  box-shadow: 0 12px 34px rgba(218, 37, 29, 0.22);
}

#menuToggleBtn:hover span:nth-child(1) {
  transform: translateY(0) scaleX(0.8);
}
#menuToggleBtn:hover span:nth-child(2) {
  width: 28px;
  margin-left: 0;
  align-self: center;
}
#menuToggleBtn:hover span:nth-child(3) {
  transform: translateY(0) scaleX(0.8);
}



/* 4. REDESIGN MENU DRAWER - STITCH DESIGN SYSTEM STYLE */
#customMenuWrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5000;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  justify-content: flex-start;
}

#customMenuWrapper.active {
  visibility: visible;
  pointer-events: auto;
}

.menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  backdrop-filter: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#customMenuWrapper.active .menu-overlay {
  opacity: 1;
}

.menu-drawer {
  position: relative;
  width: 70vw;
  min-width: min(1000px, 100vw);
  height: 100%;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  display: flex;
  flex-direction: column;
  box-shadow: 40px 0 100px rgba(0, 0, 0, 0.08);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 16px;
  overflow: hidden;
  border-right: var(--glass-border);
}

#customMenuWrapper.active .menu-drawer {
  transform: translateX(0);
}

/* Header Menu - Clean & Systematic */
.menu-header {
  padding: clamp(24px, 2.5rem + 2vw, 40px) 60px;
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: none;
  background: rgba(255, 255, 255, 0.1);
}

.menu-logo-container img {
  width: 90px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.05));
}

.menu-title-container h2 {
  font-size: clamp(19px, 2.4vw + 12px, 29px);
  color: #111; /* Text dark more readable on bright glass */
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.menu-title-container h2 span {
  color: var(--primary-red);
  font-size: clamp(14px, 1.3vw + 6px, 16px);
  letter-spacing: 4px;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-top: 6px;
  opacity: 0.8;
}

/* Bố cục chia 2 cột dọc */
.menu-content-flex {
  flex: 1;
  display: flex;
  overflow: hidden;
}

/* Cột danh mục - Modern Sidebar */
.categories-column {
  width: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-right: none;
  padding: 20px 10px;
  overflow-y: auto;
}

.column-label {
  padding: 0 30px 15px;
  font-size: clamp(11px, 0.625rem + 0.2vw, 12px);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.level-1-item {
  padding: 16px 30px;
  margin: 4px 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition-stitch);
  color: #333;
  border-radius: 8px;
  position: relative;
  font-weight: 600;
}

.level-1-item:hover {
  background: rgba(255, 255, 255, 0.4);
  color: #000;
}

.level-1-item.active {
  background: #fff;
  color: var(--primary-red);
  box-shadow: var(--soft-shadow);
}

.cat-icon {
  font-size: clamp(14px, 1.6vw + 8px, 19px);
  width: 24px;
  text-align: center;
  opacity: 0.8;
}

.cat-name {
  font-size: clamp(14px, 1.4vw + 7px, 17px);
  flex: 1;
}

.cat-arrow {
  opacity: 0;
  transform: translateX(-5px);
  transition: 0.3s;
  color: var(--primary-red);
}

.level-1-item.active .cat-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Cột Chi tiết - Stitch Grid */
.items-column {
  flex: 1;
  padding: clamp(24px, 2.5rem + 2vw, 40px) 60px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-stitch);
}

.items-column.active {
  opacity: 1;
  transform: translateY(0);
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.destination-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-stitch);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.card-img-wrapper {
  width: 100%;
  height: 170px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.08);
}

.destination-card:hover .card-img {
  transform: scale(1.08);
}

.card-content {
  padding: 20px;
}

.card-title {
  font-size: clamp(14px, 1.5vw + 8px, 18px);
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.4;
}

.card-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-red);
  font-size: clamp(11px, 0.688rem + 0.2vw, 13px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-btn::after {
  content: "→";
  transition: transform 0.3s;
}

.destination-card:hover .card-btn::after {
  transform: translateX(4px);
}

/* Footer - Minimal */
.menu-footer {
  display: none;
}

.menu-close-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-stitch);
  color: #333;
  font-weight: 700;
  font-size: clamp(11px, 0.75rem + 0.2vw, 14px);
  box-shadow: var(--soft-shadow);
}

.menu-close-btn:hover {
  background: var(--primary-red);
  color: #fff;
  transform: translateY(-2px);
}

/* Ẩn Preview Card cũ */
.menu-preview-card {
  display: none !important;
}

/* 5. CHỌN NGÔN NGỮ (Ảnh 3) */
.language-selector {
  position: absolute;
  top: clamp(14px, 3vw, 35px);
  right: clamp(14px, 3vw, 35px);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  display: flex;
  padding: clamp(10px, 2vw, 15px) clamp(18px, 4vw, 35px);
  gap: clamp(16px, 3vw, 30px);
  z-index: 2000;
}

.lang-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  opacity: 0.4;
  transition: 0.4s;
  position: relative;
  font-family: "Montserrat", sans-serif;
  color: white;
}

.lang-option.active {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}
.lang-option img {
  width: clamp(36px, 6vw, 55px);
  border-radius: 5px;
  margin-bottom: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.lang-option span {
  font-size: clamp(10px, 1.8vw, 13px);
  font-weight: 700;
  letter-spacing: 1px;
}

.lang-option.active::after {
  content: "✓";
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ffd700;
  color: #000;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: clamp(11px, 0.75rem + 0.2vw, 14px);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #ffd700;
}

/* 6. POPUP OVERLAY */
.museum-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  z-index: 9999999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.7s ease;
  visibility: hidden;
}

.museum-popup-overlay.active {
  background: transparent;
  backdrop-filter: none;
  visibility: visible;
}

.museum-popup-container {
  width: min(80%, calc(100vw - 160px));
  height: min(85dvh, 820px);
  max-width: 900px;
  margin-right: 100px;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  /* Đảm bảo iframe fill đúng chiều cao */
  display: flex;
  flex-direction: column;
}

.museum-popup-container.active {
  transform: translateY(0);
  opacity: 1;
}

.museum-popup-iframe {
  width: 100%;
  flex: 1;
  min-height: 0;
  border-radius: 16px;
  border: none;
  box-shadow: none;
  display: block;
}

#container {
  filter: none !important;
}

/* --- 7. QUICK ACTIONS MENU (3-DOTS GROUP) --- */

/*
  Cấu trúc HTML mong đợi:
  <div class="quick-actions-wrapper">
    <div class="sub-actions-container">
      <button class="menu-action-fab" id="...">...</button>
      ...
    </div>
    <button class="main-more-btn">···</button>
  </div>

  Wrapper fixed bottom-right.
  sub-actions-container nằm TRÊN main-more-btn trong DOM → tự nhiên xếp phía trên.
*/

.quick-actions-wrapper {
  position: fixed;
  bottom: 35px;
  right: 35px;
  z-index: 5000;
  /* Căn chỉnh: cột dọc, nút phụ trên — nút chính dưới */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  /* Đảm bảo wrapper không tràn ra ngoài viewport */
  width: 54px;
}

/* ── NÚT CHÍNH (3-dots) ── */
.main-more-btn {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #da251d;
  font-size: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4),
              inset 0 0 12px rgba(255, 255, 255, 0.42);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
              background 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.main-more-btn:hover {
  transform: scale(1.08);
  background: #ffffff;
  border-color: rgba(218, 37, 29, 0.45);
  box-shadow: 0 12px 34px rgba(218, 37, 29, 0.22);
}

.quick-actions-wrapper.active .main-more-btn {
  transform: rotate(90deg);
  background: #ffffff;
  color: #da251d;
  border-color: rgba(218, 37, 29, 0.45);
}

/* ── CONTAINER NÚT PHỤ ── */
.sub-actions-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  /* Ẩn: thu nhỏ nhẹ + mờ, KHÔNG dùng display:none để giữ layout */
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.95);
  transform-origin: bottom center;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-actions-wrapper.active .sub-actions-container {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* ── CÁC NÚT PHỤ (FAB) ── */
.menu-action-fab {
  /* Reset mọi override cũ — KHÔNG dùng !important */
  position: static;
  top: auto;
  left: auto;
  margin: 0;

  width: 42px;
  height: 42px;
  flex-shrink: 0;

  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18),
              inset 0 0 10px rgba(255, 255, 255, 0.4);

  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;

  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

/* Stagger: mỗi nút phụ xuất hiện lệch 45ms */
.quick-actions-wrapper.active .sub-actions-container .menu-action-fab:nth-child(1) { transition-delay: 0ms; }
.quick-actions-wrapper.active .sub-actions-container .menu-action-fab:nth-child(2) { transition-delay: 45ms; }
.quick-actions-wrapper.active .sub-actions-container .menu-action-fab:nth-child(3) { transition-delay: 90ms; }
.quick-actions-wrapper.active .sub-actions-container .menu-action-fab:nth-child(4) { transition-delay: 135ms; }
.quick-actions-wrapper.active .sub-actions-container .menu-action-fab:nth-child(5) { transition-delay: 180ms; }

.menu-action-fab svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

/* Tất cả icon stroke màu đỏ */
.menu-action-fab svg path,
.menu-action-fab svg line,
.menu-action-fab svg polyline,
.menu-action-fab svg rect,
.menu-action-fab svg circle {
  stroke: #da251d;
}

.menu-action-fab:hover {
  transform: scale(1.12);
  background: #ffffff;
  border-color: rgba(218, 37, 29, 0.45);
  box-shadow: 0 10px 28px rgba(218, 37, 29, 0.22);
}

/* Trạng thái đặc biệt */
#dayNightToggleBtn.menu-action-fab.active     { background: #0d0d1a; border-color: rgba(255, 215, 0, 0.5); }
#soundToggleBtn.menu-action-fab.muted         { background: #a01515; border-color: rgba(218, 37, 29, 0.6); }
#fullscreenToggleBtn.menu-action-fab.active-fs{ background: #a01515; border-color: rgba(218, 37, 29, 0.6); }

/* --- 7. HỆ THỐNG BẢN ĐỒ (MAP) --- */
#mapToggleBtn:not(.menu-action-fab) {
  position: fixed;
  bottom: 45px;
  right: 45px;
  width: 55px; /* THU NHỎ */
  height: 55px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 4000;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 50%;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

#mapToggleBtn:not(.menu-action-fab) svg {
  width: 24px;
  height: 24px;
}

#mapToggleBtn:not(.menu-action-fab):hover {
  transform: scale(1.1) translateY(-5px);
  background: #ffffff;
}

/* Final close-less/glass overrides */
.menu-drawer {
  border-right: none !important;
}

.menu-header,
.categories-column {
  border-bottom: none !important;
  border-right: none !important;
}

.menu-footer,
.menu-close-btn {
  display: none !important;
}

#menuToggleBtn,
.main-more-btn,
.menu-action-fab,
#dayNightToggleBtn.menu-action-fab.active,
#soundToggleBtn.menu-action-fab.muted,
#fullscreenToggleBtn.menu-action-fab.active-fs {
  background: rgba(255, 255, 255, 0.86) !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
  color: #da251d !important;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.22),
    inset 0 0 12px rgba(255, 255, 255, 0.42) !important;
}

#menuToggleBtn:hover,
.main-more-btn:hover,
.menu-action-fab:hover,
.quick-actions-wrapper.active .main-more-btn {
  background: #ffffff !important;
  border-color: rgba(218, 37, 29, 0.45) !important;
  color: #da251d !important;
  box-shadow: 0 12px 34px rgba(218, 37, 29, 0.22) !important;
}

.menu-action-fab svg path,
.menu-action-fab svg line,
.menu-action-fab svg polyline,
.menu-action-fab svg rect,
.menu-action-fab svg circle,
#soundToggleBtn.menu-action-fab.muted svg path,
#fullscreenToggleBtn.menu-action-fab.active-fs svg path,
#dayNightToggleBtn.menu-action-fab.active svg path {
  stroke: #da251d !important;
}

.menu-action-fab i,
.main-more-btn i {
  color: #da251d !important;
}

/* Remove every visible close control from runtime popups/menus */
#customMenuWrapper .menu-close-btn,
#customMenuWrapper .close-text,
#customMenuWrapper [id*="close" i],
#customMenuWrapper [class*="close" i],
.museum-popup-overlay [id*="close" i],
.museum-popup-overlay [class*="close" i] {
  display: none !important;
}

@media (max-width: 1024px) {
  /* Bottom sheet layout on mobile */
  #customMenuWrapper {
    align-items: flex-end !important;
    justify-content: center !important;
  }

  .menu-drawer {
    width: 100vw !important;
    min-width: 100vw !important;
    height: 88dvh !important;
    max-height: 88dvh !important;
    border-radius: 24px 24px 0 0 !important;
    transform: translateY(100%) !important;
    transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.18) !important;
  }

  #customMenuWrapper.active .menu-drawer {
    transform: translateY(0) !important;
  }

  /* Horizontal indicator at top */
  .menu-drawer::before {
    content: "" !important;
    display: block !important;
    flex-shrink: 0 !important;
    width: 46px !important;
    height: 5px !important;
    margin: 10px auto 6px !important;
    border-radius: 999px !important;
    background: rgba(218, 37, 29, 0.42) !important;
  }

  /* Compact horizontal header */
  .menu-header {
    flex-shrink: 0 !important;
    padding: 10px 18px 12px !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .menu-logo-container img {
    width: 48px !important;
  }

  .menu-title-container h2 {
    font-size: 14px !important;
    line-height: 1.2 !important;
  }

  .menu-title-container h2 span {
    font-size: 10px !important;
    letter-spacing: 2px !important;
    margin-top: 2px !important;
  }

  /* Content area fills remaining height and allows internal scroll */
  .menu-content-flex {
    flex: 1 !important;
    min-height: 0 !important;
    flex-direction: column !important;
    overflow: hidden !important;
  }

  /* Categories: #level1Container as 2-per-row flex-wrap */
  .categories-column {
    flex-shrink: 0 !important;
    width: 100% !important;
    padding: 10px 14px 12px !important;
    overflow: visible !important;
    border-bottom: 1px solid rgba(0,0,0,0.07) !important;
  }

  #level1Container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .categories-column::-webkit-scrollbar {
    display: none !important;
  }

  .column-label {
    display: none !important;
  }

  /* Each category item: 2 per row, icon left + text max 2 lines */
  #level1Container .level-1-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex: 0 0 calc(50% - 4px) !important;
    width: calc(50% - 4px) !important;
    max-width: calc(50% - 4px) !important;
    padding: 10px 12px !important;
    margin: 0 !important;
    border-radius: 12px !important;
    white-space: normal !important;
    gap: 8px !important;
    min-height: 48px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  #level1Container .cat-icon {
    font-size: 18px !important;
    flex-shrink: 0 !important;
    width: 24px !important;
    text-align: center !important;
  }

  #level1Container .cat-name {
    font-size: 11px !important;
    line-height: 1.35 !important;
    flex: 1 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    font-weight: 600 !important;
  }

  .cat-arrow {
    display: none !important;
  }

  /* Items column scrolls internally within the fixed height drawer */
  .items-column {
    flex: 1 !important;
    min-height: 0 !important;
    padding: 14px 14px max(14px, env(safe-area-inset-bottom)) !important;
    overflow-y: auto !important;
  }

  .items-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .card-img-wrapper {
    height: 100px !important;
  }

  .card-content {
    padding: 10px !important;
  }

  .card-title {
    font-size: 12px !important;
    margin-bottom: 6px !important;
  }

  .card-btn {
    font-size: 10px !important;
  }
}
