/* ==========================================================================
   RUMO — Design System & Mobile App Styles
   Colors from layouts.png:
   - Teal Primary: #0D6F73
   - Teal Deep: #108683
   - Teal Accent / Mint: #57C7B5
   - Dark Slate: #0E1E28
   - Background: #F7FAFA
   - Typography: Sora (Headers/Brand) & Inter (Body/UI)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Sora:wght@400;600;700;800&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

:root {
  --rumo-primary: #0D6F73;
  --rumo-primary-dark: #085558;
  --rumo-teal: #108683;
  --rumo-teal-light: #57C7B5;
  --rumo-teal-soft: #E8F7F5;
  --rumo-teal-soft-2: #D1EFEA;
  --rumo-dark: #0E1E28;
  --rumo-dark-2: #1A2E3B;
  --rumo-text: #1E293B;
  --rumo-text-soft: #475569;
  --rumo-muted: #8E9FAA;
  --rumo-muted-light: #CBD5E1;
  --rumo-border: #E6EDF2;
  --rumo-border-light: #F1F5F9;
  --rumo-bg: #F8FAFB;
  --rumo-card-bg: #FFFFFF;
  --rumo-surface: #F0F4F7;
  --rumo-star: #F5A623;
  --rumo-green: #10B981;
  --rumo-radius-xl: 24px;
  --rumo-radius-lg: 18px;
  --rumo-radius-md: 14px;
  --rumo-radius-sm: 10px;
  --rumo-shadow: 0 10px 30px rgba(13, 111, 115, 0.08);
  --rumo-shadow-card: 0 4px 20px rgba(0, 0, 0, 0.04);
  --rumo-shadow-float: 0 8px 24px rgba(13, 111, 115, 0.15);
  --rumo-font-display: 'Sora', sans-serif;
  --rumo-font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  background-color: #E2E8F0;
  color: var(--rumo-text);
  font-family: var(--rumo-font-body);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  touch-action: pan-y;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: 100%;
}

button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}

/* Force minimum 16px font-size on all mobile inputs to disable iOS Safari auto-zoom on focus */
input,
select,
textarea,
.form-control,
.form-select,
.form-control-rumo,
.search-input-rumo {
  font-size: 16px !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.fw-display {
  font-family: var(--rumo-font-display);
  font-weight: 700;
  color: var(--rumo-dark);
}

a {
  color: var(--rumo-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--rumo-primary-dark);
}

/* ==========================================================================
   Phone Shell / Container
   ========================================================================== */
.phone-shell {
  max-width: 440px;
  min-height: 100vh;
  margin: 0 auto;
  background: var(--rumo-bg);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(14, 30, 40, 0.18);
  overflow-x: hidden;
  padding-bottom: 84px;
}

@media (max-width: 480px) {

  html,
  body {
    background: var(--rumo-bg);
  }

  .phone-shell {
    max-width: 100%;
    box-shadow: none;
  }
}

/* Top Header Bar */
.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px 20px;
  flex-shrink: 0;
  background: transparent;
}

.app-topbar.sticky {
  position: sticky;
  top: 0;
  background: var(--rumo-bg);
  z-index: 40;
}

.topbar-title {
  font-family: var(--rumo-font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--rumo-dark);
  text-align: center;
  flex: 1;
}

.topbar-action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--rumo-card-bg);
  border: 1px solid var(--rumo-border);
  color: var(--rumo-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.topbar-action-btn:hover {
  background: var(--rumo-surface);
  color: var(--rumo-primary);
}

.topbar-action-btn.transparent {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: none;
}

/* Logo with Pin */
.rumo-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.rumo-brand .brand-text {
  font-family: var(--rumo-font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--rumo-dark);
  letter-spacing: 0.04em;
}

/* Location Selector */
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--rumo-text-soft);
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  outline: none;
}

.location-badge i {
  color: var(--rumo-primary);
  font-size: 11px;
}

/* Hero Section */
.hero-heading {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.28;
  color: var(--rumo-dark);
  letter-spacing: -0.02em;
}

.hero-heading .highlight {
  color: var(--rumo-primary);
  font-weight: 700;
}

/* Search Bar */
.search-container {
  position: relative;
  width: 100%;
}

