/* Rentalw3b demo shell: token layer + shell components.
   Light-default (2026-07 restyle); [data-theme="dark"] overrides.
   Components ride fw-uikit (fwk-). */

:root {
  --rnt-bg: #f7f8fa;
  --rnt-surface: #ffffff;
  --rnt-surface-2: #eef1f5;
  --rnt-border: #e2e6ec;
  --rnt-text: #1c2129;
  --rnt-muted: #5b6472;
  --rnt-accent: #f0762b;
  --rnt-accent-contrast: #ffffff;
  --rnt-topbar-bg: #1c2129;
  --rnt-navy: #1C313E;
  --rnt-navy-2: #16272F;
  --rnt-radius: 12px;
  --rnt-maxw: 1200px;
  --rnt-shadow: 0 1px 2px rgba(16, 24, 40, .05), 0 4px 14px rgba(16, 24, 40, .07);
  --rnt-shadow-lift: 0 2px 4px rgba(16, 24, 40, .06), 0 12px 28px rgba(16, 24, 40, .13);
}

[data-theme="dark"] {
  --rnt-bg: #14171c;
  --rnt-surface: #1d2129;
  --rnt-surface-2: #252a34;
  --rnt-border: #333a47;
  --rnt-text: #e8eaee;
  --rnt-muted: #9aa3b2;
  --rnt-topbar-bg: #0e1013;
  --rnt-shadow: none;
  --rnt-shadow-lift: none;
}

