:root {
  --rn-beige: #ead5c5;
  --rn-beige-light: #f3e2d5;
  --rn-beige-soft: #efdcd0;
  --rn-beige-hover: #dcc2ad;
  --rn-cream: #fdfaf8;
  --rn-cream-border: #f9f4f0;
  --rn-cream-bg: #f7ede8;
  --rn-blue: #003dae;
  --rn-pink-dark: #ad445a;
  --rn-text-dark: #444444;
  --rn-text-black: #111111;
  --rn-text-muted: #777777;
  --rn-success: #2e7d32;
  --rn-success-bg: #e8f5e9;
  --rn-success-border: #c8e6c9;
  --rn-danger: #e53935;
  --rn-red: #ff0000;
  --rn-white: #ffffff;
  --rn-border-light: #e8d3c3;
  --rn-table-header-bg: #e2e8ec;
  --rn-price-light: #d6bba5;
  --rn-radius-xs: 4px;
  --rn-radius-sm: 8px;
  --rn-radius-md: 15px;
  --rn-radius-input: 18px;
  --rn-radius-lg: 20px;
  --rn-radius-xl: 25px;
  --rn-radius-card: 25px;
}

/* ===== Reset / Full-bleed ===== */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  background: var(--rn-white);
  color: var(--rn-text-dark);
  line-height: 1.6;
  font-family: 'Cairo', sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
}

/* Body lock when side cart is open */
body.rn-no-scroll {
  overflow: hidden;
}

/* Full-width main wrapper (no horizontal padding so sections can be full-bleed) */
#page,
.site,
#content,
.site-content,
main#content {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* ===== Container helper (only when needed) ===== */
.rn-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .rn-container {
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .rn-container {
    padding: 0 10px;
  }
}

/* ===== Top notification ===== */
.rn-notification-top {
  position: fixed;
  left: 50%;
  top: -150px;
  transform: translateX(-50%);
  width: 90%;
  max-width: 380px;
  padding: 14px 25px;
  border-radius: 60px;
  background: var(--rn-success-bg);
  border: 1px solid var(--rn-success-border);
  box-shadow: 0 15px 35px rgba(46, 125, 50, 0.2);
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    top 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    opacity 0.6s ease;
}
.rn-notification-top.is-visible {
  top: 25px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.rn-nt-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.rn-nt-icon {
  background: var(--rn-success);
  color: var(--rn-white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.rn-nt-msg {
  color: var(--rn-success);
  font-weight: 600;
  font-size: 15px;
}

/* ===========================================================
   Footer — Rawaat Al-Naseem
   Layout (RTL, right → left):  تابعونا | روابط | طرق الدفع
   =========================================================== */
.rn-footer {
  background: var(--rn-beige-soft, #efdcd0);
  color: var(--rn-text-dark, #444);
  padding: 50px 20px 0;
  margin-top: 60px;
  font-family: 'Cairo', sans-serif;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

/* ===== Top section: 3 columns ===== */
.rn-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .rn-footer-container {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

/* ===== Column ===== */
.rn-footer-col {
  display: flex;
  flex-direction: column;
}

/* Column order (RTL):
   col 1 in HTML = rightmost  → تابعونا
   col 2 in HTML = middle     → روابط
   col 3 in HTML = leftmost   → طرق الدفع
   That's the natural RTL grid order, so no `order` needed. */

/* ===== Section title ===== */
.rn-footer-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--rn-text-black, #111);
  margin: 0 0 18px;
  position: relative;
  padding-bottom: 10px;
  text-align: right;
}
.rn-footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2.5px;
  background: var(--rn-pink-dark, #ad445a);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .rn-footer-title {
    text-align: right;
  }
  .rn-footer-title::after {
    right: 0;
    transform: none;
  }
}

/* ===== Links column (no title) ===== */
.rn-footer-links {
  /* Nudge down so the link list lines up with the titled columns */
  padding-top: 4px;
}
.rn-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}
.rn-footer-menu li {
  margin-bottom: 12px;
}
.rn-footer-menu li:last-child {
  margin-bottom: 0;
}
.rn-footer-menu li a {
  color: var(--rn-text-dark, #444);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
  display: inline-block;
}
.rn-footer-menu li a:hover {
  color: var(--rn-pink-dark, #ad445a);
}

/* ===== Social media column ===== */
.rn-footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.rn-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--rn-white, #fff);
  color: var(--rn-text-black, #111);
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}
.rn-social-link:hover {
  background: var(--rn-pink-dark, #ad445a);
  color: var(--rn-white, #fff);
  transform: translateY(-3px);
}
.rn-social-link svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* ===== Payment methods column ===== */
.rn-footer-payment {
  display: flex;
  justify-content: flex-start;
}
.rn-payment-img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 60px;
}
@media (max-width: 768px) {
  .rn-payment-img {
    max-height: 56px;
  }
}

/* ===== Bottom bar: copyright ===== */
.rn-footer-bottom {
  border-top: 1px solid rgba(173, 68, 90, 0.15);
  padding: 18px 20px;
  text-align: center;
}
.rn-footer-copyright {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--rn-text-dark, #444);
}
/* ===========================================================
   SIDE CART (sliding mini cart)
   =========================================================== */
.rn-side-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.rn-side-cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.rn-side-cart {
  position: fixed;
  top: 0;
  left: -420px;
  width: 380px;
  max-width: 92vw;
  height: 100vh;
  background: var(--rn-white);
  box-shadow: 5px 0 24px rgba(0, 0, 0, 0.15);
  z-index: 999999;
  transition: left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.rn-side-cart.is-open {
  left: 0;
}

.rn-side-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--rn-cream-border);
  background: var(--rn-cream);
}
.rn-side-cart-header h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--rn-text-black);
}
.rn-side-cart-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--rn-text-dark);
  padding: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rn-side-cart-close:hover {
  color: var(--rn-danger);
}

.rn-side-cart-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}

.rn-side-cart-items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rn-side-cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rn-cream-border);
  align-items: center;
  position: relative;
}
.rn-side-cart-item:last-child {
  border-bottom: none;
}
.rn-sc-thumb img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 1px solid var(--rn-beige);
  border-radius: var(--rn-radius-sm);
  display: block;
}
.rn-side-cart-item-info {
  flex: 1;
  text-align: right;
  min-width: 0;
}
.rn-side-cart-item-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--rn-text-black);
  line-height: 1.4;
  margin-bottom: 4px;
  word-break: break-word;
}
.rn-side-cart-item-name a {
  color: inherit;
}
.rn-side-cart-item-price {
  font-size: 13px;
  color: var(--rn-price-light);
  font-weight: 800;
}
.rn-sc-qty {
  color: var(--rn-text-muted);
  font-weight: 600;
  margin-right: 4px;
}
.rn-side-cart-remove {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--rn-cream);
  color: var(--rn-danger);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  border: 1px solid var(--rn-cream-border);
  transition: background 0.2s ease;
}
.rn-side-cart-remove:hover {
  background: #ffeaea;
}

