/* R2S Crackers — modern layout (Aswitha / Lakshmi inspired) */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  --r2s-ink: #0b1220;
  --r2s-navy: #121a2b;
  --r2s-panel: #172033;
  --r2s-orange: #f05a28;
  --r2s-gold: #f5b942;
  --r2s-sky: #2ea8e5;
  --r2s-green: #25d366;
  --r2s-text: #e8edf7;
  --r2s-muted: #9aa6bf;
  --r2s-white: #ffffff;
  --r2s-soft: #f4f6fb;
  --r2s-radius: 14px;
  --r2s-shadow: 0 18px 40px rgba(8, 12, 24, 0.28);
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--r2s-soft);
  color: #243048;
}

/* —— Top bar —— */
.r2s-topbar {
  background: var(--r2s-ink);
  color: var(--r2s-text);
  font-size: 13px;
  padding: 8px 0;
  position: relative;
  z-index: 10001;
}
.r2s-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.r2s-topbar a {
  color: var(--r2s-text);
  margin-left: 14px;
}
.r2s-topbar a:hover {
  color: var(--r2s-gold);
}
.r2s-topbar i {
  color: var(--r2s-orange);
  margin-right: 6px;
}

/* —— Header / nav —— */
header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 24px rgba(10, 16, 32, 0.08);
  backdrop-filter: blur(10px);
}
header .navigation {
  background: transparent;
  padding: 8px 0;
}
header .logo-wrap img {
  max-height: 70px;
  width: auto;
}
header .menu > li > a {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--r2s-navy) !important;
  text-transform: none;
}
header .menu > li > a:hover,
header .menu > li.active > a {
  color: var(--r2s-orange) !important;
}
.r2s-nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 18px;
}
.r2s-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.r2s-icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}
.r2s-icon-btn.call {
  background: var(--r2s-navy);
}
.r2s-icon-btn.wa {
  background: var(--r2s-green);
}
.r2s-icon-btn.order {
  background: linear-gradient(135deg, var(--r2s-orange), #d94416);
  width: auto;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  gap: 6px;
}
.r2s-menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--r2s-navy);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 20;
}
.r2s-menu-toggle.is-open .fa-bars:before {
  content: "\f00d";
}
header .navigation .row {
  display: flex;
  align-items: center;
}

/* —— Hero —— */
.r2s-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(8, 12, 24, 0.88), rgba(18, 26, 43, 0.72)),
    url('assets/img/slides/s1.jpg') center/cover no-repeat;
  color: #fff !important;
  overflow: hidden;
}
.r2s-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(240, 90, 40, 0.35), transparent 40%),
    radial-gradient(circle at 15% 80%, rgba(46, 168, 229, 0.25), transparent 35%);
  pointer-events: none;
  animation: r2sGlow 8s ease-in-out infinite alternate;
}
@keyframes r2sGlow {
  from { opacity: 0.7; }
  to { opacity: 1; }
}
.r2s-hero .container {
  position: relative;
  z-index: 2;
  padding: 110px 15px 90px;
}
.r2s-hero-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 12px;
  color: #ffffff !important;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.65);
  animation: r2sRise 0.8s ease both;
}
.r2s-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 600;
  margin: 0 0 14px;
  max-width: 640px;
  color: #ffffff !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
  animation: r2sRise 0.9s ease 0.1s both;
}
.r2s-hero p {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 28px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  animation: r2sRise 1s ease 0.2s both;
}
@keyframes r2sRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.r2s-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: r2sRise 1.05s ease 0.28s both;
}
.r2s-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.r2s-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.r2s-btn-primary {
  background: linear-gradient(135deg, var(--r2s-orange), #e04818);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(240, 90, 40, 0.35);
}
.r2s-btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff !important;
  background: transparent;
}
.r2s-btn-outline:hover {
  background: #fff;
  color: var(--r2s-navy) !important;
}
.r2s-btn-dark {
  background: var(--r2s-navy);
  color: #fff !important;
}
.r2s-btn-light {
  background: #fff;
  color: var(--r2s-navy) !important;
}

/* —— Offer strip —— */
.r2s-offer {
  background: linear-gradient(90deg, #1a2338, #2a160f 55%, #3a1d0c);
  color: #fff;
  padding: 22px 0;
  border-top: 3px solid var(--r2s-gold);
  border-bottom: 3px solid var(--r2s-orange);
}
.r2s-offer .offer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.r2s-offer h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--r2s-gold);
}
.r2s-offer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

/* —— Sections common —— */
.r2s-section {
  padding: 70px 0;
}
.r2s-section.alt {
  background: #fff;
}
.r2s-section.dark {
  background: linear-gradient(160deg, var(--r2s-ink), var(--r2s-navy));
  color: var(--r2s-text);
}
.r2s-head {
  text-align: center;
  margin-bottom: 40px;
}
.r2s-head .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--r2s-orange);
  margin-bottom: 10px;
}
.r2s-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.03em;
  color: var(--r2s-navy);
  margin: 0 0 10px;
  line-height: 1.1;
}
.r2s-section.dark .r2s-head h2 {
  color: #fff;
}
.r2s-head p {
  max-width: 560px;
  margin: 0 auto;
  color: #5a6780;
  font-size: 15px;
  line-height: 1.6;
}
.r2s-section.dark .r2s-head p {
  color: var(--r2s-muted);
}

