@charset "UTF-8";
/* ===== Rashrash Computers — Main Stylesheet ===== */
/* Override Bootstrap container max-widths */
@media (min-width: 992px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 980px;
  }
}
@media (min-width: 1200px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container {
    max-width: 1300px;
  }
}
@media (min-width: 1600px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container {
    max-width: 1400px;
  }
}
/* ===== Site Custom Styles ===== */
/* ========== Variables — Figma design tokens (VK63aBxSa6emXTACztsGGc) ========== */
:root {
  --primary: #00A79D;
  --primary-dark: #097273;
  --primary-hover: #0DA8AB;
  --header-bg: #ffffff;
  --nav-bg: #ffffff;
  --nav-sub-bg: #F9FAFB;
  --content-bg: #ffffff;
  --text-on-dark: #ffffff;
  --text-muted: #6B7280;
  --border: #D1D5DC;
  --footer-bg: #101828;
  --footer-bottom-bg: #0A0F1C;
  --citycenter-red: #FB2C36;
  --citycenter-red-dark: #c01020;
  /* Category listing */
  --category-accent: #00A79D;
  --category-accent-hover: #097273;
  --category-filter-header-bg: #F9FAFB;
  --category-filter-spec-group-fallback: #e6f5f4;
  --category-filter-spec-group-gradient: linear-gradient(180deg, #edf8f7 0%, #e0f5f3 45%, #d8f0ee 100%);
  --category-filter-spec-group-border: rgba(0, 167, 157, 0.18);
  --category-filter-spec-group-text: #0a2c2b;
}

* {
  box-sizing: border-box;
}

/* Override Electro theme's red link hover with brand primary */
a:hover, a:focus {
  color: var(--primary);
}

body {
  margin: 0;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--content-bg);
  color: #333;
}

/* ===== Electro Store Overrides ===== */
/* Electro store overrides and RTL/extra */
/* Header logo size - منع اللوجو من السيطرة على الهيدر */
#header .header-logo .logo img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

/* ── RTL: flip Bootstrap pull helpers ── */
[dir=rtl] .pull-left {
  float: right !important;
}

[dir=rtl] .pull-right {
  float: left !important;
}

[dir=rtl] .header-links.pull-left {
  float: right;
}

[dir=rtl] .header-links.pull-right {
  float: left;
}

/* ========== Body: sidebars + main ========== */
.ecom-body {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  min-height: 60vh;
}

@media (min-width: 900px) {
  .ecom-body.with-left-sidebar {
    grid-template-columns: 220px 1fr;
  }
  .ecom-body.with-right-sidebar {
    grid-template-columns: 1fr 200px;
  }
  .ecom-body.with-both {
    grid-template-columns: 220px 1fr 200px;
  }
}
.ecom-main {
  min-width: 0;
}

.ecom-sidebar-left {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 1rem;
  height: fit-content;
}

/* Filter sidebar (category page) */
.filter-sidebar {
  font-size: 0.9rem;
}

.filter-title {
  margin: 0 0 0.75rem 0;
  font-size: 1rem;
  color: #333;
}

.filter-group {
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 0.5rem;
  background: #fff;
}

.filter-group summary {
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}

.filter-group summary::-webkit-details-marker {
  display: none;
}

.filter-group summary::after {
  content: " ›";
  float: right;
}

.filter-group[open] summary {
  background: var(--primary);
  color: #0d0d0d;
  border-radius: 4px 4px 0 0;
}

.filter-group[open] summary::after {
  content: " ∨";
}

.filter-group ul {
  margin: 0;
  padding: 0.5rem 0.75rem;
  list-style: none;
}

.filter-group li {
  padding: 0.25rem 0;
}

.filter-reset {
  display: inline-block;
  margin-top: 0.75rem;
  color: #c00;
  text-decoration: none;
  font-size: 0.85rem;
}

.filter-reset:hover {
  text-decoration: underline;
}

.ecom-sidebar-right {
  background: var(--nav-bg);
  color: var(--text-on-dark);
  border-radius: 8px;
  padding: 1rem;
  height: fit-content;
}

.sidebar-promo-title,
.sidebar-banner-title {
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.sidebar-banner .btn-chat {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: #0d0d0d;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

.sidebar-banner .btn-chat:hover {
  background: var(--primary-hover);
}

/* ========== Floating chat tab (right edge) ========== */
.ecom-chat-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 0.75rem 0.5rem;
  background: var(--primary);
  color: #0d0d0d;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 6px 0 0 6px;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.ecom-chat-tab:hover {
  background: var(--primary-hover);
  color: #0d0d0d;
}

[dir=rtl] .ecom-chat-tab {
  right: auto;
  left: 0;
  border-radius: 0 6px 6px 0;
}

.chat-tab-icon {
  display: block;
  margin-bottom: 0.25rem;
}

/* ── Utility ── */
.pagination-hint {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.subcategories {
  margin-bottom: 2rem;
}

.products-section h2 {
  margin-top: 0;
  font-size: 1.2rem;
}

/* ── Additional inline RTL rules (direction-attribute selectors) ── */
[dir=rtl] .ecom-chat-tab {
  writing-mode: vertical-lr;
}

[dir=rtl] .header-right {
  flex-direction: row-reverse;
}

[dir=rtl] .ecom-nav-inner {
  flex-direction: row-reverse;
}

/* ===== Header ===== */
/* ========== Top Header (black): logo | search | account + cart ========== */
.ecom-header {
  background: var(--header-bg);
  color: var(--text-on-dark);
  padding: 0.6rem 1rem;
}

.ecom-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.header-left {
  flex-shrink: 0;
}

.header-center {
  flex: 1;
  min-width: 200px;
  max-width: 500px;
  margin: 0 auto;
}

.ecom-header .header-search .input-select {
  padding: 0.5rem 0.5rem;
  border: none;
  background: #333;
  color: #fff;
  font-size: 0.9rem;
  border-radius: 0;
}

.ecom-header .header-search .search-input {
  min-width: 120px;
}

.ecom-header .header-search .search-btn {
  flex-shrink: 0;
}

/* City Center: search button black with white text */
.ecom-header .header-search .search-btn {
  background: #000;
  color: #fff;
}

.ecom-header .header-search .search-btn:hover {
  background: #333;
  color: #fff;
}

.header-search {
  display: flex;
  width: 100%;
  border: 1px solid var(--nav-sub-bg);
  border-radius: 4px;
  overflow: hidden;
}

.search-input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: none;
  font-size: 0.95rem;
  background: #fff;
}

.search-btn {
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: #0d0d0d;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.search-btn:hover {
  background: var(--primary-hover);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.header-link {
  color: var(--text-on-dark);
  text-decoration: none;
  font-size: 0.9rem;
}

.header-link:hover {
  color: var(--primary);
}

.header-logout-form {
  display: inline;
}

.header-logout-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--text-on-dark);
  cursor: pointer;
  text-decoration: none;
  font-size: 0.9rem;
}

.header-logout-btn:hover {
  color: var(--primary);
}

.header-cart {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-on-dark);
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  border: 1px solid var(--nav-sub-bg);
  border-radius: 4px;
}

.header-cart:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cart-icon {
  font-size: 1.2rem;
}

.cart-text, .cart-total {
  font-size: 0.85rem;
}

.lang-switcher {
  font-size: 0.9rem;
}

.lang-switcher a {
  color: var(--primary);
  text-decoration: none;
}

.lang-switcher a:hover {
  text-decoration: underline;
}

.lang-sep {
  margin: 0 0.25rem;
  color: #888;
}

/* Logo (from SiteSettings component) */
.header-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-on-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
}

.header-logo-link:hover {
  color: var(--primary);
}

.site-logo {
  height: 36px;
  width: auto;
  display: block;
}

.site-name {
  white-space: nowrap;
}

/* ── RushRash new header tokens ── */
/* =========================
   Header (screenshots)
   ========================= */
.rr-topbar {
  background: rgba(11, 136, 138, 0.04);
  color: var(--rr-gray);
  font-size: 13px;
}

.rr-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.rr-topbar-left, .rr-topbar-center, .rr-topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.rr-topbar-center {
  justify-content: center;
  flex: 1;
}

.rr-topbar-truck {
  color: var(--rr-brand);
}

.rr-topbar-free {
  color: var(--rr-brand);
  font-weight: 700;
}

.rr-topbar-left i, .rr-topbar-right i {
  color: var(--rr-gray);
}

.rr-lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}

.rr-lang-label {
  font-weight: 700;
  color: inherit;
}

.rr-lang a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.rr-lang-menu {
  position: absolute;
  top: 140%;
  right: 0;
  background: #fff;
  border: 1px solid var(--rr-border);
  border-radius: 10px;
  padding: 8px;
  display: none;
  min-width: 90px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  z-index: 50;
}

.rr-lang--open .rr-lang-menu {
  display: block;
}

.rr-lang-menu a {
  display: block;
  padding: 6px 10px;
  border-radius: 8px;
}

.rr-lang-menu a:hover {
  background: #f7f7f7;
}

.rr-header-main {
  border-bottom: 1px solid #F3F4F6;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

/* .rr-header-grid layout handled by Bootstrap row/col in the template */
.rr-header-grid {
  padding: 16px 0;
}

@media (max-width: 991px) {
  .rr-actions {
    justify-content: flex-start;
  }
}
.rr-logo {
  height: 44px;
  width: auto;
  display: block;
}

.rr-search {
  display: flex;
  border: 1px solid var(--rr-border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  min-height: 44px;
  box-shadow: none;
  transition: border-color 0.2s;
  width: 100%;
}

@media (min-width: 992px) {
  .rr-search {
    max-width: 448px;
    margin: 0 auto;
  }
}
.rr-search:focus-within {
  border-color: var(--rr-brand);
}

.rr-search-input {
  flex: 1;
  border: 0;
  padding: 8px 14px;
  font-size: 15px;
  outline: none;
  color: #3a3a3a;
}

.rr-search-btn {
  width: 42px;
  border: 0;
  background: var(--rr-brand);
  color: #fff;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rr-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.rr-icon-btn {
  position: relative;
  color: var(--rr-gray);
  font-size: 22px;
  text-decoration: none;
}

.rr-icon-btn:hover {
  color: var(--rr-text);
}

.rr-cart {
  font-size: 24px;
}

.rr-badge {
  position: absolute;
  top: -4px;
  right: -12px;
  background: var(--rr-brand);
  color: #fff;
  border-radius: 999px;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(11, 136, 138, 0.25);
}

/* ── Mobile side-menu toggle (hamburger) ── */
.rr-side-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.rr-side-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--rr-brand);
  border-radius: 2px;
  transition: background 0.2s;
}

.rr-side-toggle:hover span {
  background: var(--rr-brand-dark, #008b94);
}

/* ── Side menu offcanvas ── */
/* Bootstrap offcanvas CSS is absent from this build — provide it manually */
.rr-side-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 280px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  border-right: none;
  background: #fff;
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform 0.3s ease-in-out, visibility 0s linear 0.3s;
  overflow-y: auto;
}

.rr-side-menu.show {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.3s ease-in-out, visibility 0s linear 0s;
}

.rr-side-menu-header {
  background: var(--rr-brand);
  padding: 18px 20px;
  align-items: center;
}

.rr-side-menu-logo {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.rr-side-menu-close {
  background: none;
  border: none;
  color: #fff;
  padding: 4px;
  cursor: pointer;
  opacity: 0.85;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rr-side-menu-close:hover {
  opacity: 1;
}

.rr-side-menu-body {
  padding: 0;
  overflow-y: auto;
}

.rr-side-menu-body .nav-categories {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rr-side-menu-body .nav-categories a {
  display: block;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--rr-text);
  text-decoration: none;
  border-bottom: 1px solid var(--rr-border);
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}

.rr-side-menu-body .nav-categories a:hover {
  background: #f3f9f9;
  color: var(--rr-brand);
  padding-left: 28px;
}

/* ===== Navigation ===== */
/* ========== Main navigation (dark grey) ========== */
.ecom-nav-main {
  background: var(--nav-bg);
  padding: 0.5rem 1rem;
}

.ecom-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.ecom-nav-main a {
  color: var(--text-on-dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.ecom-nav-main a:hover,
.ecom-nav-main a:focus {
  color: var(--primary);
}

.nav-categories {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-categories a {
  color: var(--text-on-dark);
  text-decoration: none;
  font-size: 0.9rem;
}

.nav-categories a:hover {
  color: var(--primary);
}

/* #navigation styles defined below in the rr-mega-nav section */
/* ========== Sub-navigation (light grey bar under main nav - City Center) ========== */
.citycenter-subnav {
  background: #e4e7ed;
  padding: 0.4rem 0;
}

.citycenter-subnav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.citycenter-subnav-list a {
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
}

.citycenter-subnav-list a:hover {
  color: var(--citycenter-red);
}

.ecom-nav-sub {
  background: var(--nav-sub-bg);
  padding: 0.4rem 1rem;
}

.ecom-nav-sub .ecom-nav-inner {
  max-width: 1400px;
}

.ecom-nav-sub a {
  color: var(--text-on-dark);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
}

.ecom-nav-sub a:hover {
  color: var(--primary);
}

.ecom-nav-sub a.active {
  background: var(--header-bg);
  color: var(--text-on-dark);
}

/* Navigation bar under header (screenshots) */
#navigation {
  background: #fff !important;
  border-top: 1px solid var(--rr-border);
}

#navigation .main-nav > li > a {
  color: var(--rr-gray) !important;
  font-weight: 500;
  font-size: 13px;
}

#navigation .main-nav > li > a:hover,
#navigation .main-nav > li > a:focus {
  color: var(--rr-brand) !important;
}

#navigation .main-nav > li > a:after {
  background-color: transparent;
}

#navigation .dropdown-menu {
  border-radius: 12px;
  border: 1px solid var(--rr-border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ========== Click mega menu ========== */
#navigation.rr-mega-nav {
  position: relative;
  z-index: 1000;
}

#navigation.rr-mega-nav .rr-mega-cluster {
  position: relative;
}

#navigation.rr-mega-nav .rr-mega-top.main-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  float: none;
  width: 100%;
  margin: 0;
  list-style: none;
  padding: 0;
  gap: 0 0.25rem;
}

@media (min-width: 992px) {
  #navigation.rr-mega-nav .rr-mega-top.main-nav {
    gap: 0 1rem;
  }
}
#navigation.rr-mega-nav .rr-mega-top.main-nav > li {
  float: none;
}

#navigation.rr-mega-nav .rr-mega-top.main-nav > li + li {
  margin-left: 0;
}

#navigation.rr-mega-nav .rr-mega-top.main-nav > li:not(.rr-mega-parent) > a {
  display: inline-block;
  padding: 18px 0;
  color: var(--rr-gray);
  font-family: "Open Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
  line-height: 1.2;
}

#navigation.rr-mega-nav .rr-mega-top.main-nav > li:not(.rr-mega-parent) > a:hover,
#navigation.rr-mega-nav .rr-mega-top.main-nav > li.active:not(.rr-mega-parent) > a {
  color: var(--rr-brand);
}

/* Parent with subcategories */
#navigation.rr-mega-nav .rr-mega-parent {
  display: inline-flex;
  align-items: center;
}

#navigation.rr-mega-nav a.rr-mega-trigger {
  display: inline-block;
  padding: 18px 0;
  margin: 0;
  border: none;
  background: transparent;
  color: var(--rr-gray) !important;
  font-family: "Open Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.2;
  cursor: pointer;
  text-align: inherit;
  text-decoration: none;
}

#navigation.rr-mega-nav a.rr-mega-trigger:hover,
#navigation.rr-mega-nav a.rr-mega-trigger:focus {
  color: var(--rr-brand) !important;
  outline: none;
}

#navigation.rr-mega-nav a.rr-mega-trigger:focus-visible {
  outline: 2px solid var(--rr-brand);
  outline-offset: 2px;
  border-radius: 4px;
}

#navigation.rr-mega-nav .rr-mega-parent.active > a.rr-mega-trigger {
  color: var(--rr-brand) !important;
}

#navigation.rr-mega-nav .rr-mega-parent.is-open > a.rr-mega-trigger {
  color: #000 !important;
  font-weight: 700;
  background: #EBF1F8;
  padding-inline: 8px;
  margin-inline: -8px;
}

/* Sub strip */
#navigation.rr-mega-nav .rr-mega-strip-host {
  position: static;
  width: 100%;
  background: #EBF1F8;
}

#navigation.rr-mega-nav .rr-mega-strip-host[hidden] {
  display: none !important;
}

#navigation.rr-mega-nav .rr-mega-panel[hidden] {
  display: none !important;
}

#navigation.rr-mega-nav .rr-mega-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  padding: 12px max(16px, env(safe-area-inset-left)) 14px max(16px, env(safe-area-inset-right));
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

@media (min-width: 576px) {
  #navigation.rr-mega-nav .rr-mega-strip-inner {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  #navigation.rr-mega-nav .rr-mega-strip-inner {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  #navigation.rr-mega-nav .rr-mega-strip-inner {
    max-width: 980px;
  }
}
@media (min-width: 1200px) {
  #navigation.rr-mega-nav .rr-mega-strip-inner {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  #navigation.rr-mega-nav .rr-mega-strip-inner {
    max-width: 1300px;
  }
}
@media (min-width: 1600px) {
  #navigation.rr-mega-nav .rr-mega-strip-inner {
    max-width: 1400px;
  }
}
#navigation.rr-mega-nav .rr-mega-strip-link {
  color: var(--rr-text);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

#navigation.rr-mega-nav .rr-mega-strip-link:hover,
#navigation.rr-mega-nav .rr-mega-strip-link:focus {
  color: var(--rr-brand);
  border-bottom-color: rgba(0, 169, 157, 0.35);
}

@media (max-width: 991px) {
  #navigation.rr-mega-nav .rr-mega-strip-host {
    box-shadow: none;
  }
  #navigation.rr-mega-nav .rr-mega-strip-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 12px 12px 14px;
  }
  #navigation.rr-mega-nav .rr-mega-strip-link {
    white-space: normal;
    padding: 8px 0;
    border-bottom: 1px solid var(--rr-border);
  }
  #navigation.rr-mega-nav .rr-mega-strip-link:last-child {
    border-bottom: none;
  }
  #navigation.rr-mega-nav .rr-mega-parent {
    width: 100%;
  }
  #navigation.rr-mega-nav a.rr-mega-trigger {
    display: block;
    width: 100%;
    text-align: inherit;
    padding: 15px 12px;
  }
  #navigation.rr-mega-nav .rr-mega-parent.is-open > a.rr-mega-trigger {
    margin-inline: 0;
    padding-inline: 12px;
  }
  #navigation.rr-mega-nav .rr-mega-top > li:not(.rr-mega-parent) > a {
    display: block;
    padding: 15px 12px;
    font-size: 13px;
  }
}
/* ===== Hero Section ===== */
/* ── Compat aliases: old class names ── */
.rr-hero-title {
  background: #F9FAFB;
  padding: 48px 0 0;
  text-align: center;
}

.rr-hero-title h1 {
  margin: 0 0 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 36px;
  line-height: 1.15;
}

.rr-hero {
  background: #F9FAFB;
  padding: 0 0 56px;
}

.rr-hero .container {
  padding-left: 64px;
  padding-right: 64px;
}

@media (max-width: 768px) {
  .rr-hero-title h1 {
    font-size: 24px;
  }
  .rr-hero .container {
    padding-left: 48px;
    padding-right: 48px;
  }
}
/* ── Hero section (title + slider unified, matching Figma) ── */
.rr-hero-section {
  background: #F9FAFB;
  padding: 40px 0 48px;
}

.rr-hero-heading {
  margin: 0 0 24px;
  letter-spacing: -0.02em;
  font-size: 36px;
  line-height: 1.15;
  text-align: center;
  color: #1E2939;
}

/* Wrapper gives lateral room for outside arrows */
.rr-hero-slider-wrap {
  position: relative;
  padding: 0 56px;
}

/* Slider: no overflow:hidden here — arrows must escape to sides */
.rr-hero-slider {
  border-radius: 16px;
  background: #D4EFED;
  position: relative;
}

/* Clip slides to rounded corners via slick-list */
.rr-hero-slider .slick-list {
  border-radius: 16px;
  overflow: hidden;
}

.rr-hero-slide {
  outline: none;
}

.rr-hero-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.rr-hero-img {
  height: 340px;
  background-color: #D4EFED;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ── Custom SVG arrow buttons ── */
.rr-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #D1D5DC;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  padding: 0;
  line-height: 1;
}

.rr-hero-arrow svg {
  display: block;
}

.rr-hero-arrow--prev {
  left: 4px;
}

.rr-hero-arrow--next {
  right: 4px;
}

/* RTL: swap sides */
[dir=rtl] .rr-hero-arrow--prev {
  left: auto;
  right: 4px;
}

[dir=rtl] .rr-hero-arrow--next {
  right: auto;
  left: 4px;
}

.rr-hero-arrow:hover {
  background: var(--rr-brand);
  border-color: var(--rr-brand);
  box-shadow: 0 4px 14px rgba(0, 167, 157, 0.28);
}

.rr-hero-arrow:hover svg {
  stroke: #fff;
}

/* Hide slick's built-in arrows since we use custom */
.rr-hero-slider .slick-prev,
.rr-hero-slider .slick-next {
  display: none !important;
}

