/* ==============================
   TravelTales – Hotels Page
   ============================== */

.tt-main {
  background-color: #f5f7fb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- HERO ---------- */

.tt-hotels-hero {
  position: relative;
  padding: 90px 0 80px;
  background-image: url("../../uploads/hotels/hotels-bg.jpg"); /* change path if needed */
  background-size: cover;
  background-position: center;
  color: #fff;
}

.tt-hotels-hero-overlay {
  position: absolute;
  inset: 0;
  /* animated multi-color glow */
  background: radial-gradient(circle at 0% 0%, rgba(0, 140, 255, 0.45), transparent 55%),
              radial-gradient(circle at 100% 50%, rgba(244, 114, 182, 0.45), transparent 55%),
              radial-gradient(circle at 50% 100%, rgba(16, 185, 129, 0.4), transparent 55%);
  mix-blend-mode: soft-light;
  animation: ttHeroGradient 20s ease-in-out infinite alternate;
  z-index: 1;
}

.tt-hotels-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* White card */

.tt-hotels-search-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
  padding: 22px 26px 20px;
  position: relative;
  overflow: hidden;
  /* subtle floating animation */
  animation: ttCardFloat 18s ease-in-out infinite alternate;
}

/* soft coloured strip on top edge */
.tt-hotels-search-card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 4px;
  background: linear-gradient(90deg, #00bcd4, #3b82f6, #a855f7, #f97316);
  background-size: 200% 100%;
  animation: ttStripMove 14s linear infinite;
}

/* ---------- Top pills ---------- */

.tt-hotels-room-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.tt-radio-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #d0d7e2;
  cursor: pointer;
  font-size: 13px;
  background: linear-gradient(135deg, #f7f8ff 0%, #eef2ff 100%);
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.1s ease,
    border-color 0.18s ease;
}

.tt-radio-pill input {
  display: none;
}

.tt-radio-pill span {
  white-space: nowrap;
}

.tt-radio-pill:hover {
  border-color: #0c63ce;
  box-shadow: 0 10px 25px rgba(12, 99, 206, 0.35);
  transform: translateY(-1px);
}

.tt-radio-pill input:checked + span,
.tt-radio-pill:has(input:checked) {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.5);
}

.tt-line-text {
  font-size: 13px;
  color: #f9fafb;
  text-shadow: 0 1px 4px rgba(15, 23, 42, 0.9);
}

/* ---------- Form layout ---------- */

.tt-hotels-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tt-form-row {
  display: grid;
  grid-template-columns: 2.1fr 1.1fr 1.1fr 1.1fr 1.2fr;
  gap: 12px;
}

/* ⬇️ BOTTOM ROW: make it FLEX + centered so it's stable */
.tt-form-row--bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

/* ---------- Fields (MMT style) ---------- */

.tt-form-field {
  border-radius: 12px;
  padding: 10px 12px 8px;
  background: radial-gradient(circle at top left, #fdfdff, #f4f6ff);
  border: 1.5px solid #d3d8e6;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    transform 0.1s ease;
}

.tt-form-field--wide {
  grid-column: span 1;
}

.tt-form-field--clickable {
  cursor: pointer;
}

.tt-form-field:hover {
  border-color: #0c63ce;
  box-shadow: 0 0 0 1px rgba(12, 99, 206, 0.15),
    0 14px 30px rgba(15, 23, 42, 0.18);
  transform: translateY(-1px);
  background: #ffffff;
}

.tt-form-field:focus-within {
  border-color: #008cff;
  box-shadow: 0 0 0 1px rgba(0, 140, 255, 0.35),
    0 16px 36px rgba(0, 0, 0, 0.28);
  background: #ffffff;
}

.tt-field-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
}

.tt-field-sub {
  font-size: 11px;
  color: #9ca3af;
}