.search-input-rumo {
  width: 100%;
  height: 48px;
  padding: 0 16px 0 46px;
  border-radius: var(--rumo-radius-lg);
  border: 1px solid var(--rumo-border);
  background: var(--rumo-card-bg);
  font-family: var(--rumo-font-body);
  font-size: 14px;
  color: var(--rumo-dark);
  outline: none;
  box-shadow: var(--rumo-shadow-card);
  transition: all 0.2s ease;
}

.search-input-rumo:focus {
  border-color: var(--rumo-primary);
  box-shadow: 0 0 0 3px rgba(13, 111, 115, 0.15);
}

.search-icon-inside {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--rumo-muted);
  font-size: 16px;
  pointer-events: none;
}

/* Filter Chips (Horizontal scroll) */
.chips-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 16px 8px 16px;
  scroll-padding-left: 16px;
  scroll-padding-right: 16px;
  scroll-padding: 0 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.chips-scroll::-webkit-scrollbar {
  display: none;
}

.rumo-chip {
  padding: 8px 18px;
  border-radius: 20px;
  background: var(--rumo-card-bg);
  border: 1px solid var(--rumo-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--rumo-text-soft);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.rumo-chip:hover {
  border-color: var(--rumo-teal-light);
  color: var(--rumo-primary);
}

.rumo-chip.active {
  background: var(--rumo-primary);
  border-color: var(--rumo-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(13, 111, 115, 0.25);
}

/* Horizontal Cards (Destaques para você) */
.destaques-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 16px 14px 16px;
  scroll-padding-left: 16px;
  scroll-padding-right: 16px;
  scroll-padding: 0 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.destaques-scroll::-webkit-scrollbar {
  display: none;
}

.destaque-card {
  flex: 0 0 210px;
  background: var(--rumo-card-bg);
  border-radius: var(--rumo-radius-lg);
  border: 1px solid var(--rumo-border);
  overflow: hidden;
  box-shadow: var(--rumo-shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}

.destaque-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--rumo-shadow);
}

.destaque-card .card-thumb {
  height: 120px;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.destaque-card .card-body-content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.destaque-card .card-title {
  font-family: var(--rumo-font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--rumo-dark);
  margin-bottom: 4px;
  line-height: 1.25;
}

.destaque-card .card-sub {
  font-size: 12px;
  color: var(--rumo-muted);
  margin-bottom: 8px;
}

.destaque-card .card-price-row {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.destaque-card .price-label {
  font-size: 11px;
  color: var(--rumo-muted);
}

.destaque-card .price-value {
  font-family: var(--rumo-font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--rumo-dark);
}

.rating-pill {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--rumo-dark);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.rating-pill i {
  color: var(--rumo-star);
  font-size: 11px;
}

/* Tour List Item Row */
.tour-row-card {
  background: var(--rumo-card-bg);
  border: 1px solid var(--rumo-border);
  border-radius: var(--rumo-radius-lg);
  overflow: hidden;
  display: flex;
  box-shadow: var(--rumo-shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.tour-row-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--rumo-shadow);
}

.tour-row-card .row-thumb {
  width: 110px;
  min-height: 100px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  position: relative;
}

.tour-row-card .row-details {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

/* Feature Badges (Passeio Screen) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.feature-box {
  background: var(--rumo-surface);
  border: 1px solid var(--rumo-border);
  border-radius: var(--rumo-radius-md);
  padding: 10px 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.feature-box i {
  font-size: 18px;
  color: var(--rumo-primary);
  margin-bottom: 4px;
}

.feature-box .feat-val {
  font-size: 11px;
  font-weight: 700;
  color: var(--rumo-dark);
  line-height: 1.1;
}

.feature-box .feat-sub {
  font-size: 9px;
  color: var(--rumo-muted);
  margin-top: 2px;
}

/* Checklist Items */
.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--rumo-text-soft);
  margin-bottom: 8px;
}

.checklist-item i {
  color: var(--rumo-teal-light);
  font-size: 15px;
}

/* Interactive Calendar */
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cal-month-title {
  font-family: var(--rumo-font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--rumo-dark);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--rumo-muted);
  margin-bottom: 8px;
}

.cal-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
}

.cal-day-cell {
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--rumo-text);
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}

.cal-day-cell:hover:not(.disabled) {
  background: var(--rumo-teal-soft);
  color: var(--rumo-primary);
}