@media (max-width: 768px) {
  .rr-hero-section {
    padding: 28px 0 36px;
  }
  .rr-hero-heading {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .rr-hero-slider-wrap {
    padding: 0 44px;
  }
  .rr-hero-img {
    height: 220px;
  }
  .rr-hero-arrow {
    width: 36px;
    height: 36px;
  }
}
/* Hero banner (generic) */
.section-hero {
  margin-bottom: 0;
}

.citycenter-hero {
  background: #fff;
  padding: 2rem 0;
}

.citycenter-hero-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.citycenter-hero-left {
  padding: 1rem 0;
}

.citycenter-hero-powered {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 0.5rem;
}

.citycenter-hero-logo {
  margin-bottom: 0.75rem;
}

.citycenter-hero-logo img {
  max-height: 48px;
  width: auto;
}

.citycenter-hero-title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.citycenter-hero-desc {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

.citycenter-hero-right {
  padding: 0;
}

.citycenter-hero-img-wrap {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  background-color: #f0f0f0;
  border-radius: 8px;
}

.hero-banner-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.hero-banner {
  min-height: 320px;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  position: relative;
}

.hero-banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 3rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
}

.hero-banner-title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* ===== Categories ===== */
.rr-section-title {
  text-align: center;
  color: var(--rr-brand);
  font-weight: 700;
  margin: 0 0 8px;
  font-size: 26px;
  letter-spacing: -0.01em;
}

.rr-section-sub {
  text-align: center;
  color: var(--rr-muted);
  font-size: 14px;
  margin: 0 auto 28px;
  max-width: 640px;
  line-height: 1.6;
}

.rr-categories {
  background: #fff;
  padding: 40px 0;
}

/* .rr-categories-grid layout handled by Bootstrap row-cols in the template */
.rr-cat-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  background: #EBEBEB;
  transition: transform 0.15s, background 0.15s;
}

.rr-cat-card:hover {
  background: #DCDCDC;
  transform: translateY(-2px);
}

.rr-cat-card:focus-visible {
  outline: 2px solid var(--rr-brand);
  outline-offset: 2px;
}

.rr-cat-top {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .rr-cat-top {
    height: 100px;
  }
}
.rr-cat-bottom {
  background: #fafafa;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 10px;
  color: var(--rr-text);
}

.rr-cat-img {
  width: 92px;
  height: 72px;
  border-radius: 10px;
  background: #d7d7d7;
}

@media (min-width: 992px) {
  .rr-cat-img {
    width: 100px;
    height: 80px;
  }
}
.rr-cat-real-img {
  width: 92px;
  height: 72px;
  object-fit: contain;
}

.rr-cat-img-new {
  background: #d7d7d7;
}

.rr-cat-img-laptop {
  background: #d7d7d7;
}

.rr-cat-img-pc {
  background: #d7d7d7;
}

.rr-cat-img-gaming-laptop {
  background: #d7d7d7;
}

.rr-cat-img-2in1 {
  background: #d7d7d7;
}

.rr-cat-img-monitor {
  background: #d7d7d7;
}

.rr-cat-img-parts {
  background: #d7d7d7;
}

.rr-cat-img-others {
  background: #d7d7d7;
}

/* Generic categories grid (non-RR) */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.category-card {
  background: #f5f5f5;
  padding: 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  text-align: center;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.category-card:hover {
  background: var(--primary);
  color: #0d0d0d;
  border-color: var(--primary-dark);
}

.category-name {
  font-weight: 600;
  font-size: 0.95rem;
}

/* ========== Content: hero, page title, grids ========== */
.hero {
  text-align: center;
  padding: 2.5rem 1rem;
  background: linear-gradient(135deg, #f0f9f8 0%, #e0f7f5 100%);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: #1a1a1a;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--primary-dark);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-title {
  margin-bottom: 1.25rem;
}

.page-title h1 {
  margin: 0;
  color: #1a1a1a;
  font-size: 1.5rem;
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.product-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
  background: #fff;
}

.product-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.product-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.55);
  border-color: var(--primary);
}

.product-card {
  position: relative;
}

.product-badge-new {
  position: absolute;
  top: 0;
  left: 0;
  background: #c00;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  z-index: 1;
}

.product-img-placeholder {
  aspect-ratio: 1;
  background: #f0f0f0;
}

.cat-page-title {
  margin-bottom: 1rem;
}

.cat-page-title h1 {
  margin: 0;
  font-size: 1.5rem;
  color: #1a1a1a;
}

.cat-subcategories {
  margin-bottom: 1.5rem;
}

.cat-sub-grid {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.cat-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.cat-toolbar-left, .cat-toolbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cat-view-btn {
  padding: 0.35rem 0.6rem;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1rem;
}

.cat-view-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #0d0d0d;
}

.cat-compare {
  color: var(--primary-dark);
  text-decoration: none;
  font-size: 0.9rem;
}

.cat-compare:hover {
  text-decoration: underline;
}

.cat-select {
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.9rem;
}

.product-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: #f5f5f5;
}

.product-name {
  display: block;
  padding: 0.6rem;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.3;
}

.product-price {
  display: block;
  padding: 0 0.6rem 0.6rem;
  color: var(--primary-dark);
  font-weight: 600;
}

/* All Categories page */
.rr-allcat-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 0.9rem 0;
}

.rr-allcat-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rr-allcat-head-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.rr-allcat-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  color: #444;
  font-size: 1rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
}

.rr-allcat-back:hover {
  border-color: #008b94;
  color: #008b94;
}

.rr-allcat-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.rr-allcat-breadcrumb {
  font-size: 0.875rem;
  color: #888;
}

.rr-allcat-breadcrumb a {
  color: #008b94;
  text-decoration: none;
}

.rr-allcat-breadcrumb a:hover {
  text-decoration: underline;
}

.rr-allcat-bc-sep {
  margin: 0 0.4rem;
  color: #ccc;
}

.rr-allcat-page {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 2rem 0 3rem;
}

.rr-allcat-empty {
  color: #888;
  font-size: 1rem;
  padding: 2rem 0;
}

.rr-allcat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1100px) {
  .rr-allcat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 800px) {
  .rr-allcat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 540px) {
  .rr-allcat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.rr-allcat-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  background: #EBEBEB;
  transition: transform 0.15s, background 0.15s;
}

.rr-allcat-card:hover {
  background: #DCDCDC;
  transform: translateY(-2px);
}

.rr-allcat-card:focus-visible {
  outline: 2px solid var(--rr-brand);
  outline-offset: 2px;
}

.rr-allcat-card-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rr-allcat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

.rr-allcat-card-name {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 10px;
  color: var(--rr-text);
}

/* ===== Flash Sale + Product Cards ===== */
.rr-flash-banner {
  padding: 40px 0px;
}

.rr-flash-pill {
  background: #101828;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 48px;
  line-height: 1.1;
  white-space: pre-line;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(0, 167, 157, 0.6), 0 0 30px rgba(0, 167, 157, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.rr-flash-banner-img-link {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  /* Keep banner height reasonable on all screens */
  max-height: clamp(140px, 18vw, 260px);
}

.rr-flash-banner-img {
  width: 100%;
  height: 100px;
  object-fit: scale-down;
  object-position: center;
  display: block;
  background-color: #202339;
}

.rr-flash-products {
  padding: 10px 0 44px;
}

.rr-flash-slider .slick-slide {
  padding: 0 14px;
}

.rr-flash-slider {
  margin: 0 -14px;
}

/* Equal-height cards: make slick track a flex row */
.rr-flash-slider .slick-track {
  display: flex;
  align-items: stretch;
}

.rr-flash-slider .slick-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

.rr-flash-slider .slick-slide > div {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rr-flash-item {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.rr-product-card {
  background: var(--rr-card, #fff);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--rr-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rr-border);
  transition: box-shadow 0.2s, transform 0.15s;
}

.rr-product-card:hover {
  box-shadow: var(--rr-shadow-hover);
  transform: translateY(-3px);
}

.rr-product-media {
  position: relative;
}

.rr-sale-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--rr-sale);
  color: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  font-weight: 700;
  font-size: 12px;
}

.rr-product-img-link {
  display: block;
  height: 190px;
  background: #e9e9e9;
  text-decoration: none;
}

.rr-product-img-real {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f5f5f5;
  display: block;
}

.rr-product-body {
  padding: 22px 22px 20px;
}

.rr-product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.rr-product-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.22;
  margin-bottom: 10px;
}

.rr-product-title-link {
  display: block;
  color: var(--rr-text);
  text-decoration: none;
}

.rr-product-title-link:hover {
  text-decoration: underline;
}

.rr-product-desc {
  font-size: 13.5px;
  color: #808080;
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.5em;
}

.rr-product-prices {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  margin-top: auto; /* push prices + countdown + button to bottom */
}

.rr-old {
  color: #FB2C36;
  text-decoration: line-through;
  font-weight: 500;
  font-size: 18px;
  display: flex;
}

.rr-old small {
  font-size: 12px;
  margin-top: 2px;
  padding-inline-start: 2px;
}

.rr-new {
  font-weight: 700;
  font-size: 18px;
  display: flex;
}

.rr-new small {
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
  padding-inline-start: 2px;
}

.rr-countdown {
  margin: 10px 0 16px;
  display: flex;
  justify-content: center;
}

.rr-countdown-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(251, 44, 54, 0.1);
  line-height: 1;
}

.rr-countdown-main {
  font-family: "Digital-7 Mono", "Digital-7", ui-monospace, monospace;
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--rr-sale);
}

.rr-countdown-sec {
  font-family: "Digital-7 Mono", "Digital-7", ui-monospace, monospace;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--rr-sale);
  opacity: 0.85;
}

.rr-countdown--empty .rr-countdown-pill {
  visibility: hidden;
}

.rr-add {
  display: block;
  text-align: center;
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: var(--rr-brand);
  color: #fff;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

.rr-add:hover {
  background: var(--primary-dark);
  color: #fff;
}

.rr-add i {
  margin-right: 8px;
}

.rr-add-link {
  cursor: pointer;
}

.rr-add-form {
  margin: 0;
}

/* ===== Mobile peek slider ===== */
@media (max-width: 767px) {
  .rr-flash-products { overflow: hidden; }
  .rr-flash-slider { margin: 0; }
  .rr-flash-slider .slick-list {
    overflow: visible !important;
    padding: 0 80px 0 0 !important;
  }
  .rr-flash-slider .slick-slide { padding: 0 10px 0 0; }
}

/* RTL: peek on left side */
@media (max-width: 767px) {
  [dir="rtl"] .rr-flash-slider .slick-list {
    padding: 0 0 0 80px !important;
  }
  [dir="rtl"] .rr-flash-slider .slick-slide { padding: 0 0 0 10px; }
}

/* ===== Banners, Clients, Newsletter, WhatsApp ===== */
.rr-main-sections {
  padding: 40px 0 40px;
  background-color: white;
}

/* .rr-two-banners layout handled by Bootstrap row/col in the template */
.rr-two-banners {
  margin-top: 18px;
}

.rr-banner {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  position: relative;
  height: 300px;
  background: #222;
  background-size: cover;
  background-position: center;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.rr-banner:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-4px);
  filter: brightness(1.12);
}

.rr-banner-hw {
  background: linear-gradient(135deg, #111 0%, #3a3a3a 100%);
}

.rr-banner-gaming {
  background: linear-gradient(135deg, #000 0%, #2f2f2f 100%);
}

.rr-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
}

.rr-banner-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.rr-banner-desc {
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.5;
}

.rr-clients {
  padding: 30px 0 40px;
}

.rr-client {
  outline: none;
}

/* Keep arrows visible inside the container on all screen sizes */
.rr-clients-slider {
  position: relative;
  padding: 0 50px;
}

.rr-cl-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #d1d5db;
  background: #fff;
  color: #6b7280;
  font-size: 16px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.rr-cl-arrow--prev { left: 0; }
.rr-cl-arrow--next { right: 0; }

.rr-cl-arrow:hover {
  border-color: var(--rr-brand, #00a89c);
  background: var(--rr-brand, #00a89c);
  color: #fff;
}

[dir="rtl"] .rr-cl-arrow--prev { left: auto; right: 0; }
[dir="rtl"] .rr-cl-arrow--next { right: auto; left: 0; }

.rr-client-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  background: #ddd;
  border-radius: 14px;
}

.rr-client-logo-img {
  width: 105px;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
}

.rr-newsletter {
  padding: 40px 0 40px;
  background-color: white;
}

.rr-subscribe {
  max-width: 640px;
  margin: 18px auto 0;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d9e6e6;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.rr-email {
  flex: 1;
  border: 0;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
}

.rr-sub-btn {
  border: 0;
  background: var(--rr-brand);
  color: #fff;
  padding: 0 26px;
}

.rr-newsletter-msg {
  text-align: center;
  margin-top: 0.75rem;
  color: var(--rr-brand);
  font-weight: 600;
}

.rr-whats-text {
  text-align: center;
  color: var(--rr-muted);
  font-size: 14px;
  margin-top: 18px;
}

.rr-whats {
  width: fit-content;
  margin: 14px auto 0;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e7f0f0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.rr-whats-num {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 32px;
}

.rr-whats-btn {
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
}

/* ========== Promo section - City Center ========== */
.section-promo {
  padding: 0;
}

.promo-info-bar {
  background: #e4e7ed;
  color: #333;
  padding: 0.6rem 0;
}

.promo-info-bar .promo-banner-row {
  min-height: 40px;
  align-items: center;
}

.promo-info-bar .promo-tagline {
  font-size: 0.9rem;
  margin-right: 0.5rem;
}

.promo-info-bar .promo-tagline-1 {
  font-weight: 700;
}

.promo-center-info .promo-fb-link {
  color: #333;
  text-decoration: none;
}

.promo-center-info .promo-fb-link:hover {
  color: var(--citycenter-red);
}

.promo-info-bar .promo-right-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-right: 0.25rem;
}

.promo-info-bar .promo-right-text {
  font-size: 0.85rem;
  color: #555;
}

.promo-full-banner {
  position: relative;
  min-height: 200px;
  background: #1a1a1a;
  overflow: hidden;
}

.promo-full-banner .promo-banner-link {
  display: block;
  position: relative;
  min-height: 200px;
  color: #fff;
  text-decoration: none;
}

.promo-full-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.85;
}

.promo-full-banner-overlay {
  position: relative;
  z-index: 1;
  padding: 2.5rem 2rem;
}

.promo-full-banner-title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.promo-banner-row {
  min-height: 80px;
}

.promo-tagline {
  font-size: 0.9rem;
}

.promo-tagline-1 {
  font-weight: 700;
}

.promo-center .promo-banner-link {
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

.promo-banner-img {
  max-height: 60px;
  width: auto;
}

.promo-banner-title {
  margin: 0.5rem 0 0;
  font-size: 1.1rem;
}

.promo-fb-link {
  color: var(--primary);
  display: inline-block;
  margin-bottom: 0.25rem;
}

.promo-right-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.promo-right-text {
  font-size: 0.85rem;
  color: #ccc;
}

/* ========== Quick links strip (icon row under hero) ========== */
.section-quick-links {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.quick-links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.quick-link-col {
  flex: 0 0 auto;
}

.quick-link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  min-width: 90px;
}

.quick-link-item:hover {
  background: #f5f5f5;
  color: var(--primary);
}

.quick-link-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  background: var(--border);
}

.quick-link-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-link-icon-placeholder {
  font-size: 1.25rem;
  color: var(--primary);
}

.quick-link-label {
  font-size: 0.8rem;
  font-weight: 500;
}

/* ========== Flash sale banner (under quick links) ========== */
.section-flash-sale {
  padding: 0.5rem 0 1.25rem;
}

.flash-sale-banner {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(150px, 22vw, 280px);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  line-height: 0;
}

.flash-sale-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.flash-sale-banner-link:hover .flash-sale-img {
  opacity: 0.96;
}

.flash-sale-banner-link:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

/* ========== Mid-page two banners ========== */
.section-mid-banners {
  padding: 2rem 0;
}

.mid-banner {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
  min-height: 180px;
  display: flex;
  align-items: center;
  padding: 1.5rem;
}

.mid-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.mid-banner-content {
  position: relative;
  z-index: 1;
}

.mid-banner-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.mid-banner-text {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: #555;
}

.mid-banner-btn {
  background: var(--citycenter-red);
  color: #fff;
  border: none;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  border-radius: 4px;
}

.mid-banner-btn:hover {
  background: var(--citycenter-red-dark);
  color: #fff;
}

/* ========== Featured blocks (two columns: teal + orange) ========== */
.section-featured-blocks {
  padding: 2rem 0;
}

.featured-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border-radius: 8px;
  min-height: 220px;
  gap: 1.5rem;
}

.featured-block-teal {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #0d0d0d;
}

.featured-block-orange {
  background: linear-gradient(135deg, #c45a11 0%, #e87c2c 100%);
  color: #fff;
}

.featured-block-content {
  flex: 1;
}

.featured-block-title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
}

.featured-block-desc {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  opacity: 0.95;
}

.featured-block-btn {
  background: var(--citycenter-red);
  color: #fff;
  border: 2px solid var(--citycenter-red);
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
}

.featured-block-btn:hover {
  background: var(--citycenter-red-dark);
  border-color: var(--citycenter-red-dark);
  color: #fff;
}

.featured-block-img-wrap {
  flex-shrink: 0;
  max-width: 45%;
}

.featured-block-img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* ===== Footer ===== */
/* Generic ecom footer */
.ecom-footer {
  margin-top: 2rem;
  background: var(--footer-bg);
  color: var(--text-on-dark);
}

.ecom-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.footer-col h4 {
  margin: 0 0 0.75rem 0;
  font-size: 0.95rem;
  color: var(--primary);
}

.footer-col a {
  display: block;
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-company p {
  margin: 0.35rem 0;
  font-size: 0.9rem;
  color: #ccc;
}

.ecom-footer-bottom {
  background: var(--footer-bottom-bg);
  padding: 0.75rem 1rem;
  text-align: center;
}

.ecom-footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #999;
}

/* #bottom-footer background and copyright handled by the rr-mega-nav/footer system below */
/* Footer top bar (red strip like City Center) */
.ecom-footer-bar {
  background: #8b0000;
  height: 4px;
}

.ecom-footer-inner {
  padding-top: 1.5rem;
}

/* RushRash brand footer */
.rr-footer {
  background: var(--rr-footer);
  color: #fff;
  margin-top: 22px;
}

/* .rr-footer-grid layout handled by Bootstrap row/col in the template */
.rr-footer-grid {
  padding: 48px 0;
}

.rr-footer-col h4 {
  margin: 0 0 14px;
  font-size: 14px;
}

.rr-footer-col a {
  display: block;
  color: #cfcfcf;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 10px;
}

.rr-footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.rr-footer-logo {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: #fff;
}

.rr-footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.rr-footer-logo span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.25em;
  opacity: 0.65;
  margin-top: 2px;
  color: #D1D5DC;
}

.rr-footer-contact {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rr-footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #cfcfcf;
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
}

.rr-footer-contact-row:hover {
  color: #fff;
  text-decoration: none;
}

.rr-fc-icon {
  color: var(--rr-brand);
  width: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.rr-fc-ext {
  color: #cfcfcf;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 3px;
  margin-left: 4px;
  opacity: 0.7;
}

.rr-footer-addr {
  cursor: pointer;
}

.rr-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.rr-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s;
}

.rr-social-btn:hover {
  background: var(--rr-brand);
  color: #fff;
  text-decoration: none;
}

.rr-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  color: #cfcfcf;
  font-size: 13px;
}

.rr-pay {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.rr-pay-badge-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
}

/* Global footer (#footer, #bottom-footer) */
#footer {
  background: var(--rr-footer);
  color: #fff;
}

#footer .section {
  background: transparent;
}

.rr-footer-wrap {
  padding: 42px 0;
}

/* #footer .rr-footer-grid layout handled by Bootstrap row/col */
#footer .rr-footer-col h4 {
  margin: 0 0 14px;
  font-size: 14px;
  color: #fff;
}

#footer .rr-footer-col a {
  display: block;
  color: #cfcfcf;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 10px;
}

#footer .rr-footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

#footer .rr-footer-logo {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.08em;
}

#footer .rr-footer-logo span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.25em;
  opacity: 0.7;
  margin-top: 2px;
}

#footer .rr-footer-contact {
  margin-top: 16px;
}

#footer .rr-footer-subaddr {
  padding-left: 24px;
}

#footer .rr-social {
  display: flex;
  gap: 10px;
}

#footer .rr-social a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

#bottom-footer {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#bottom-footer .rr-footer-bottom {
  padding: 22px 0;
}

#bottom-footer .rr-copy {
  color: #cfcfcf;
}

#bottom-footer .rr-copy .copyright {
  color: #cfcfcf;
}

/* Unified site footer (Shared/_SiteFooter) */
.rr-footer-bottom .rr-copy,
.rr-footer-bottom .rr-copy .copyright {
  color: #cfcfcf;
}

#bottom-footer .rr-pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  background: transparent;
  color: #fff;
  opacity: 0.85;
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
}

#bottom-footer .rr-pay-badge i {
  font-size: 22px;
}

/* Payment logos (images) in footer */
#bottom-footer .rr-pay-badge.rr-pay-badge-img {
  padding: 0;
  opacity: 1;
  min-width: 0;
  height: auto;
}

#bottom-footer .rr-pay {
  gap: 10px;
  align-items: center;
}

.rr-pay-logo {
  height: auto;
  width: 40px;
  object-fit: contain;
}

/* ===== Category Page ===== */
/* RushRash home tokens (used throughout category pages) */
:root {
  --rr-brand: #00A79D;
  --rr-text: #101828;
  --rr-muted: #6B7280;
  --rr-bg: #F9FAFB;
  --rr-card: #ffffff;
  --rr-shadow: 0 2px 12px rgba(0,0,0,0.08);
  --rr-shadow-hover: 0 6px 24px rgba(0,0,0,0.14);
  --rr-soft: #F3F4F6;
  --rr-soft-2: #F9FAFB;
  --rr-sale: #FB2C36;
  --rr-count-bg: #fff0f1;
  --rr-footer: #101828;
  --rr-topbar: #ffffff;
  --rr-border: #D1D5DC;
  --rr-gray: #1E2939;
}

.rr-home {
  background: var(--rr-bg);
  color: var(--rr-text);
}

.rr-brand {
  color: var(--rr-brand);
}

/* ──────────── Category page layout ──────────── */
.rr-category-details {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 0.9375rem;
  color: #333;
}

/* Rushrash category header: back + title | breadcrumb (matches reference layout) */
.category-page-head-wrap {
  background: #F5F8FC;
  width: 100%;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.rr-category-details .category-page-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 0.875rem 0;
}

.rr-category-details .category-page-head-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.rr-category-details .category-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  background: #fff;
  color: #555;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.rr-category-details .category-back-btn:hover {
  border-color: var(--category-accent);
  color: var(--category-accent);
}

