/*
Theme Name: Riverr Vivid
Theme URI: https://riverrshop.com/
Description: Bright mobile-first WooCommerce storefront theme for RIVERR SHOP.
Version: 1.1.0
Requires at least: 6.5
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: riverr-vivid
*/

:root {
  --rv-bg: #fff7f3;
  --rv-surface: rgba(255, 255, 255, 0.82);
  --rv-surface-strong: #ffffff;
  --rv-card: #ffffff;
  --rv-text: #1b1115;
  --rv-muted: #6e5e63;
  --rv-line: rgba(23, 10, 18, 0.08);
  --rv-accent: #ff4f87;
  --rv-accent-2: #ff8a3d;
  --rv-accent-3: #ffd76b;
  --rv-soft: #ffe7dd;
  --rv-shadow: 0 24px 50px rgba(255, 105, 135, 0.16);
  --rv-radius-xl: 34px;
  --rv-radius-lg: 24px;
  --rv-radius-md: 18px;
  --rv-max: 1420px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--rv-text);
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--rv-accent) 18%, transparent), transparent 22%),
    radial-gradient(circle at 10% 20%, color-mix(in srgb, var(--rv-accent-2) 15%, transparent), transparent 18%),
    linear-gradient(180deg, color-mix(in srgb, var(--rv-bg) 92%, #ffffff) 0%, color-mix(in srgb, var(--rv-accent-2) 8%, var(--rv-bg)) 48%, var(--rv-bg) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.rv-site-shell {
  min-height: 100vh;
}

.rv-wrap {
  width: min(var(--rv-max), calc(100% - 20px));
  margin: 0 auto;
}

.rv-header-wrap {
  position: relative;
  z-index: 10;
  padding-top: 10px;
  margin-bottom: 24px;
}

.rv-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(41, 18, 27, 0.08);
}

.rv-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.rv-logo,
.rv-logo .custom-logo-link,
.rv-logo img {
  display: block;
}

.rv-logo img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 18px;
}

.rv-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--rv-accent), var(--rv-accent-2));
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(255, 79, 135, 0.28);
}

.rv-brand-title {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.rv-brand-sub {
  display: block;
  color: var(--rv-muted);
  font-size: 0.8rem;
}

.rv-header-actions {
  display: flex;
  gap: 8px;
}

.rv-header-action {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 10px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 22px rgba(28, 13, 18, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.rv-header-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(28, 13, 18, 0.12);
  border-color: rgba(255, 79, 135, 0.24);
}

.rv-header-action-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 79, 135, 0.14), rgba(255, 138, 61, 0.16));
  font-size: 1.2rem;
  flex: 0 0 auto;
}

.rv-header-action-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.rv-header-action-copy strong {
  font-size: 1.05rem;
  line-height: 1.05;
}

.rv-header-action-copy span {
  color: var(--rv-muted);
  font-size: 0.8rem;
  line-height: 1.2;
}

.rv-header-action-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rv-accent), var(--rv-accent-2));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(255, 79, 135, 0.24);
}

.rv-nav {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 8px;
  padding-bottom: 2px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.rv-nav::-webkit-scrollbar {
  display: none;
}

.rv-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  white-space: nowrap;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.92rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.rv-nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.rv-nav details.rv-nav-dropdown > summary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 42px !important;
  padding: 10px 14px !important;
  white-space: nowrap !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  color: var(--rv-text) !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  list-style: none !important;
  box-shadow: 0 6px 14px rgba(28, 13, 18, 0.05) !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  flex: 0 0 auto !important;
}

.rv-nav details.rv-nav-dropdown > summary::-webkit-details-marker {
  display: none !important;
}

.rv-nav details.rv-nav-dropdown > summary::marker {
  content: "" !important;
  display: none !important;
}

.rv-nav details.rv-nav-dropdown > summary::after {
  content: "" !important;
  width: 7px !important;
  height: 7px !important;
  margin-left: 10px !important;
  border-right: 2px solid currentColor !important;
  border-bottom: 2px solid currentColor !important;
  transform: rotate(45deg) !important;
  transition: transform 0.2s ease !important;
  flex-shrink: 0 !important;
}

.rv-nav details.rv-nav-dropdown[open] > summary::after,
.rv-nav details.rv-nav-dropdown:hover > summary::after {
  transform: rotate(-135deg) !important;
}

.rv-nav-panel {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  transform: none;
  min-width: 260px;
  max-width: min(420px, calc(100vw - 32px));
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 22px 40px rgba(31, 14, 20, 0.14);
  backdrop-filter: blur(14px);
  z-index: 50;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.rv-nav-panel a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  font-weight: 700;
}

.rv-nav-panel a:hover {
  background: #fff5f2;
}

.rv-nav-dropdown[open] .rv-nav-panel,
.rv-nav-dropdown:hover .rv-nav-panel,
.rv-nav-dropdown:focus-within .rv-nav-panel {
  display: grid;
}

.rv-main {
  padding: 14px 0 42px;
}