.tt-field-value {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

/* Price */

.tt-form-field--price {
  background: linear-gradient(180deg, #f2f7ff 0%, #e4eeff 100%);
  border-color: #c3d4ff;
}

.tt-price-display {
  font-size: 13px;
  color: #111827;
  margin-bottom: 4px;
}

#tt-price-range {
  width: 100%;
}

/* =========================================
   GROUP DEALS – hide price per night field
   ========================================= */

.tt-hotels-search-card.tt-group-mode .tt-form-field--price {
  display: none;
}

/* Re-balance the grid to 4 columns (City, Check-in, Check-out, Rooms & Guests) */
.tt-hotels-search-card.tt-group-mode .tt-form-row {
  grid-template-columns: 2.1fr 1.1fr 1.1fr 1.2fr;
}

/* ---------- Trending row ---------- */

.tt-trending {
  display: flex;
  width: 100%;                 /* span full card width */
  align-items: center;
  justify-content: center;     /* content centered & stable */
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 6px;
}

.tt-trending-label {
  font-weight: 600;
  color: #374151;
}

.tt-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid #d1d5db;
  background: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease,
    transform 0.1s ease, border-color 0.15s ease;
}

.tt-chip--ghost {
  background: #f3f4ff;
}

.tt-chip--active {
  background: linear-gradient(135deg, #0c63ce, #2563eb);
  color: #fff;
  border-color: #0c63ce;
}

.tt-chip:hover {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(99, 102, 241, 0.55);
}

/* ---------- Search button ---------- */

.tt-search-btn {
  border: none;
  padding: 12px 64px;
  border-radius: 999px;
  background: radial-gradient(circle at 0% 0%, #22c55e, transparent 55%),
    linear-gradient(135deg, #0078ff 0%, #0054d1 100%);
  background-blend-mode: screen;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(12, 99, 206, 0.7);
  justify-self: center;
  margin: 0 auto 4px;
  text-transform: uppercase;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  animation: ttCtaPulse 2.6s ease-in-out infinite;
}

.tt-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(12, 99, 206, 0.9);
  background: radial-gradient(circle at 100% 0%, #f97316, transparent 55%),
    linear-gradient(135deg, #008cff 0%, #0050c4 100%);
  animation-play-state: paused;
}

/* ==========================
   CITY POPUP
   ========================== */

.tt-city-panel {
  position: fixed;
  display: none;
  z-index: 45;
  top: 0;
  left: 0;
}

.tt-city-panel--open {
  display: block;
}

.tt-city-panel-inner {
  width: 420px;
  max-height: 360px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tt-city-search-head {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid #e5e7eb;
  gap: 8px;
}

#tt-city-search-input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  padding: 7px 12px;
  font-size: 13px;
  outline: none;
}

#tt-city-clear {
  border: none;
  background: transparent;
  font-size: 12px;
  color: #6b7280;
  cursor: pointer;
}

.tt-city-list-wrap {
  padding: 8px 0;
  overflow-y: auto;
}

.tt-city-section-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  padding: 0 14px 6px;
}

/* --- Ensure city list text is visible on white background --- */

.tt-city-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tt-city-item {
  padding: 10px 14px;
  cursor: pointer;
  background-color: #ffffff;
}

.tt-city-item + .tt-city-item {
  border-top: 1px solid #f0f0f0;
}

.tt-city-item:hover {
  background-color: #f5f7ff;
}

.tt-city-item .tt-city-main {
  color: #111111;       /* <<< city name – dark & visible */
  font-size: 14px;
  font-weight: 500;
}

.tt-city-item .tt-city-sub {
  color: #666666;       /* <<< state + country in grey */
  font-size: 12px;
  margin-top: 2px;
}


/* ==========================
   DATE RANGE PANEL
   ========================== */

.tt-date-panel {
  position: fixed;
  display: none;
  z-index: 47;
  top: 0;
  left: 0;
}

.tt-date-panel--open {
  display: block;
}

/* wider calendar */
.tt-date-panel-inner {
  width: 720px;
  max-width: 95vw;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  padding: 16px 18px 12px;
}

.tt-date-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.tt-date-range-display {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.tt-date-close {
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  color: #6b7280;
}

.tt-date-months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tt-date-month-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.tt-date-nav {
  display: flex;
  gap: 4px;
}

.tt-date-nav button {
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  width: 22px;
  height: 22px;
  font-size: 13px;
  cursor: pointer;
}

.tt-date-nav button:hover {
  background: #e5f0ff;
}

.tt-date-weekdays,
.tt-date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-size: 11px;
  text-align: center;
}

.tt-date-weekday {
  color: #9ca3af;
  padding: 4px 0;
}

.tt-date-day {
  border: none;
  background: transparent;
  padding: 6px 0;
  cursor: pointer;
  font-size: 13px;
  border-radius: 999px;
  margin: 1px;
  color: #111827;
  position: relative; /* for holiday dot */
  transition: background 0.12s ease, color 0.12s ease, transform 0.06s ease;
}

.tt-date-day--disabled {
  color: #d1d5db;
  cursor: default;
}

.tt-date-day:not(.tt-date-day--disabled):hover {
  background: #e0edff;
  transform: translateY(-1px);
}

.tt-date-day--selected,
.tt-date-day--start,
.tt-date-day--end {
  background: #0c63ce;
  color: #fff;
}

.tt-date-day--in-range {
  background: #e0edff;
}

/* small holiday dot */
.tt-date-day--holiday::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 3px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #f97316;
}

.tt-date-footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 10px;
}