.rr-category-details .category-page-title--inline {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.2;
}

.rr-category-details .category-page-head-breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  color: #888;
}

.rr-category-details .category-page-head-breadcrumb li {
  display: inline;
}

.rr-category-details .category-page-head-breadcrumb a {
  color: var(--rr-brand);
  text-decoration: none;
}

.rr-category-details .category-page-head-breadcrumb a:hover {
  text-decoration: underline;
}

.rr-category-details .category-page-head-breadcrumb li.active {
  color: #555;
  font-weight: 500;
}

/* Numbered pagination (reference: teal active page) */
.category-pagination-wrap {
  padding-top: 1.25rem;

  text-align: center;
}

.category-pagination {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.category-page-nav,
.category-page-num {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  color: #444;
  text-decoration: none;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.category-page-num:hover {
  border-color: var(--category-accent);
  color: var(--category-accent);
}

.category-page-num.is-active {
  background: var(--category-accent);
  border-color: var(--category-accent);
  color: #fff;
  cursor: default;
}

.category-page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 40px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #666;
  user-select: none;
}

.category-page-nav:hover:not(.is-disabled) {
  border-color: var(--category-accent);
  color: var(--category-accent);
}

.category-page-nav.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.category-page-breadcrumb {
  padding: 1rem 0;
  background: #f8f9fa;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.category-page-breadcrumb .breadcrumb-tree {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: #666;
}

.category-page-breadcrumb .breadcrumb-tree li {
  display: inline;
}

.category-page-breadcrumb .breadcrumb-tree li a {
  color: #333;
  text-decoration: none;
}

.category-page-breadcrumb .breadcrumb-tree li a:hover {
  color: var(--category-accent);
}

.category-page-breadcrumb .breadcrumb-tree li.active {
  color: #333;
  font-weight: 500;
}

.breadcrumb-sep {
  margin: 0 0.35rem;
  color: #999;
}

.category-page-breadcrumb-uppercase {
  text-transform: uppercase;
}

.category-page-breadcrumb-uppercase a {
  text-transform: uppercase;
}

/* Category page: left sidebar */
.rr-category-details .category-sidebar {
  padding-inline-end: 1.75rem;
  margin-bottom: 1.75rem;
}

@media (max-width: 991.98px) {
  .rr-category-details .category-sidebar {
    padding-inline-end: 0;
  }
}
.category-filters {
  background: #fff;
  border: 1px solid #ebebeb;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
}

/*.category-filters-citycenter.category-sidebar-filter-form {
    padding: 0.65rem 0.85rem 0.15rem;
}*/
.category-filters-citycenter .filter-block {
  border-bottom: none;
}

.category-filters-citycenter .filter-spec-group-heading {
  padding: 0.7rem 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: #0d3b35;
  background: #D8F5F2;
  /*    border-radius: 8px;
  */
  border: none;
  box-shadow: none;
  line-height: 1.35;
}

.category-filters-citycenter .filter-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  padding: 0;
  min-height: 44px;
  border: none;
  border-bottom: 1px solid #f0f0f0;
}

.category-filters-citycenter .filter-item-row:last-child {
  border-bottom: none;
}

.category-filters-citycenter .filter-row-btn {
  flex: 1;
  padding: 0.6rem 0.5rem 0.6rem 0.35rem;
  background: none;
  border: none;
  text-align: start;
  font-size: 0.875rem;
  font-weight: 400;
  color: #374151;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.35;
}

.category-filters-citycenter .filter-row-btn:hover {
  color: var(--category-accent);
}

.category-filters-citycenter .filter-row-arrow {
  font-size: 0.65rem;
  color: #9ca3af;
  padding: 0 0.35rem 0 0.5rem;
  flex-shrink: 0;
  transition: transform 0.22s ease, color 0.15s;
}

/* Chevron: right → rotates 90° to point down when expanded */
.category-filters-citycenter .filter-row-btn[aria-expanded=true] ~ .filter-row-arrow,
.category-filters-citycenter .filter-row-btn:not(.collapsed) ~ .filter-row-arrow {
  transform: rotate(90deg);
  color: var(--category-accent);
}

.category-filters-citycenter .filter-row-content {
  padding: 0;
  margin: 0;
  background: #fff;
  overflow: hidden;
}

.category-filters-citycenter .filter-row-content.collapse:not(.show):not(.in) {
  display: none;
  padding: 0 !important;
  margin: 0;
  border: none;
  max-height: 0;
  min-height: 0;
  overflow: hidden;
}

.category-filters-citycenter .filter-row-content.collapsing {
  padding: 0 !important;
  margin: 0 !important;
  border: none;
  overflow: hidden !important;
  min-height: 0;
}

.category-filters-citycenter .filter-row-content.collapse.show,
.category-filters-citycenter .filter-row-content.collapse.in {
  display: block;
  height: auto;
  max-height: none;
  padding: 0.2rem 0.5rem 0.75rem 0.35rem;
  overflow: visible;
}

.category-filters-citycenter .filter-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.45rem 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: #333;
  line-height: 1.35;
  cursor: pointer;
}

.category-filters-citycenter .filter-check input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.2rem 0 0;
  flex-shrink: 0;
  border: 1px solid #bdbdbd;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.category-filters-citycenter .filter-check input[type=checkbox]:hover {
  border-color: #999;
}

.category-filters-citycenter .filter-check input[type=checkbox]:focus {
  outline: 2px solid color-mix(in srgb, var(--category-accent) 45%, transparent);
  outline-offset: 2px;
}

.category-filters-citycenter .filter-check input[type=checkbox]:checked {
  background-color: var(--category-accent);
  border-color: var(--category-accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6L5 8.5L9.5 3.5' stroke='%23fff' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 0.65rem;
  background-position: center;
  background-repeat: no-repeat;
}

.category-filters-citycenter .filter-count {
  font-size: 0.875rem;
  color: #555;
  font-weight: 500;
}

.category-filters-citycenter .filter-price-inputs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.category-filters-citycenter .filter-price-inputs .input {
  width: 5.5rem;
  padding: 0.5rem 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
}

.category-filters-citycenter .filter-price-inputs .input:focus {
  border-color: var(--category-accent);
  outline: none;
}

.category-filters-citycenter .filter-price-inputs span {
  color: #666;
  font-weight: 500;
}

.category-filters-citycenter .filter-price-hint {
  font-size: 0.8rem;
  color: #666;
  margin: 0.35rem 0 0;
}

/* Dual-handle price range */
.category-filters-citycenter .filter-price-range-ui {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.25rem;
}

.category-filters-citycenter .filter-range-track-wrap {
  position: relative;
  height: 28px;
  margin: 0.25rem 0 0.5rem;
}

.category-filters-citycenter .filter-range-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  border-radius: 999px;
  background: #e0e0e0;
}

.category-filters-citycenter .filter-range-fill {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  border-radius: 999px;
  background: var(--category-accent);
  pointer-events: none;
  z-index: 1;
  left: 0;
  width: 0;
}

.category-filters-citycenter .filter-range-thumb {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 28px;
  margin: 0;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  accent-color: transparent;
}

.category-filters-citycenter .filter-range-thumb::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--category-accent);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.category-filters-citycenter .filter-range-thumb::-moz-range-thumb {
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--category-accent);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border: 2px solid #fff;
}

.category-filters-citycenter .filter-range-thumb::-webkit-slider-runnable-track {
  background: transparent !important;
  height: 6px;
}

.category-filters-citycenter .filter-range-thumb::-moz-range-track {
  background: transparent !important;
  height: 6px;
  border: none;
}

.category-filters-citycenter .filter-range-thumb::-moz-range-progress {
  background: transparent !important;
}

.category-filters-citycenter .filter-range-min {
  z-index: 2;
}

.category-filters-citycenter .filter-range-max {
  z-index: 3;
}

.category-filters-citycenter .filter-price-inputs--jod {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 0 0.5rem;
}

/* Grid: row1 = label (spans 2 cols), row2 = input | JOD */
.category-filters-citycenter .filter-price-field {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 0.35rem;
  row-gap: 0.2rem;
  flex: 1;
  min-width: 0;
  margin: 0;
}

.category-filters-citycenter .filter-price-field-label {
  grid-column: 1/-1;
  grid-row: 1;
  font-size: 0.75rem;
  color: #888;
}

.category-filters-citycenter .filter-price-field .input {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  padding: 0.45rem 0.5rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.875rem;
  color: #1a1a1a;
}

.category-filters-citycenter .filter-price-field .input:focus {
  border-color: var(--category-accent);
  outline: none;
}

.category-filters-citycenter .filter-price-unit {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.75rem;
  font-weight: 600;
  color: #555;
  align-self: center;
  margin-top: 0;
  white-space: nowrap;
}

/* "To" separator: aligns with the input row */
.category-filters-citycenter .filter-price-to {
  font-size: 0.75rem;
  color: #888;
  flex-shrink: 0;
  align-self: flex-end;
  padding-bottom: 0.55rem;
  white-space: nowrap;
}

.category-filters-citycenter .filter-empty {
  font-size: 0.85rem;
  color: #888;
  margin: 0.25rem 0;
}

.category-filters-citycenter .filter-actions {
  clear: both;
  padding: 1rem 0.35rem 0.65rem;
  margin-top: 0.5rem;
  border-top: 1px solid #ececec;
  background: #fff;
  display: flex;
  gap: 0.5rem;
}

.category-filters-citycenter .filter-actions .btn {
  flex: 1;
  min-width: 0;
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  line-height: 1.5;
  font-weight: 600;
}

.category-filters-citycenter .filter-actions .btn-primary,
.category-filters-citycenter .category-filter-apply {
  background: var(--category-accent) !important;
  border-color: var(--category-accent) !important;
  color: #fff !important;
}

.category-filters-citycenter .filter-actions .btn-primary:hover,
.category-filters-citycenter .category-filter-apply:hover {
  background: var(--category-accent-hover) !important;
  border-color: var(--category-accent-hover) !important;
  color: #fff !important;
}

.category-filters-citycenter .filter-reset-btn {
  font-size: 0.875rem;
}

.rr-category-details .category-main {
  margin-bottom: 1.5rem;
  padding-inline-start: 0.35rem;
}

@media (max-width: 991.98px) {
  .rr-category-details .category-main {
    padding-inline-start: 0;
  }
}
.rr-category-details.category-page-section,
.category-page-section.rr-category-details {
  padding: 0 0 2.25rem;
}

.category-page-section {
  padding: 1.5rem 0 2rem;
  display: block;
  visibility: visible;
  min-height: 200px;
}

.category-page-title {
  margin: 0 0 1.25rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: none;
}

/* Subcategory cards */
.category-subgrid {
  margin-bottom: 1.25rem;
  display: block;
  visibility: visible;
}

.category-subgrid-heading {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: none;
}

.category-subgrid-row {
  width: 100%;
}

.category-subcard {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  background: #EBEBEB;
  transition: transform 0.15s, background 0.15s;
}

.category-subcard:hover {
  background: #DCDCDC;
  transform: translateY(-2px);
}

.category-subcard:focus-visible {
  outline: 2px solid var(--rr-brand);
  outline-offset: 2px;
}

.category-subcard-img {
  height: 140px;
  background: #EBEBEB;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.category-subcard-img img {
  max-width: 85%;
  max-height: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.category-subcard-title {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 12px 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  color: var(--rr-text);
  background: #fafafa;
}

/* Toolbar */
.rr-category-details .category-toolbar {
  margin-bottom: 1.75rem;
  padding: 0.9rem 0;
}

.category-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.category-toolbar-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

.category-toolbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.rr-category-details .category-toolbar-sort-row {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.rr-category-details .category-toolbar-page-label {
  margin-inline-start: 0.15rem;
}

.rr-category-details select.category-page-size-select {
  min-width: 4.5rem;
  padding-left: 0.55rem;
  padding-right: 1.85rem;
}

html[dir=rtl] .rr-category-details select.category-page-size-select {
  padding-right: 0.55rem;
  padding-left: 1.85rem;
}

.view-mode {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  padding: 3px;
}

.view-mode-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  color: #9ca3af;
  text-decoration: none;
  border: none;
  border-radius: 7px;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.15s, background 0.15s;
}

.view-mode-btn:hover {
  color: var(--category-accent);
  background: #f0fbfa;
}

.view-mode-btn.active {
  background: var(--category-accent);
  color: #fff;
}

.view-mode-btn svg path {
  stroke: #0A0A0A;
}

.view-mode-btn.active svg path {
  stroke: #ffffff;
}

.view-mode-btn:focus-visible {
  outline: 2px solid var(--category-accent);
  outline-offset: 2px;
}

.compare-list-text {
  font-size: 0.875rem;
  color: #777;
  font-weight: 500;
}

.rr-category-details .toolbar-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: #555;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── Custom toolbar dropdowns ── */
.rr-toolbar-dd {
  position: relative;
  display: inline-block;
}

.rr-toolbar-dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.82rem;
  color: #1a1a1a;
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  outline: none;
  line-height: 1.3;
}

.rr-toolbar-dd-btn:hover {
  border-color: #c0c4cc;
  background: #fafafa;
}

.rr-toolbar-dd-btn:focus-visible {
  border-color: var(--category-accent);
  box-shadow: 0 0 0 2.5px rgba(0, 167, 157, 0.16);
}

.rr-toolbar-dd.is-open .rr-toolbar-dd-btn {
  border-color: var(--category-accent);
  box-shadow: 0 0 0 2.5px rgba(0, 167, 157, 0.16);
}

.rr-toolbar-dd-label {
  font-weight: 400;
  color: #9ca3af;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
}

.rr-toolbar-dd-sep {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: #e5e7eb;
  flex-shrink: 0;
}

.rr-toolbar-dd-value {
  font-weight: 600;
  color: #111827;
}

.rr-toolbar-dd-arrow {
  font-size: 0.62rem;
  color: #9ca3af;
  transition: transform 0.2s ease, color 0.2s;
  flex-shrink: 0;
}

.rr-toolbar-dd.is-open .rr-toolbar-dd-arrow {
  transform: rotate(180deg);
  color: var(--category-accent);
}

.rr-toolbar-dd-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: max(160px, 100%);
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 0.3rem 0;
  list-style: none;
  margin: 0;
  z-index: 300;
  overflow: hidden;
}

.rr-toolbar-dd.is-open .rr-toolbar-dd-menu {
  display: block;
  animation: rrDdFadeSlide 0.14s ease;
}

@keyframes rrDdFadeSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.rr-toolbar-dd-item {
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
  list-style: none;
  position: relative;
}

.rr-toolbar-dd-item:hover {
  background: #f0fbfa;
  color: var(--category-accent);
}

.rr-toolbar-dd-item.is-selected {
  color: var(--category-accent);
  font-weight: 600;
  background: #f0fbfa;
}

.rr-toolbar-dd-item.is-selected::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--category-accent);
  border-radius: 0 2px 2px 0;
}

html[dir=rtl] .rr-toolbar-dd-menu {
  right: auto;
  left: 0;
}

html[dir=rtl] .rr-toolbar-dd-item.is-selected::before {
  left: auto;
  right: 0;
  border-radius: 2px 0 0 2px;
}

.toolbar-label {
  margin: 0;
  font-size: 0.9rem;
}

.toolbar-label .input-select {
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-left: 0.35rem;
}

/* Product image link fix */
.product .product-img > a.product-img-link {
  display: block;
  line-height: 0;
}

.product .product-img > a.product-img-link > img {
  width: 100%;
}

.product-widget .product-img > a.product-img-link {
  display: block;
  line-height: 0;
}

.product-widget .product-img > a.product-img-link > img {
  width: 100%;
}

/* Product grid: CSS Grid override for BS3 float columns */
.rr-category-details .category-products-grid.row:not(.category-products--list) {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  max-width: none;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.rr-category-details .category-products-grid.row:not(.category-products--list)::before,
.rr-category-details .category-products-grid.row:not(.category-products--list)::after {
  content: none !important;
  display: none !important;
}

@media (min-width: 576px) {
  .rr-category-details .category-products-grid.row:not(.category-products--list) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .rr-category-details .category-products-grid.row:not(.category-products--list) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .rr-category-details .category-products-grid.row:not(.category-products--list) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.rr-category-details .category-products-grid.row:not(.category-products--list) > [class*=col-] {
  float: none !important;
  width: 100% !important;
  max-width: none;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-bottom: 0 !important;
  min-height: 0;
}

.category-products-grid:not(.category-products--list) .category-product-col {
  display: flex;
  flex-direction: column;
}

/* List view */
.rr-category-details .category-products-grid.row.category-products--list {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0;
  max-width: none;
  margin-left: -15px;
  margin-right: -15px;
}

.rr-category-details .category-products-grid.row.category-products--list::before,
.rr-category-details .category-products-grid.row.category-products--list::after {
  content: none !important;
  display: none !important;
}

.rr-category-details .category-products-grid.row.category-products--list > [class*=col-] {
  float: none !important;
  width: 100% !important;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 1rem;
}

/* Product card on category page (citycenter style) */
.category-products-grid .product.product-card-citycenter {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  overflow: hidden;
  background: #FFF;
  transition: box-shadow 0.2s ease, transform 0.15s;
  box-shadow: var(--rr-shadow);
}

.category-products-grid .product.product-card-citycenter:hover {
  box-shadow: var(--rr-shadow-hover);
  transform: translateY(-3px);
}

.category-products-grid .product.product-card-citycenter .product-body {
  position: relative;
  z-index: 1;
  background: #fff;
  text-align: center;
}

.category-products-grid .product.product-card-citycenter .product-name,
.category-products-grid .product.product-card-citycenter .product-name a {
  text-transform: none !important;
}

.category-products-grid .product.product-card-citycenter .add-to-cart {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  top: auto !important;
  transform: none !important;
  -webkit-transform: none !important;
  background: white !important;
  padding: 0 22px 22px !important;
  z-index: 3;
  margin-top: auto;
}

.category-products-grid .product.product-card-citycenter:hover .add-to-cart {
  transform: none !important;
  -webkit-transform: none !important;
}

.category-products-grid:not(.category-products--list) .product-card-citycenter .product-img {
  position: relative;
  height: 200px;
  max-height: 200px;
  width: 100%;
  flex-shrink: 0;
  background: #F3F4F6;
}

.category-products-grid.category-products--list .product-card-citycenter .product-img {
  position: relative;
  background: #fafafa;
}

.category-products-grid .product-card-citycenter .product-img > a.product-img-link {
  display: block;
  height: 100%;
  line-height: 0;
}

.category-products-grid:not(.category-products--list) .product-card-citycenter .product-img img,
.category-products-grid:not(.category-products--list) .product-card-citycenter .product-img > a.product-img-link > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.55rem;
  box-sizing: border-box;
}

.category-products-grid.category-products--list .product-card-citycenter .product-img img,
.category-products-grid.category-products--list .product-card-citycenter .product-img > a.product-img-link > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

.category-products-grid .product-card-citycenter .product-label {
  top: 10px;
}

.category-products-grid .product-card-citycenter .product-label-sale {
  left: 10px;
  right: auto;
}

.category-products-grid .product-card-citycenter .product-label-new {
  right: 10px;
  left: auto;
}

.category-products-grid .product-card-citycenter .product-body {
  padding: 22px 22px 16px;
  text-align: center;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
}

.category-products-grid .product-card-citycenter .product-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  line-height: 1.35;
  text-transform: none;
  color: #000;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-products-grid .product-card-citycenter .product-name a {
  color: #000;
  text-decoration: none;
}

.category-products-grid .product-card-citycenter .product-name a:hover {
  color: var(--category-accent);
}

.category-products-grid .product-card-citycenter .product-specs {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #777;
  margin: 0 0 0.5rem;
  line-height: 1.45;
  min-height: 2.2rem;
  max-width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}

.category-products-grid .product-card-citycenter .product-price {
  margin: 0.25rem 0 0.65rem;
  font-size: 0.8125rem;
  color: #000;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem 0.55rem;
}

.category-products-grid .product-card-citycenter .product-current-price {
  font-weight: 700;
  color: #000;
  font-size: 1.2rem;
  letter-spacing: 0.015em;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.category-products-grid .product.product-card-citycenter .product-price .product-old-price {
  font-size: 1.2rem;
  color: #FB2C36 !important;
  display: inline-block;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  text-decoration: line-through !important;
}

.category-products-grid .product-card-citycenter .add-to-cart {
  padding: 0 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  width: 100%;
  flex-shrink: 0;
  margin-top: auto;
}

.category-products-grid .product-card-citycenter .category-add-to-cart-form,
.category-products-grid .product-card-citycenter .add-to-cart-form.category-add-to-cart-form {
  display: block;
  width: 100%;
  margin: 0;
}

.category-products-grid .product-card-citycenter .category-add-to-cart-btn,
.category-products-grid .product-card-citycenter .add-to-cart-form.category-add-to-cart-form .add-to-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  min-height: 2.5rem;
  padding: 12px 14px;
  box-sizing: border-box;
  text-align: center;
  background: var(--category-accent) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, filter 0.2s ease;
  line-height: 1.25;
  box-shadow: none;
}

.category-products-grid .product-card-citycenter .category-add-to-cart-btn .fa,
.category-products-grid .product-card-citycenter .add-to-cart-form.category-add-to-cart-form .add-to-cart-btn .fa {
  font-size: 0.9rem;
  color: #fff;
}

.category-products-grid .product-card-citycenter .category-add-to-cart-btn:hover,
.category-products-grid .product-card-citycenter .add-to-cart-form.category-add-to-cart-form .add-to-cart-btn:hover {
  background: var(--category-accent-hover) !important;
  color: #fff !important;
  filter: brightness(0.97);
}

/* List view on category page */
.category-products-grid.category-products--list .category-product-col {
  flex: 0 0 100%;
  max-width: 100%;
}

