/* RJ Mart storefront — brand tokens & layout
   Gradient: cyan #00d2ff → deep blue #0052d4
   Tagline accent: #0047AB
*/

:root {
  --rj-cyan: #00d2ff;
  --rj-blue: #0052d4;
  --rj-tagline: #0047AB;
  --rj-gradient: linear-gradient(135deg, #00d2ff 0%, #0052d4 100%);
  --rj-on-gradient: #ffffff;
  --rj-bg: #ffffff;
  --rj-bg-soft: #f7f8fa;
  --rj-text: #121212;
  --rj-muted: #5c5c5c;
  --rj-border: #e8ecf0;
  --rj-radius: 0.5rem;
  --rj-shadow: 0 8px 24px rgba(0, 82, 212, 0.08);
  --rj-font: "Outfit", system-ui, sans-serif;
  --rj-free-ship: 499;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--rj-font);
  color: var(--rj-text);
  background: var(--rj-bg);
  line-height: 1.5;
}

a {
  color: var(--rj-tagline);
  text-decoration: none;
}
a:hover {
  color: var(--rj-blue);
}

img {
  max-width: 100%;
  height: auto;
}

/* —— Buttons —— */
.btn-rj,
.btn-primary {
  background: var(--rj-gradient);
  border: 0;
  color: var(--rj-on-gradient) !important;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.btn-rj:hover,
.btn-rj:focus,
.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #00b8e6 0%, #0047b8 100%);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(0, 82, 212, 0.35);
}
.btn-rj-outline {
  background: transparent;
  border: 2px solid var(--rj-blue);
  color: var(--rj-blue) !important;
  font-weight: 600;
}
.btn-rj-outline:hover {
  background: var(--rj-gradient);
  border-color: transparent;
  color: #fff !important;
}
.btn-rj-dark {
  background: #121212;
  border: 0;
  color: #fff !important;
  font-weight: 600;
}
.btn-rj-dark:hover {
  background: #2a2a2a;
  color: #fff !important;
}
.btn-rj-muted {
  background: var(--rj-bg-soft);
  border: 1px solid var(--rj-border);
  color: var(--rj-text) !important;
  font-weight: 600;
}
.btn-rj-muted:hover {
  border-color: var(--rj-cyan);
  color: var(--rj-blue) !important;
}
.btn-whatsapp {
  background: #25d366;
  border: 0;
  color: #fff !important;
  font-weight: 700;
}
.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background: #1ebe57;
  color: #fff !important;
}

/* —— Top utility bar —— */
.rj-topbar {
  background: var(--rj-bg-soft);
  border-bottom: 1px solid var(--rj-border);
  font-size: 0.8125rem;
  color: var(--rj-muted);
  padding: 0.4rem 0;
}
.rj-topbar a {
  color: var(--rj-muted);
}
.rj-topbar a:hover {
  color: var(--rj-tagline);
}
.rj-tagline-text {
  color: var(--rj-tagline);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

/* —— Header —— */
.rj-header {
  background: #fff;
  border-bottom: 1px solid var(--rj-border);
  position: sticky;
  top: 0;
  z-index: 1030;
}
.rj-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.rj-logo-stacked img {
  max-height: 72px;
  width: auto;
}
.rj-search .form-control {
  border-color: var(--rj-border);
  border-radius: var(--rj-radius) 0 0 var(--rj-radius);
  min-height: 44px;
}
.rj-search .btn {
  border-radius: 0 var(--rj-radius) var(--rj-radius) 0;
  min-height: 44px;
  padding-inline: 1.1rem;
}
.rj-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.rj-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--rj-border);
  background: #fff;
  color: var(--rj-text);
  transition: border-color 0.2s, color 0.2s;
}
.rj-icon-btn:hover {
  border-color: var(--rj-cyan);
  color: var(--rj-blue);
}
.rj-badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--rj-gradient);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* —— Nav —— */
.rj-nav {
  background: #fff;
  border-bottom: 1px solid var(--rj-border);
}
.rj-nav .nav-link {
  color: var(--rj-text);
  font-weight: 500;
  padding: 0.75rem 0.9rem !important;
}
.rj-nav .nav-link:hover,
.rj-nav .nav-link.active {
  color: var(--rj-tagline);
}
.rj-cat-btn {
  background: var(--rj-gradient);
  color: #fff !important;
  border: 0;
  font-weight: 600;
  padding: 0.65rem 1.1rem;
  border-radius: var(--rj-radius);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.rj-cat-btn:hover {
  color: #fff !important;
  filter: brightness(1.05);
}

/* —— Hero —— */
.rj-hero {
  background: var(--rj-gradient);
  color: var(--rj-on-gradient);
  border-radius: 0;
  overflow: hidden;
  position: relative;
  min-height: 340px;
}
.rj-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.18), transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.12), transparent 40%);
  pointer-events: none;
}
.rj-hero .container {
  position: relative;
  z-index: 1;
}
.rj-hero h1 {
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
}
.rj-hero .lead {
  opacity: 0.95;
  max-width: 32rem;
}
.rj-hero-visual {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.rj-hero-visual img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* —— Category strip —— */
.rj-cats {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}
.rj-cat-card {
  background: #fff;
  border: 1px solid var(--rj-border);
  border-radius: 1rem;
  padding: 1.1rem 0.75rem;
  text-align: center;
  height: 100%;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  color: inherit;
  display: block;
}
.rj-cat-card:hover {
  border-color: var(--rj-cyan);
  box-shadow: var(--rj-shadow);
  transform: translateY(-2px);
  color: inherit;
}
.rj-cat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.15), rgba(0, 82, 212, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rj-tagline);
  font-size: 1.35rem;
}
.rj-cat-card span {
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
}