.cal-day-cell.selected {
  background: var(--rumo-primary) !important;
  color: #FFFFFF !important;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(13, 111, 115, 0.35);
}

.cal-day-cell.disabled {
  color: var(--rumo-muted-light);
  cursor: not-allowed;
}

/* Time Selector Pills */
.times-grid {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.times-grid::-webkit-scrollbar {
  display: none;
}

.time-pill {
  padding: 9px 16px;
  border-radius: 12px;
  background: var(--rumo-card-bg);
  border: 1.5px solid var(--rumo-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--rumo-text-soft);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.time-pill:hover {
  border-color: var(--rumo-teal-light);
  color: var(--rumo-primary);
}

.time-pill.active {
  background: var(--rumo-primary);
  border-color: var(--rumo-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(13, 111, 115, 0.25);
}

/* Quantity Counter (Adults, Children, Babies) */
.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--rumo-border-light);
}

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

.counter-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--rumo-border);
  background: var(--rumo-card-bg);
  color: var(--rumo-text-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.15s;
}

.counter-btn:hover:not(:disabled) {
  border-color: var(--rumo-primary);
  color: var(--rumo-primary);
}

.counter-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.counter-value {
  font-family: var(--rumo-font-display);
  font-size: 15px;
  font-weight: 700;
  width: 20px;
  text-align: center;
  color: var(--rumo-dark);
}

/* Sticky/Fixed Bottom Action Bar */
.bottom-action-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 440px;
  background: var(--rumo-card-bg);
  border-top: 1px solid var(--rumo-border);
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom)) 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.08);
}

/* Standard RUMO Button */
.btn-rumo-main {
  background: var(--rumo-primary);
  color: #FFFFFF;
  font-family: var(--rumo-font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--rumo-radius-md);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(13, 111, 115, 0.28);
  text-decoration: none;
}

.btn-rumo-main:hover {
  background: var(--rumo-primary-dark);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(13, 111, 115, 0.35);
}

.btn-rumo-outline {
  background: transparent;
  color: var(--rumo-primary);
  border: 1.5px solid var(--rumo-border);
  font-family: var(--rumo-font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--rumo-radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-rumo-outline:hover {
  background: var(--rumo-teal-soft);
  border-color: var(--rumo-primary);
  color: var(--rumo-primary);
}

/* Card Action Buttons (Equal Height Grid / Flex) */
.btn-card-action {
  height: 40px;
  padding: 0 10px;
  border-radius: 12px;
  font-family: var(--rumo-font-body);
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-card-action.secondary {
  background: var(--rumo-surface);
  border-color: var(--rumo-border);
  color: var(--rumo-dark);
}

.btn-card-action.secondary:hover {
  background: #E2E8F0;
  border-color: var(--rumo-muted);
  color: var(--rumo-dark);
}

.btn-card-action.primary {
  background: var(--rumo-primary);
  border-color: var(--rumo-primary);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(13, 111, 115, 0.22);
}

.btn-card-action.primary:hover {
  background: var(--rumo-primary-dark);
  border-color: var(--rumo-primary-dark);
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* Bottom Navigation Bar - Fixed to base of screen */
.app-bottomnav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 440px;
  background: var(--rumo-card-bg);
  border-top: 1px solid var(--rumo-border);
  padding: 8px 12px 28px 12px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 1000;
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 480px) {

  .app-bottomnav,
  .bottom-action-bar {
    left: 0;
    transform: none;
    max-width: 100%;
  }
}

.bottom-nav-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 2px;
  color: var(--rumo-muted);
  font-size: 10px;
  font-weight: 500;
  gap: 3px;
  text-decoration: none;
  min-width: 0;
  white-space: nowrap;
  transition: all 0.15s;
}

.bottom-nav-link i {
  font-size: 18px;
  line-height: 1;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-nav-link:hover {
  color: var(--rumo-primary);
}

.bottom-nav-link.active {
  color: var(--rumo-primary);
  font-weight: 700;
}

/* Payment Tabs */
.pay-tab-switch {
  display: flex;
  background: transparent;
  border-bottom: 2px solid var(--rumo-border-light);
}

.pay-tab-btn {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-family: var(--rumo-font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--rumo-muted);
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}

.pay-tab-btn.active {
  color: var(--rumo-primary);
}

.pay-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 15%;
  right: 15%;
  height: 2.5px;
  background: var(--rumo-primary);
  border-radius: 2px;
}

/* Payment Method Card */
.pay-option-card {
  background: var(--rumo-card-bg);
  border: 1.5px solid var(--rumo-border);
  border-radius: var(--rumo-radius-lg);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s;
}

.pay-option-card:hover {
  border-color: var(--rumo-teal-light);
  box-shadow: var(--rumo-shadow-card);
}

.pay-option-card.selected {
  border-color: var(--rumo-primary);
  background: var(--rumo-teal-soft);
}

.pay-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--rumo-surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rumo-primary);
  font-size: 20px;
}