.category-products-grid.category-products--list .product-card-citycenter {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.category-products-grid.category-products--list .product-card-citycenter .product-img {
  width: 200px;
  min-width: 200px;
  flex-shrink: 0;
  aspect-ratio: auto;
  min-height: 160px;
}

.category-products-grid.category-products--list .product-card-citycenter .product-body {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.category-products-grid.category-products--list .product-card-citycenter .product-specs {
  text-align: left;
  min-height: 0;
}

.category-products-grid.category-products--list .product-card-citycenter .product-price {
  justify-content: flex-start;
}

html[dir=rtl] .category-products-grid.category-products--list .product-card-citycenter .product-body {
  text-align: right;
}

html[dir=rtl] .category-products-grid.category-products--list .product-card-citycenter .product-specs {
  text-align: right;
}

html[dir=rtl] .category-products-grid.category-products--list .product-card-citycenter .product-price {
  justify-content: flex-end;
}

.category-products-grid.category-products--list .product-card-citycenter .add-to-cart {
  width: 200px;
  flex-shrink: 0;
  justify-content: center;
  padding: 1rem;
}

@media (max-width: 576px) {
  .category-products-grid.category-products--list .product-card-citycenter {
    flex-direction: column;
  }
  .category-products-grid.category-products--list .product-card-citycenter .product-img {
    width: 100%;
    min-width: 0;
  }
  .category-products-grid.category-products--list .product-card-citycenter .add-to-cart {
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--border);
  }
}
/* Filters toolbar button */
.rr-toolbar-filters-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: var(--category-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.3;
  transition: background 0.15s;
}

.rr-toolbar-filters-btn:hover {
  background: var(--category-accent-hover, #007f77);
}

.rr-toolbar-filters-btn .fa {
  font-size: 0.9rem;
}

@media (min-width: 992px) {
  .rr-toolbar-filters-btn {
    display: none;
  }
}
/* Filters drawer backdrop */
.category-filters-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1040;
}

.category-filters-backdrop.is-visible {
  display: block;
}

.category-drawer-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 18px 20px;
  background: var(--category-accent, #00A79D);
  flex-shrink: 0;
}

.category-drawer-header-main {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex: 1;
}

.category-drawer-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
  color: #1a1a1a;
  font-size: 1.15rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.category-drawer-back:hover {
  border-color: var(--category-accent);
  color: var(--category-accent);
}

.category-drawer-title {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.category-drawer-close {
  background: none;
  border: none;
  color: #fff;
  padding: 4px;
  cursor: pointer;
  opacity: 0.85;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-drawer-close:hover {
  opacity: 1;
}

/* Show drawer header only when drawer is open (mobile) */
@media (max-width: 991px) {
  .category-sidebar.category-sidebar--drawer.is-open .category-drawer-header {
    display: flex;
  }
}
/* Filters drawer — mobile/tablet only (col-lg-3 only activates ≥992px so no col conflicts below) */
@media (max-width: 991px) {
  .category-sidebar.category-sidebar--drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: min(360px, 92vw);
    max-width: 100%;
    z-index: 1050;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    background: #fff;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform 0.28s ease, visibility 0s linear 0.28s;
    pointer-events: none;
    display: flex;
    flex-direction: column;
  }
  .category-sidebar.category-sidebar--drawer.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.28s ease, visibility 0s linear 0s;
    pointer-events: auto;
  }
  .category-sidebar.category-sidebar--drawer .category-filters {
    flex: 1;
    border-radius: 0;
    border: none;
  }
  body.category-drawer-open {
    overflow: hidden;
  }
}
.no-products-msg {
  padding: 2rem;
  text-align: center;
  color: #666;
}

.category-pagination-hint {
  margin-top: 1.75rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 500;
  color: #666;
}

.pagination-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Toolbar: stacked layout under 768px */
@media (max-width: 767px) {
  /* Dissolve the left wrapper so its children become direct flex items of the toolbar */
  .rr-category-details .category-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
  }
  .rr-category-details .category-toolbar-left {
    display: contents;
  }
  /* Each dropdown takes a full row */
  .rr-category-details .rr-toolbar-dd {
    flex: 0 0 100%;
    display: block;
  }
  .rr-category-details .rr-toolbar-dd-btn {
    width: 100%;
    justify-content: space-between;
  }
  .rr-category-details .rr-toolbar-dd-menu {
    left: 0;
    right: 0;
    min-width: 100%;
  }
  /* Filters button + view toggle share one row */
  .rr-category-details .rr-toolbar-filters-btn {
    flex: 1;
    justify-content: center;
  }
  .rr-category-details .category-toolbar-right {
    flex-shrink: 0;
  }
}
.category-pagination-hint .pagination-links .btn-outline-secondary:hover {
  border-color: var(--category-accent);
  color: var(--category-accent);
}

/* ===== Product Details Page (PDP) ===== */
/* ========= Product details page (Rashrash PDP mockup) ========= */
.rr-pdp-page {
  --rr-pdp-accent: var(--category-accent, #008b94);
}

.rr-pdp-toolbar {
  background: #f0f2f5;
  border-bottom: 1px solid #e4e7ed;
  padding: 0.65rem 0;
}

.rr-pdp-toolbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.rr-pdp-toolbar-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.rr-pdp-toolbar-back {
  text-decoration: none;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
}

.rr-pdp-toolbar-back:hover {
  border-color: var(--rr-pdp-accent);
  color: var(--rr-pdp-accent);
}

.rr-pdp-toolbar-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}

.rr-pdp-toolbar-bc {
  font-size: 0.85rem;
  color: #666;
  text-align: end;
  max-width: 100%;
  line-height: 1.4;
}

.rr-pdp-toolbar-bc a {
  color: #555;
  text-decoration: none;
}

.rr-pdp-toolbar-bc a:hover {
  color: var(--rr-pdp-accent);
}

.rr-pdp-bc-sep {
  margin: 0 0.3rem;
  color: #bbb;
}

.rr-pdp-bc-muted {
  color: #777;
}

.rr-pdp-bc-current {
  color: var(--rr-pdp-accent);
  font-weight: 700;
}

/* ========= Shared page toolbar (Cart, Checkout, TrackOrder, etc.) ========= */
.rr-page-toolbar {
    background: #F5F8FC;
    border-bottom: 1px solid #e4e7ed;
    padding: 0.65rem 0;
}

.rr-page-toolbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.rr-page-toolbar-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.rr-page-toolbar-back {
  text-decoration: none;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
}

.rr-page-toolbar-back:hover {
  border-color: var(--rr-brand, #008b94);
  color: var(--rr-brand, #008b94);
}

.rr-page-toolbar-title {
  font-size: 1rem !important;
  font-weight: 700;
  color: #111;
  margin: 0;
  line-height: 1.3;
}

.rr-page-toolbar-bc {
  font-size: 0.85rem;
  color: #666;
  text-align: end;
  max-width: 100%;
  line-height: 1.4;
}

.rr-page-toolbar-bc a {
  color: #555;
  text-decoration: none;
}

.rr-page-toolbar-bc a:hover {
  color: var(--rr-brand, #008b94);
}

.rr-page-toolbar-bc-sep {
  margin: 0 0.3rem;
  color: #bbb;
}

.rr-pdp-section {
  padding-top: 1.25rem;
  padding-bottom: 2.5rem;
}

.rr-pdp-main-row {
  align-items: flex-start;
}

/* Desktop: main image on top, thumbs below in a horizontal row */
.rr-pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rr-pdp-main-wrap {
  position: relative;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  background: #fafafa;
  overflow: hidden;
}

.rr-pdp-main-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  aspect-ratio: 1;
  max-height: min(56vw, 520px);
}

.rr-pdp-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.rr-pdp-badge {
  position: absolute;
  top: 10px;
  inset-inline-end: 10px;
  z-index: 1;
  background: var(--rr-pdp-accent);
  color: #fff;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

.rr-pdp-thumbs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rr-pdp-thumb {
  width: 70px;
  height: 70px;
  padding: 0;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.rr-pdp-thumb:hover {
  border-color: #bbb;
}

.rr-pdp-thumb.is-active {
  border-color: var(--rr-pdp-accent);
  box-shadow: 0 0 0 2px rgba(0, 139, 148, 0.2);
}

.rr-pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile/tablet: thumbs on left (vertical), main image on right */
@media (max-width: 991px) {
  .rr-pdp-gallery {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .rr-pdp-thumbs {
    flex-direction: column;
    flex-wrap: nowrap;
    flex-shrink: 0;
    gap: 0.5rem;
    /* Show ~4 thumbs then fade — 4×64px + 3×8px gap = 280px */
    max-height: 280px;
    overflow-y: auto;
    scrollbar-width: none;
    order: -1;
    /* Fade bottom edge to hint at more thumbnails */
    mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    padding-bottom: 12px;
  }
  .rr-pdp-thumbs::-webkit-scrollbar {
    display: none;
  }
  .rr-pdp-thumb {
    width: 64px;
    height: 64px;
  }
  .rr-pdp-main-wrap {
    flex: 1;
    min-width: 0;
  }
  .rr-pdp-main-inner {
    min-height: 0;
    max-height: none;
  }
}
.rr-pdp-buy-card {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.35rem 1.4rem;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 1rem;
}

.rr-pdp-buy-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.rr-pdp-category {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #888;
}

.rr-pdp-share-slot {
  flex-shrink: 0;
}

.rr-pdp-share-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #555;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}

.rr-pdp-share-icon:hover {
  border-color: var(--rr-pdp-accent);
  color: var(--rr-pdp-accent);
}

.rr-pdp-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.rr-pdp-condition {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
}

.rr-pdp-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.85rem;
  margin-bottom: 0.85rem;
}

.rr-pdp-price-old {
  font-size: 1.05rem;
  color: #c62828;
  text-decoration: line-through;
}

.rr-pdp-price-current {
  font-size: 1.85rem;
  font-weight: 700;
  color: #111;
}

.rr-pdp-price-save {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2e7d32;
}

.rr-pdp-lead {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444;
}

.rr-pdp-meta-list {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  font-size: 0.9rem;
}

.rr-pdp-meta-list li {
  margin-bottom: 0.4rem;
  line-height: 1.45;
}

.rr-pdp-meta-label {
  color: #555;
  font-weight: 500;
}

.rr-pdp-meta-value {
  color: var(--rr-pdp-accent);
  font-weight: 700;
}

.rr-pdp-meta-value.is-in-stock {
  color: var(--rr-pdp-accent);
}

.rr-pdp-meta-value.is-out-stock {
  color: #c62828;
}

.rr-pdp-qty-block {
  margin-bottom: 1rem;
}

.rr-pdp-qty-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 0.4rem;
}

.rr-pdp-qty-wrap {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.rr-pdp-qty-btn {
  width: 38px;
  height: 40px;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
  color: #333;
}

.rr-pdp-qty-btn:hover {
  background: #eaeaea;
}

.rr-pdp-qty-input {
  width: 3.25rem;
  padding: 0.4rem;
  text-align: center;
  border: none;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  font-weight: 600;
}

.rr-pdp-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

@media (max-width: 420px) {
  .rr-pdp-actions-row {
    grid-template-columns: 1fr;
  }
}
.rr-pdp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.rr-pdp-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.rr-pdp-btn--cart {
  background: var(--rr-pdp-accent);
  color: #fff;
}

.rr-pdp-btn--cart:hover:not(:disabled) {
  background: var(--category-accent-hover, #007a82);
  color: #fff;
}

.rr-pdp-btn--wa {
  background: #fff;
  color: var(--rr-pdp-accent);
  border: 2px solid var(--rr-pdp-accent);
}

.rr-pdp-btn--wa:hover {
  background: rgba(0, 139, 148, 0.06);
  color: var(--category-accent-hover, #007a82);
}

.rr-pdp-btn--wa .fa-whatsapp {
  color: #25d366;
}

.rr-pdp-trust {
  list-style: none;
  margin: 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid #eee;
  font-size: 0.8125rem;
  color: #555;
  line-height: 1.5;
}

.rr-pdp-trust li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.rr-pdp-trust .fa-check {
  color: var(--rr-pdp-accent);
  margin-top: 0.12rem;
}

.rr-pdp-secondary {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f0f0f0;
}

.rr-pdp-link-muted {
  font-size: 0.85rem;
  color: #777;
}

.rr-pdp-link-accent {
  color: var(--rr-pdp-accent);
  font-weight: 600;
}

.rr-pdp-tabs-wrap {
  margin-top: 2rem;
  padding-top: 0.5rem;
  border-top: 1px solid #eee;
}

.rr-pdp-page .rr-pdp-tab-nav.nav-tabs {
  border-bottom: 2px solid #e8e8e8;
}

.rr-pdp-page .rr-pdp-tab-nav > li > a {
  border: none !important;
  border-radius: 0 !important;
  margin-right: 0 !important;
  padding: 0.85rem 1.15rem !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none !important;
  color: #666;
  background: transparent !important;
}

.rr-pdp-page .rr-pdp-tab-nav > li.active {
  margin-bottom: -2px;
}

.rr-pdp-page .rr-pdp-tab-nav > li.active > a,
.rr-pdp-page .rr-pdp-tab-nav > li.active > a:hover,
.rr-pdp-page .rr-pdp-tab-nav > li.active > a:focus {
  color: var(--rr-pdp-accent) !important;
  border: none !important;
  border-bottom: 3px solid var(--rr-pdp-accent) !important;
  background: transparent !important;
  text-decoration: none !important;
}

.rr-pdp-page .rr-pdp-tab-nav > li > a:hover {
  color: #333;
  background: transparent !important;
}

/* ── Mobile tabs: full-width solid filled blocks ── */
@media (max-width: 767px) {
  .rr-pdp-page .rr-pdp-tab-nav.nav-tabs {
    display: flex;
    flex-direction: column;
    border-bottom: none;
    gap: 0;
    overflow: hidden;
  }
  .rr-pdp-page .rr-pdp-tab-nav > li {
    display: block;
    width: 100%;
    float: none;
    margin: 0;
  }
  .rr-pdp-page .rr-pdp-tab-nav > li > a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.85rem 1rem !important;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333 !important;
    background: #f0f2f5 !important;
    border: none !important;
    border-bottom: 1px solid #e4e7ed !important;
  }
  .rr-pdp-page .rr-pdp-tab-nav > li.active > a,
  .rr-pdp-page .rr-pdp-tab-nav > li.active > a:hover,
  .rr-pdp-page .rr-pdp-tab-nav > li.active > a:focus {
    color: #fff !important;
    background: var(--rr-pdp-accent) !important;
    border: none !important;
    border-bottom: none !important;
  }
  .rr-pdp-page .rr-pdp-tab-nav > li > a:hover {
    background: #e4e7ed !important;
    color: #333 !important;
  }
  .rr-pdp-page .rr-pdp-tab-nav > li.active > a:hover {
    background: var(--rr-pdp-accent) !important;
    color: #fff !important;
  }
}
/* Bootstrap 5 tab selectors (active is on .nav-link, not on li) */
.rr-pdp-page .rr-pdp-tab-nav .nav-link {
  border: none !important;
  border-radius: 0 !important;
  padding: 0.85rem 1.15rem !important;
  font-weight: 700;
  font-size: 0.95rem;
  color: #666;
  background: transparent !important;
  text-decoration: none !important;
}

.rr-pdp-page .rr-pdp-tab-nav .nav-link.active,
.rr-pdp-page .rr-pdp-tab-nav .nav-link.active:hover,
.rr-pdp-page .rr-pdp-tab-nav .nav-link.active:focus {
  color: var(--rr-pdp-accent) !important;
  border: none !important;
  border-bottom: 3px solid var(--rr-pdp-accent) !important;
  background: transparent !important;
  text-decoration: none !important;
}

.rr-pdp-page .rr-pdp-tab-nav .nav-link:not(.active):hover {
  color: #333;
  background: transparent !important;
}

@media (max-width: 767px) {
  .rr-pdp-page .rr-pdp-tab-nav .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.85rem 1rem !important;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333 !important;
    background: #f0f2f5 !important;
    border: none !important;
    border-bottom: 1px solid #e4e7ed !important;
    border-radius: 0 !important;
  }

  .rr-pdp-page .rr-pdp-tab-nav .nav-link.active,
  .rr-pdp-page .rr-pdp-tab-nav .nav-link.active:hover,
  .rr-pdp-page .rr-pdp-tab-nav .nav-link.active:focus {
    color: #fff !important;
    background: var(--rr-pdp-accent) !important;
    border: none !important;
    border-bottom: none !important;
  }

  .rr-pdp-page .rr-pdp-tab-nav .nav-link:not(.active):hover {
    background: #e4e7ed !important;
    color: #333 !important;
  }
}

.rr-pdp-tab-panels {
  padding: 1.35rem 0 0;
}

.rr-pdp-tab-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: #111;
}

.rr-pdp-prose p {
  line-height: 1.7;
  color: #444;
}

.rr-pdp-spec-wrap {
  margin-top: 0.5rem;
}

.rr-pdp-spec-table {
  width: 100%;
  margin: 0;
}

.rr-pdp-spec-table th,
.rr-pdp-spec-table td {
  padding: 0.75rem 1rem;
  vertical-align: top;
  border-bottom: 1px solid #eee;
}

.rr-pdp-spec-table th {
  width: 38%;
  font-weight: 700;
  color: #333;
  background: #fafafa;
}

.rr-pdp-spec-name .rr-pdp-spec-group {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #888;
  margin-bottom: 0.15rem;
}

@media (max-width: 991px) {
  .rr-pdp-buy-card {
    position: static;
    margin-top: 1.5rem;
  }
}
/* ========== Product detail page (City Center / legacy style) ========== */
.pdp-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  margin-top: 1rem;
  align-items: start;
}

@media (max-width: 900px) {
  .pdp-wrap {
    grid-template-columns: 1fr;
  }
}
.pdp-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.pdp-specs {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.pdp-gallery {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pdp-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex-shrink: 0;
}

.pdp-thumb {
  width: 56px;
  height: 56px;
  padding: 0;
  border: 2px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  background: #f5f5f5;
}

.pdp-thumb.active {
  border-color: var(--primary);
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp-main-img-wrap {
  flex: 1;
  min-width: 0;
}

.pdp-main-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: block;
}

.pdp-img-placeholder {
  width: 100%;
  min-height: 280px;
  background: #f0f0f0;
}

.pdp-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.pdp-stars {
  color: #ddd;
}

.pdp-not-rated {
  color: var(--text-muted);
}

.pdp-write-review {
  color: var(--primary-dark);
  text-decoration: none;
}

.pdp-write-review:hover {
  text-decoration: underline;
}

.pdp-share {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.pdp-share-label {
  color: var(--text-muted);
}

.pdp-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
}

.pdp-share-btn:nth-child(2) {
  background: #1877f2;
}

.pdp-share-btn:nth-child(3) {
  background: #000;
}

.pdp-share-wa {
  width: auto;
  padding: 0 0.5rem;
  background: #25d366;
}

.pdp-right {
  background: #f9f9f9;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  position: sticky;
  top: 1rem;
}

.pdp-availability, .pdp-meta {
  margin: 0 0 0.35rem 0;
  font-size: 0.9rem;
}

.pdp-label {
  font-weight: 500;
  color: #555;
}

.pdp-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #c00;
  margin: 0.5rem 0 1rem 0;
}

.pdp-options {
  margin-bottom: 1rem;
}

.pdp-options label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.pdp-select {
  width: 100%;
  padding: 0.4rem;
  margin-bottom: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 1rem;
  width: 100%;
  justify-content: center;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  color: #fff;
}

.pdp-delivery {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pdp-delivery p {
  margin: 0.25rem 0;
}

.pdp-qty-cart {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.pdp-qty {
  width: 4rem;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
}

.btn-add-cart {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: #c00;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-add-cart:hover {
  background: #a00;
  color: #fff;
}

.btn-offer-email {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #1877f2;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.btn-offer-email:hover {
  color: #fff;
  background: #166fe5;
}

.pdp-actions {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.pdp-actions a {
  color: var(--primary-dark);
  text-decoration: none;
}

.pdp-actions a:hover {
  text-decoration: underline;
}

.in-stock {
  color: #0066cc;
  font-weight: 500;
}

.out-of-stock {
  color: #c00;
}

/* PDP City Center: gallery thumbs on left, badge, condition */
.pdp-section {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}

.pdp-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  margin: 0 0 0.5rem 0;
}

.pdp-condition-badge {
  font-weight: 600;
  color: #555;
}

.pdp-gallery-citycenter {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.pdp-thumbnails-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.pdp-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-height: 280px;
  overflow-y: auto;
}

.pdp-thumb {
  width: 56px;
  height: 56px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}

.pdp-thumb.active {
  border-color: var(--citycenter-red, #8b0000);
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp-thumb-nav {
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  font-size: 0.75rem;
}

.pdp-thumb-nav:hover {
  background: #e0e0e0;
}

.pdp-main-img-inner {
  position: relative;
  display: inline-block;
}

.pdp-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #e91e8c;
  color: #fff;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pdp-main-img-wrap {
  flex: 1;
  min-width: 0;
}

.pdp-rating-row .pdp-sep {
  margin: 0 0.35rem;
  color: #999;
}

.pdp-share-citycenter {
  flex-wrap: wrap;
  gap: 0.35rem;
}

/* PDP right column: price block, delivery, countdown */
.pdp-right-citycenter {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.25rem;
  background: #fff;
  position: sticky;
  top: 1rem;
}

.pdp-price-block {
  margin: 0.5rem 0 1rem 0;
}

.pdp-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #c00;
  margin: 0 0 0.25rem 0;
}

.pdp-old-price {
  font-size: 1rem;
  color: #888;
  text-decoration: line-through;
  margin: 0 0 0.15rem 0;
}

.pdp-save {
  font-size: 0.95rem;
  color: #0a0;
  font-weight: 500;
  margin: 0 0 0.5rem 0;
}

.pdp-delivery p {
  margin: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pdp-qty-cart-form .pdp-qty-cart {
  margin-bottom: 0.75rem;
}

.pdp-qty-label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.pdp-qty-wrap {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.pdp-qty {
  width: 4rem;
  padding: 0.5rem;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.pdp-qty-btn {
  width: 32px;
  height: 36px;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.pdp-qty-btn:hover {
  background: #eee;
}

.pdp-offer-ends {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.pdp-offer-ends-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #c00;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.pdp-countdown {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pdp-countdown-box {
  display: inline-block;
  padding: 0.4rem 0.6rem;
  background: #e8e8e8;
  color: #333;
  font-size: 0.8rem;
  border-radius: 4px;
  font-weight: 600;
}

/* Payment/delivery icons row */
.pdp-payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  margin: 1rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  font-size: 0.85rem;
  color: #555;
}

.pdp-payment-icons span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Tabs: Overview / Specifications / Reviews - red active */
.pdp-tabs-citycenter {
  margin-top: 1.5rem;
}

.pdp-tab-nav {
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 2px solid #e0e0e0;
}

.pdp-tab-nav li {
  margin: 0;
}

.pdp-tab-nav li a {
  display: block;
  padding: 0.6rem 1.25rem;
  background: #e8e8e8;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid #e0e0e0;
  border-bottom: none;
  margin-right: 2px;
}

.pdp-tab-nav li.active a {
  background: #8b0000;
  color: #fff;
  border-color: #8b0000;
  position: relative;
  margin-bottom: -2px;
  padding-bottom: calc(0.6rem + 2px);
}

.pdp-tab-content {
  padding: 1.25rem 0;
}

.pdp-spec-table {
  max-width: 600px;
}

.pdp-spec-table th {
  width: 40%;
  font-weight: 600;
  color: #555;
}

/* Legacy product detail (keep for any other use) */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
}
.product-main-img {
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.product-info h1 {
  margin-top: 0;
  font-size: 1.35rem;
}

.product-sku {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.product-info .product-price {
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.product-description {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.product-description h3 {
  margin-top: 0;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

/* Add-to-cart form */
.add-to-cart-form:not(.category-add-to-cart-form) {
  display: inline;
}

.add-to-cart-form:not(.category-add-to-cart-form) .add-to-cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
  color: inherit;
}

/* PDP Payment Logos */
.rr-pdp-payment-logos {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}

.rr-pdp-pay-logo {
  height: 26px;
  width: auto;
  object-fit: contain;
  border: 0;
  border-radius: 6px;
  padding: 2px 6px;
  background: #fff;
}

/* ===== PDP Redesign: new buy-panel components ===== */
/* Sticky wrapper inside the buy column */
.rr-pdp-buy-inner {
  position: sticky;
  top: 1rem;
}

@media (max-width: 991px) {
  .rr-pdp-buy-inner {
    position: static;
    margin-top: 1.5rem;
  }
}
/* ── Price Card (bordered box) ── */
.rr-pdp-price-card {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  background: #fff;
  margin-bottom: 1rem;
}

/* ── Flash deal badges row ── */
.rr-pdp-flash-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.5rem;
  margin-bottom: 0.65rem;
}

.rr-pdp-flash-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255, 100, 0, 0.12);
  color: #e05a00;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  text-transform: uppercase;
}

.rr-pdp-save-badge {
  display: inline-flex;
  align-items: center;
  background: #e8453c;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 8px;
}

.rr-pdp-was-price {
  font-size: 0.82rem;
  color: #888;
  margin: 0;
}

.rr-pdp-was-price del {
  color: #999;
}

/* ── Split price display ── */
.rr-pdp-price-delivery-row {
  margin-bottom: 0;
}

.rr-pdp-price-split {
  display: flex;
  gap: 0.18rem;
  line-height: 1;
  padding: 0.3rem 0 0.65rem;
}

.rr-pdp-price-unit {
  font-size: 2.6rem;
  font-weight: 700;
  color: #111;
  align-self: flex-end;
  line-height: 1;
}

.rr-pdp-price-int {
  font-size: 2.6rem;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
  line-height: 1;
}

.rr-pdp-price-dec {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  align-self: center;
  padding-bottom: 0;
}

/* ── Delivery column ── */
.rr-pdp-delivery-col {
  padding: 0.25rem 0;
}

.rr-pdp-delivery-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rr-pdp-delivery-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
}

.rr-pdp-delivery-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.rr-pdp-delivery-sub {
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.3;
}

/* ── Countdown column ── */
.rr-pdp-countdown-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  padding: 0.25rem 0;
}

/* ── Compact countdown ── */
.pdp-offer-ends-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--rr-sale, #FB2C36);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.pdp-offer-ends {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(251, 44, 54, 0.1);
  line-height: 1;
}

.pdp-countdown {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: "Digital-7 Mono", "Digital-7", ui-monospace, monospace;
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--rr-sale, #FB2C36);
  font-variant-numeric: tabular-nums;
}

.pdp-cd-sep {
  padding: 0 2px;
  color: var(--rr-sale, #FB2C36);
}

.pdp-countdown-labels {
  display: flex;
  gap: 0;
  font-size: 0.65rem;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: 100%;
  justify-content: space-around;
  padding: 0 4px;
}

/* ── Qty + stock row ── */
.rr-pdp-qty-stock-row {
  border-top: 1px solid #f0f0f0;
  padding-top: 0.85rem;
  margin-top: 0.1rem;
}

/* ── Dark quantity control ── */
.rr-pdp-qty-dark {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
}

.rr-pdp-qty-dark-btn {
  width: 38px;
  height: 42px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
}

.rr-pdp-qty-dark-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.rr-pdp-qty-dark-input {
  width: 3rem;
  padding: 0.3rem 0.2rem;
  text-align: center;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  background: #1a1a1a;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  -moz-appearance: textfield;
}

.rr-pdp-qty-dark-input::-webkit-outer-spin-button,
.rr-pdp-qty-dark-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ── In-stock box ── */
.rr-pdp-stock-box {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding-left: 0.75rem;
}

[dir=rtl] .rr-pdp-stock-box {
  padding-left: 0;
  padding-right: 0.75rem;
}

.rr-pdp-stock-icon {
  color: var(--rr-pdp-accent);
  flex-shrink: 0;
}

.rr-pdp-stock-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--rr-pdp-accent);
  line-height: 1.2;
}

.rr-pdp-stock-sub {
  font-size: 0.72rem;
  color: #777;
  line-height: 1.2;
}

.rr-pdp-out-of-stock {
  font-size: 0.85rem;
  font-weight: 700;
  color: #c62828;
}

/* ── CTA buttons row ── */
.rr-pdp-cta-row {
  margin-bottom: 0.85rem;
}

/* WhatsApp button: green in new design */
.rr-pdp-btn--wa {
  background: #13990A;
  color: #fff;
  border: none;
}

.rr-pdp-btn--wa:hover {
  background: #0f7a08;
  color: #fff;
}

.rr-pdp-btn--wa .fa-whatsapp {
  color: inherit;
}

/* ── Payment logos (tighter spacing) ── */
.rr-pdp-payment-logos {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: nowrap;
  margin-top: 0;
  margin-bottom: 1rem;
  padding-top: 0.65rem;
  border-top: 1px solid #f0f0f0;
}

.rr-pdp-pay-logo {
  flex: 1;
  height: 36px;
  width: 0;
  min-width: 0;
  object-fit: contain;
  border: 0;
  border-radius: 6px;
  padding: 4px 8px;
  background: #fff;
}

/* ── Product option selects ── */
.rr-pdp-options-row {
  margin-top: 0.25rem;
}

.rr-pdp-option-select {
  width: 100%;
  padding: 0.45rem 0.6rem;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  appearance: auto;
}

.rr-pdp-option-select:focus {
  outline: none;
  border-color: var(--rr-pdp-accent);
  box-shadow: 0 0 0 2px rgba(0, 139, 148, 0.15);
}

/* ===== Shopping Cart ===== */
/* ========== Shopping Cart (Figma table layout) ========== */
.rr-cart-page {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding-bottom: 3rem;
}

.rr-cart-alerts {
  padding-top: 1rem;
}

.rr-cart-body {
  padding-top: 1.5rem;
}

/* Table */
.rr-cart-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  margin-bottom: 1.25rem;
}

.rr-cart-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.rr-cart-th {
  padding: 0.85rem 1rem;
  background: #f8f9fa;
  font-size: 0.875rem;
  font-weight: 600;
  color: #444;
  text-align: left;
  border-bottom: 1px solid #e8e8e8;
  white-space: nowrap;
}

[dir=rtl] .rr-cart-th {
  text-align: right;
}

.rr-cart-th-num {
  width: 3rem;
  text-align: center;
}

.rr-cart-th-img {
  width: 6rem;
}

.rr-cart-th-model {
  width: 9rem;
}

.rr-cart-th-qty {
  width: 9rem;
}

.rr-cart-th-price {
  width: 8rem;
}

.rr-cart-th-total {
  width: 8rem;
}

.rr-cart-row:not(:last-child) td {
  border-bottom: 1px solid #f0f0f0;
}

.rr-cart-td {
  padding: 1rem;
  vertical-align: middle;
  font-size: 0.9rem;
  color: #333;
}

.rr-cart-td-num {
  text-align: center;
  color: #888;
  font-size: 0.85rem;
}

.rr-cart-product-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
  background: #fafafa;
  display: block;
}

.rr-cart-product-name {
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.4;
  display: block;
}

.rr-cart-product-name:hover {
  color: #008b94;
}

.rr-cart-product-sub {
  font-size: 0.78rem;
  color: #888;
  margin-top: 0.2rem;
}

.rr-cart-sku {
  font-size: 0.85rem;
  color: #666;
}

/* Qty controls */
.rr-cart-qty-row {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.rr-cart-qty-form {
  display: inline-flex;
  align-items: center;
}

.rr-cart-qty-ctrl {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.rr-cart-qty-input {
  width: 2.6rem;
  text-align: center;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  padding: 0.2rem 0;
  height: 34px;
  background: #fff;
  -moz-appearance: textfield;
}

.rr-cart-qty-input::-webkit-outer-spin-button,
.rr-cart-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.rr-cart-qty-input:focus {
  outline: none;
  border-color: #008b94;
}

/* Teal circle — update / refresh */
.rr-cart-qty-update {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #008b94;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}

.rr-cart-qty-update:hover {
  background: #006b72;
}

/* Light circle — remove */
.rr-cart-qty-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
  background: #f8f9fa;
  color: #666;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.rr-cart-qty-remove:hover {
  background: #e53e3e;
  border-color: #e53e3e;
  color: #fff;
}

/* Mobile-only price under product name */
.rr-cart-product-price-mobile {
  display: none;
}

/* Promo */
.rr-cart-promo-row-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.rr-cart-promo-form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.rr-cart-promo-input {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
  width: 200px;
}

.rr-cart-promo-input:focus {
  border-color: #008b94;
}

.rr-cart-promo-apply {
  padding: 0.45rem 1rem;
  background: #008b94;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.rr-cart-promo-apply:hover {
  background: #006b72;
}

/* Totals */
.rr-cart-totals {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
  border-top: 1px solid #e8e8e8;
  padding-top: 1.25rem;
}

.rr-cart-totals-inner {
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.rr-cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: #555;
}

.rr-cart-total-label {
  font-weight: 500;
}

.rr-cart-total-val {
  font-weight: 600;
  color: #1a1a1a;
}

.rr-cart-discount-val {
  color: #c00;
}

.rr-cart-grand-row {
  padding-top: 0.6rem;
  border-top: 1px solid #e8e8e8;
}

.rr-cart-grand-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d0d0d;
}

.rr-cart-grand-val {
  font-size: 1.15rem;
  font-weight: 700;
  color: #008b94;
}

/* Divider */
.rr-cart-divider {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 0 0 1.25rem;
}

/* Footer action buttons */
.rr-cart-footer-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.rr-cart-continue-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.75rem;
  border: 2px solid #008b94;
  border-radius: 8px;
  color: #008b94;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  background: #fff;
  transition: background 0.2s, color 0.2s;
}

.rr-cart-continue-btn:hover {
  background: #008b94;
  color: #fff;
}

.rr-cart-checkout-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 2.25rem;
  border: 2px solid #008b94;
  border-radius: 8px;
  background: #008b94;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.rr-cart-checkout-btn:hover {
  background: #006b72;
  border-color: #006b72;
  color: #fff;
}

