* {
  box-sizing: border-box;
}

body {
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0;
}

.pill-reclamation {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border: none;
  border-radius: 30px;
  background: #1B2A41;
  color: #ffffff;
  text-decoration: none; /* important : enlève le soulignement de lien */
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pill-reclamation:hover,
.pill-reclamation:focus {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  color: #ffffff; /* évite que le navigateur change la couleur au visited/hover */
}

.pill-reclamation:active {
  transform: translateX(-50%) scale(0.96);
}

.pill-icon {
  width: 18px;
  height: 18px;
  color: #C9A24B;
  flex-shrink: 0;
}

.hero {
  background: #fff;
  padding: 28px 24px 20px;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
}
.brand {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hotel-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hotel-logo {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  object-fit: cover;
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}
.hotel-name {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  letter-spacing: -0.02em;
}
.hotel-sub {
  font-size: 13px;
  color: #aaa;
  margin-top: 2px;
}

.ui-text-block {
  background: #fff;
  border-radius: 12px;
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  padding: 14px 16px;
}
.ui-text-block p {
  font-size: 14px;
  line-height: 1.6;
  color: #222;
  margin: 0;
}

.ui-contact-row {
  background: #fff;
  border-radius: 12px;
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.ui-contact-row:hover {
  background: #f5f5f5;
}
.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-label {
  font-size: 11px;
  font-weight: 500;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.contact-value {
  font-size: 14px;
  font-weight: 500;
  color: #111;
}
.contact-arrow {
  margin-left: auto;
  color: #ccc;
  font-size: 20px;
  line-height: 1;
}

.ui-file-row {
  background: #fff;
  border-radius: 12px;
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.ui-file-row:hover {
  background: #f5f5f5;
}
.file-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #e6f1fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.file-icon.pdf {
  background: #fcebeb;
}
.file-title {
  font-size: 14px;
  font-weight: 500;
  color: #111;
}
.file-sub {
  font-size: 12px;
  color: #999;
  margin-top: 1px;
}
.dl-btn {
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
}

.ui-url-row {
  background: #fff;
  border-radius: 12px;
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.ui-url-row:hover {
  background: #f5f5f5;
}
.url-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.url-label {
  font-size: 11px;
  font-weight: 500;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.url-value {
  font-size: 14px;
  font-weight: 500;
  color: #111;
}
.url-arrow {
  margin-left: auto;
  color: #ccc;
  font-size: 20px;
  line-height: 1;
}

.ui-image-block {
  border-radius: 12px;
  overflow: hidden;
}
.ui-image-block img {
  width: 100%;
  display: block;
  max-height: 220px;
  object-fit: cover;
}

.mobile-frame {
  width: 375px;
  min-height: 667px;
  margin: 30px auto;
  border-radius: 28px;
  overflow: hidden;
  background: rgb(255 255 255 / 80%);
  border: 0.5px solid rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}

.mobile-header {
  padding: 20px 20px 0;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
}

.mobile-header p {
  font-size: 11px;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.mobile-header h2 {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin: 0 0 16px;
}

.langue-header {
  padding: 10px 10px 0;
}

.langue-header h3 {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}

.mobile-content {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px 20px;
}

/* Language list */
.lang-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lang-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 10px;
  cursor: pointer;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: all 0.15s ease;
}

.lang-item:hover {
  background: #f5f5f5;
}

.lang-item.active {
  border: 0.5px solid #378add;
  background: #e6f1fb;
}

.lang-item .lang-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-item .flag {
  font-size: 22px;
  line-height: 1;
}

.lang-item .name {
  font-size: 15px;
  color: #111;
}

.lang-item.active .name {
  font-weight: 500;
  color: #0c447c;
}

.radio-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lang-item.active .radio-circle {
  border-color: #378add;
  background: #378add;
}

.radio-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  display: none;
}

.lang-item.active .radio-dot {
  display: block;
}

.continue-btn {
  width: 100%;
  margin-top: 20px;
  padding: 13px;
  background: #185fa5;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.15s;
}

.continue-btn:hover {
  background: #0c447c;
}

/* Tabs */
.nav-tabs {
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
  gap: 0;
}

.nav-tabs .nav-link {
  font-size: 13px;
  font-weight: 500;
  color: #888;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 10px 12px;
  border-radius: 0;
  background: transparent;
}

.nav-tabs .nav-link.active {
  color: #185fa5;
  border-bottom: 2px solid #185fa5;
  background: transparent;
}

.tab-content {
  padding-top: 12px;
}

/* Loader */
#tabs_loader {
  display: none;
  text-align: center;
  padding: 40px 0;
  color: #888;
  font-size: 14px;
}

#tabs_loader::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  margin: 12px auto 0;
  border: 2px solid #e0e0e0;
  border-top-color: #185fa5;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#tabs_section {
  display: none;
}

.pill-bar {
  display: flex;
  gap: 8px;
  padding: 16px 16px 0;
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: wrap;
}
.pill-bar::-webkit-scrollbar {
  display: none;
}

.pill {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  background: #f5f5f5;
  color: #555;
  transition: all 0.15s;
}
.pill.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.card-grid {
  display: grid;
  gap: 10px;
  padding: 14px 16px 0;
}
.item-card {
  border-radius: 12px;
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  background: #fafafa;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.15s;
}
.item-card:hover {
  background: #f2f2f2;
}
.card-img {
  width: 100%;
  height: 90px;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.card-body {
  padding: 10px;
}
.card-label {
  font-size: 11px;
  font-weight: 500;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}
.card-title {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
}

.skel {
  background: #f0f0f0;
  border-radius: 8px;
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.error-msg {
  color: #c0392b;
  font-size: 14px;
  text-align: center;
  padding: 20px 0;
}