.rv-hero {
  position: relative;
  overflow: hidden;
  min-height: 72svh;
  padding: 24px 18px 24px;
  border-radius: var(--rv-radius-xl);
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--rv-accent-3) 90%, white), transparent 20%),
    radial-gradient(circle at 80% 30%, color-mix(in srgb, var(--rv-accent) 26%, transparent), transparent 26%),
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--rv-bg) 88%, white) 0%,
      color-mix(in srgb, var(--rv-accent-2) 16%, var(--rv-bg)) 38%,
      color-mix(in srgb, var(--rv-accent) 18%, var(--rv-bg)) 64%,
      color-mix(in srgb, var(--rv-accent-3) 22%, var(--rv-bg)) 100%
    );
  box-shadow: var(--rv-shadow);
}

.rv-hero-grid {
  display: grid;
  gap: 18px;
}

.rv-hero-copy {
  position: relative;
  z-index: 2;
}

.rv-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #bb2b57;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rv-hero h1 {
  margin: 14px 0 14px;
  font-size: clamp(2.8rem, 14vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.rv-hero p {
  max-width: 720px;
  margin: 0 0 18px;
  color: #49333c;
  font-size: 1rem;
  line-height: 1.65;
}

.rv-hero-actions {
  display: grid;
  gap: 10px;
}

.rv-btn,
.rv-btn-secondary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: none;
  font-weight: 800;
}

.rv-btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  color: #fff !important;
  background: linear-gradient(135deg, var(--rv-accent), var(--rv-accent-2)) !important;
  box-shadow: 0 16px 30px rgba(255, 79, 135, 0.3);
}

.rv-btn-secondary {
  color: var(--rv-text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.rv-hero-art {
  position: relative;
  min-height: 300px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.75), transparent 18%),
    radial-gradient(circle at 80% 18%, rgba(255, 215, 107, 0.6), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.74);
}

.rv-float-card {
  position: absolute;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 34px rgba(48, 20, 33, 0.12);
}

.rv-float-card.one {
  right: 14px;
  top: 18px;
  width: 122px;
  height: 122px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgba(255, 212, 221, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.rv-float-card.two {
  left: 18px;
  bottom: 20px;
  width: 164px;
  height: 74px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.92);
}

.rv-float-card.three {
  right: 34px;
  bottom: 32px;
  width: 86px;
  height: 188px;
  border-radius: 999px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--rv-accent) 92%, white), color-mix(in srgb, var(--rv-accent-2) 92%, white));
}

.rv-float-card.four {
  right: 82px;
  bottom: 48px;
  width: 30px;
  height: 120px;
  border-radius: 999px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--rv-accent-3) 96%, white), rgba(255, 255, 255, 0.9));
}

.rv-section {
  margin-top: 18px;
}

.rv-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--rv-radius-lg);
  box-shadow: 0 18px 34px rgba(31, 14, 20, 0.08);
}

.rv-section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 18px 0;
}

.rv-section-title {
  margin: 0;
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.rv-section-note {
  margin: 0;
  color: var(--rv-muted);
  line-height: 1.6;
}

.rv-category-panel {
  padding: 22px 18px;
}

.rv-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.rv-category-grid a {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 0 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 240, 234, 0.96));
  border: 1px solid rgba(28, 11, 18, 0.06);
  font-weight: 700;
}

.rv-trust {
  padding: 18px;
}

.rv-trust-grid {
  display: grid;
  gap: 10px;
}

.rv-trust-item {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(18, 10, 14, 0.06);
  color: #33252b;
  font-weight: 700;
}

.rv-shop-section {
  padding: 22px 18px 18px;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  display: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  padding: 14px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(25, 10, 18, 0.06);
  box-shadow: 0 10px 24px rgba(29, 12, 20, 0.06);
}

.woocommerce ul.products li.product a img {
  border-radius: 16px;
}

.woocommerce ul.products li.product .price {
  color: var(--rv-accent) !important;
  font-weight: 800;
}

.rv-footer {
  margin: 18px 0 34px;
  padding: 22px 18px;
}

.rv-footer-grid {
  display: grid;
  gap: 22px;
}

.rv-footer h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
}

.rv-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rv-footer li + li {
  margin-top: 10px;
}

.rv-footer a {
  color: #4b3941;
}

.rv-page {
  padding: 26px 18px;
}

.rv-page .entry-content {
  max-width: 980px;
}

.rv-page h1,
.rv-page h2,
.rv-page h3,
.rv-page h4 {
  color: var(--rv-text);
}

.rv-page p,
.rv-page li {
  color: var(--rv-muted);
  line-height: 1.8;
}

.rv-contact-strip {
  padding: 22px 18px 18px;
}

.rv-contact-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.rv-contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(25, 10, 18, 0.06);
  box-shadow: 0 10px 24px rgba(29, 12, 20, 0.05);
}

.rv-contact-item strong {
  font-size: 1rem;
}

.rv-contact-item span {
  color: var(--rv-muted);
  line-height: 1.6;
}

.rv-footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(25, 10, 18, 0.08);
}

.rv-footer-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(25, 10, 18, 0.08);
  font-weight: 700;
}

.rv-whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #149e49);
  box-shadow: 0 18px 34px rgba(22, 105, 47, 0.24);
  font-weight: 800;
}