/* Empty cart */
.rr-cart-empty {
  text-align: center;
  padding: 4rem 1rem;
}

.rr-cart-empty p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.25rem;
}

.rr-cart-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.75rem;
  background: #008b94;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #008b94;
  transition: background 0.2s;
}

.rr-cart-btn-primary:hover {
  background: #006b72;
  border-color: #006b72;
  color: #fff;
}

@media (max-width: 575px) {
  .rr-cart-footer-actions {
    flex-direction: column;
  }
  .rr-cart-continue-btn,
  .rr-cart-checkout-btn {
    width: 100%;
    justify-content: center;
  }
  .rr-cart-totals-inner {
    min-width: 0;
    width: 100%;
  }
}
/* ========== Cart Mobile Cards (< 640px) ========== */
/* ══════════════════════════════════════════
   Mini Cart Drawer (mobile, < 992px)
═══════════════════════════════════════════ */
.rr-minicart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1055;
  animation: rrMcFadeIn 0.22s ease;
}

.rr-minicart-overlay.is-open {
  display: block;
}

@keyframes rrMcFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.rr-minicart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  max-width: 100vw;
  height: 100dvh;
  height: 100vh;
  background: #ffffff;
  z-index: 1056;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.3s;
  box-shadow: -4px 0 32px rgba(0, 0, 0, 0.14);
}

.rr-minicart-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
}

body.rr-minicart-open {
  overflow: hidden;
}

.rr-minicart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.rr-minicart-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0d0d0d;
  letter-spacing: 0.01em;
}

.rr-minicart-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  color: #374151;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s;
  padding: 0;
}
.rr-minicart-close:hover {
  background: #f3f4f6;
}

.rr-minicart-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
}

.rr-minicart-scroll-area {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.rr-minicart-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid #f0f0f0;
}

.rr-minicart-img-wrap {
  flex-shrink: 0;
}

.rr-minicart-img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
  background: #fafafa;
  display: block;
}

.rr-minicart-item-info {
  flex: 1;
  min-width: 0;
}

.rr-minicart-item-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0d0d0d;
  text-decoration: none;
  line-height: 1.4;
  margin-bottom: 0.15rem;
}
.rr-minicart-item-name:hover {
  color: #008b94;
}

.rr-minicart-item-sub {
  font-size: 0.72rem;
  color: #9ca3af;
  margin-bottom: 0.2rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rr-minicart-item-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: #008b94;
}

.rr-minicart-item-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.rr-minicart-item-qty {
  font-size: 0.78rem;
  color: #6b7280;
  white-space: nowrap;
}

.rr-minicart-item-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 5px;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.15s;
  flex-shrink: 0;
}
.rr-minicart-item-remove:hover {
  background: #e53e3e;
  color: #ffffff;
}

.rr-minicart-footer {
  flex-shrink: 0;
  border-top: 1px solid #e5e7eb;
  padding: 1rem 1.1rem;
  background: #ffffff;
}

.rr-minicart-totals {
  margin-bottom: 0.85rem;
}

.rr-minicart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #374151;
  padding: 0.18rem 0;
}

.rr-minicart-grand-row {
  font-weight: 700;
  color: #0d0d0d;
  font-size: 0.95rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 0.45rem;
  margin-top: 0.2rem;
}

.rr-minicart-actions {
  display: flex;
  gap: 0.65rem;
}

.rr-minicart-view-cart {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.5rem;
  border: 1.5px solid #008b94;
  border-radius: 8px;
  color: #008b94;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  background: #ffffff;
  transition: background 0.18s, color 0.18s;
}
.rr-minicart-view-cart:hover {
  background: #008b94;
  color: #ffffff;
}

.rr-minicart-checkout {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.5rem;
  border: 1.5px solid #008b94;
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  background: #008b94;
  transition: background 0.18s, border-color 0.18s;
}
.rr-minicart-checkout:hover {
  background: #006b72;
  border-color: #006b72;
  color: #ffffff;
}

.rr-minicart-loading,
.rr-minicart-empty,
.rr-minicart-error {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  font-size: 0.9rem;
  color: #6b7280;
  text-align: center;
}

@media (min-width: 992px) {
  .rr-minicart-overlay {
    display: none !important;
  }
  .rr-minicart-drawer {
    visibility: hidden !important;
    pointer-events: none !important;
  }
}
/* ═══════════════════════════════════════ */
@media (max-width: 640px) {
  /* Table → flat card list */
  .rr-cart-table-wrap {
    overflow: hidden;
    border: none;
    border-radius: 0;
  }
  .rr-cart-table,
  .rr-cart-table tbody {
    display: block;
    width: 100%;
  }
  .rr-cart-table thead {
    display: none;
  }
  .rr-cart-row {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #e8e8e8;
    width: 100%;
    box-sizing: border-box;
  }
  .rr-cart-td {
    display: block;
    padding: 0;
  }
  .rr-cart-td-num {
    display: none !important;
  }
  .rr-cart-td-price {
    display: none !important;
  }
  .rr-cart-td-total {
    display: none !important;
  }
  /* Image */
  .rr-cart-td-img {
    flex: 0 0 72px;
  }
  .rr-cart-td-img .rr-cart-product-img {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    object-fit: contain;
  }
  /* Name + mobile price (grows, but can shrink) */
  .rr-cart-td-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }
  .rr-cart-product-name {
    font-size: 0.82rem;
  }
  .rr-cart-product-sub {
    font-size: 0.72rem;
  }
  .rr-cart-product-price-mobile {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 0.3rem;
  }
  /* Qty control (pushed to end, no shrink) */
  .rr-cart-td-qty {
    flex: 0 0 auto;
    margin-left: auto;
  }
  [dir=rtl] .rr-cart-td-qty {
    margin-left: 0;
    margin-right: auto;
  }
  /* Footer buttons → stacked, same style as desktop (outlined) */
  .rr-cart-footer-actions {
    flex-direction: column;
    gap: 10px;
  }
  .rr-cart-continue-btn,
  .rr-cart-checkout-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    border-radius: 8px;
  }
  /* Totals: full width */
  .rr-cart-totals-inner {
    min-width: 0;
    width: 100%;
  }
}
/* ===== Checkout Page ===== */
.rr-checkout-page {
  padding-bottom: 2.5rem;
}

.rr-checkout-body {
  padding-top: 1.5rem;
}

.rr-checkout-layout {
  align-items: flex-start;
}

.rr-checkout-main {
  padding-bottom: 2rem;
}

.rr-checkout-step {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.25rem 1.35rem 1.4rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.rr-checkout-step-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #f0f0f0;
}

.rr-checkout-step-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: var(--category-accent, #008b94);
}

.rr-checkout-step-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
}

.rr-checkout-step-body .form-group {
  margin-bottom: 1.25rem;
}

.rr-checkout-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 0.4rem;
}

.rr-checkout-label-opt {
  font-weight: 400;
  color: #888;
}