/* —— Categories —— */
.r2s-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.r2s-cat-card {
  background: #fff;
  border-radius: var(--r2s-radius);
  padding: 28px 18px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
  border: 1px solid rgba(18, 26, 43, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
  color: inherit;
  text-decoration: none !important;
}
.r2s-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--r2s-shadow);
}
.r2s-cat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  background: linear-gradient(145deg, var(--r2s-orange), var(--r2s-gold));
}
.r2s-cat-card:nth-child(2n) .r2s-cat-icon {
  background: linear-gradient(145deg, var(--r2s-sky), #1a7fb8);
}
.r2s-cat-card:nth-child(3n) .r2s-cat-icon {
  background: linear-gradient(145deg, #2f9e44, #74c69d);
}
.r2s-cat-card:nth-child(4n) .r2s-cat-icon {
  background: linear-gradient(145deg, #7b2cbf, #c77dff);
}
.r2s-cat-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--r2s-navy);
  margin: 0 0 6px;
  line-height: 1.3;
}
.r2s-cat-card span {
  font-size: 12px;
  color: var(--r2s-orange);
  font-weight: 600;
}

/* —— Why choose —— */
.r2s-why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.r2s-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.r2s-why-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(18, 26, 43, 0.08);
  font-size: 15px;
  color: #334155;
}
.r2s-why-list li i {
  color: var(--r2s-orange);
  margin-top: 3px;
}
.r2s-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.r2s-stat {
  background: linear-gradient(160deg, var(--r2s-navy), #1e2a44);
  color: #fff;
  border-radius: var(--r2s-radius);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--r2s-shadow);
}
.r2s-stat strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--r2s-gold);
  line-height: 1;
  margin-bottom: 6px;
}
.r2s-stat span {
  font-size: 13px;
  color: var(--r2s-muted);
}

/* —— How to order —— */
.r2s-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.r2s-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r2s-radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
}
.r2s-step .num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--r2s-orange), var(--r2s-gold));
  color: #fff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.r2s-step h3 {
  font-size: 18px;
  color: #fff;
  margin: 0 0 8px;
}
.r2s-step p {
  margin: 0;
  color: var(--r2s-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* —— Reviews —— */
.r2s-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.r2s-review {
  background: #fff;
  border-radius: var(--r2s-radius);
  padding: 26px 22px;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
  border-top: 3px solid var(--r2s-orange);
}
.r2s-review .stars {
  color: var(--r2s-gold);
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.r2s-review p {
  font-size: 14px;
  line-height: 1.65;
  color: #445164;
  margin-bottom: 16px;
}
.r2s-review cite {
  font-style: normal;
  font-weight: 700;
  color: var(--r2s-navy);
  font-size: 14px;
}

/* —— Brands —— */
.r2s-brands .item {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  margin: 6px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.05);
}
.r2s-brands .item img {
  max-height: 120px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}
.r2s-brands .caption h1 {
  font-size: 15px !important;
  margin-top: 10px;
  color: var(--r2s-navy);
}

/* —— Lakshmi-style image category cards —— */
.r2s-lakshmi-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.r2s-lak-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
  display: block;
  text-decoration: none !important;
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.r2s-lak-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(16, 24, 40, 0.18);
}
.r2s-lak-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.r2s-lak-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 60, 72, 0.15), rgba(8, 60, 72, 0.78));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px;
  color: #fff;
}
.r2s-lak-card h3 {
  margin: 0 0 4px;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}
.r2s-lak-card .price {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: #f5b942;
}
.r2s-lak-card .shop {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ff6b8a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.r2s-dealer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.r2s-dealer-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
  display: block;
  text-decoration: none !important;
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.12);
}
.r2s-dealer-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}
.r2s-dealer-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 60, 72, 0.75), rgba(240, 90, 40, 0.35));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  color: #fff;
}
.r2s-dealer-card h3 {
  margin: 0 0 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1;
}
.r2s-dealer-card p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
}

/* —— Gallery —— */
.r2s-gallery-wrap {
  padding: 50px 0 70px;
  background: #f4f6fb;
}
.r2s-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.r2s-gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.08);
  aspect-ratio: 1 / 1;
}
.r2s-gallery-item a {
  display: block;
  height: 100%;
  position: relative;
}
.r2s-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.r2s-gallery-item:hover img {
  transform: scale(1.06);
}
.r2s-gallery-item .zoom {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 32, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  color: #fff;
  font-size: 28px;
}
.r2s-gallery-item:hover .zoom {
  opacity: 1;
}
.r2s-gallery-empty {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  color: #64748b;
}