.rn-side-cart-total {
  padding: 14px 20px;
  border-top: 2px solid var(--rn-beige);
  background: var(--rn-cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 15px;
  color: var(--rn-text-black);
}
.rn-side-cart-total-amount {
  color: var(--rn-blue);
}

.rn-side-cart-actions {
  padding: 14px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--rn-white);
}
.rn-side-cart-actions a {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: var(--rn-radius-xl);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.rn-side-cart-view {
  background: var(--rn-cream-bg);
  color: var(--rn-text-dark);
  border: 1px solid var(--rn-cream-border);
}
.rn-side-cart-view:hover {
  background: var(--rn-cream-border);
}
.rn-side-cart-checkout {
  background: var(--rn-beige);
  color: var(--rn-text-black);
}
.rn-side-cart-checkout:hover {
  background: var(--rn-beige-hover);
}

.rn-side-cart-empty {
  text-align: center;
  padding: 40px 10px;
  color: var(--rn-text-muted);
}
.rn-side-cart-empty p {
  margin-bottom: 16px;
  font-size: 14px;
}
.rn-side-cart-shop-link {
  display: inline-block;
  padding: 10px 24px;
  background: var(--rn-beige);
  color: var(--rn-text-black);
  border-radius: var(--rn-radius-xl);
  font-weight: 700;
  font-size: 14px;
}
.rn-side-cart-shop-link:hover {
  background: var(--rn-beige-hover);
}
/* Side cart MUST always be fixed-positioned. */
.rn-side-cart,
.rn-side-cart-overlay {
  position: fixed !important;
}
.rn-side-cart:not(.is-open) {
  left: -420px;
}
.rn-side-cart-overlay:not(.is-open) {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ===========================================================
   MOBILE — side cart takes half the screen instead of ~full width.
   =========================================================== */
@media (max-width: 600px) {
  .rn-side-cart {
    width: 50vw;
    max-width: 50vw;
    min-width: 240px;
  }
  /* Hide it fully off-screen when closed (overrides the -420px rule
     above, which would only partially hide a narrower panel). */
  .rn-side-cart:not(.is-open) {
    left: calc(-50vw - 20px);
  }
  /* Tighten inner spacing so the narrower panel still reads well */
  .rn-side-cart-header,
  .rn-side-cart-content,
  .rn-side-cart-total,
  .rn-side-cart-actions {
    padding-left: 12px;
    padding-right: 12px;
  }
  .rn-side-cart-item {
    gap: 8px;
  }
  .rn-sc-thumb img {
    width: 48px;
    height: 48px;
  }
  .rn-side-cart-item-name {
    font-size: 12.5px;
  }
}
/* ===========================================================
   HOMEPAGE — "Why Rawaat Al-Naseem" features section
   3 beige boxes, each with an icon + title
   =========================================================== */
.rn-features {
  width: 100%;
  padding: 50px 20px;
  background: var(--rn-white);
  box-sizing: border-box;
}
.rn-features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.rn-features-heading {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: var(--rn-text-black);
  margin: 0 0 35px;
}
.rn-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.rn-feature-box {
  background: var(--rn-cream-bg);
  border: 1px solid var(--rn-border-light);
  border-radius: var(--rn-radius-lg);
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.rn-feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(234, 213, 197, 0.4);
}
.rn-feature-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rn-feature-icon img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  display: block;
}
.rn-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--rn-text-dark);
  margin: 0;
  line-height: 1.5;
}