.tt-date-btn {
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  border: none;
  cursor: pointer;
}

.tt-date-btn--ghost {
  background: #e5e7eb;
  color: #374151;
}

.tt-date-btn--primary {
  background: #0c63ce;
  color: #fff;
}

/* ==========================
   GUESTS PANEL (more visible)
   ========================== */

.tt-guests-panel {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 46;
  width: 100%;
  height: 100%;
  pointer-events: none; /* clicks go through to inner */
}

.tt-guests-panel--open {
  display: block;
}

/* overlay card that follows the field */
.tt-guests-panel-inner {
  position: absolute;
  pointer-events: auto;
  width: 380px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.45);
  border: 1px solid #e5e7eb;
}

/* small arrow pointing to field */
.tt-guests-panel-inner::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 60px;
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #ffffff transparent;
  filter: drop-shadow(0 -1px 2px rgba(15, 23, 42, 0.25));
}

.tt-guests-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
}

.tt-guests-row:last-of-type {
  border-bottom: 1px solid #e5e7eb;
}

.tt-guests-label {
  font-size: 14px;
  font-weight: 600;
}

.tt-guests-sub {
  font-size: 11px;
  color: #9ca3af;
}

.tt-guests-counter {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* steppers – brighter & elevated */
.tt-counter-btn {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #4b5563;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.12);
  transition: background 0.15s ease, color 0.15s ease, transform 0.08s ease,
    box-shadow 0.15s ease, border-color 0.15s ease;
}

.tt-counter-btn:hover {
  background: #e0edff;
  border-color: #2563eb;
  color: #1f2937;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.tt-counter-btn:active {
  background: #2563eb;
  border-color: #1d4ed8;
  color: #ffffff;
  transform: scale(0.9) translateY(1px);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

/* animated number bump */
.tt-count-bump {
  animation: ttCountBump 0.22s ease-out;
  color: #0f766e;
}

.tt-guests-info {
  font-size: 11px;
  color: #6b7280;
  margin: 8px 0 12px;
}

.tt-guests-pets {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 8px 10px;
  margin-bottom: 10px;
  background: radial-gradient(circle at 0 0, #fef3c7, transparent 65%);
}

.tt-guests-pets-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tt-guests-pets-label input {
  margin-right: 4px;
}

.tt-guests-pets-icon {
  font-size: 18px;
}

.tt-guests-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
}

.tt-guests-actions button {
  border-radius: 999px;
  border: none;
  font-size: 13px;
  padding: 7px 16px;
  cursor: pointer;
}

#tt-guests-clear {
  background: #e5e7eb;
  color: #374151;
}

#tt-guests-apply {
  background: #0c63ce;
  color: #fff;
}

/* ==========================
   GENERIC SECTIONS BELOW HERO
   ========================== */

.tt-section {
  padding: 40px 16px;
}

.tt-section-header {
  max-width: 1100px;
  margin: 0 auto 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tt-section-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
}