@media (max-width: 991px) {
  .r2s-lakshmi-cats,
  .r2s-dealer-grid,
  .r2s-gallery-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .r2s-lakshmi-cats,
  .r2s-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* —— Visit / CTA band —— */
.r2s-visit {
  position: relative;
  padding: 80px 0;
  background:
    linear-gradient(120deg, rgba(11, 18, 32, 0.88), rgba(240, 90, 40, 0.55)),
    url('assets/img/slides/s2.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
}
.r2s-visit h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: #fff;
}
.r2s-visit p {
  max-width: 560px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

/* —— Lakshmi-style teal wholesale / various collection —— */
.r2s-wholesale {
  position: relative;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12), transparent 40%),
    linear-gradient(120deg, #0f8a9a, #14b8a6 45%, #0b7285);
  color: #fff;
  padding: 70px 0;
  overflow: hidden;
}
.r2s-wholesale::before,
.r2s-wholesale::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 18px;
  background-image: radial-gradient(circle at 10px 0, transparent 10px, #f4f6fb 11px);
  background-size: 20px 18px;
  background-repeat: repeat-x;
  z-index: 1;
}
.r2s-wholesale::before {
  top: 0;
  transform: rotate(180deg);
}
.r2s-wholesale::after {
  bottom: 0;
  background-image: radial-gradient(circle at 10px 18px, transparent 10px, #f4f6fb 11px);
}
.r2s-wholesale .row-flex {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  flex-direction: column;
}
.r2s-wholesale h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0 0 8px;
  letter-spacing: 0.03em;
  color: #fff;
}
.r2s-wholesale p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
}
.r2s-wholesale p span {
  color: #fde68a;
  font-weight: 800;
}

/* —— Floating contact —— */
.r2s-float {
  position: fixed;
  right: 16px;
  bottom: 22px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.r2s-float a {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}
.r2s-float a:hover {
  transform: scale(1.08);
}
.r2s-float .call {
  background: var(--r2s-navy);
}
.r2s-float .wa {
  background: var(--r2s-green);
}
a#scrollUp,
#scrollUp {
  display: none !important;
}

/* —— Footer polish —— */
footer {
  background: var(--r2s-ink) !important;
  color: var(--r2s-text);
  padding-top: 50px;
}
footer .title {
  color: var(--r2s-gold) !important;
  font-weight: 700;
  margin-bottom: 16px !important;
}
footer p,
footer .links a,
footer .social-media-icons a {
  color: var(--r2s-muted) !important;
}
footer .links a:hover,
footer .social-media-icons a:hover {
  color: var(--r2s-gold) !important;
}
footer .footer-bar {
  background: #060a12 !important;
  margin-top: 30px;
}
footer .footer-bar h5 {
  color: var(--r2s-muted);
  font-size: 13px;
}

/* —— Page banner —— */
.page-banner {
  background:
    linear-gradient(120deg, rgba(11, 18, 32, 0.85), rgba(240, 90, 40, 0.45)),
    url('assets/img/slides/s3.jpg') center/cover no-repeat !important;
  padding: 120px 0 70px !important;
}
.page-banner .section-name h2 {
  color: #fff !important;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 0.04em;
}
.page-banner .short-text h5 {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* —— Responsive —— */
@media (max-width: 991px) {
  .r2s-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .r2s-why-grid,
  .r2s-steps,
  .r2s-reviews {
    grid-template-columns: 1fr;
  }
  .r2s-nav-actions {
    display: none;
  }
  .r2s-hero {
    min-height: 68vh;
  }
  .r2s-topbar .container {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px 14px;
  }
  .r2s-topbar a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }
  header .navigation {
    position: relative;
    overflow: visible;
  }
  header .navigation .container,
  header .navigation .row {
    position: relative;
    overflow: visible;
  }
  header .navigation .row {
    flex-wrap: nowrap;
  }
  .r2s-menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 30;
  }
  header .menu-wrap,
  .navigation .menu-wrap {
    display: none !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 8px 0 12px !important;
    background: #fff;
    box-shadow: 0 16px 32px rgba(10, 16, 32, 0.16);
    z-index: 40;
  }
  header .menu-wrap.open,
  .navigation .menu-wrap.open {
    display: block !important;
  }
  header .menu-wrap .menu,
  .navigation .menu-wrap .menu {
    float: none !important;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
  }
  header .menu-wrap .menu > li,
  .navigation .menu-wrap .menu > li {
    display: block !important;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #eef1f6;
  }
  header .menu-wrap .menu > li > a,
  .navigation .menu-wrap .menu > li > a {
    display: block !important;
    padding: 13px 20px !important;
    color: var(--r2s-navy) !important;
    font-size: 15px !important;
  }
  .mobile-menu-area,
  .mean-container {
    display: none !important;
  }
}
@media (max-width: 575px) {
  .r2s-cat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .r2s-cat-card {
    padding: 18px 12px;
  }
  .r2s-topbar .hide-xs {
    display: none;
  }
}