/* Tablet */
@media (max-width: 900px) {
  .rn-features {
    padding: 40px 16px;
  }
  .rn-features-heading {
    font-size: 22px;
    margin-bottom: 26px;
  }
  .rn-features-grid {
    gap: 16px;
  }
  .rn-feature-box {
    padding: 26px 14px;
    gap: 14px;
  }
}

/* Mobile — stack the 3 boxes vertically */
@media (max-width: 600px) {
  .rn-features {
    padding: 34px 14px;
  }
  .rn-features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .rn-feature-box {
    padding: 24px 18px;
    flex-direction: row;
    text-align: right;
    gap: 16px;
  }
  .rn-feature-icon,
  .rn-feature-icon img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
  }
  .rn-feature-title {
    font-size: 15px;
    text-align: right;
  }
}

/* ===========================================================
   HOMEPAGE — FAQ banner
   Image background + dark overlay + big text + up/down arrows
   =========================================================== */
.rn-faq-banner-section {
  width: 100%;
  padding: 10px 20px 55px;
  background: var(--rn-white);
  box-sizing: border-box;
}
.rn-faq-banner {
  display: block;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  height: 240px;
  border-radius: var(--rn-radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.rn-faq-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}
/* Dark fog overlay */
.rn-faq-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
/* Centered content (arrows + text) */
.rn-faq-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.rn-faq-text {
  color: var(--rn-white);
  font-size: 38px;
  font-weight: 900;
  font-family: 'Cairo', sans-serif;
  text-align: center;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}
.rn-faq-arrow {
  color: var(--rn-white);
  font-size: 20px;
  line-height: 1;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  animation: rn-faq-bounce 1.6s ease-in-out infinite;
}
.rn-faq-arrow-up {
  animation-delay: 0s;
}
.rn-faq-arrow-down {
  animation-delay: 0.2s;
}
@keyframes rn-faq-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}
.rn-faq-arrow-up {
  animation-name: rn-faq-bounce-up;
}
@keyframes rn-faq-bounce-up {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* Tablet */
@media (max-width: 900px) {
  .rn-faq-banner-section {
    padding: 6px 16px 42px;
  }
  .rn-faq-banner {
    height: 200px;
  }
  .rn-faq-text {
    font-size: 30px;
  }
  .rn-faq-arrow {
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .rn-faq-banner-section {
    padding: 4px 14px 36px;
  }
  .rn-faq-banner {
    height: 170px;
    border-radius: var(--rn-radius-md);
  }
  .rn-faq-text {
    font-size: 24px;
  }
  .rn-faq-arrow {
    font-size: 16px;
  }
}

/* ===========================================================
   HOMEPAGE — Hero section
   One responsive image used on every screen. It scales up/down with
   the viewport and always shows in full (no cropping).
   The "جربيها الآن" button is overlaid inside the image, near bottom.
   =========================================================== */
.rn-hero {
  /* Full-bleed: break out of any parent container padding so the
     image touches both screen edges with no white margins. */
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  background: var(--rn-white);
  box-sizing: border-box;
  overflow: hidden;
}
.rn-hero-media {
  position: relative; /* anchor for the overlaid button */
  width: 100%;
  line-height: 0; /* kill inline-image gap */
}
.rn-hero-img {
  display: block;
  width: 100%;
  height: auto;     /* keep the image's natural aspect ratio */
  margin: 0;
}
/* Button overlay — sits inside the image, near the bottom edge */
.rn-hero-cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
  line-height: normal;
}
.rn-hero-btn {
  background: var(--rn-beige);
  color: var(--rn-text-black);
  border: none;
  border-radius: var(--rn-radius-xl);
  padding: 14px 46px;
  font-size: 16px;
  font-weight: 800;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: background 0.2s ease, transform 0.15s ease;
}
.rn-hero-btn:hover {
  background: var(--rn-beige-hover);
  transform: translateY(-2px);
}
.rn-hero-btn:active {
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 900px) {
  .rn-hero-cta {
    bottom: 18px;
    padding: 0 16px;
  }
  .rn-hero-btn {
    padding: 13px 38px;
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .rn-hero-cta {
    bottom: 14px;
    padding: 0 14px;
  }
  .rn-hero-btn {
    width: 100%;
    max-width: 320px;
    padding: 13px 20px;
    font-size: 15px;
  }
}

/* ===========================================================
   HOMEPAGE — About section ("في روعة النسيم")
   Desktop: image LEFT, beige text box RIGHT (2-col grid)
   Mobile:  image on top, text box below (stacked)
   =========================================================== */
.rn-about {
  width: 100%;
  padding: 50px 20px;
  background: var(--rn-white);
  box-sizing: border-box;
}
.rn-about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}
/* Image cell — visually on the LEFT in this RTL layout.
   In RTL, order:1 = rightmost, order:2 = leftmost.
   We want text on the RIGHT and image on the LEFT, so:
   text = order 1 (right), image = order 2 (left). */
.rn-about-media {
  order: 2;
  border-radius: var(--rn-radius-lg);
  overflow: hidden;
  min-height: 100%;
}
.rn-about-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}
/* Beige text box on the RIGHT */
.rn-about-box {
  order: 1;
  background: var(--rn-cream-bg);
  border: 1px solid var(--rn-border-light);
  border-radius: var(--rn-radius-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rn-about-heading {
  font-size: 24px;
  font-weight: 800;
  color: var(--rn-text-black);
  margin: 0 0 16px;
  text-align: right;
}
.rn-about-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--rn-text-dark);
  margin: 0 0 14px;
  text-align: right;
}
.rn-about-text:last-child {
  margin-bottom: 0;
}