.tt-section-header p {
  font-size: 14px;
  color: #6b7280;
}

/* Offers grid */

.tt-offers-section {
  max-width: 1100px;
  margin: 0 auto;
}

.tt-offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.tt-offer-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
}

.tt-offer-image {
  height: 150px;
  background-size: cover;
  background-position: center;
}

.tt-offer-body {
  padding: 12px 14px 14px;
}

.tt-offer-body h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.tt-offer-body p {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}

.tt-offer-btn {
  border: none;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(99, 102, 241, 0.4);
}

/* Collections */

.tt-collections-section {
  max-width: 1100px;
  margin: 0 auto;
}

.tt-collections-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tt-collection-pill {
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 10px 14px;
  background: #fff;
  cursor: pointer;
  min-width: 160px;
  text-align: left;
  transition: box-shadow 0.15s ease, transform 0.1s ease, border-color 0.15s ease;
}

.tt-collection-pill:hover {
  border-color: #0ea5e9;
  box-shadow: 0 12px 26px rgba(14, 165, 233, 0.3);
  transform: translateY(-2px);
}

.tt-collection-title {
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.tt-collection-sub {
  font-size: 11px;
  color: #6b7280;
}

/* App section */

.tt-app-section {
  background: #111827;
  color: #e5e7eb;
}

.tt-app-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.tt-app-text h2 {
  font-size: 22px;
  margin-bottom: 4px;
}

.tt-app-text p {
  font-size: 14px;
  margin-bottom: 10px;
}

.tt-app-form {
  display: flex;
  gap: 10px;
}

.tt-app-input-wrap {
  display: flex;
  align-items: center;
  border-radius: 999px;
  background: #111827;
  border: 1px solid #4b5563;
  padding: 4px 10px;
}

.tt-app-country {
  font-size: 13px;
  margin-right: 6px;
}

.tt-app-input-wrap input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
}

.tt-app-form button {
  border-radius: 999px;
  border: none;
  padding: 6px 16px;
  background: #f59e0b;
  color: #111827;
  font-size: 13px;
  cursor: pointer;
}

.tt-app-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tt-badge-placeholder {
  border-radius: 8px;
  background: #1f2937;
  padding: 8px 12px;
  font-size: 12px;
}

/* Cities */

.tt-cities-section {
  max-width: 1100px;
  margin: 0 auto 40px;
}

.tt-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.tt-city-block {
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.tt-city-block h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.tt-city-block p {
  font-size: 12px;
  color: #6b7280;
}

/* ==========================
   ANIMATIONS (scroll)
   ========================== */

.tt-animate-init {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tt-animate-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================
   Keyframes
   ========================== */

@keyframes ttHeroGradient {
  0% {
    opacity: 0.85;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 1;
    transform: translate3d(-10px, 6px, 0);
  }
  100% {
    opacity: 0.9;
    transform: translate3d(8px, -4px, 0);
  }
}

@keyframes ttCardFloat {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-4px);
  }
}

@keyframes ttStripMove {
  0% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: 200%;
  }
}

@keyframes ttCtaPulse {
  0% {
    box-shadow: 0 16px 40px rgba(12, 99, 206, 0.7);
  }
  50% {
    box-shadow: 0 22px 60px rgba(59, 130, 246, 0.95);
  }
  100% {
    box-shadow: 0 16px 40px rgba(12, 99, 206, 0.7);
  }
}

@keyframes ttCountBump {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.2) translateY(-1px);
  }
  100% {
    transform: scale(1);
  }
}

/* ==========================
   Responsive
   ========================== */