/* —— Trust —— */
.rj-trust {
  background: var(--rj-bg-soft);
  border-block: 1px solid var(--rj-border);
}
.rj-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem 0.5rem;
}
.rj-trust-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rj-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rj-trust-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.15rem;
}
.rj-trust-item p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--rj-muted);
}

/* —— Sections —— */
.rj-section {
  padding: 3rem 0;
}
.rj-section-title {
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.rj-section-eyebrow {
  color: var(--rj-tagline);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* —— Product cards —— */
.rj-product-card {
  background: #fff;
  border: 1px solid var(--rj-border);
  border-radius: var(--rj-radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.rj-product-card:hover {
  border-color: rgba(0, 210, 255, 0.55);
  box-shadow: var(--rj-shadow);
}
.rj-product-media {
  position: relative;
  background: var(--rj-bg-soft);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.rj-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform 0.25s ease;
}
.rj-product-card:hover .rj-product-media img {
  transform: scale(1.04);
}
.rj-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  color: #fff;
  background: var(--rj-blue);
}
.rj-badge.hot {
  background: #e11d48;
}
.rj-badge.new {
  background: #059669;
}
.rj-badge.deal {
  background: #d97706;
}
.rj-product-body {
  padding: 0.9rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.rj-product-cat {
  font-size: 0.75rem;
  color: var(--rj-muted);
  margin-bottom: 0.2rem;
}
.rj-product-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--rj-text);
  margin-bottom: 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}
.rj-product-title:hover {
  color: var(--rj-tagline);
}
.rj-stars {
  color: #f5a300;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.rj-price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--rj-text);
}
.rj-price-compare {
  font-size: 0.85rem;
  color: var(--rj-muted);
  text-decoration: line-through;
  margin-left: 0.35rem;
  font-weight: 500;
}
.rj-product-actions {
  margin-top: auto;
  padding-top: 0.75rem;
}

/* —— Promo banners —— */
.rj-promo {
  border-radius: var(--rj-radius);
  padding: 1.75rem;
  background: var(--rj-bg-soft);
  border: 1px solid var(--rj-border);
  height: 100%;
}
.rj-promo.accent {
  background: var(--rj-gradient);
  color: #fff;
  border: 0;
}
.rj-promo h3 {
  font-weight: 700;
  font-size: 1.25rem;
}

/* —— Newsletter —— */
.rj-newsletter {
  background: var(--rj-gradient);
  color: #fff;
  padding: 2.5rem 0;
}
.rj-newsletter .form-control {
  min-height: 48px;
  border: 0;
}
.rj-newsletter .btn {
  min-height: 48px;
  background: #121212;
  border: 0;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}
.rj-newsletter .btn:hover {
  background: #2a2a2a;
}
/* UI_RULEBOOK: email + subscribe share one baseline */
.rj-newsletter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
}
.rj-newsletter-row .form-control {
  flex: 1 1 220px;
}
.rj-newsletter-row .btn {
  flex: 0 0 auto;
}

/* —— Footer —— */
.rj-footer {
  background: #fff;
  border-top: 1px solid var(--rj-border);
  padding-top: 3rem;
  color: var(--rj-muted);
  font-size: 0.9rem;
}
.rj-footer h4 {
  color: var(--rj-text);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.rj-footer a {
  color: var(--rj-muted);
}
.rj-footer a:hover {
  color: var(--rj-tagline);
}
.rj-footer-bottom {
  border-top: 1px solid var(--rj-border);
  margin-top: 2rem;
  padding: 1rem 0;
  font-size: 0.8rem;
}
.rj-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--rj-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.35rem;
}

/* —— Page hero / breadcrumb —— */
.rj-page-head {
  background: var(--rj-bg-soft);
  border-bottom: 1px solid var(--rj-border);
  padding: 1.75rem 0;
}
.rj-page-head h1 {
  font-weight: 700;
  font-size: 1.75rem;
  margin: 0 0 0.35rem;
}
.breadcrumb {
  margin: 0;
  background: transparent;
  padding: 0;
  font-size: 0.85rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "•";
}
.breadcrumb a {
  color: var(--rj-muted);
}

/* —— Shop —— */
.rj-filter-card {
  background: #fff;
  border: 1px solid var(--rj-border);
  border-radius: var(--rj-radius);
  padding: 1.15rem;
  margin-bottom: 1rem;
}
.rj-filter-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.rj-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rj-filter-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  font-size: 0.875rem;
}
.rj-filter-list a {
  color: var(--rj-text);
}
.rj-filter-list a:hover,
.rj-filter-list a.active {
  color: var(--rj-tagline);
  font-weight: 600;
}
.rj-filter-list .count {
  color: var(--rj-muted);
  font-size: 0.8rem;
}
.rj-shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid var(--rj-border);
  border-radius: var(--rj-radius);
}
.rj-shop-toolbar .form-select {
  min-width: 160px;
  min-height: 40px;
}