@media (min-width: 900px) {
  .rv-wrap {
    width: min(var(--rv-max), calc(100% - 36px));
  }

  .rv-header {
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    padding: 18px 24px;
    border-radius: 30px;
  }

  .rv-mark {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    font-size: 1.55rem;
  }

  .rv-logo img {
    width: 64px;
    height: 64px;
    border-radius: 22px;
  }

  .rv-brand-title {
    font-size: 1.15rem;
  }

  .rv-brand-sub {
    display: block;
  }
  .rv-header-actions {
    gap: 14px;
  }

  .rv-header-action {
    min-width: 182px;
  }

  .rv-nav {
    grid-column: auto;
    justify-content: center;
    gap: 10px;
    overflow: visible;
    flex-wrap: wrap;
  }

  .rv-nav a {
    min-height: 46px;
    padding: 10px 16px;
  }

  .rv-nav details.rv-nav-dropdown > summary {
    min-height: 46px !important;
    padding: 10px 16px !important;
  }

  .rv-nav-panel {
    left: 50%;
    transform: translateX(-50%);
    min-width: 360px;
    max-width: 520px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rv-hero {
    padding: 26px;
    min-height: 620px;
  }

  .rv-hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: stretch;
    min-height: 568px;
  }

  .rv-hero-copy {
    padding: 30px 10px 30px 6px;
  }

  .rv-hero h1 {
    font-size: clamp(4.4rem, 7vw, 7.8rem);
  }

  .rv-hero p {
    font-size: 1.08rem;
  }

  .rv-hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .rv-hero-art {
    min-height: 100%;
  }

  .rv-float-card.one {
    right: 28px;
    top: 26px;
    width: 178px;
    height: 178px;
  }

  .rv-float-card.two {
    left: 24px;
    bottom: 26px;
    width: 220px;
    height: 96px;
  }

  .rv-float-card.three {
    right: 70px;
    width: 128px;
    height: 286px;
  }

  .rv-float-card.four {
    right: 126px;
    width: 44px;
    height: 174px;
  }

  .rv-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 18px;
  }

  .rv-category-grid {
    gap: 12px;
  }

  .rv-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rv-contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .rv-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.rv-main {
  padding-top: 0 !important;
}

.rv-main > .rv-wrap {
  margin-top: 0 !important;
}

.rv-hero,
.rv-split,
.rv-card.rv-page {
  margin-top: 0 !important;
}

@media (max-width: 899px) 
	.rv-header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .rv-header-action {
    min-height: 46px;
    padding: 8px 12px;
    border-radius: 14px;
  }

  .rv-header-action-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 1rem;
  }

  .rv-header-action-copy strong {
    font-size: 0.92rem;
  }

  .rv-header-action-copy span {
    font-size: 0.74rem;
  }
 {
  .rv-header {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 12px;
    border-radius: 20px;
  }

  .rv-brand {
    gap: 10px;
  }

  .rv-logo img {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .rv-brand-title {
    font-size: 0.92rem;
    line-height: 1.1;
  }

  .rv-brand-sub {
    font-size: 0.7rem;
    line-height: 1.25;
  }

  .rv-header-actions {
    gap: 6px;
  }

  .rv-header-actions a {
    width: 38px;
    height: 38px;
  }

  .rv-nav {
    grid-column: 1 / -1;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding-bottom: 2px;
  }

  .rv-nav a,
  .rv-nav details.rv-nav-dropdown > summary {
    flex: 0 0 auto;
    width: auto !important;
    min-height: 38px !important;
    padding: 8px 12px !important;
    font-size: 0.84rem !important;
    line-height: 1.1 !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
  }

  .rv-nav-dropdown {
    width: auto;
    display: inline-flex;
    flex: 0 0 auto;
  }

  .rv-nav-panel {
    left: 0;
    transform: none;
    min-width: 220px;
    max-width: calc(100vw - 32px);
    grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {
  .rv-wrap {
    width: calc(100% - 14px);
  }

  .rv-header-wrap {
    padding-top: 8px;
    margin-bottom: 16px;
  }

  .rv-header {
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 10px;
    border-radius: 18px;
  }

  .rv-brand {
    align-items: flex-start;
    gap: 8px;
  }

  .rv-logo img {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .rv-brand-title {
    font-size: 0.8rem;
    line-height: 1.05;
  }

  .rv-brand-sub {
    font-size: 0.62rem;
    line-height: 1.2;
  }

  .rv-header-actions {
    gap: 6px;
  }

  .rv-header-actions a {
    width: 32px;
    height: 32px;
  }

  .rv-nav {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
  }

  .rv-nav a,
  .rv-nav details.rv-nav-dropdown > summary {
    flex: 0 0 auto;
    min-height: 34px !important;
    padding: 6px 10px !important;
    font-size: 0.74rem !important;
    line-height: 1 !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
  }

  .rv-nav-panel {
    min-width: 200px;
    padding: 10px;
  }

  .rv-nav-panel a {
    min-height: 36px;
    font-size: 0.8rem;
  }
}