@media (max-width: 960px) {
  .tt-form-row {
    grid-template-columns: 1fr 1fr;
  }

  .tt-search-btn {
    width: 100%;
  }

  .tt-date-panel-inner {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .tt-hotels-hero {
    padding-top: 70px;
  }

  .tt-hotels-search-card {
    padding: 14px 12px;
  }

  .tt-form-row {
    grid-template-columns: 1fr;
  }

  .tt-guests-panel-inner {
    width: 100%;
  }

  .tt-app-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================
   SEARCH RESULTS LAYOUT
   ============================ */

.tt-search-layout {
  padding: 32px 0 80px;
  background: #f5f7fb;
  min-height: 70vh;
}

/* ---------- Header card + Explore Tips button ---------- */

/* HEADER CARD */
.tt-search-header-bar {
  max-width: 1160px;
  margin: 0 auto 24px;
  padding: 18px 24px;
  border-radius: 22px;
  background: linear-gradient(90deg, #f9fafb, #eef2ff);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.tt-search-header-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tt-search-title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #111827;
}

.tt-search-sub {
  font-size: 14px;
  color: #6b7280;
}

/* Travel tips button */
.tt-tips-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #f3f4ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.tt-tips-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2563eb;
  color: #ffffff;
  font-size: 12px;
}

.tt-tips-arrow { font-size: 14px; }

.tt-tips-btn:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.35);
}

.tt-tips-btn:hover .tt-tips-icon {
  background: #1d4ed8;
}

/* Mobile */
@media (max-width: 768px) {
  .tt-search-header-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 18px;
    gap: 10px;
  }
  .tt-tips-btn {
    align-self: stretch;
    justify-content: center;
  }
}


.tt-search-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* main card */
.tt-search-header-card {
  flex: 1;
  background: radial-gradient(circle at top left, #ffffff 0, #eef2ff 45%, #e0f2fe 100%);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  padding: 18px 22px;
  overflow: hidden;

  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

.tt-search-header-card.tt-header-visible {
  opacity: 1;
  transform: translateY(0);
}

.tt-search-header-count {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.tt-search-header-meta {
  font-size: 14px;
  color: #6b7280;
}

/* Explore Travel Tips button (right side) */
.tt-tips-btn {
  flex: 0 0 auto;
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f3f4ff;
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.tt-tips-btn-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #93c5fd, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
}

.tt-tips-btn-arrow {
  font-size: 14px;
}

.tt-tips-btn:hover {
  background: #e0ebff;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(30, 64, 175, 0.28);
}

/* --------- filters + results grid ---------- */

.tt-search-grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
}

/* LEFT FILTER CARD */
.tt-search-filters {
  position: sticky;
  top: 110px;          /* below main site header */
  align-self: flex-start;
}

#tt-filter-form {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  padding: 18px 18px 16px;
}

.tt-filter-block {
  padding: 10px 0 12px;
  border-bottom: 1px solid #e5e7eb;
}

.tt-filter-block:last-of-type {
  border-bottom: none;
}

.tt-filter-block h3 {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.tt-filter-block label {
  display: block;
  font-size: 13px;
  color: #4b5563;
  margin: 3px 0;
  cursor: pointer;
}

.tt-filter-block input[type="radio"],
.tt-filter-block input[type="checkbox"] {
  margin-right: 6px;
}

.tt-filter-apply-btn {
  margin-top: 10px;
  width: 100%;
  border: none;
  outline: none;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.tt-filter-apply-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.35);
}

/* ===============================
   RIGHT RESULTS COLUMN (UPDATED)
   =============================== */

.tt-search-results {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 22px 26px;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(229, 231, 235, 0.7);

  opacity: 0;
  transform: translateY(12px);
  animation: ttSlideIn 0.45s ease-out forwards;
}

@keyframes ttSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   TOOLBAR CHIPS
   =============================== */

.tt-results-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.tt-results-chip {
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4b5563;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.20s ease,
    border-color 0.25s ease;
}

.tt-results-chip:hover {
  background: #e0e7ff;
  transform: translateY(-1px);
}

.tt-results-chip--active {
  background: #2563eb;
  color: #ffffff;
  border-color: #1d4ed8;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

/* ===============================
   NO RESULTS MESSAGE
   =============================== */

.tt-no-results {
  font-size: 15px;
  color: #6b7280;
  padding: 35px 0;
  text-align: center;
  border-radius: 14px;
  background: linear-gradient(to right, #f9fafb, #ffffff);
  border: 1px dashed #d1d5db;
  animation: ttFadeIn 0.5s ease-out forwards;
}

@keyframes ttFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}



/* RESULT CARD DESIGN + ANIMATION */
.tt-result-card {
  display: flex;
  gap: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
  overflow: hidden;
  align-items: stretch;

  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.45s ease-out,
    transform 0.45s ease-out,
    box-shadow 0.18s ease-out;
}

/* fade-in when visible */
.tt-result-card.tt-card-visible {
  opacity: 1;
  transform: translateY(0);
}

.tt-result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.22);
}