/* —— PDP —— */
.rj-thumb {
  width: 64px;
  height: 64px;
  border: 2px solid var(--rj-border);
  border-radius: 0.35rem;
  padding: 0.25rem;
  background: #fff;
  cursor: pointer;
  object-fit: contain;
}
.rj-thumb.active,
.rj-thumb:hover {
  border-color: var(--rj-cyan);
}
.rj-pdp-main {
  background: var(--rj-bg-soft);
  border-radius: var(--rj-radius);
  border: 1px solid var(--rj-border);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.rj-pdp-main img {
  max-height: 100%;
  object-fit: contain;
}
.rj-stock {
  display: inline-block;
  background: rgba(0, 82, 212, 0.1);
  color: var(--rj-tagline);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}
.rj-qty {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--rj-border);
  border-radius: var(--rj-radius);
  overflow: hidden;
  height: 48px;
}
.rj-qty button {
  width: 44px;
  border: 0;
  background: var(--rj-bg-soft);
  font-size: 1.1rem;
  color: var(--rj-text);
}
.rj-qty button:hover {
  background: #e8ecf0;
}
.rj-qty input {
  width: 56px;
  border: 0;
  border-inline: 1px solid var(--rj-border);
  text-align: center;
  font-weight: 600;
}
.rj-pdp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: stretch;
}
.rj-pdp-cta-row .btn {
  min-height: 48px;
  flex: 1 1 140px;
}
.rj-meta {
  font-size: 0.85rem;
  color: var(--rj-muted);
}
.rj-safe-box {
  border: 1px solid var(--rj-border);
  border-radius: var(--rj-radius);
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  background: var(--rj-bg-soft);
}
.rj-tabs .nav-link {
  color: var(--rj-muted);
  font-weight: 600;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
}
.rj-tabs .nav-link.active {
  color: var(--rj-tagline);
  background: transparent;
  border-bottom-color: var(--rj-cyan);
}
.rj-spec-table td {
  padding: 0.65rem 0.85rem;
  border-color: var(--rj-border);
}
.rj-spec-table tr:nth-child(even) {
  background: var(--rj-bg-soft);
}