/* Stepper Indicator (Boat Registration 1 2 3 4) */
.stepper-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 0;
}

.step-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--rumo-border);
  background: var(--rumo-card-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rumo-font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--rumo-muted);
}

.step-dot.active {
  background: var(--rumo-primary);
  border-color: var(--rumo-primary);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(13, 111, 115, 0.3);
}

.step-dot.completed {
  background: var(--rumo-teal-soft);
  border-color: var(--rumo-primary);
  color: var(--rumo-primary);
}

.step-line {
  width: 24px;
  height: 2px;
  background: var(--rumo-border);
}

.step-line.active {
  background: var(--rumo-primary);
}

/* Map screen & timeline */
.map-visual-container {
  height: 300px;
  width: 100%;
  position: relative;
  background: #CBE6ED;
  overflow: hidden;
}

.map-sheet-card {
  background: var(--rumo-card-bg);
  border-radius: 28px 28px 0 0;
  margin-top: -24px;
  position: relative;
  z-index: 10;
  padding: 24px 20px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
  flex: 1;
}

.timeline-v {
  position: relative;
  padding-left: 24px;
}

.timeline-v::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 12px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--rumo-teal-light) 0, var(--rumo-teal-light) 4px, transparent 4px, transparent 8px);
}

.timeline-v-item {
  position: relative;
  margin-bottom: 20px;
}

.timeline-v-item:last-child {
  margin-bottom: 0;
}

.timeline-v-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--rumo-primary);
  border: 3px solid #FFFFFF;
  box-shadow: 0 0 0 2px var(--rumo-teal-light);
}

/* Tábua de Marés Table */
.tide-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--rumo-card-bg);
  border-radius: var(--rumo-radius-md);
  overflow: hidden;
  font-size: 13px;
}

.tide-table th {
  padding: 10px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--rumo-muted);
  text-align: center;
  border-bottom: 1px solid var(--rumo-border);
}

.tide-table td {
  padding: 12px 8px;
  text-align: center;
  border-bottom: 1px solid var(--rumo-border-light);
  color: var(--rumo-text-soft);
}

.tide-table tr:last-child td {
  border-bottom: none;
}

.tide-time {
  font-weight: 600;
  color: var(--rumo-dark);
  display: block;
}

.tide-height {
  font-size: 11px;
  color: var(--rumo-primary);
}

/* Alert Callout */
.rumo-callout {
  background: var(--rumo-teal-soft);
  border: 1px solid var(--rumo-teal-soft-2);
  border-radius: var(--rumo-radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.rumo-callout i {
  color: var(--rumo-primary);
  font-size: 18px;
  flex-shrink: 0;
}

.rumo-callout p {
  margin: 0;
  font-size: 12px;
  color: var(--rumo-primary-dark);
  font-weight: 500;
  line-height: 1.35;
}

/* Dashboard Metrics & Ranking */
.stat-box-modern {
  background: var(--rumo-card-bg);
  border: 1px solid var(--rumo-border);
  border-radius: var(--rumo-radius-lg);
  padding: 16px;
  box-shadow: var(--rumo-shadow-card);
}

.stat-box-modern .stat-num {
  font-family: var(--rumo-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--rumo-dark);
}

.stat-box-modern .stat-label {
  font-size: 12px;
  color: var(--rumo-muted);
}

.rank-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--rumo-border-light);
}

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

.rank-pos {
  width: 22px;
  font-family: var(--rumo-font-display);
  font-weight: 700;
  color: var(--rumo-muted);
  font-size: 13px;
}