.tt-result-img {
  flex: 0 0 180px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-color: #e5e7eb;
}

/* Card middle */
.tt-result-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.tt-result-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tt-result-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.tt-result-stars {
  font-size: 12px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
}

.tt-result-location {
  font-size: 13px;
  color: #6b7280;
}

.tt-result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}

.tt-tag {
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
}

/* Card right side (price + button) */
.tt-result-price {
  flex: 0 0 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
}

.tt-price-label-sm {
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.tt-price-value {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.tt-result-view-btn {
  border: none;
  outline: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tt-result-view-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.38);
}

/* Loader style */
.tt-search-loader {
  margin: 18px 0 6px;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}

/* Mobile tweaks */
@media (max-width: 900px) {
  .tt-search-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tt-search-header-row {
    flex-direction: column;
    align-items: stretch;
  }

  .tt-tips-btn {
    align-self: flex-start;
  }

  .tt-search-filters {
    position: static;
    order: 2;
  }

  .tt-search-results {
    order: 1;
  }

  .tt-result-card {
    flex-direction: column;
  }

  .tt-result-img {
    width: 100%;
    height: 180px;
  }

  .tt-result-price {
    align-items: flex-start;
  }
}

/* ================================
   COMPACT SEARCH BAR (RESULT PAGE)
   ================================ */

.tt-search-main {
  padding-top: 80px; /* keep clear of header */
  background: #f5f7fb;
}

/* Wrapper */
.tt-searchbar-wrap {
  max-width: 1180px;
  margin: 0 auto 24px;
  padding: 0 16px;
}

/* Bar */
.tt-searchbar {
  display: flex;
  align-items: stretch;
  gap: 12px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  padding: 10px 14px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.tt-searchbar.tt-bar-visible {
  opacity: 1;
  transform: translateY(0);
  margin-top: 40px;
}

.tt-searchbar-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 10px;
  background: #f7f8ff;
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.35);
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.tt-searchbar-field:hover {
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
  transform: translateY(-1px);
}

.tt-searchbar-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 4px;
}

.tt-searchbar-value {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tt-searchbar-sub {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 2px;
}

/* SEARCH BUTTON */
.tt-searchbar-btn {
  padding: 0 28px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.4);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease;
}

.tt-searchbar-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(37, 99, 235, 0.5);
  background: linear-gradient(90deg, #1d4ed8, #1d4ed8);
}

.tt-searchbar-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.35);
}

/* Small screens */
@media (max-width: 960px) {
  .tt-searchbar {
    flex-wrap: wrap;
  }
  .tt-searchbar-field {
    flex: 1 1 calc(50% - 10px);
  }
  .tt-searchbar-btn {
    flex: 1 1 100%;
    margin-top: 4px;
  }
}

/* ========================
   TRAVEL TIPS MODAL
   ======================== */

body.tt-modal-open {
  overflow: hidden;
}

.tt-tips-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  pointer-events: none;
  margin-top: 57px;
}

.tt-tips-modal.tt-tips-open {
  display: block;
  pointer-events: auto;
}

.tt-tips-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2001;
}

.tt-tips-dialog {
  position: relative;
  max-width: 880px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.7);
  overflow: hidden;
  display: flex;
  flex-direction: column;
z-index: 2002;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

.tt-tips-modal.tt-tips-open .tt-tips-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.tt-tips-hero {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.tt-tips-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.45) 0%, rgba(15,23,42,0.8) 100%);
}

.tt-tips-hero-title {
  position: absolute;
  left: 24px;
  bottom: 20px;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
}

.tt-tips-pill-row {
  background: #f9fafb;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tt-tips-pill {
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.tt-tips-pill-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
  margin-bottom: 3px;
}