/* Tablet */
@media (max-width: 900px) {
  .rn-about {
    padding: 40px 16px;
  }
  .rn-about-inner {
    gap: 22px;
  }
  .rn-about-box {
    padding: 26px 22px;
  }
  .rn-about-heading {
    font-size: 21px;
  }
  .rn-about-text {
    font-size: 14px;
  }
}

/* Mobile — stack: image on top, text box below */
@media (max-width: 768px) {
  .rn-about {
    padding: 34px 14px;
  }
  .rn-about-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .rn-about-media {
    order: 1; /* image first (on top) */
  }
  .rn-about-media img {
    min-height: 240px;
    max-height: 340px;
  }
  .rn-about-box {
    order: 2; /* text below */
    padding: 24px 20px;
  }
  .rn-about-heading {
    font-size: 20px;
    text-align: center;
  }
}
/* ===========================================================
   HOMEPAGE — Banner section (between hero and products)
   Full-bleed responsive image, scales naturally on all devices.
   =========================================================== */
.rn-banner {
    /* Full-bleed: break out of any parent container padding */
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
    background: var(--rn-white);
    box-sizing: border-box;
    overflow: hidden;
    line-height: 0;
}

.rn-banner-media {
    width: 100%;
    line-height: 0;
}

.rn-banner-img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    object-fit: cover;
}

/* Tablet */
@media (max-width: 900px) {
    .rn-banner-img {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .rn-banner-img {
        width: 100%;
    }
}