html { background: var(--rnt-bg); }
body {
  background: var(--rnt-bg);
  color: var(--rnt-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
a { color: var(--rnt-accent); }
a:hover { color: var(--rnt-accent); opacity: .85; text-decoration: none; }
h1, h2, h3, h4, .fwk-h1, .fwk-h2, .fwk-h3, .fwk-h4 { color: var(--rnt-text); }

.rnt-container { max-width: var(--rnt-maxw); margin: 0 auto; padding: 0 20px; }

/* Demo top bar (promotion surface; price-free).
   Corporate Fastw3b identity, constant in both themes: dark-blue gradient
   (--fw-c-dark #2E4857 -> --fw-c-dark-2 #1C313E) + yellow CTA (--fw-c-yellow #FFBF00),
   5px corporate button radius. Values from fastw3bci design-tokens.css. */
.rnt-topbar {
  --fw-dark: #2E4857;
  --fw-dark-2: #1C313E;
  --fw-yellow: #FFBF00;
  background: linear-gradient(to right, var(--fw-dark), var(--fw-dark-2));
  color: #cfd4dc;
  font-size: 13px;
  position: sticky; top: 0; z-index: 100;
}
.rnt-topbar .rnt-container { display: flex; align-items: center; gap: 14px; min-height: 40px; }
.rnt-topbar .rnt-topbar-label { opacity: .75; }
.rnt-topbar .rnt-topbar-mid { margin: 0 auto; display: flex; align-items: center; gap: 10px; }
.rnt-topbar a.rnt-topbar-admin { color: #fff; font-weight: 700; text-decoration: underline; }
.rnt-topbar .rnt-topbar-creds { opacity: .75; }
.rnt-topbar .rnt-topbar-timer { white-space: nowrap; opacity: .55; }
.rnt-topbar .rnt-topbar-timer b { font-variant-numeric: tabular-nums; }
.rnt-topbar a.rnt-topbar-cta {
  background: transparent; color: var(--fw-yellow); border: 1px solid rgba(255, 191, 0, .55);
  padding: 4px 13px; border-radius: 5px; text-decoration: none; font-weight: 600;
  white-space: nowrap;
}
.rnt-topbar a.rnt-topbar-cta:hover { background: var(--fw-yellow); color: var(--fw-dark-2); }
@media (max-width: 960px) { .rnt-topbar .rnt-topbar-mid, .rnt-topbar .rnt-topbar-timer { display: none; } }
@media (max-width: 700px) { .rnt-topbar .rnt-topbar-label { display: none; } }

/* Header / nav */
.rnt-header { background: var(--rnt-surface); border-bottom: 1px solid var(--rnt-border); }
.rnt-header .rnt-container { display: flex; align-items: center; gap: 26px; min-height: 64px; }
.rnt-logo { display: flex; flex-direction: column; text-decoration: none; line-height: 1.15; }
.rnt-logo strong { color: var(--rnt-text); font-size: 19px; letter-spacing: .2px; }
.rnt-logo span { color: var(--rnt-muted); font-size: 11px; }
.rnt-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.rnt-nav > a, .rnt-nav .rnt-drop > a {
  color: var(--rnt-text); text-decoration: none; font-size: 14.5px; font-weight: 500;
  padding: 8px 12px; border-radius: 8px; display: inline-block;
}
.rnt-nav > a:hover, .rnt-nav .rnt-drop > a:hover { background: var(--rnt-surface-2); }
.rnt-nav > a.active { color: var(--rnt-accent); }
.rnt-nav a.rnt-nav-cta {
  background: var(--rnt-accent); color: var(--rnt-accent-contrast); font-weight: 600;
}
/* Small screens: nav collapses into the fwk offcanvas behind the burger. */
.rnt-nav-burger {
  display: none; background: none; border: 1px solid var(--rnt-border); border-radius: 8px;
  color: var(--rnt-text); font-size: 17px; width: 38px; height: 34px; cursor: pointer; margin-left: 6px;
}
@media (max-width: 700px) {
  .rnt-nav { display: none; }
  .rnt-nav-burger { display: inline-block; }
  .rnt-lang { margin-left: auto; }
}
.rnt-mobile-bar { background: var(--rnt-surface); padding: 24px 20px; }
.rnt-mobile-close { color: var(--rnt-muted); background: none; border: 0; font-size: 22px; position: absolute; top: 12px; right: 14px; cursor: pointer; }
.rnt-mobile-links { display: flex; flex-direction: column; gap: 2px; margin-top: 18px; }
.rnt-mobile-links a { color: var(--rnt-text); text-decoration: none; padding: 9px 10px; border-radius: 8px; font-size: 15px; }
.rnt-mobile-links a:hover { background: var(--rnt-surface-2); }
.rnt-mobile-group {
  color: var(--rnt-muted); font-size: 11px; text-transform: uppercase; letter-spacing: .5px;
  margin: 14px 0 2px; padding: 0 10px;
}
.rnt-mobile-cta { margin-top: 16px; text-align: center; color: var(--rnt-accent-contrast) !important; }
.rnt-drop { position: relative; }
.rnt-dropdown {
  background: var(--rnt-surface); border: 1px solid var(--rnt-border);
  border-radius: var(--rnt-radius); padding: 8px; min-width: 230px;
}
.rnt-dropdown a { display: block; padding: 8px 10px; color: var(--rnt-text); text-decoration: none; border-radius: 6px; font-size: 14px; }
.rnt-dropdown a:hover { background: var(--rnt-surface-2); color: var(--rnt-text); }

/* Language switcher (dropdown) */
.rnt-lang { margin-left: 8px; }
.rnt-lang .rnt-lang-current {
  background: none; border: 1px solid var(--rnt-border); border-radius: 999px;
  color: var(--rnt-text); font-size: 12px; font-weight: 700; padding: 6px 13px;
  cursor: pointer; text-transform: uppercase; letter-spacing: .3px;
}
.rnt-lang .rnt-lang-current:hover { border-color: var(--rnt-accent); }
.rnt-lang-menu { min-width: 80px; }
.rnt-lang-menu a { font-weight: 700; font-size: 12.5px; }

/* Buttons */
.rnt-btn {
  display: inline-block; padding: 12px 26px; border-radius: 999px; font-weight: 700;
  text-decoration: none; font-size: 15px;
}
.rnt-btn-primary { background: var(--rnt-accent); color: var(--rnt-accent-contrast); box-shadow: 0 4px 14px rgba(240, 118, 43, .35); }
.rnt-btn-primary:hover { color: var(--rnt-accent-contrast); }
.rnt-btn-ghost { border: 1px solid var(--rnt-border); color: var(--rnt-text); }
.rnt-btn-ghost-onphoto { border: 1.5px solid rgba(255, 255, 255, .85); color: #fff; }
.rnt-btn-ghost-onphoto:hover { color: #fff; border-color: #fff; opacity: 1; background: rgba(255, 255, 255, .12); }

/* Kicker (small uppercase accent lead-in above titles) */
.rnt-kicker {
  display: block; color: var(--rnt-accent); font-size: 12.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.6px; margin: 0 0 10px;
}

/* Photo hero (home) */
.rnt-hero-photo { position: relative; background-size: cover; background-position: center 62%; }
.rnt-hero-photo::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15, 22, 28, .82) 0%, rgba(15, 22, 28, .55) 46%, rgba(15, 22, 28, .18) 100%);
}
.rnt-hero-photo .rnt-container { position: relative; padding-top: 96px; padding-bottom: 130px; }
.rnt-hero-photo .rnt-kicker { color: #ffb37e; }
.rnt-hero-photo h1 {
  color: #fff; font-size: 52px; line-height: 1.08; font-weight: 800; margin: 0 0 16px;
  max-width: 640px; text-wrap: balance;
}
.rnt-hero-photo h1 em { font-style: normal; color: var(--rnt-accent); }
.rnt-hero-photo .rnt-hero-sub { color: rgba(255, 255, 255, .88); font-size: 18px; max-width: 560px; margin: 0 0 30px; }
.rnt-hero-photo .rnt-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 700px) {
  .rnt-hero-photo .rnt-container { padding-top: 64px; padding-bottom: 120px; }
  .rnt-hero-photo h1 { font-size: 34px; }
}

/* Quick-jump bar overlapping the hero bottom (navigation, not search) */
.rnt-quickbar {
  background: var(--rnt-surface); border: 1px solid var(--rnt-border); border-radius: 14px;
  box-shadow: var(--rnt-shadow-lift); padding: 16px 20px;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  margin-top: -62px; position: relative; z-index: 2;
}
.rnt-quickbar-label {
  color: var(--rnt-muted); font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; margin-right: 10px; flex-basis: auto;
}
.rnt-quickbar a.rnt-quickbar-link {
  display: flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 10px;
  color: var(--rnt-text); text-decoration: none; font-size: 14.5px; font-weight: 600;
}
.rnt-quickbar a.rnt-quickbar-link:hover { background: var(--rnt-surface-2); opacity: 1; }
.rnt-quickbar a.rnt-quickbar-link span[fwk-icon] { color: var(--rnt-accent); }
.rnt-quickbar .rnt-btn { margin-left: auto; }
@media (max-width: 900px) {
  .rnt-quickbar { padding: 14px 16px; }
  .rnt-quickbar .rnt-btn { margin-left: 0; flex-basis: 100%; text-align: center; }
}

/* Department photo tiles (home) */
.rnt-dept-tile {
  background: var(--rnt-surface); border: 1px solid var(--rnt-border);
  border-radius: var(--rnt-radius); overflow: hidden; display: flex; flex-direction: column;
  text-decoration: none; box-shadow: var(--rnt-shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.rnt-dept-tile:hover { transform: translateY(-3px); box-shadow: var(--rnt-shadow-lift); opacity: 1; }
.rnt-dept-tile .rnt-dept-photo { aspect-ratio: 16 / 10; overflow: hidden; }
.rnt-dept-tile .rnt-dept-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rnt-dept-tile .rnt-dept-body { padding: 16px 18px 18px; }
.rnt-dept-tile h3 { margin: 2px 0 2px; font-size: 18px; color: var(--rnt-text); }
.rnt-dept-tile p { color: var(--rnt-muted); font-size: 13.5px; margin: 8px 0 0; line-height: 1.5; }

/* Feature icon tiles (home) */
.rnt-feat-tile {
  background: var(--rnt-surface); border: 1px solid var(--rnt-border);
  border-radius: var(--rnt-radius); padding: 18px 16px; text-align: center;
  text-decoration: none; box-shadow: var(--rnt-shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.rnt-feat-tile:hover { transform: translateY(-3px); box-shadow: var(--rnt-shadow-lift); opacity: 1; }
.rnt-feat-tile .rnt-feat-ico {
  width: 46px; height: 46px; margin: 0 auto 10px; border-radius: 12px;
  background: rgba(240, 118, 43, .12); color: var(--rnt-accent);
  display: flex; align-items: center; justify-content: center;
}
.rnt-feat-tile h3 { margin: 0; font-size: 14px; color: var(--rnt-text); line-height: 1.35; }
.rnt-grid-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 960px) { .rnt-grid-6 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .rnt-grid-6 { grid-template-columns: repeat(2, 1fr); } }

/* Numbered steps (home how-it-works) */
.rnt-step { padding: 6px 4px; }
.rnt-step .rnt-step-num {
  font-size: 40px; font-weight: 800; line-height: 1; color: var(--rnt-accent);
  opacity: .85; margin-bottom: 12px; font-variant-numeric: tabular-nums;
}
.rnt-step h3 { margin: 0 0 6px; font-size: 18px; }
.rnt-step p { color: var(--rnt-muted); font-size: 14.5px; margin: 0; line-height: 1.55; }

/* Photo band with floating card (home customization) */
.rnt-band { position: relative; background-size: cover; background-position: center; }
.rnt-band::before { content: ""; position: absolute; inset: 0; background: rgba(15, 22, 28, .55); }
.rnt-band .rnt-container { position: relative; padding-top: 64px; padding-bottom: 64px; }
.rnt-band-card {
  background: var(--rnt-surface); border-radius: 14px; box-shadow: var(--rnt-shadow-lift);
  max-width: 500px; padding: 28px 30px;
}
.rnt-band-card h2 { font-size: 24px; margin: 0 0 10px; }
.rnt-band-card p { color: var(--rnt-muted); font-size: 15px; line-height: 1.6; margin: 0 0 20px; }

/* Cards / grids */
.rnt-section { padding: 46px 0; }
.rnt-section-title { font-size: 28px; font-weight: 800; margin: 0 0 6px; }
.rnt-section-sub { color: var(--rnt-muted); margin: 0 0 26px; }
.rnt-grid { display: grid; gap: 18px; }
.rnt-grid-4 { grid-template-columns: repeat(4, 1fr); }
.rnt-grid-3 { grid-template-columns: repeat(3, 1fr); }
.rnt-grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 960px) { .rnt-grid-4, .rnt-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .rnt-grid-4, .rnt-grid-3, .rnt-grid-2 { grid-template-columns: 1fr; } }

.rnt-card {
  background: var(--rnt-surface); border: 1px solid var(--rnt-border);
  border-radius: var(--rnt-radius); padding: 22px; display: block; text-decoration: none;
  box-shadow: var(--rnt-shadow);
}
a.rnt-card:hover { border-color: var(--rnt-accent); }
.rnt-card h3 { margin: 0 0 6px; font-size: 18px; }
.rnt-card .rnt-tag { color: var(--rnt-accent); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; }
.rnt-card p { color: var(--rnt-muted); font-size: 14px; margin: 8px 0 0; }
.rnt-card-icon { font-size: 26px; margin-bottom: 10px; color: var(--rnt-accent); }

/* Photo page banner (department + feature pages) */
.rnt-pagebanner { position: relative; background-size: cover; background-position: center 55%; }
.rnt-pagebanner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15, 22, 28, .80) 0%, rgba(15, 22, 28, .48) 55%, rgba(15, 22, 28, .22) 100%);
}
.rnt-pagebanner .rnt-container { position: relative; padding-top: 54px; padding-bottom: 58px; }
.rnt-pagebanner .rnt-kicker { color: #ffb37e; }
.rnt-pagebanner h1 { color: #fff; font-size: 38px; font-weight: 800; margin: 0 0 10px; }
.rnt-pagebanner p { color: rgba(255, 255, 255, .88); font-size: 16.5px; max-width: 640px; margin: 0; }
.rnt-pagebanner .rnt-crumbs { margin: 0 0 14px; font-size: 13px; color: rgba(255, 255, 255, .75); }
.rnt-pagebanner .rnt-crumbs a { color: rgba(255, 255, 255, .9); text-decoration: none; }
.rnt-pagebanner .rnt-crumbs a:hover { color: #fff; opacity: 1; text-decoration: underline; }
@media (max-width: 700px) { .rnt-pagebanner h1 { font-size: 28px; } }

/* Catalog grids (department pages) */
.rnt-cat-block { margin: 0 0 38px; }
.rnt-cat-head { display: flex; gap: 14px; align-items: center; margin: 0 0 16px; }
.rnt-cat-thumb {
  width: 64px; height: 48px; object-fit: cover; border-radius: 8px;
  border: 1px solid var(--rnt-border); flex: 0 0 64px;
}
.rnt-cat-title { font-size: 20px; font-weight: 700; margin: 0; }
.rnt-cat-head .rnt-cat-title { margin: 0 0 2px; }
.rnt-cat-intro { color: var(--rnt-muted); font-size: 13.5px; margin: 0; }
.rnt-item-card { padding: 0 0 16px; overflow: hidden; display: flex; flex-direction: column; gap: 4px; }
.rnt-item-card .rnt-item-photo { display: block; aspect-ratio: 4 / 3; overflow: hidden; margin-bottom: 10px; }
.rnt-item-card .rnt-item-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rnt-item-card h3 { font-size: 15.5px; margin: 0; padding: 0 16px; }
.rnt-item-card .rnt-price, .rnt-item-card .rnt-avail { margin: 0 16px; }
.rnt-price { color: var(--rnt-text); font-weight: 700; font-size: 14.5px; }
.rnt-price-big { font-size: 20px; margin: 4px 0 16px; }
.rnt-avail { font-size: 12.5px; font-weight: 600; }
.rnt-avail-ok { color: #38b26c; }
.rnt-avail-out { color: #e05252; }
.rnt-avail-sale { color: var(--rnt-muted); text-transform: uppercase; letter-spacing: .4px; font-size: 11.5px; }
.rnt-count-badge { color: var(--rnt-muted); font-size: 12.5px; font-weight: 600; }

/* Item detail */
.rnt-breadcrumb { margin: 0 0 18px; font-size: 14px; }
.rnt-muted { color: var(--rnt-muted); }
.rnt-item-layout { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 34px; align-items: start; }
@media (max-width: 860px) { .rnt-item-layout { grid-template-columns: 1fr; } }
.rnt-item-hero { border-radius: var(--rnt-radius); overflow: hidden; border: 1px solid var(--rnt-border); }
.rnt-item-hero img { width: 100%; max-height: 400px; object-fit: cover; display: block; }
.rnt-item-thumbs { display: flex; gap: 10px; margin-top: 10px; }
.rnt-item-thumbs img { width: 90px; height: 68px; object-fit: cover; border-radius: 6px; border: 1px solid var(--rnt-border); }
.rnt-attribution { color: var(--rnt-muted); font-size: 12px; margin: 8px 0 0; }
.rnt-attribution a { color: var(--rnt-muted); text-decoration: underline; }
.rnt-item-name { font-size: 28px; font-weight: 800; margin: 0 0 6px; }
.rnt-item-desc-title { font-size: 18px; margin: 26px 0 8px; }
.rnt-item-desc { color: var(--rnt-text); line-height: 1.65; }
.rnt-tier-card h4, .rnt-item-info h4 { margin: 0 0 8px; }
.rnt-tier-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.rnt-tier-table td { padding: 7px 0; border-bottom: 1px solid var(--rnt-border); color: var(--rnt-text); }
.rnt-tier-table tr:last-child td { border-bottom: 0; }
.rnt-tier-price { text-align: right; }
.rnt-tier-price s { color: var(--rnt-muted); margin-right: 6px; }
.rnt-item-info { margin-top: 18px; }
.rnt-item-info .rnt-card p { color: var(--rnt-text); }
.rnt-booking-pending { margin: 18px 0 0; padding: 26px 18px; }

/* Booking widget (item page) */
.rnt-booking { margin-top: 18px; position: relative; }
.rnt-booking h4 { margin: 0 0 12px; }
.rnt-cal-pop { margin-top: 16px; }
.rnt-cal { position: relative; }
.rnt-cal-nav { position: absolute; top: 0; right: 0; display: flex; gap: 6px; }
.rnt-cal-btn {
  background: var(--rnt-surface-2); border: 1px solid var(--rnt-border); border-radius: 6px;
  color: var(--rnt-text); width: 28px; height: 28px; cursor: pointer; font-size: 14px; line-height: 1;
}
.rnt-cal-btn:disabled { opacity: .35; cursor: default; }
.rnt-cal-months { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 480px) { .rnt-cal-months { grid-template-columns: 1fr; } }
.rnt-cal-title { font-size: 13.5px; font-weight: 700; margin: 0 0 8px; text-transform: capitalize; }
.rnt-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.rnt-cal-head { color: var(--rnt-muted); font-size: 10.5px; text-align: center; text-transform: uppercase; padding: 2px 0; }
.rnt-cal-day {
  display: block; width: 100%; text-align: center; font-size: 12.5px; padding: 5px 0;
  border: 0; border-radius: 6px; background: none; color: var(--rnt-muted);
}
button.rnt-cal-day { cursor: pointer; color: var(--rnt-text); background: var(--rnt-surface-2); }
button.rnt-cal-day:hover { outline: 1px solid var(--rnt-accent); }
.rnt-cal-day--past, .rnt-cal-day--delay { opacity: .4; }
.rnt-cal-day--partly { background: rgba(240, 118, 43, .22) !important; }
.rnt-cal-day--full { background: rgba(224, 82, 82, .25); color: var(--rnt-muted); text-decoration: line-through; }
.rnt-cal-day--start, .rnt-cal-day--end { background: var(--rnt-accent) !important; color: var(--rnt-accent-contrast) !important; font-weight: 700; }
.rnt-cal-day--in { outline: 1px solid var(--rnt-accent); }
.rnt-cal-legend { display: flex; gap: 16px; margin-top: 10px; color: var(--rnt-muted); font-size: 12px; flex-wrap: wrap; }
.rnt-leg { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 4px; }
.rnt-leg-free { background: var(--rnt-surface-2); border: 1px solid var(--rnt-border); }
.rnt-leg-partly { background: rgba(240, 118, 43, .5); }
.rnt-leg-full { background: rgba(224, 82, 82, .5); }
.rnt-booking-fields { display: flex; gap: 14px; align-items: flex-end; flex-wrap: wrap; margin-top: 16px; }
.rnt-booking-fields .rnt-field { margin-bottom: 0; flex: 1 1 200px; }
.rnt-booking-fields label { display: block; font-size: 12.5px; color: var(--rnt-muted); margin-bottom: 4px; }
.rnt-field-qty { max-width: 90px; flex: 0 0 90px !important; }
.rnt-dates-out { display: block; font-size: 14.5px; font-weight: 600; padding: 11px 0; }
.rnt-check { display: flex; gap: 8px; align-items: center; font-size: 13.5px; color: var(--rnt-text); flex-basis: 100%; }
.rnt-quote { border-top: 1px solid var(--rnt-border); margin-top: 16px; padding-top: 12px; }
.rnt-quote-line { display: flex; justify-content: space-between; font-size: 14px; padding: 3px 0; color: var(--rnt-text); }
.rnt-quote-line--deposit { color: var(--rnt-muted); }
.rnt-quote-total { font-weight: 800; font-size: 16px; border-top: 1px solid var(--rnt-border); margin-top: 6px; padding-top: 8px; }
.rnt-quote-avail { font-size: 13px; font-weight: 600; margin: 8px 0 0; }
.rnt-quote-avail--ok { color: #38b26c; }
.rnt-quote-avail--no { color: #e05252; }

/* Cart */
.rnt-cart-badge {
  background: var(--rnt-accent); color: var(--rnt-accent-contrast);
  border-radius: 999px; font-size: 11px; font-weight: 700; padding: 1px 7px; vertical-align: 2px;
}
.rnt-cart-lines { display: flex; flex-direction: column; gap: 14px; }
.rnt-cart-line { display: flex; gap: 18px; align-items: center; padding: 16px 18px; }
.rnt-cart-thumb { flex: 0 0 86px; }
.rnt-cart-thumb img { width: 86px; height: 64px; object-fit: cover; border-radius: 6px; display: block; }
.rnt-cart-main { flex: 1 1 auto; min-width: 0; }
.rnt-cart-name { color: var(--rnt-text); font-weight: 700; text-decoration: none; font-size: 15.5px; }
.rnt-cart-dates { margin: 3px 0 0; font-size: 13px; }
.rnt-cart-sub { margin: 5px 0 0; font-size: 12.5px; }
.rnt-cart-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.rnt-cart-qty { display: flex; gap: 6px; align-items: center; }
.rnt-cart-qty .rnt-input { width: 64px; padding: 7px 9px; }
.rnt-btn-mini {
  background: var(--rnt-surface-2); border: 1px solid var(--rnt-border); border-radius: 6px;
  color: var(--rnt-text); padding: 7px 12px; cursor: pointer; font-size: 12.5px; font-weight: 600;
}
.rnt-btn-mini:hover { border-color: var(--rnt-accent); }
.rnt-btn-mini-danger:hover { border-color: #e05252; color: #e05252; }
.rnt-cart-linetotal { font-weight: 800; font-size: 16px; min-width: 74px; text-align: right; }
.rnt-cart-summary { margin-top: 22px; max-width: 420px; margin-left: auto; }
.rnt-cart-checkout-note { margin-top: 12px; }
.rnt-add-form { margin-top: 16px; }
.rnt-add-form .rnt-btn { width: 100%; text-align: center; border: 0; cursor: pointer; }
.rnt-add-form .rnt-btn:disabled { opacity: .45; cursor: default; }
.rnt-add-form-sale { display: flex; gap: 10px; }
.rnt-add-form-sale .rnt-btn { width: auto; flex: 1; }
.rnt-sale-qty { max-width: 84px; }
@media (max-width: 620px) { .rnt-cart-line { flex-wrap: wrap; } }

/* Checkout + confirmation */
.rnt-checkout-layout { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 26px; align-items: start; }
@media (max-width: 860px) { .rnt-checkout-layout { grid-template-columns: 1fr; } }
.rnt-checkout-form h4 { margin: 0 0 14px; }
.rnt-checkout-form h4 + .rnt-field { margin-top: 4px; }
.rnt-checkout-form label { display: block; font-size: 12.5px; color: var(--rnt-muted); margin-bottom: 4px; }
.rnt-field-err { color: #e05252; font-size: 12.5px; margin: 4px 0 0; }
.rnt-pay-sim { background: var(--rnt-surface-2); border: 1px dashed var(--rnt-border); border-radius: 8px; padding: 14px 16px; margin-bottom: 18px; }
.rnt-pay-badge {
  display: inline-block; background: var(--rnt-accent); color: var(--rnt-accent-contrast);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px;
  border-radius: 999px; padding: 3px 10px; margin-bottom: 6px;
}
.rnt-checkout-btn { display: block; width: 100%; text-align: center; border: 0; cursor: pointer; margin-top: 8px; }
.rnt-checkout-summary h4 { margin: 0 0 10px; }
.rnt-co-dates { display: block; font-size: 12px; }
.rnt-confirm { max-width: 720px; }
.rnt-confirm-head { text-align: center; margin-bottom: 20px; }
.rnt-confirm-check {
  width: 54px; height: 54px; margin: 0 auto 12px; border-radius: 999px;
  background: rgba(56, 178, 108, .15); border: 2px solid #38b26c; color: #38b26c;
  font-size: 26px; line-height: 50px; text-align: center;
}
.rnt-confirm-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.rnt-status-chip {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px;
  border-radius: 999px; padding: 3px 10px;
}
.rnt-status-pending { background: rgba(240, 118, 43, .15); border: 1px solid var(--rnt-accent); color: var(--rnt-accent); }
.rnt-status-confirmed { background: rgba(56, 178, 108, .15); border: 1px solid #38b26c; color: #38b26c; }
.rnt-status-out { background: rgba(80, 145, 224, .15); border: 1px solid #5091e0; color: #5091e0; }
.rnt-status-returned { background: var(--rnt-surface-2); border: 1px solid var(--rnt-border); color: var(--rnt-muted); }
.rnt-status-cancelled { background: rgba(224, 82, 82, .12); border: 1px solid #e05252; color: #e05252; }
.rnt-stat-sub { font-size: 12px; margin: 4px 0 0; }
.rnt-confirm-table { margin-bottom: 14px; }

/* Department page split lists */
.rnt-split-live h4 { color: var(--rnt-text); }
.rnt-list { list-style: none; padding: 0; margin: 10px 0 0; }
.rnt-list li { padding: 7px 0 7px 26px; position: relative; color: var(--rnt-text); font-size: 14.5px; }
.rnt-list li::before { position: absolute; left: 0; font-weight: 700; }
.rnt-list-live li::before { content: "\2713"; color: #38b26c; }
.rnt-list-custom li::before { content: "+"; color: var(--rnt-accent); }
.rnt-note { color: var(--rnt-muted); font-size: 13.5px; }

/* Placeholder block (honest-pending) */
.rnt-pending {
  border: 1px dashed var(--rnt-border); border-radius: var(--rnt-radius);
  color: var(--rnt-muted); text-align: center; padding: 42px 20px; font-size: 14.5px;
  background: var(--rnt-surface-2);
}

/* Strips */
.rnt-strip-custom { background: var(--rnt-surface-2); border-top: 1px solid var(--rnt-border); border-bottom: 1px solid var(--rnt-border); }
.rnt-strip-custom .rnt-container { padding-top: 26px; padding-bottom: 26px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.rnt-strip-custom p { margin: 0; flex: 1 1 380px; color: var(--rnt-text); }

/* Footer: navy; CTA column first, link columns after, logo + credit in the bottom row. */
.rnt-footer { background: var(--rnt-navy-2); padding: 40px 0 24px; }
.rnt-footer .rnt-container { display: flex; gap: 60px; align-items: flex-start; flex-wrap: wrap; }
.rnt-footer-cta { flex: 1 1 240px; max-width: 320px; }
.rnt-footer .rnt-footer-cta a.rnt-btn-primary { color: var(--rnt-accent-contrast); }
.rnt-footer-cta p { margin: 0 0 16px; color: #fff; font-size: 15.5px; font-weight: 600; line-height: 1.45; }
.rnt-footer, .rnt-footer a { color: #93a3ae; font-size: 13.5px; }
.rnt-footer a:hover { color: #fff; opacity: 1; }
.rnt-footer .rnt-footer-links { flex: 0 1 auto; display: flex; flex-direction: column; gap: 7px; }
.rnt-footer .rnt-footer-head {
  color: #fff; font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 4px;
}
.rnt-footer .rnt-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 30px; padding-top: 20px;
  align-items: center; gap: 20px;
}
.rnt-footer .rnt-footer-fwlogo { display: flex; align-items: center; opacity: .9; }
.rnt-footer .rnt-footer-fwlogo img { display: block; height: 20px; width: auto; }
.rnt-footer .rnt-credit { margin-left: auto; text-align: right; }
@media (max-width: 700px) { .rnt-footer .rnt-credit { margin-left: 0; text-align: left; } }

/* Forms */
.rnt-input, .rnt-textarea {
  width: 100%; box-sizing: border-box; background: var(--rnt-surface-2); color: var(--rnt-text);
  border: 1px solid var(--rnt-border); border-radius: 8px; padding: 11px 13px; font-size: 14.5px;
}
.rnt-field { margin-bottom: 14px; }
.rnt-alert-ok {
  background: rgba(56, 178, 108, .12); border: 1px solid #38b26c; color: var(--rnt-text);
  border-radius: var(--rnt-radius); padding: 14px 16px; margin-bottom: 18px;
}

/* Customization page groups */
.rnt-cgroup h3 { font-size: 16px; margin: 0 0 4px; color: var(--rnt-accent); }
.rnt-cgroup li a.rnt-ask { font-size: 12px; margin-left: 8px; }

/* Page body prose */
.rnt-prose { max-width: 760px; }
.rnt-prose p { color: var(--rnt-text); line-height: 1.65; }

/* Admin shell */
.rnt-admin { display: flex; min-height: 100vh; }
.rnt-admin-side {
  width: 230px; flex: 0 0 230px; background: var(--rnt-surface);
  border-right: 1px solid var(--rnt-border); padding: 22px 14px;
  display: flex; flex-direction: column; gap: 20px;
}
.rnt-admin-nav { display: flex; flex-direction: column; gap: 2px; }
.rnt-admin-nav a {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px;
  color: var(--rnt-text); text-decoration: none; font-size: 14.5px;
}
.rnt-admin-nav a:hover { background: var(--rnt-surface-2); }
.rnt-admin-nav a.active { background: var(--rnt-surface-2); color: var(--rnt-accent); }
.rnt-admin-ico { width: 20px; text-align: center; color: var(--rnt-accent); }
.rnt-admin-soon {
  margin-left: auto; font-size: 10px; font-weight: 700; text-transform: uppercase;
  color: var(--rnt-muted); border: 1px solid var(--rnt-border); border-radius: 999px; padding: 1px 7px;
}
.rnt-admin-side-foot { margin-top: auto; display: flex; flex-direction: column; gap: 6px; font-size: 13px; }
.rnt-admin-main { flex: 1; padding: 34px 38px; }
.rnt-stat { font-size: 30px; font-weight: 800; color: var(--rnt-text); margin: 6px 0 0; }

/* Admin calendar */
.rnt-admin-cal-months { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.rnt-admin-cal-month .rnt-cal-title { font-size: 15px; }
.rnt-cal-qty {
  font-style: normal; display: block; font-size: 9px; line-height: 1; opacity: .8; font-weight: 700;
}

/* Admin settings */
.rnt-setting-row { display: flex; gap: 10px; align-items: center; }
.rnt-setting-row .rnt-input { flex: 1; }

/* Admin item form */
.rnt-btn-small { padding: 8px 18px; font-size: 13.5px; }
.rnt-field-row { display: flex; gap: 12px; }
.rnt-field-row .rnt-field { flex: 1; }
.rnt-field-row .rnt-check { margin-bottom: 14px; }
.rnt-tier-edit { width: 100%; border-collapse: collapse; }
.rnt-tier-edit th { text-align: left; color: var(--rnt-muted); font-size: 11px; text-transform: uppercase; padding: 4px 6px 4px 0; }
.rnt-tier-edit td { padding: 3px 6px 3px 0; }
.rnt-tier-edit .rnt-input { padding: 8px 10px; font-size: 13.5px; }
#tier-add { margin-top: 8px; }
.rnt-photo-rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 14px; }
.rnt-photo-row { display: flex; gap: 12px; align-items: flex-start; }
.rnt-photo-row img { width: 110px; height: 82px; object-fit: cover; border-radius: 6px; border: 1px solid var(--rnt-border); }
.rnt-photo-fields { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.rnt-photo-fields .rnt-input { padding: 7px 10px; font-size: 13px; }
.rnt-photo-row-foot { display: flex; gap: 12px; align-items: center; }
.rnt-photo-row-foot .rnt-input { max-width: 80px; }
.rnt-photo-row-foot .rnt-check { margin: 0; flex-basis: auto; }

/* Admin tables + filters + forms */
.rnt-admin-filter { display: flex; gap: 10px; align-items: center; margin: 0 0 16px; flex-wrap: wrap; }
.rnt-admin-filter .rnt-input { width: auto; }
.rnt-admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.rnt-admin-table th {
  text-align: left; color: var(--rnt-muted); font-size: 11.5px; text-transform: uppercase;
  letter-spacing: .4px; padding: 12px 14px; border-bottom: 1px solid var(--rnt-border);
}
.rnt-admin-table td { padding: 10px 14px; border-bottom: 1px solid var(--rnt-border); color: var(--rnt-text); }
.rnt-admin-table tbody tr:last-child td { border-bottom: 0; }
.rnt-admin-table tbody tr:hover td { background: var(--rnt-surface-2); }
.rnt-transitions { display: flex; gap: 8px; flex-wrap: wrap; }

/* Login */
.rnt-login-body { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 20px; }
.rnt-login-card { width: 100%; max-width: 420px; }
.rnt-alert-err {
  background: rgba(224, 82, 82, .12); border: 1px solid #e05252; color: var(--rnt-text);
  border-radius: var(--rnt-radius); padding: 12px 14px; margin-bottom: 14px; font-size: 14px;
}