.tt-tips-pill-value {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.tt-tips-body {
  padding: 16px 20px 18px;
  max-height: 360px;
  overflow-y: auto;
}

.tt-tips-section {
  margin-bottom: 16px;
}

.tt-tips-section-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111827;
}

.tt-tips-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.tt-tips-list li {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 4px;
}

.tt-tips-close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.65);
  color: #ffffff;
  cursor: pointer;
}

/* modal mobile */
@media (max-width: 960px) {
  .tt-tips-dialog {
    margin: 24px 12px;
  }
  .tt-tips-pill-row {
    grid-template-columns: 1fr;
  }
}


/* ============================
   MMT-style hotel listing card
============================ */

.tt-result-card.tt-mmt-card{
  display:grid;
  grid-template-columns: 260px 1fr 240px;
  gap:16px;
  border:1px solid #e7e7e7;
  border-radius:8px;
  background:#fff;
  overflow:hidden;
  margin-bottom:14px;
  padding:0;
  box-shadow: 0 8px 20px rgba(15, 23, 42,0.10);
}

.tt-result-card.tt-mmt-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
}

/* optional small count text inside view-all thumb */
.tt-mmt-viewall-count{
  position:absolute;
  right:8px;
  bottom:6px;
  font-size:12px;
  font-weight:800;
  color:#fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}


.tt-mmt-left{ padding:12px; }
.tt-mmt-img-main{
  width:100%;
  height:160px;
  border-radius:8px;
  background-size:cover;
  background-position:center;
  background-color:#f2f2f2;
}
.tt-mmt-thumbs{
  margin-top:10px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:8px;
}
.tt-mmt-thumb{
  height:48px;
  border-radius:6px;
  background-size:cover;
  background-position:center;
  background-color:#f2f2f2;
  position:relative;
  overflow:hidden;
}
.tt-mmt-thumb--viewall::after{
  content:"View All";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  font-size:12px;
}

.tt-mmt-mid{ padding:12px 0; }
.tt-mmt-title{
  margin:0 0 6px 0;
  font-size:20px;
  font-weight:800;
  color:#111;
}
.tt-mmt-stars{
  font-size:14px;
  letter-spacing:1px;
  color:#222;
  margin-bottom:6px;
}
.tt-mmt-loc{
  font-size:14px;
  color:#444;
  margin-bottom:10px;
}
.tt-mmt-loc a{ color:#1a73e8; text-decoration:none; font-weight:600; }
.tt-mmt-pillrow{ display:flex; gap:8px; flex-wrap:wrap; margin:8px 0 12px; }
.tt-mmt-pill{
  border:1px solid #d7d7d7;
  border-radius:6px;
  padding:6px 10px;
  font-size:13px;
  color:#444;
  background:#fff;
}

.tt-mmt-feat{
  display:flex;
  gap:10px;
  flex-direction:column;
  font-size:14px;
  color:#1f1f1f;
}
.tt-mmt-feat .tt-mmt-check{
  color:#0b7;
  font-weight:900;
  margin-right:6px;
}
.tt-mmt-feat .tt-mmt-spark{
  color:#2b7cff;
  font-weight:900;
  margin-right:6px;
}
.tt-mmt-desc{
  color:#2b2b2b;
  line-height:1.35;
}

.tt-mmt-right{
  border-left:1px solid #eee;
  padding:12px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:220px;
}

.tt-mmt-ratingTop{
  display:flex;
  align-items:flex-start;
  justify-content:flex-end;
  gap:10px;
}
.tt-mmt-ratingText{
  text-align:right;
  font-weight:800;
  font-size:18px;
  color:#1a56db;
}
.tt-mmt-ratingCount{
  text-align:right;
  font-size:13px;
  color:#555;
  margin-top:2px;
}
.tt-mmt-ratingBox{
  background:#1a56db;
  color:#fff;
  font-weight:900;
  font-size:14px;
  border-radius:6px;
  padding:6px 10px;
  line-height:1;
}

.tt-mmt-offerPill{
  align-self:flex-end;
  border:1px solid #b08cff;
  color:#7a4cff;
  border-radius:18px;
  padding:6px 10px;
  font-weight:700;
  font-size:12px;
  margin-top:10px;
}

.tt-mmt-priceWrap{
  margin-top:10px;
  text-align:right;
}
.tt-mmt-old{
  color:#777;
  text-decoration:line-through;
  font-size:14px;
  margin-bottom:4px;
}
.tt-mmt-new{
  font-size:34px;
  font-weight:900;
  color:#111;
  line-height:1.05;
}
.tt-mmt-tax{
  margin-top:4px;
  font-size:14px;
  color:#555;
}
.tt-mmt-per{
  font-size:14px;
  color:#555;
  margin-top:4px;
}
.tt-mmt-cta{
  margin-top:10px;
  display:inline-block;
  text-align:right;
  font-weight:800;
  color:#1a73e8;
  text-decoration:none;
}

.tt-mmt-offer-strip{
  grid-column:1 / -1;
  border-top:1px solid #eee;
  background:#dff4ea;
  color:#106b44;
  font-weight:800;
  padding:12px 14px;
  font-size:14px;
}
@media(max-width: 980px){
  .tt-result-card.tt-mmt-card{
    grid-template-columns:1fr;
  }
  .tt-mmt-right{
    border-left:none;
    border-top:1px solid #eee;
    text-align:left;
  }
  .tt-mmt-ratingTop{ justify-content:flex-start; }
  .tt-mmt-priceWrap{ text-align:left; }
}

/* ---- MMT-like listing card ---- */
.tt-mmt-card{
  display:grid;
  grid-template-columns: 320px 1fr 220px;
  gap:18px;
  background:#fff;
  border:1px solid #e9e9ef;
  border-radius:14px;
  padding:14px;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
  margin:14px 0;
}
.tt-imgWrap{display:block;border-radius:12px;overflow:hidden;}
.tt-coverImg{width:100%;height:190px;object-fit:cover;display:block;}
.tt-thumbRow{display:flex;gap:8px;margin-top:10px;}
.tt-thumb{width:74px;height:54px;border-radius:10px;overflow:hidden;background:#f3f3f7;border:1px solid #eee;}
.tt-thumb img{width:100%;height:100%;object-fit:cover;display:block;}
.tt-viewAll{
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;color:#fff;font-weight:700;font-size:12px;
  background:linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.6));
  position:relative;
}
.tt-viewAll span{line-height:1.1;text-align:center}

.tt-hotelName{
  font-size:26px;font-weight:800;color:#111;text-decoration:none;
}
.tt-titleRow{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.tt-stars{color:#111;font-size:16px;letter-spacing:1px;}

.tt-locationLine{margin-top:6px;color:#3a3a3a;font-size:14px}
.tt-loc{font-weight:600}
.tt-badges{margin-top:10px}
.tt-pill{
  display:inline-block;
  padding:6px 10px;
  border:1px solid #d9d9e6;
  border-radius:10px;
  font-size:13px;
  font-weight:700;
  color:#3a3a3a;
  background:#fff;
}

.tt-highlights{margin-top:14px;color:#2f2f2f;font-size:14px}
.tt-hl{display:flex;gap:8px;align-items:flex-start;margin:6px 0;line-height:1.35}
.tt-check{font-weight:900}
.tt-shield{color:#2b6cff}

.tt-mmt-right{
  border-left:1px solid #f0f0f4;
  padding-left:14px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}
.tt-priceBlock{text-align:right}
.tt-price{font-size:44px;font-weight:900;color:#111;line-height:1}
.tt-sub{font-size:13px;color:#666;margin-top:4px}

.tt-loginPayLater{
  display:block;
  margin-top:10px;
  font-size:13px;
  font-weight:800;
  color:#0a59ff;
  text-decoration:none;
}
.tt-loginPayLater:hover{text-decoration:underline}

.tt-detailsBtn{
  display:inline-block;
  margin-top:14px;
  padding:10px 14px;
  border-radius:10px;
  border:1px solid #e3e3ef;
  text-decoration:none;
  font-weight:800;
  color:#0a59ff;
  background:#fff;
}
.tt-detailsBtn:hover{background:#f6f8ff}