.rr-checkout-input {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  font-size: 0.925rem;
  color: #111;
  background: #fff;
  border: 1.5px solid #d0d5dd !important;
  border-radius: 8px !important;
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

textarea.rr-checkout-input {
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
}

.rr-checkout-input:focus {
  border-color: var(--category-accent, #008b94) !important;
  box-shadow: 0 0 0 3px rgba(0, 139, 148, 0.12);
}

.rr-checkout-select {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 40px 0 14px;
  font-size: 0.925rem;
  color: #111;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  border: 1.5px solid #d0d5dd !important;
  border-radius: 8px !important;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.rr-checkout-select:focus {
  border-color: var(--category-accent, #008b94) !important;
  box-shadow: 0 0 0 3px rgba(0, 139, 148, 0.12);
  outline: none;
}

.rr-checkout-check {
  margin: 0.6rem 0 0.3rem;
}

.rr-checkout-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: #444;
  cursor: pointer;
  margin: 0;
}

.rr-checkout-check-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid #d0d5dd;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin: 0;
  margin-top: 2px;
  transition: border-color 0.18s, background 0.18s;
  -webkit-appearance: none;
  appearance: none;
}

.rr-checkout-check-label input[type="checkbox"]:checked {
  background: var(--category-accent, #008b94);
  border-color: var(--category-accent, #008b94);
}

.rr-checkout-check-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 7px;
  height: 11px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.rr-checkout-billing-fields {
  margin-top: 0.75rem;
  padding: 1rem;
  background: #fafafa;
  border-radius: 8px;
  border: 1px solid #eee;
}

.rr-checkout-billing-hint {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}

.rr-checkout-pm-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.rr-checkout-pm-tab {
  flex: 1 1 140px;
  cursor: pointer;
  margin: 0;
}

.rr-checkout-pm-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rr-checkout-pm-tab-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 88px;
  padding: 0.65rem 0.5rem;
  border: 2px solid #e4e7ed;
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  text-align: center;
}

.rr-checkout-pm-tab:hover .rr-checkout-pm-tab-inner {
  border-color: #ccc;
}

.rr-checkout-pm-tab.is-selected .rr-checkout-pm-tab-inner {
  border-color: var(--category-accent, #008b94);
  background: rgba(0, 139, 148, 0.06);
  box-shadow: 0 0 0 1px rgba(0, 139, 148, 0.15);
}

.rr-checkout-pm-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: #333;
  line-height: 1.25;
}

.rr-checkout-pm-icon {
  font-size: 1.5rem;
  color: var(--category-accent, #008b94);
}

.rr-checkout-pm-logo {
  object-fit: contain;
  border-radius: 6px;
}

.rr-checkout-card-hint { display: none; }

/* ── Searchable select ── */
.rr-cs-wrapper { position: relative; }

.rr-cs-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  font-size: 0.925rem;
  color: #111;
  background: #fff;
  border: 1.5px solid #d0d5dd;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.rr-cs-trigger:focus,
.rr-cs-trigger.is-open {
  border-color: var(--category-accent, #008b94);
  box-shadow: 0 0 0 3px rgba(0, 139, 148, 0.12);
  outline: none;
}

.rr-cs-trigger svg { flex-shrink: 0; transition: transform 0.2s; }
.rr-cs-trigger.is-open svg { transform: rotate(180deg); }

.rr-cs-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid #d0d5dd;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 1050;
  overflow: hidden;
}

.rr-cs-search-wrap {
  padding: 10px 10px 6px;
  border-bottom: 1px solid #f0f0f0;
}

.rr-cs-search {
  width: 100%;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.18s;
}

.rr-cs-search:focus { border-color: var(--category-accent, #008b94); }

.rr-cs-list {
  max-height: 220px;
  overflow-y: auto;
  padding: 6px 0;
}

.rr-cs-option {
  padding: 9px 14px;
  font-size: 0.9rem;
  color: #222;
  cursor: pointer;
  transition: background 0.12s;
}

.rr-cs-option:hover { background: #f5f5f5; }

.rr-cs-option.is-selected {
  color: var(--category-accent, #008b94);
  font-weight: 600;
  background: rgba(0, 139, 148, 0.06);
}

.rr-checkout-card-fields {
  padding-top: 0.25rem;
}

.rr-checkout-terms {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.rr-checkout-terms input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid #d0d5dd;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin: 0;
  margin-top: 2px;
  transition: border-color 0.18s, background 0.18s;
  -webkit-appearance: none;
  appearance: none;
}

.rr-checkout-terms input[type="checkbox"]:checked {
  background: var(--category-accent, #008b94);
  border-color: var(--category-accent, #008b94);
}

.rr-checkout-terms input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 7px;
  height: 11px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.rr-checkout-terms label {
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 0;
  cursor: pointer;
}

.rr-checkout-terms a {
  color: var(--category-accent, #008b94);
  font-weight: 600;
}

.rr-checkout-place-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 1rem;
  padding: 0.95rem 1.25rem;
  border: none;
  border-radius: 10px;
  background: var(--category-accent, #008b94);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.rr-checkout-place-btn:hover {
  background: var(--category-accent-hover, #007a82);
  color: #fff;
}

.rr-checkout-place-btn-total {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    background-color: #078075;
    padding: 8px;
    border-radius: 6px;
}

.rr-checkout-summary-card {
  position: sticky;
  top: 1rem;
  padding: 1.35rem 1.35rem 1.5rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.rr-checkout-summary-title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
}

.rr-checkout-order-summary-inner {
  margin: 0 0 1rem;
}

.rr-checkout-order-products {
  display: block;
}

.rr-checkout-page .rr-checkout-line {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.5rem 0.85rem;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid #e4e7ed;
}

.rr-checkout-page .rr-checkout-line:last-child {
  border-bottom: none;
}

.rr-checkout-page .rr-checkout-line-img-wrap {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  background: #fafafa;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
}

.rr-checkout-page .rr-checkout-line-img-wrap img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  display: block;
}

.rr-checkout-page .rr-checkout-line-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.rr-checkout-page .rr-checkout-line-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.rr-checkout-page .rr-checkout-line-name {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  color: #1a1a1a;
  flex: 1;
  min-width: 0;
}

.rr-checkout-page .rr-checkout-line-qty-badge {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
  white-space: nowrap;
}

.rr-checkout-page .rr-checkout-line-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
}

.rr-checkout-promo-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 0.4rem;
}

.rr-checkout-promo-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.rr-checkout-promo-input {
  flex: 1;
  min-width: 0;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
}

.rr-checkout-promo-input:focus {
  border-color: var(--category-accent, #008b94);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 139, 148, 0.15);
}

.rr-checkout-promo-apply {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid var(--category-accent, #008b94);
  color: var(--category-accent, #008b94);
  font-weight: 600;
  border-radius: 8px;
  font-size: 0.875rem;
}

.rr-checkout-promo-apply:hover {
  background: rgba(0, 139, 148, 0.08);
  color: var(--category-accent-hover, #007a82);
}

.rr-checkout-remove-promo {
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.rr-checkout-lines {
    margin: 0;
    padding: 0;
    border-top: 1px solid #e4e7ed;
    padding-top: 10px;
}

.rr-checkout-line-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
}

.rr-checkout-line-total-row dt {
  margin: 0;
  font-weight: 500;
  color: #555;
}

.rr-checkout-line-total-row dd {
  margin: 0;
  font-weight: 600;
  color: #222;
}

.rr-checkout-line-total-row--discount dd {
  color: #0a7;
}

.rr-checkout-line-total-row--grand {
  border-bottom: none;
  padding-top: 0;
  margin-top: 0;
}

.rr-checkout-line-total-row--grand dt {
  font-weight: 700;
  font-size: 1rem;
  color: #111;
}

.rr-checkout-line-total-row--grand dd {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--category-accent, #008b94);
}

.rr-checkout-trust {
  margin: 0;
  padding: 0.75rem 0 0;
  list-style: none;
  border-top: 1px solid #f0f0f0;
  font-size: 0.8rem;
  color: #666;
}

.rr-checkout-trust li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.rr-checkout-trust li:last-child {
  margin-bottom: 0;
}

.rr-checkout-trust .fa-check {
  color: var(--category-accent, #008b94);
  margin-top: 0.1rem;
}

@media (max-width: 991px) {
  .rr-checkout-summary-card {
    position: static;
    margin-top: 1.5rem;
  }
  .rr-checkout-layout {
    display: flex;
    flex-direction: column;
  }
  .rr-checkout-aside {
    order: -1;
  }
}
@media (max-width: 575px) {
  .rr-checkout-page .rr-checkout-line-img-wrap,
  .rr-checkout-page .rr-checkout-line-img-wrap img {
    width: 48px;
    height: 48px;
  }
  .rr-checkout-pm-tab {
    flex: 1 1 calc(33.333% - 0.5rem);
    min-width: 0;
  }
  .rr-checkout-pm-tab-inner {
    min-height: 72px;
    padding: 0.5rem 0.25rem;
  }
  .rr-checkout-pm-title {
    font-size: 0.7rem;
  }
}
/* Admin: Specification Groups — add form */
.spec-groups-add-form {
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem !important;
  background: #f8fafb;
  border: 1px solid var(--border, #e5e5e5);
  border-radius: 6px;
}

.spec-groups-add-form__title {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6c757d;
  margin-bottom: 0.25rem;
}

.spec-groups-add-form__lead {
  font-size: 0.875rem;
  color: #5a6268;
  max-width: 36rem;
  line-height: 1.45;
}

.spec-groups-add-form__advanced {
  white-space: nowrap;
  flex-shrink: 0;
}

.spec-groups-add-form__hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.spec-groups-add-form__submit {
  min-height: calc(1.5em + 0.75rem + 2px);
  font-weight: 600;
}

@media (max-width: 991px) {
  .spec-groups-add-form .col-lg-4 .form-group {
    margin-top: 0.5rem;
  }
}
/* ===== Account Area ===== */
.rr-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.rr-account-page {
  background: #f8f9fa;
  padding: 1.75rem 0 2.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.rr-account-inner {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 768px) {
  .rr-account-inner {
    grid-template-columns: 1fr;
  }
}
.rr-account-sidebar {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  padding: 1.25rem 0;
  position: sticky;
  top: 1rem;
  z-index: 3;
  align-self: start;
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .rr-account-sidebar {
    position: relative;
    top: auto;
    z-index: auto;
  }
}
.rr-account-main {
  min-width: 0;
  width: 100%;
}

.rr-account-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0 1.25rem 1.25rem;
  border-bottom: 1px solid #eef1f5;
}

.rr-account-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, #00a89c, #007a82);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rr-account-name {
  font-weight: 700;
  color: #111827;
  font-size: 0.98rem;
}

.rr-account-email {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.15rem;
}

.rr-account-nav {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0.65rem;
  gap: 0.25rem;
}

.rr-account-nav-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  color: #374151;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  background: transparent;
  width: 100%;
  text-align: start;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.rr-account-nav-item i {
  width: 1.1rem;
  text-align: center;
  color: #6b7280;
}

.rr-account-nav-item:hover:not(.rr-account-nav-item--disabled) {
  background: #f3f4f6;
  color: #111827;
}

.rr-account-nav-item.is-active {
  background: var(--rr-brand, #00a89c);
  color: #fff !important;
}

.rr-account-nav-item.is-active i {
  color: #fff;
}

.rr-account-nav-badge {
  margin-inline-start: auto;
  background: rgba(255, 255, 255, 0.25);
  color: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}

.rr-account-nav-item.is-active .rr-account-nav-badge {
  background: rgba(255, 255, 255, 0.35);
}

.rr-account-nav-item--disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.rr-account-nav-divider {
  height: 1px;
  background: #eef1f5;
  margin: 0.5rem 1rem;
}

.rr-account-nav-item--logout {
  color: #dc2626 !important;
}

.rr-account-nav-item--logout i {
  color: #dc2626 !important;
}

.rr-account-logout-form {
  margin: 0;
}

/* Profile / Settings subpages */
.rr-prof-page-title {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.rr-prof-lead {
  margin: 0 0 1.25rem;
  color: #6b7280;
  font-size: 0.95rem;
  max-width: 42rem;
}

.rr-prof-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  padding: 1.35rem 1.5rem;
  margin-bottom: 1.25rem;
}

.rr-prof-card-title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
}

.rr-prof-dl {
  margin: 0;
}

.rr-prof-dl-row {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  gap: 0.5rem 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.95rem;
}

.rr-prof-dl-row:last-of-type {
  border-bottom: none;
}

.rr-prof-dl-row dt {
  margin: 0;
  color: #6b7280;
  font-weight: 600;
}

.rr-prof-dl-row dd {
  margin: 0;
  color: #111827;
  font-weight: 600;
}

.rr-prof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.rr-prof-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.rr-prof-btn--primary {
  background: var(--rr-brand, #00a89c);
  color: #fff !important;
}

.rr-prof-btn--primary:hover {
  filter: brightness(0.95);
  color: #fff !important;
}

.rr-prof-btn--outline {
  background: #fff;
  color: var(--rr-brand, #00a89c) !important;
  border-color: var(--rr-brand, #00a89c);
}

.rr-prof-btn--outline:hover {
  background: rgba(0, 168, 156, 0.08);
}

.rr-prof-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.rr-prof-mini {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  padding: 1.1rem 1.25rem;
}

.rr-prof-mini-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

.rr-prof-mini-text {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.45;
}

.rr-prof-link {
  font-weight: 700;
  color: var(--rr-brand, #00a89c);
  text-decoration: none;
  font-size: 0.92rem;
}

.rr-prof-link:hover {
  text-decoration: underline;
}

.rr-pay-empty {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  padding: 2rem 1.5rem;
  text-align: center;
  max-width: 32rem;
}

.rr-pay-empty-icon {
  font-size: 2.25rem;
  color: #d1d5db;
  margin-bottom: 0.75rem;
}

.rr-pay-empty-title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
}

.rr-pay-empty-text {
  margin: 0 0 1.25rem;
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.5;
}

.rr-pay-note {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  background: #f9fafb;
  border-radius: 10px;
  font-size: 0.85rem;
  color: #4b5563;
  max-width: 40rem;
}

/* Addresses */
.rr-addr-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rr-addr-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  padding: 1.1rem 1.25rem;
}

.rr-addr-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--rr-brand, #00a89c);
  background: rgba(0, 168, 156, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.rr-addr-lines {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.5;
}

/* Settings */
.rr-set-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  padding: 1.35rem 1.5rem;
  max-width: 36rem;
}

.rr-set-form {
  margin: 0;
}

.rr-set-field {
  margin-bottom: 1rem;
}

.rr-set-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 575px) {
  .rr-set-row {
    grid-template-columns: 1fr;
  }
}
.rr-set-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 0.35rem;
}

.rr-set-input {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.95rem;
}

.rr-set-input:disabled {
  background: #f9fafb;
  color: #6b7280;
}

.rr-set-alert {
  padding: 0.65rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.rr-set-alert--ok {
  background: rgba(0, 168, 156, 0.12);
  color: #0f766e;
  border: 1px solid rgba(0, 168, 156, 0.25);
}

/* My Orders */
.rr-orders-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.rr-orders-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.rr-orders-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.rr-orders-search-form,
.rr-orders-filter-form {
  margin: 0;
}

.rr-orders-search-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.45rem 0.75rem;
  min-width: 220px;
}

.rr-orders-search-wrap i {
  color: #9ca3af;
}

.rr-orders-search-input {
  border: none;
  outline: none;
  font-size: 0.9rem;
  min-width: 140px;
  background: transparent;
}

.rr-orders-filter-select {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  background: #fff;
  color: #374151;
}

/* Status filter custom dropdown */
.rr-sf-wrap {
  position: relative;
}
.rr-sf-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  background: #fff;
  color: #374151;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s;
}
.rr-sf-trigger:hover,
.rr-sf-wrap.is-open .rr-sf-trigger {
  border-color: var(--rr-brand, #00a89c);
  color: var(--rr-brand, #00a89c);
}
.rr-sf-chevron {
  font-size: 0.75rem;
  transition: transform 0.2s;
}
.rr-sf-wrap.is-open .rr-sf-chevron {
  transform: rotate(180deg);
}
.rr-sf-list {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  padding: 0.35rem 0;
  margin: 0;
  list-style: none;
  z-index: 200;
}
[dir="rtl"] .rr-sf-list {
  right: auto;
  left: 0;
}
.rr-sf-opt {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  color: #374151;
  cursor: pointer;
  transition: background 0.12s;
}
.rr-sf-opt:hover {
  background: #f3f4f6;
}
.rr-sf-opt.is-selected {
  background: var(--rr-brand, #00a89c);
  color: #fff;
  font-weight: 600;
}

.rr-orders-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rr-orders-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  border: 1px solid #eef1f5;
  padding: 1.1rem 1.25rem 1.25rem;
}

.rr-orders-card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.rr-orders-card-id {
  font-size: 0.95rem;
  color: #374151;
}

.rr-orders-card-id strong {
  color: #111827;
}

.rr-orders-card-date {
  font-size: 0.88rem;
  color: #6b7280;
}

.rr-orders-card-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.rr-orders-thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
}

.rr-orders-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rr-orders-thumb-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #9ca3af;
}

.rr-orders-card-info {
  margin-bottom: 1rem;
}

.rr-orders-card-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid #f3f4f6;
}

.rr-orders-card-info-row:last-child {
  border-bottom: none;
}

.rr-orders-card-info-label {
  color: #6b7280;
}

.rr-orders-card-info-val {
  color: #111827;
  font-size: 0.9rem;
}

.rr-orders-card-info-total {
  color: #111827;
  font-size: 0.95rem;
  font-weight: 700;
}

.rr-ord-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: capitalize;
}

.rr-ord-badge--pending {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fdba74;
}

.rr-ord-badge--info {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #93c5fd;
}

.rr-ord-badge--processing {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fdba74;
}

.rr-ord-badge--shipped {
  background: #f0fdfa;
  color: #0d9488;
  border: 1px solid #99f6e4;
}

.rr-ord-badge--delivered {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #6ee7b7;
}

.rr-ord-badge--cancelled {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
}

.rr-orders-card-actions {
  display: flex;
  gap: 0.5rem;
}

.rr-orders-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  text-align: center;
}

.rr-orders-btn--primary {
  background: var(--rr-brand, #00a89c);
  color: #fff !important;
  border-color: var(--rr-brand, #00a89c);
}

.rr-orders-btn--primary:hover {
  background: #009688;
  color: #fff;
}

.rr-orders-btn--outline {
  background: #fff;
  color: var(--rr-brand, #00a89c) !important;
  border-color: var(--rr-brand, #00a89c);
}

.rr-orders-btn--outline:hover {
  background: #f0fdfa;
}

.rr-orders-btn--danger-outline {
  background: #fff;
  color: #dc2626 !important;
  border-color: #fecaca;
}

.rr-orders-empty {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 1px dashed #e5e7eb;
}

.rr-orders-shop-btn {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  background: var(--rr-brand, #00a89c);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
}

.rr-orders-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 1.5rem;
}

.rr-orders-page-link,
.rr-orders-page-current {
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: #374151;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.rr-orders-page-link:hover {
  border-color: var(--rr-brand, #00a89c);
  color: var(--rr-brand, #00a89c);
}

.rr-orders-page-current {
  background: var(--rr-brand, #00a89c);
  color: #fff !important;
  border-color: var(--rr-brand, #00a89c);
}

/* Order details */
.rr-od-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1.1rem;
}

.rr-od-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--rr-brand, #00a89c);
  background: #fff;
  border: none;
  border-radius: 0;
  transition: background 0.15s, color 0.15s;
}

.rr-od-tab + .rr-od-tab {
  border-left: 1.5px solid var(--rr-brand, #00a89c);
}

.rr-od-tab:hover:not(.is-active) {
  background: rgba(0, 168, 156, 0.06);
}

.rr-od-tab.is-active {
  background: var(--rr-brand, #00a89c);
  color: #fff !important;
}

.rr-od-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eef1f5;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
}

.rr-od-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.rr-od-card-label {
  font-size: 0.88rem;
  color: #6b7280;
  margin-right: 0.35rem;
}

.rr-od-card-id {
  font-weight: 700;
  color: #111827;
  font-size: 1rem;
}

.rr-od-card-date {
  font-size: 0.88rem;
  color: #9ca3af;
}

.rr-od-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.rr-od-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
}

.rr-od-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rr-od-thumb-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #9ca3af;
}

.rr-od-summary-rows {
  border-top: 1px solid #f3f4f6;
  padding-top: 0.85rem;
}

.rr-od-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  font-size: 0.92rem;
  color: #4b5563;
}

.rr-od-sum-total {
  font-size: 1.05rem;
  color: #111827;
}

.rr-od-section {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eef1f5;
  padding: 1.15rem 1.25rem;
  margin-bottom: 1rem;
}

.rr-od-section-title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
}

.rr-od-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  padding: 0.85rem 1rem;
}

@media (max-width: 576px) {
  .rr-od-info-grid {
    grid-template-columns: 1fr;
  }
}
.rr-od-info-label {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.rr-od-info-val {
  font-size: 0.95rem;
  color: #111827;
  font-weight: 600;
}

.rr-od-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rr-od-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.rr-od-item:last-child {
  border-bottom: none;
}

.rr-od-item-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f4f6;
  flex-shrink: 0;
}

.rr-od-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rr-od-item-body {
  flex: 1;
  min-width: 0;
}

.rr-od-item-name {
  font-weight: 600;
  color: #111827;
  font-size: 0.92rem;
}

.rr-od-item-qty {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 0.15rem;
}

.rr-od-item-price {
  font-weight: 700;
  color: #111827;
}

.rr-od-price-rows {
  padding-top: 0.25rem;
}

.rr-od-price-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: #4b5563;
}

.rr-od-price-row--grand {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e5e7eb;
  font-weight: 700;
  font-size: 1rem;
  color: #111827;
}

.rr-od-price-row--grand span:last-child {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--rr-brand, #00a89c);
}

.rr-od-address {
  color: #374151;
  line-height: 1.6;
  font-size: 0.95rem;
  white-space: pre-line;
}

.rr-od-back {
  margin-top: 1rem;
}

.rr-od-back a {
  color: var(--rr-brand, #00a89c);
  font-weight: 600;
  text-decoration: none;
}

.rr-od-panel--track {
    margin-bottom: 1rem;
    margin-inline-start: 1.1rem;
}

/* Vertical timeline */
.rr-tlv-cancel {
  padding: 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  color: #991b1b;
  font-weight: 600;
}

.rr-tlv {
  list-style: none;
  margin: 0;
  padding: 0 0 0 14px;
  border-left: 3px solid #e5e7eb;
}

html[dir=rtl] .rr-tlv {
  padding: 0 18px 0 0;
  border-left: none;
  border-right: 3px solid #e5e7eb;
}

.rr-tlv__item {
  position: relative;
  padding: 0 0 1.5rem 1.25rem;
}

.rr-tlv__item:last-child {
  padding-bottom: 0;
}

.rr-tlv__dot {
  position: absolute;
  left: -36px;
  top: -1px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

html[dir=rtl] .rr-tlv__dot {
  left: auto;
  right: -36px;
}

.rr-tlv__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
}

.rr-tlv__icon--check {
  background: var(--rr-brand, #00a89c);
  color: #fff;
}

.rr-tlv__icon--accent {
  background: #ff6d00;
  color: #fff;
}

.rr-tlv__item--done .rr-tlv__icon--accent {
  background: var(--rr-brand, #00a89c);
}

.rr-tlv__icon--ghost {
  background: #fff;
  color: #9ca3af;
  border: 2px solid #e2e8f0;
}

.rr-tlv__title {
  font-weight: 700;
  color: #111827;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.rr-tlv__item--pending .rr-tlv__title {
  color: #9ca3af;
  font-weight: 500;
}

.rr-tlv__desc {
  font-size: 0.86rem;
  color: #6b7280;
  line-height: 1.45;
}

.rr-tlv__item--pending .rr-tlv__desc {
  color: #b0bec5;
}

.rr-tlv__time {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 0.35rem;
}

.rr-tlv__trackbox {
  margin-top: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  font-size: 0.85rem;
  color: #374151;
}

.rr-tlv__copy {
  border: none;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 6px;
}

.rr-tlv__copy:hover {
  color: var(--rr-brand, #00a89c);
  background: #fff;
}

.rr-tlv__copy.is-copied {
  color: #16a34a;
}

html[dir=rtl] .rr-tlv__item--done .rr-tlv__icon--check,
html[dir=rtl] .rr-tlv__item--current .rr-tlv__icon--accent {
  direction: ltr;
}

/* ===== Auth Pages (Login / Register) ===== */
/* ── Page header ── */
.rr-auth-header {
  background: #fff;
  padding: 1.5rem 0 1rem;
}

.rr-auth-header-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Back button — hidden on desktop, visible on mobile */
.rr-auth-back-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #333;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.rr-auth-back-btn:hover {
  border-color: #008b94;
  color: #008b94;
}

.rr-auth-page-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
}

/* ── Auth page body ── */
.rr-auth-page {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 1.5rem 0 4rem;
}

.rr-auth-card-wrap {
  display: flex;
  justify-content: center;
}

.rr-auth-card {
  width: 100%;
  max-width: 420px;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  padding: 2rem;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

/* ── Tabs (segmented control) ── */
.rr-auth-tabs {
  display: flex;
  gap: 6px;
  background: #f0f0f0;
  border-radius: 10px;
  padding: 5px;
  margin-bottom: 1.75rem;
}

.rr-auth-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: #555;
  background: transparent;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}

.rr-auth-tab--active {
  background: #008b94;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 139, 148, 0.25);
}

.rr-auth-tab:hover:not(.rr-auth-tab--active) {
  color: #008b94;
  background: rgba(0, 139, 148, 0.06);
}

/* ── Validation error ── */
.rr-auth-error {
  background: #fff0f0;
  border: 1px solid #fcc;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
  color: #c00;
  margin-bottom: 1.25rem;
}

.rr-auth-error:empty {
  display: none;
}

/* ── Form ── */
.rr-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.rr-auth-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.rr-auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.rr-auth-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #444;
}

.rr-auth-input {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
  color: #1a1a1a;
  width: 100%;
}

.rr-auth-input:focus {
  border-color: #008b94;
  box-shadow: 0 0 0 3px rgba(0, 139, 148, 0.12);
}

.rr-auth-field-error {
  font-size: 0.8rem;
  color: #c00;
}

/* ── Remember me + Forgot password row ── */
.rr-auth-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-top: -0.25rem;
}

.rr-auth-remember {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: #555;
  cursor: pointer;
}

.rr-auth-remember input {
  accent-color: #008b94;
}

.rr-auth-forgot {
  font-size: 0.875rem;
  color: #008b94;
  text-decoration: none;
  font-weight: 500;
}

.rr-auth-forgot:hover {
  text-decoration: underline;
  color: #006b72;
}

/* ── Submit button ── */
.rr-auth-submit {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #008b94;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.25rem;
}

.rr-auth-submit:hover {
  background: #006b72;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .rr-auth-back-btn {
    display: inline-flex;
  }
  .rr-auth-page-title {
    font-size: 1.5rem;
  }
  .rr-auth-header {
    padding: 1rem 0;
  }
  .rr-auth-page {
    padding: 1.25rem 0 3rem;
  }
  .rr-auth-card {
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
  }
  .rr-auth-field-row {
    grid-template-columns: 1fr;
  }
}
/* ===== Track Order ===== */
/* ========== Horizontal Step Tracker ========== */
.track-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 1.5rem 0 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.track-step {
  position: relative;
  text-align: center;
  padding: 0 0.25rem;
  font-size: 0.82rem;
  color: #9ca3af;
}

.track-step::before {
  content: "";
  position: absolute;
  top: 18px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: #e5e7eb;
  z-index: 0;
}

.track-step:first-child::before {
  display: none;
}

.track-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: 0 auto 0.65rem;
  background: #e5e7eb;
  color: #9ca3af;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.track-step.is-done::before {
  background: var(--rr-brand, #00a89c);
}

.track-step.is-active::before {
  background: var(--rr-brand, #00a89c);
}

.track-step.is-done .track-dot {
  background: var(--rr-brand, #00a89c);
  color: #fff;
}

.track-step.is-active .track-dot {
  background: #f97316;
  color: #fff;
}

.track-step-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: #111827;
  margin-bottom: 0.2rem;
}

.track-step-desc {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.4;
}

.track-step-time {
  font-size: 0.72rem;
  color: #9ca3af;
  margin-top: 0.15rem;
}

.track-step.is-pending .track-step-title {
  color: #9ca3af;
  font-weight: 500;
}

.track-step.is-pending .track-step-desc {
  color: #d1d5db;
}

.track-label {
  min-height: 2.2em;
}

/* ========= Track Order (toolbar, illustration, search field, dotted rule) ========= */
.rr-track-page {
  background: #ffffff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.rr-track-toolbar {
  background: #f0f2f5;
  border-bottom: 1px solid #e4e7ed;
  padding: 0.65rem 0;
}

.rr-track-toolbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}

.rr-track-toolbar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.rr-track-back {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #64748b;
  flex-shrink: 0;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.rr-track-back:hover {
  border-color: var(--rr-brand, #00a89c);
  color: var(--rr-brand, #00a89c);
}

.rr-track-heading {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
}

.rr-track-bc {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.875rem;
  line-height: 1.4;
}

.rr-track-bc a {
  color: var(--rr-brand, #00a89c);
  font-weight: 600;
  text-decoration: none;
}

.rr-track-bc a:hover {
  text-decoration: underline;
}

.rr-track-bc-sep {
  color: #94a3b8;
  font-weight: 500;
}

.rr-track-bc-current {
  color: #64748b;
  font-weight: 500;
}

html[dir=rtl] .rr-track-bc {
  flex-direction: row-reverse;
}

.rr-track-body {
  background: #ffffff;
  min-height: 42vh;
}

.rr-track-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0 2.5rem;
}

.rr-track-hero-title {
  display: none;
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1.5rem;
}

.rr-track-illustration {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.rr-track-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  max-height: 150px;
}

/* ── Search form — horizontal card ── */
.rr-track-form {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 1px 6px rgba(15, 23, 42, 0.05);
}

.rr-track-form-body {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
}

.rr-track-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.rr-track-form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.rr-track-form-input {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: #111827;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.rr-track-form-input:focus {
  border-color: var(--rr-brand, #00a89c);
  box-shadow: 0 0 0 3px rgba(0, 168, 156, 0.1);
}

.rr-track-form-btn {
  padding: 0.65rem 1.75rem;
  background: var(--rr-brand, #00a89c);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  height: fit-content;
}

.rr-track-form-btn:hover {
  background: #009688;
}

.rr-track-alert {
  margin-top: 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  color: #92400e;
  font-size: 0.95rem;
  text-align: center;
}

/* ── Dual-mode tracker (desktop horizontal / mobile vertical) ── */
.rr-trc-shipment {
  margin-bottom: 0.75rem;
}

.rr-trc-shipment-label {
  font-size: 0.82rem;
  color: #6b7280;
  margin-bottom: 0.15rem;
}

.rr-trc-shipment-num {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

.rr-trc-htrack {
  display: block;
}

.rr-trc-vtrack {
  display: none;
}

.rr-track-dotted {
  border: 0;
  border-top: 2px dotted rgba(0, 168, 156, 0.38);
  margin: 0;
  height: 0;
}

.rr-track-results {
  padding: 1.75rem 0 3rem;
  max-width: 680px;
  margin: 0 auto;
}

/* ── Track result card (matches Figma) ── */
.rr-trc-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.07);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.rr-trc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rr-trc-head-id {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.rr-trc-label {
  font-size: 0.85rem;
  color: #6b7280;
}

.rr-trc-id {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
}

.rr-trc-date {
  font-size: 0.85rem;
  color: #6b7280;
}

.rr-trc-thumbs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}

.rr-trc-thumb {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.rr-trc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rr-trc-thumb-ph {
  font-size: 1.5rem;
  color: #cbd5e1;
}

.rr-trc-rows {
  border-top: 1px solid #f0f0f0;
  padding-top: 0.9rem;
  margin-bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.rr-trc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rr-trc-row-label {
  font-size: 0.9rem;
  color: #6b7280;
}

.rr-trc-row-val {
  font-size: 0.9rem;
  color: #111827;
}

.rr-trc-total {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

/* Tab buttons */
.rr-trc-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid var(--rr-brand, #00a89c);
  margin-top: 0.25rem;
}

.rr-trc-tab {
  padding: 0.65rem 1rem;
  border: none;
  background: #fff;
  color: var(--rr-brand, #00a89c);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  line-height: 1.3;
}

.rr-trc-tab + .rr-trc-tab {
  border-left: 1.5px solid var(--rr-brand, #00a89c);
}

html[dir=rtl] .rr-trc-tab + .rr-trc-tab {
  border-left: none;
  border-right: 1.5px solid var(--rr-brand, #00a89c);
}

.rr-trc-tab--active {
  background: var(--rr-brand, #00a89c);
  color: #fff;
}

.rr-trc-tab:hover:not(.rr-trc-tab--active) {
  background: rgba(0, 168, 156, 0.07);
}

/* Panels */
.rr-trc-panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 767px) {
  /* Toolbar: hide heading, breadcrumb inline */
  .rr-track-heading {
    display: none;
  }
  .rr-track-toolbar-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .rr-track-toolbar-left {
    flex: 0 0 auto;
  }
  .rr-track-bc {
    flex: 1;
  }
  /* Hero: show mobile title */
  .rr-track-hero-title {
    display: block;
  }
  .rr-track-hero {
    padding: 1.5rem 0 2rem;
  }
  .rr-track-illustration {
    margin-bottom: 1.5rem;
  }
  /* Form: stack vertically */
  .rr-track-form {
    padding: 1.25rem;
  }
  .rr-track-form-body {
    grid-template-columns: 1fr;
  }
  .rr-track-form-btn {
    width: 100%;
    padding: 0.82rem 1rem;
  }
  /* Tracker: show vertical, hide horizontal */
  .rr-trc-htrack {
    display: none;
  }
  .rr-trc-vtrack {
    display: block;
  }
}
@media (max-width: 480px) {
  .rr-trc-card {
    padding: 1rem;
  }
  .rr-trc-panel {
    padding: 1rem;
  }
  .rr-trc-tabs {
    font-size: 0.85rem;
  }
}
.rr-track-results-head {
  margin-bottom: 1.25rem;
}

.rr-track-results-title {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #111827;
}

.rr-track-results-meta {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
}

.rr-track-summary {
  margin-bottom: 1.5rem;
}

.rr-track-items-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
  color: #111827;
}

.rr-track-table-wrap {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.rr-track-table {
  margin-bottom: 0;
}

.rr-track-cancel-msg {
  margin-top: 1rem;
}

.rr-track-newsearch {
  margin-top: 1.5rem;
  text-align: center;
}

.rr-track-newsearch-link {
  color: var(--rr-brand, #00a89c);
  font-weight: 700;
  text-decoration: none;
}

.rr-track-newsearch-link:hover {
  text-decoration: underline;
}

.rr-track-page .track-step.is-done:before {
  background: var(--rr-brand, #00a89c);
}

.rr-track-page .track-step.is-done .track-dot {
  background: var(--rr-brand, #00a89c);
  border-color: var(--rr-brand, #00a89c);
}

.rr-track-page .track-step.is-active .track-dot {
  box-shadow: 0 0 0 6px rgba(0, 168, 156, 0.22);
}

.rr-track-result-actions {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f3f4f6;
}

.rr-track-results--card {
  max-width: 720px;
  margin: 0 auto;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */

.rr-gallery-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--footer-bg, #101828);
  margin-bottom: 1.5rem;
  text-align: center;
}

.rr-gallery-brands {
  margin-bottom: 3.5rem;
}

.rr-gallery-brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 1.25rem;
}

.rr-gallery-brand-card {
  background: #fff;
  border: 1.5px solid #e8eaed;
  border-radius: 14px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #1a1a2e;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.18s;
}

.rr-gallery-brand-card:hover {
  box-shadow: 0 8px 28px rgba(0, 167, 157, 0.13);
  border-color: var(--primary, #00A79D);
  transform: translateY(-3px);
  text-decoration: none;
  color: var(--primary-dark, #097273);
}

.rr-gallery-brand-card img {
  max-height: 52px;
  max-width: 110px;
  object-fit: contain;
}

.rr-gallery-brand-icon {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary, #00A79D);
}

.rr-gallery-brand-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

.rr-gallery-cats {
  margin-bottom: 2rem;
}

.rr-gallery-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 1.25rem;
}

.rr-gallery-cat-card {
  background: linear-gradient(135deg, #f8fffe 0%, #edfaf9 100%);
  border: 1.5px solid #d1f4f1;
  border-radius: 14px;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #1a1a2e;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.18s;
}

.rr-gallery-cat-card:hover {
  box-shadow: 0 8px 28px rgba(0, 167, 157, 0.13);
  border-color: var(--primary, #00A79D);
  transform: translateY(-3px);
  text-decoration: none;
  color: var(--primary-dark, #097273);
}

.rr-gallery-cat-card__img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 0.5rem;
}

.rr-gallery-cat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary, #00A79D);
}

.rr-gallery-cat-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.rr-gallery-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: #aaa;
}

.rr-gallery-empty .fa {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

/* ============================================================
   SUPPORT / HELP CENTER PAGE
   ============================================================ */

.rr-support-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.rr-support-card {
  background: #fff;
  border: 1.5px solid #e8eaed;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  text-decoration: none;
  color: #1a1a2e;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.18s;
}

.rr-support-card:hover {
  box-shadow: 0 8px 28px rgba(0, 167, 157, 0.13);
  border-color: var(--primary, #00A79D);
  transform: translateY(-3px);
  text-decoration: none;
  color: inherit;
}

.rr-support-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e6faf9 0%, #d4f4f2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary, #00A79D);
}

.rr-support-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.rr-support-card__desc {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.55;
  margin: 0;
}

.rr-support-card__arrow {
  font-size: 0.84rem;
  color: var(--primary, #00A79D);
  font-weight: 600;
  margin-top: auto;
  padding-top: 0.25rem;
}

.rr-support-contact {
  background: linear-gradient(135deg, #0d1b2e 0%, #101828 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  margin-top: 1rem;
}

.rr-support-contact__title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
}

.rr-support-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.rr-support-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d0d5dd;
  font-size: 0.9rem;
}

.rr-support-contact-item a {
  color: #67e5de;
  text-decoration: none;
}

.rr-support-contact-item a:hover {
  color: #fff;
  text-decoration: underline;
}

.rr-support-contact-item .fa {
  color: var(--primary, #00A79D);
  font-size: 1.05rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.rr-support-contact-cta {
  margin-top: 1.75rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.rr-support-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.rr-support-cta-btn--primary {
  background: var(--primary, #00A79D);
  color: #fff;
}

.rr-support-cta-btn--primary:hover {
  background: var(--primary-dark, #097273);
  color: #fff;
  text-decoration: none;
}

.rr-support-cta-btn--outline {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #d0d5dd;
}

.rr-support-cta-btn--outline:hover {
  border-color: var(--primary, #00A79D);
  color: #fff;
  text-decoration: none;
}

/* ============================================================
   CATEGORY TOOLBAR (replaces Bootstrap card wrapper)
   ============================================================ */

.rr-cat-toolbar {
  background: #f8f9fb;
  border: 1px solid #edf0f4;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}

.rr-cat-toolbar .rr-toolbar-dd {
  display: block;
  position: relative;
}

.rr-cat-toolbar .rr-toolbar-dd-btn {
  background: #fff;
}

.rr-cat-toolbar .rr-toolbar-dd-menu {
  z-index: 400;
}

.rr-track-od-card {
  margin-left: auto;
  margin-right: auto;
}

/* ===== Order Confirmation Page ===== */
.rr-oc-page {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f8f9fb;
  padding-bottom: 3rem;
}

/* ── Hero ── */
.rr-oc-hero {
  background: #fff;
  padding: 2.5rem 0 2rem;
  text-align: center;
}

.rr-oc-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.rr-oc-check-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.rr-oc-hero-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111;
  margin: 0;
  line-height: 1.2;
}

.rr-oc-hero-sub {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 0;
  max-width: 480px;
  line-height: 1.5;
}

.rr-oc-hero-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.rr-oc-order-num {
  color: #008b94;
  font-weight: 600;
  text-decoration: none;
}

.rr-oc-order-num:hover {
  text-decoration: underline;
}

.rr-oc-meta-dot {
  color: #bbb;
}

.rr-oc-order-date {
  color: #6b7280;
}

/* ── Body container ── */
.rr-oc-body {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ── Info card ── */
.rr-oc-info-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
}

.rr-oc-info-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 1.35rem 1.5rem 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.rr-oc-info-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 0.75rem;
}

.rr-oc-info-line {
  font-size: 0.875rem;
  color: #444;
  margin: 0 0 0.3rem;
  line-height: 1.4;
}

.rr-oc-pm-icon {
  margin-right: 0.35rem;
  color: #555;
}

[dir=rtl] .rr-oc-pm-icon {
  margin-right: 0;
  margin-left: 0.35rem;
}

/* Shipping method strip */
.rr-oc-ship-strip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.5rem;
  background: rgba(0, 139, 148, 0.06);
  font-size: 0.875rem;
  font-weight: 500;
  color: #008b94;
  border-bottom: 1px solid rgba(0, 139, 148, 0.12);
}

.rr-oc-ship-icon {
  font-size: 1rem;
}

/* ── Desktop horizontal tracker ── */
.rr-oc-tracker-desktop {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem 1.5rem 1.75rem;
  position: relative;
}

.rr-oc-tracker-mobile {
  display: none;
}

.rr-oc-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
}

.rr-oc-connector {
  position: absolute;
  top: 18px;
  left: -50%;
  width: 100%;
  height: 3px;
  background: #e0e0e0;
  z-index: 0;
}

.rr-oc-connector--done {
  background: #008b94;
}

.rr-oc-step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.rr-oc-step--done .rr-oc-step-circle {
  background: #008b94;
  color: #fff;
}

.rr-oc-step--active .rr-oc-step-circle {
  background: #f97316;
  color: #fff;
  box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.18);
}

.rr-oc-step--future .rr-oc-step-circle {
  background: #e5e7eb;
  color: #9ca3af;
}

.rr-oc-step-label {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #444;
  line-height: 1.3;
}

.rr-oc-step--future .rr-oc-step-label {
  color: #9ca3af;
}

/* ── Order Summary card ── */
.rr-oc-summary-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.35rem 1.5rem 1.5rem;
}

.rr-oc-summary-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 1.1rem;
}

/* Desktop table */
.rr-oc-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 1.25rem;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
}

.rr-oc-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
}

.rr-oc-th {
  padding: 0.75rem 1rem;
  background: #f8f9fa;
  font-size: 0.8rem;
  font-weight: 700;
  color: #555;
  text-align: left;
  border-bottom: 1px solid #e8e8e8;
  white-space: nowrap;
}

[dir=rtl] .rr-oc-th {
  text-align: right;
}

.rr-oc-th-img {
  width: 80px;
}

.rr-oc-th-model {
  width: 80px;
}

.rr-oc-th-qty {
  width: 80px;
  text-align: center;
}

.rr-oc-th-price {
  width: 100px;
}

.rr-oc-th-total {
  width: 100px;
}

.rr-oc-row:not(:last-child) td {
  border-bottom: 1px solid #f0f0f0;
}

.rr-oc-td {
  padding: 0.9rem 1rem;
  vertical-align: middle;
  font-size: 0.875rem;
  color: #333;
}

.rr-oc-product-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid #f0f0f0;
  background: #fafafa;
  display: block;
}

.rr-oc-td-name {
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
}

.rr-oc-td-model {
  color: #777;
  font-size: 0.8rem;
}

.rr-oc-td-qty {
  text-align: center;
}

.rr-oc-td-total {
  font-weight: 700;
  color: #1a1a1a;
}

/* Mobile item cards — hidden on desktop */
.rr-oc-mobile-items {
  display: none;
}

/* Totals */
.rr-oc-totals {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  border-top: 1px solid #e8e8e8;
  padding-top: 1rem;
}

.rr-oc-total-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 0.9rem;
  color: #555;
}

.rr-oc-total-label {
  font-weight: 500;
}

.rr-oc-total-val {
  font-weight: 600;
  color: #1a1a1a;
  min-width: 90px;
  text-align: end;
}

.rr-oc-total-row--grand {
  font-size: 1rem;
  margin-top: 0.2rem;
  padding-top: 0.4rem;
  border-top: 1px solid #e8e8e8;
}

.rr-oc-grand-label {
  font-weight: 700;
  color: #111;
}

.rr-oc-grand-val {
  font-weight: 700;
  color: #111;
  min-width: 90px;
  text-align: end;
  font-size: 1.05rem;
}

/* ── What's Next card ── */
.rr-oc-next-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: center;
}

.rr-oc-next-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 0.75rem;
}

.rr-oc-next-email {
  font-size: 0.9rem;
  color: #555;
  margin: 0 0 0.6rem;
}

.rr-oc-next-track {
  font-size: 0.875rem;
  color: #008b94;
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.rr-oc-next-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.rr-oc-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.5rem;
  border: 2px solid #008b94;
  border-radius: 8px;
  color: #008b94;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  background: #fff;
  transition: background 0.2s, color 0.2s;
}

.rr-oc-btn-outline:hover {
  background: #008b94;
  color: #fff;
}

.rr-oc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.5rem;
  border: 2px solid #008b94;
  border-radius: 8px;
  background: #008b94;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.rr-oc-btn-primary:hover {
  background: #006b72;
  border-color: #006b72;
  color: #fff;
}

/* ── Support link ── */
.rr-oc-support-line {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  padding-top: 0.25rem;
}

.rr-oc-support-link {
  color: #008b94;
  font-weight: 600;
  text-decoration: none;
}

.rr-oc-support-link:hover {
  text-decoration: underline;
}

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 767px) {
  .rr-oc-hero {
    padding: 1.75rem 0 1.5rem;
  }
  .rr-oc-hero-title {
    font-size: 1.35rem;
  }
  .rr-oc-info-cols {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.1rem 1.1rem 1rem;
  }
  .rr-oc-ship-strip {
    padding: 0.6rem 1.1rem;
  }
  /* Desktop tracker hidden, mobile vertical shown */
  .rr-oc-tracker-desktop {
    display: none;
  }
  .rr-oc-tracker-mobile {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1.1rem 1.1rem 1.25rem;
  }
  .rr-oc-step-v {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    min-height: 48px;
  }
  .rr-oc-step-v-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
  }
  .rr-oc-step-v-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
  }
  .rr-oc-step-v.rr-oc-step--done .rr-oc-step-v-circle {
    background: #008b94;
    color: #fff;
  }
  .rr-oc-step-v.rr-oc-step--active .rr-oc-step-v-circle {
    background: #f97316;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2);
  }
  .rr-oc-step-v.rr-oc-step--future .rr-oc-step-v-circle {
    background: #e5e7eb;
    color: #9ca3af;
  }
  .rr-oc-step-v-line {
    width: 2px;
    flex: 1;
    min-height: 20px;
    background: #e0e0e0;
    margin: 3px 0;
  }
  .rr-oc-step-v-line--done {
    background: #008b94;
  }
  .rr-oc-step-v-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.35rem 0 0.75rem;
    min-width: 0;
  }
  .rr-oc-step-v-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
  }
  .rr-oc-step-v.rr-oc-step--future .rr-oc-step-v-title {
    color: #9ca3af;
  }
  .rr-oc-step-v-desc {
    font-size: 0.78rem;
    color: #6b7280;
    line-height: 1.4;
  }
  /* Order Summary: hide table, show mobile cards */
  .rr-oc-summary-card {
    padding: 1.1rem 1.1rem 1.25rem;
  }
  .rr-oc-table-wrap {
    display: none;
  }
  .rr-oc-mobile-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1rem;
  }
  .rr-oc-mitem {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 0.6rem 0.85rem;
    align-items: start;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .rr-oc-mitem:last-child {
    border-bottom: none;
  }
  .rr-oc-mitem-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid #f0f0f0;
    background: #fafafa;
    display: block;
  }
  .rr-oc-mitem-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
  }
  .rr-oc-mitem-top {
    display: flex;
    justify-content: space-between;
    gap: 0.4rem;
    align-items: flex-start;
  }
  .rr-oc-mitem-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
  }
  .rr-oc-mitem-qty {
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .rr-oc-mitem-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
  }
  /* Totals full-width on mobile */
  .rr-oc-totals {
    align-items: stretch;
  }
  .rr-oc-total-row {
    justify-content: space-between;
  }
  /* What's Next card */
  .rr-oc-next-card {
    padding: 1.25rem 1.1rem 1.25rem;
  }
  .rr-oc-next-actions {
    flex-direction: column;
  }
  .rr-oc-btn-outline,
  .rr-oc-btn-primary {
    width: 100%;
    justify-content: center;
  }
}
/* ===== Animations & Back-to-top ===== */
/* ── Homepage scroll animations ── */
@keyframes rrFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rrFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes rrFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rrFadeRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Elements wait invisibly until the observer fires */
[data-anim] {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  [data-anim] {
    opacity: 1 !important;
    animation: none !important;
  }
}
[data-anim=fade-up].rr-anim-in {
  animation: rrFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

[data-anim=fade-in].rr-anim-in {
  animation: rrFadeIn 0.5s ease both;
}

[data-anim=fade-left].rr-anim-in {
  animation: rrFadeLeft 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

[data-anim=fade-right].rr-anim-in {
  animation: rrFadeRight 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Stagger delay for grid children */
[data-anim-stagger] > * {
  opacity: 0;
}

[data-anim-stagger].rr-anim-in > * {
  animation: rrFadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

[data-anim-stagger].rr-anim-in > *:nth-child(1) {
  animation-delay: 0s;
}

[data-anim-stagger].rr-anim-in > *:nth-child(2) {
  animation-delay: 0.07s;
}

[data-anim-stagger].rr-anim-in > *:nth-child(3) {
  animation-delay: 0.14s;
}

[data-anim-stagger].rr-anim-in > *:nth-child(4) {
  animation-delay: 0.21s;
}

[data-anim-stagger].rr-anim-in > *:nth-child(5) {
  animation-delay: 0.28s;
}

[data-anim-stagger].rr-anim-in > *:nth-child(6) {
  animation-delay: 0.35s;
}

[data-anim-stagger].rr-anim-in > *:nth-child(7) {
  animation-delay: 0.42s;
}

[data-anim-stagger].rr-anim-in > *:nth-child(8) {
  animation-delay: 0.49s;
}

@media (prefers-reduced-motion: reduce) {
  [data-anim-stagger] > * {
    opacity: 1 !important;
    animation: none !important;
  }
}
/* ── Back-to-top button ── */
#rr-back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--rr-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#rr-back-top.rr-back-top--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#rr-back-top:hover {
  background: var(--rr-brand-dark, #008b94);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

/* Address add-form & delete */
.rr-alert {
  padding: 0.65rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}
.rr-alert--success {
  background: rgba(0, 168, 156, 0.12);
  color: #0f766e;
  border: 1px solid rgba(0, 168, 156, 0.25);
}
.rr-addr-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.rr-addr-card-body { flex: 1; min-width: 0; }
.rr-addr-delete-form { margin: 0; flex-shrink: 0; }
.rr-addr-delete-btn {
  background: none;
  border: 1px solid #fca5a5;
  color: #dc2626;
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.rr-addr-delete-btn:hover { background: #fef2f2; }
.rr-addr-add-toggle { margin-top: 1rem; gap: 0.4rem; }
.rr-addr-form {
  display: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  padding: 1.35rem 1.5rem;
  margin-top: 1rem;
}
.rr-addr-form--open { display: block; }
.rr-addr-form-title {
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
}
.rr-form-group { margin-bottom: 1rem; }
.rr-form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 0.35rem;
}
.rr-form-input {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: border-color 0.15s;
}
.rr-form-input:focus { border-color: #00a89c; outline: none; }
.rr-form-error { display: block; font-size: 0.8rem; color: #dc2626; margin-top: 0.25rem; }
.rr-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 575px) {
  .rr-form-row { grid-template-columns: 1fr; }
}
.rr-form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.rr-form-checkbox { width: 1rem; height: 1rem; accent-color: #00a89c; }
.rr-form-check-label { font-size: 0.92rem; color: #374151; }
.rr-addr-form-actions { display: flex; gap: 0.65rem; flex-wrap: wrap; }

/* Payment methods list */
.rr-pay-methods-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  max-width: 32rem;
}
.rr-pay-method-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  padding: 1rem 1.25rem;
}
.rr-pay-method-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(0, 168, 156, 0.1);
  color: #00a89c;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rr-pay-method-name {
  font-weight: 700;
  color: #111827;
  font-size: 0.95rem;
}

/* Variant label in cart & checkout */
.rr-cart-variant-label {
  color: var(--category-accent, #008b94);
  font-size: 0.8rem;
}
.rr-checkout-line-variant {
  font-size: 0.78rem;
  color: var(--category-accent, #008b94);
  margin-top: 0.1rem;
  margin-bottom: 0.15rem;
}

/* Sale price strikethrough — cart & checkout */
.rr-sale-original {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
  line-height: 1.3;
}
.rr-cart-product-price-mobile .rr-sale-original {
  display: inline;
  margin-inline-start: 0.35rem;
}
.rr-checkout-line-price .rr-sale-original {
  display: inline;
  margin-inline-start: 0.3rem;
}

/* ============================================================
   RR Info Pages — Contact, About, FAQ, Shipping, Policies
   ============================================================ */

/* Shared dark hero */
.rr-pg-hero {
  background: linear-gradient(135deg, #060e1a 0%, #0d1e35 55%, #071625 100%);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.rr-pg-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -100px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,167,157,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.rr-pg-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,167,157,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.rr-pg-hero__inner { position: relative; z-index: 1; }
.rr-pg-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(0,167,157,0.15);
  border: 1px solid rgba(0,167,157,0.3);
  color: #4dd9d3;
  border-radius: 100px;
  padding: 0.3rem 1rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.rr-pg-hero__title {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 0.6rem;
  line-height: 1.15;
}
.rr-pg-hero__sub {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  margin: 0;
  max-width: 500px;
  line-height: 1.65;
}
.rr-pg-body { padding: 3.5rem 0 5rem; background: #f4f6f8; }

/* ── Contact ── */
.rr-contact-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) { .rr-contact-grid { grid-template-columns: 1fr; } }

.rr-contact-info-panel {
  background: linear-gradient(155deg, #0d1e35 0%, #071220 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.rr-contact-info-panel::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,167,157,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.rr-contact-info-panel__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.3rem;
}
.rr-contact-info-panel__sub {
  color: rgba(255,255,255,0.45);
  font-size: 0.87rem;
  margin: 0 0 2rem;
  line-height: 1.6;
}
.rr-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
  position: relative; z-index: 1;
}
.rr-contact-info-item:last-of-type { margin-bottom: 0; }
.rr-contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,167,157,0.18);
  border: 1px solid rgba(0,167,157,0.3);
  color: #4dd9d3;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.rr-contact-info-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 0.22rem;
}
.rr-contact-info-val { color: rgba(255,255,255,0.85); font-size: 0.91rem; line-height: 1.55; margin: 0; }
.rr-contact-info-val a { color: rgba(255,255,255,0.85); text-decoration: none; }
.rr-contact-info-val a:hover { color: #4dd9d3; }
.rr-contact-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 1.8rem 0; }
.rr-contact-social-row { display: flex; gap: 0.6rem; flex-wrap: wrap; position: relative; z-index: 1; }
.rr-contact-social-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border-radius: 9px;
  padding: 0.5rem 1rem;
  font-size: 0.82rem; font-weight: 600; text-decoration: none;
  transition: all 0.2s;
}
.rr-contact-social-btn:hover { background: rgba(0,167,157,0.25); border-color: rgba(0,167,157,0.5); color: #4dd9d3; }
.rr-contact-social-btn.wa { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.3); color: #25D366; }
.rr-contact-social-btn.wa:hover { background: #25D366; border-color: #25D366; color: #fff; }

.rr-contact-form-panel {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(6,14,26,0.1);
  padding: 2.5rem 2.25rem;
  border: 1px solid rgba(0,0,0,0.05);
}
.rr-contact-form-panel__title { font-size: 1.2rem; font-weight: 800; color: #0d1e35; margin: 0 0 0.25rem; }
.rr-contact-form-panel__sub { font-size: 0.86rem; color: #8a94a6; margin: 0 0 1.8rem; }
.rr-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .rr-form-row { grid-template-columns: 1fr; } }
.rr-form-group { margin-bottom: 1.1rem; }
.rr-form-group label { display: block; font-size: 0.79rem; font-weight: 700; color: #374151; margin-bottom: 0.4rem; letter-spacing: 0.02em; }
.rr-form-input {
  width: 100%;
  padding: 0.72rem 1rem;
  border: 1.5px solid #e8ecf0;
  border-radius: 10px;
  font-size: 0.93rem; font-family: inherit; color: #0d1e35;
  background: #fafbfc;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}
.rr-form-input::placeholder { color: #b0b9c6; }
.rr-form-input:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(0,167,157,0.08); }
textarea.rr-form-input { resize: vertical; min-height: 135px; }
.rr-form-submit {
  width: 100%;
  padding: 0.88rem 1rem;
  background: var(--primary);
  color: #fff;
  border: none; border-radius: 10px;
  font-size: 0.97rem; font-weight: 700; cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 0.55rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0,167,157,0.35);
}
.rr-form-submit:hover { background: var(--primary-dark); box-shadow: 0 6px 18px rgba(0,167,157,0.4); }
.rr-form-success {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: #f0fdf4; border: 1.5px solid #86efac;
  border-radius: 10px; padding: 1rem 1.1rem; margin-bottom: 1.3rem;
}
.rr-form-success__icon { color: #16a34a; font-size: 1.2rem; margin-top: 0.05rem; flex-shrink: 0; }
.rr-form-success__text { color: #166534; font-size: 0.9rem; line-height: 1.55; margin: 0; }

/* ── About ── */
.rr-about-intro { max-width: 680px; margin: 0 auto 3.5rem; text-align: center; }
.rr-about-intro__name { font-size: 2rem; font-weight: 800; color: #0d1e35; margin: 0 0 0.8rem; }
.rr-about-intro__text { font-size: 1rem; color: #4b5563; line-height: 1.75; margin: 0; }
.rr-about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 3.5rem; }
@media (max-width: 860px) { .rr-about-values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .rr-about-values { grid-template-columns: 1fr; } }
.rr-value-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(6,14,26,0.07);
  padding: 2rem 1.5rem 1.75rem;
  border: 1px solid rgba(0,0,0,0.04);
  border-top: 3px solid var(--primary);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.rr-value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(6,14,26,0.12); }
.rr-value-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,167,157,0.12) 0%, rgba(0,167,157,0.06) 100%);
  color: var(--primary); font-size: 1.5rem;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}
.rr-value-card__title { font-size: 0.97rem; font-weight: 700; color: #0d1e35; margin: 0 0 0.45rem; }
.rr-value-card__desc { font-size: 0.85rem; color: #6b7280; margin: 0; line-height: 1.65; }
.rr-about-contact-section { margin-top: 0.5rem; }
.rr-about-contact-section__title { font-size: 1.2rem; font-weight: 800; color: #0d1e35; margin: 0 0 1.5rem; text-align: center; }
.rr-about-contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.rr-about-contact-card {
  display: flex; align-items: flex-start; gap: 0.9rem;
  background: #fff; border: 1.5px solid #e8ecf0; border-radius: 14px; padding: 1.2rem 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rr-about-contact-card:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(0,167,157,0.1); }
.rr-about-contact-icon { color: var(--primary); font-size: 1.1rem; margin-top: 0.18rem; flex-shrink: 0; }
.rr-about-contact-label { font-size: 0.7rem; color: #9ca3af; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 0.22rem; }
.rr-about-contact-val { font-size: 0.9rem; color: #0d1e35; font-weight: 500; line-height: 1.45; margin: 0; }
.rr-about-contact-val a { color: var(--primary); text-decoration: none; }
.rr-about-contact-val a:hover { text-decoration: underline; }

/* ── FAQ ── */
.rr-faq-list { max-width: 820px; margin: 0 auto; }
.rr-faq-item {
  background: #fff;
  border: 1.5px solid #e8ecf0;
  border-radius: 14px;
  margin-bottom: 0.65rem;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rr-faq-item.is-open {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,167,157,0.12);
}
.rr-faq-btn {
  width: 100%; display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: none; border: none; cursor: pointer; text-align: left; font-family: inherit;
}
html[dir="rtl"] .rr-faq-btn { text-align: right; }
.rr-faq-btn__num {
  width: 32px; height: 32px; border-radius: 9px;
  background: rgba(0,167,157,0.08);
  color: var(--primary);
  font-size: 0.78rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.rr-faq-item.is-open .rr-faq-btn__num { background: var(--primary); color: #fff; }
.rr-faq-btn__text { flex: 1; font-size: 0.95rem; font-weight: 700; color: #0d1e35; line-height: 1.4; }
.rr-faq-btn__icon {
  width: 28px; height: 28px; border-radius: 8px;
  border: 1.5px solid #dde2ea;
  display: flex; align-items: center; justify-content: center;
  color: #b0b9c6; font-size: 0.85rem; flex-shrink: 0;
  transition: all 0.25s;
}
.rr-faq-item.is-open .rr-faq-btn__icon {
  background: var(--primary); border-color: var(--primary);
  color: #fff; transform: rotate(45deg);
}
.rr-faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding-bottom 0.25s;
  padding: 0 1.4rem 0 calc(1.4rem + 32px + 1rem);
  font-size: 0.91rem; color: #4b5563; line-height: 1.75;
}
html[dir="rtl"] .rr-faq-body { padding: 0 calc(1.4rem + 32px + 1rem) 0 1.4rem; }
.rr-faq-item.is-open .rr-faq-body { max-height: 600px; padding-bottom: 1.3rem; }
.rr-faq-body a { color: var(--primary); font-weight: 600; }
.rr-faq-cta {
  text-align: center; margin-top: 3rem;
  padding: 2.75rem 2rem;
  background: linear-gradient(135deg, #060e1a 0%, #0d1e35 100%);
  border-radius: 20px;
  max-width: 820px; margin-left: auto; margin-right: auto;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative; overflow: hidden;
}
.rr-faq-cta::before {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,167,157,0.15) 0%, transparent 70%);
}
.rr-faq-cta__icon { font-size: 2.5rem; color: #4dd9d3; margin-bottom: 0.8rem; position: relative; z-index: 1; }
.rr-faq-cta__title { font-size: 1.15rem; font-weight: 800; color: #fff; margin: 0 0 0.4rem; position: relative; z-index: 1; }
.rr-faq-cta__sub { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin: 0 0 1.5rem; position: relative; z-index: 1; }
.rr-faq-cta__link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary); color: #fff;
  border-radius: 10px; padding: 0.7rem 1.75rem;
  font-weight: 700; font-size: 0.93rem; text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0,167,157,0.35);
  position: relative; z-index: 1;
}
.rr-faq-cta__link:hover { background: var(--primary-dark); color: #fff; }

/* ── Shipping Info ── */
.rr-ship-cards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
@media (max-width: 760px) { .rr-ship-cards-row { grid-template-columns: 1fr; } }
.rr-ship-stat-card {
  background: #fff; border-radius: 18px;
  box-shadow: 0 4px 24px rgba(6,14,26,0.07);
  padding: 2rem 1.5rem; text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  border-top: 3px solid var(--primary);
}
.rr-ship-stat-card__icon {
  width: 60px; height: 60px; border-radius: 15px;
  background: linear-gradient(135deg, rgba(0,167,157,0.12) 0%, rgba(0,167,157,0.06) 100%);
  color: var(--primary); font-size: 1.6rem;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.rr-ship-stat-card__val { font-size: 1.7rem; font-weight: 800; color: #0d1e35; margin: 0 0 0.2rem; }
.rr-ship-stat-card__label { font-size: 0.85rem; font-weight: 700; color: #374151; margin: 0 0 0.3rem; }
.rr-ship-stat-card__desc { font-size: 0.8rem; color: #8a94a6; margin: 0; line-height: 1.55; }
.rr-ship-free-banner {
  background: linear-gradient(135deg, #060e1a 0%, #0d1e35 100%);
  border-radius: 18px; padding: 2rem 2.5rem;
  display: flex; align-items: center; gap: 1.75rem;
  color: #fff; margin-bottom: 3rem;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative; overflow: hidden;
}
.rr-ship-free-banner::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,167,157,0.18) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 520px) { .rr-ship-free-banner { flex-direction: column; text-align: center; gap: 1rem; } }
.rr-ship-free-banner__icon { font-size: 3rem; flex-shrink: 0; position: relative; z-index: 1; }
.rr-ship-free-banner__title { font-size: 1.2rem; font-weight: 800; margin: 0 0 0.3rem; position: relative; z-index: 1; }
.rr-ship-free-banner__sub { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin: 0; position: relative; z-index: 1; }
.rr-ship-steps { max-width: 700px; }
.rr-ship-steps__title { font-size: 1.2rem; font-weight: 800; color: #0d1e35; margin: 0 0 1.75rem; }
.rr-ship-step { display: flex; align-items: flex-start; gap: 1.1rem; margin-bottom: 1.5rem; position: relative; }
.rr-ship-step:not(:last-child)::before {
  content: '';
  position: absolute; left: 20px; top: 42px;
  width: 2px; height: calc(100% + 4px);
  background: linear-gradient(to bottom, var(--primary), rgba(0,167,157,0.1));
}
html[dir="rtl"] .rr-ship-step:not(:last-child)::before { left: auto; right: 20px; }
.rr-ship-step__dot {
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--primary);
  color: var(--primary); font-size: 0.9rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 4px 12px rgba(0,167,157,0.2);
}
.rr-ship-step__body { flex: 1; padding-top: 0.35rem; }
.rr-ship-step__title { font-size: 0.97rem; font-weight: 700; color: #0d1e35; margin: 0 0 0.25rem; }
.rr-ship-step__desc { font-size: 0.86rem; color: #6b7280; margin: 0; line-height: 1.65; }
.rr-ship-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 700px; margin-top: 3rem; }
@media (max-width: 560px) { .rr-ship-links-grid { grid-template-columns: 1fr; } }
.rr-ship-link-card {
  display: flex; align-items: center; gap: 0.9rem;
  background: #fff; border: 1.5px solid #e8ecf0; border-radius: 14px; padding: 1.1rem 1.3rem;
  text-decoration: none; color: #0d1e35;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.rr-ship-link-card:hover { border-color: var(--primary); background: #f0fffe; box-shadow: 0 4px 16px rgba(0,167,157,0.1); color: #0d1e35; }
.rr-ship-link-icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: linear-gradient(135deg, rgba(0,167,157,0.12) 0%, rgba(0,167,157,0.06) 100%);
  color: var(--primary); font-size: 1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rr-ship-link-title { font-size: 0.9rem; font-weight: 700; color: #0d1e35; margin: 0 0 0.1rem; }
.rr-ship-link-sub { font-size: 0.77rem; color: #8a94a6; margin: 0; }

/* ── Policy pages (Privacy, Terms, Refund) ── */
.rr-policy-wrap { max-width: 860px; margin: 0 auto; }
.rr-policy-meta { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.75rem; flex-wrap: wrap; }
.rr-policy-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(0,167,157,0.1);
  border: 1px solid rgba(0,167,157,0.2);
  color: var(--primary-dark);
  border-radius: 100px; padding: 0.28rem 0.9rem; font-size: 0.75rem; font-weight: 700;
}
.rr-policy-updated { font-size: 0.8rem; color: #b0b9c6; }
.rr-policy-box {
  background: #fff; border-radius: 20px;
  box-shadow: 0 8px 40px rgba(6,14,26,0.08);
  padding: 3rem 3.25rem;
  line-height: 1.85; color: #374151;
  border: 1px solid rgba(0,0,0,0.04);
}
@media (max-width: 640px) { .rr-policy-box { padding: 1.75rem 1.25rem; } }
.rr-policy-box h2 { font-size: 1.6rem; font-weight: 800; color: #0d1e35; margin: 0 0 1rem; }
.rr-policy-box h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--primary-dark);
  margin: 2.25rem 0 0.6rem; padding-bottom: 0.5rem;
  border-bottom: 2px solid #f0f4f8;
}
.rr-policy-box h4 { font-size: 0.97rem; font-weight: 700; color: #0d1e35; margin: 1.3rem 0 0.4rem; }
.rr-policy-box p { margin: 0 0 1rem; }
.rr-policy-box ul, .rr-policy-box ol { margin: 0 0 1rem 1.5rem; padding: 0; }
.rr-policy-box li { margin-bottom: 0.45rem; }
.rr-policy-box strong { color: #0d1e35; font-weight: 700; }
.rr-policy-box a { color: var(--primary); }
.rr-policy-empty {
  text-align: center; padding: 4.5rem 2rem; color: #b0b9c6;
  background: #fff; border-radius: 20px;
  box-shadow: 0 8px 40px rgba(6,14,26,0.06);
}
.rr-policy-empty__icon { font-size: 3.5rem; margin-bottom: 1rem; }
.rr-policy-empty__text { font-size: 0.95rem; }