/* —— Cart page —— */
.rj-cart-table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--rj-muted);
  font-weight: 600;
  border-bottom-width: 1px;
}
.rj-cart-table td {
  vertical-align: middle;
  border-color: var(--rj-border);
}
.rj-cart-product {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.rj-cart-product img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: var(--rj-bg-soft);
  border-radius: 0.35rem;
  border: 1px solid var(--rj-border);
}
.rj-summary-card {
  background: #fff;
  border: 1px solid var(--rj-border);
  border-radius: var(--rj-radius);
  padding: 1.35rem;
  box-shadow: var(--rj-shadow);
  position: sticky;
  top: 5.5rem;
}
.rj-summary-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.rj-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}
.rj-summary-total {
  font-size: 1.35rem;
  font-weight: 700;
  border-top: 1px solid var(--rj-border);
  padding-top: 0.85rem;
  margin-top: 0.5rem;
}
.rj-coupon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
}
.rj-coupon-row .form-control,
.rj-coupon-row .btn {
  min-height: 44px;
}
.rj-coupon-row .form-control {
  flex: 1 1 160px;
}

/* —— Cart drawer (offcanvas) —— */
#rjCartDrawer {
  width: min(380px, 100vw);
}
#rjCartDrawer .offcanvas-header {
  border-bottom: 1px solid var(--rj-border);
}
#rjCartDrawer .offcanvas-title {
  font-weight: 700;
}
.rj-ship-progress {
  font-size: 0.8rem;
  color: var(--rj-muted);
  margin-bottom: 0.5rem;
}
.rj-ship-progress .progress {
  height: 6px;
  background: var(--rj-bg-soft);
}
.rj-ship-progress .progress-bar {
  background: var(--rj-gradient);
}
.rj-drawer-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rj-border);
}
.rj-drawer-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: var(--rj-bg-soft);
  border-radius: 0.35rem;
  border: 1px solid var(--rj-border);
  flex-shrink: 0;
}
.rj-drawer-item .title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--rj-text);
  margin-bottom: 0.2rem;
}
.rj-drawer-item .meta {
  font-size: 0.8rem;
  color: var(--rj-muted);
}
.rj-drawer-remove {
  border: 0;
  background: transparent;
  color: var(--rj-muted);
  padding: 0;
  line-height: 1;
}
.rj-drawer-remove:hover {
  color: #e11d48;
}
.rj-drawer-footer {
  border-top: 1px solid var(--rj-border);
  padding-top: 1rem;
}
.rj-drawer-footer .btn {
  min-height: 44px;
}

/* —— Checkout —— */
.rj-checkout-alert {
  border: 1px dashed var(--rj-border);
  background: var(--rj-bg-soft);
  border-radius: var(--rj-radius);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.rj-form-label {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}
.rj-form-control,
.form-control,
.form-select {
  min-height: 44px;
  border-color: var(--rj-border);
  border-radius: var(--rj-radius);
}
.rj-form-control:focus,
.form-control:focus,
.form-select:focus {
  border-color: var(--rj-cyan);
  box-shadow: 0 0 0 0.2rem rgba(0, 210, 255, 0.2);
}
/* UI_RULEBOOK: peer fields share one baseline; helper under the row */
.rj-field-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}
.rj-field-row > .rj-field {
  flex: 1 1 200px;
  min-width: 0;
}
.rj-field-row .form-control,
.rj-field-row .form-select {
  width: 100%;
}
.rj-field-help {
  flex: 1 0 100%;
  font-size: 0.8rem;
  color: var(--rj-muted);
  margin-top: -0.35rem;
  min-height: 1.2em;
}
.rj-upi-box {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.08), rgba(0, 82, 212, 0.08));
  border: 1px solid rgba(0, 82, 212, 0.2);
  border-radius: var(--rj-radius);
  padding: 1rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.rj-upi-box strong {
  color: var(--rj-tagline);
}
.rj-order-lines {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.rj-order-lines li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--rj-border);
  font-size: 0.875rem;
}

/* —— Utilities —— */
.rj-back-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--rj-gradient);
  color: #fff;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.rj-back-top.show {
  opacity: 1;
  pointer-events: auto;
}
.rj-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--rj-muted);
}

.pagination .page-link {
  color: var(--rj-tagline);
  border-color: var(--rj-border);
}
.pagination .page-item.active .page-link {
  background: var(--rj-gradient);
  border-color: transparent;
  color: #fff;
}

@media (max-width: 767.98px) {
  .rj-logo img {
    height: 40px;
  }
  .rj-hero {
    min-height: 280px;
    text-align: center;
  }
  .rj-cats {
    margin-top: 1rem;
  }
}
