@charset "UTF-8";


@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;
  }
}


:root {
  --primary: #FF6900;
  --primary-dark: #CC5400;
  --primary-hover: #FF6900;
  --header-bg: #ffffff;
  --nav-bg: #ffffff;
  --nav-sub-bg: #F9FAFB;
  --content-bg: #ffffff;
  --text-on-dark: #ffffff;
  --text-muted: #6B7280;
  --border: #D1D5DC;
  --footer-bg: #000000;
  --footer-bottom-bg: #0A0A0A;
  --citycenter-red: #FB2C36;
  --citycenter-red-dark: #c01020;
  
  --category-accent: #FF6900;
  --category-accent-hover: #CC5400;
  --category-filter-header-bg: #F9FAFB;
  --category-filter-spec-group-fallback: #FFE8D6;
  --category-filter-spec-group-gradient: linear-gradient(180deg, #FFF3EA 0%, #FFE8D6 45%, #FFDBC0 100%);
  --category-filter-spec-group-border: rgba(255, 105, 0, 0.18);
  --category-filter-spec-group-text: #171717;
}

* {
  box-sizing: border-box;
}


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;
}




#header .header-logo .logo img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}


[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;
}


.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 {
  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);
}


.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;
}


.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;
}


[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;
}



.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;
}


.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;
}


.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;
}



.rr-topbar {
  background: #000000;
  color: #B3B3B3;
  font-size: 13px;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 105, 0, 0.12);
}

.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: #B3B3B3;
}

.rr-lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}

.rr-lang a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.rr-lang > svg:first-child path {
  fill: var(--primary);
}

.rr-lang-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #FF6900;
}

.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: 9999;
}

.rr-lang--open .rr-lang-menu {
  display: block;
}

.rr-lang-menu a {
  display: block;
  padding: 6px 10px;
  border-radius: 8px;
  color: #1a1a1a;
}

.rr-lang-menu a:hover {
  background: #f7f7f7;
}

.rr-header-main {
  background: #000000;
  border-bottom: 1px solid #1A1A1A;
  position: relative;
}
.rr-header-main::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 105, 0, 0.55) 50%, transparent);
  opacity: 0.7;
}


.rr-header-grid {
  padding: 16px 0;
}

@media (max-width: 991px) {
  .rr-actions {
    justify-content: flex-start;
  }
}
.rr-logo {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(255, 105, 0, 0.25));
}

.rr-search {
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  min-height: 48px;
  box-shadow: 0 6px 20px -8px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.25s ease;
  width: 100%;
}

@media (min-width: 992px) {
  .rr-search {
    max-width: 480px;
    margin: 0 auto;
  }
}
.rr-search:focus-within {
  box-shadow: 0 0 0 3px rgba(255, 105, 0, 0.3), 0 6px 20px -8px rgba(0, 0, 0, 0.5);
}

.rr-search-input {
  flex: 1;
  border: 0;
  padding: 8px 6px 8px 18px;
  font-size: 15px;
  outline: none;
  color: #3a3a3a;
  background: transparent;
}

.rr-search-btn {
  width: 40px;
  height: 40px;
  margin: 4px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6900, #E5340F);
  color: #fff;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: transform 0.18s ease, filter 0.18s ease;
}
.rr-search-btn:hover {
  filter: brightness(1.08);
  transform: scale(1.05);
}

.rr-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.rr-actions-group {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rr-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #E5E5E5;
  font-size: 22px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.rr-icon-btn svg path[stroke] { stroke: currentColor; }
.rr-icon-btn svg path[fill]:not([fill="none"]) { fill: currentColor; }

.rr-icon-btn:hover {
  color: #ffffff;
  background: rgba(255, 105, 0, 0.18);
  transform: translateY(-1px);
}

.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 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
  box-shadow: 0 2px 6px rgba(255, 105, 0, 0.25);
  border: 2px solid #000;
}
.rr-badge:not([data-empty="true"]) { animation: rr-badge-pop 0.35s ease; }
@keyframes rr-badge-pop {
  0% { transform: scale(0.6); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .rr-badge { animation: none !important; }
}


.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: #E5E5E5;
        border-radius: 2px;
        transition: background 0.2s;
    }

    .rr-side-toggle:hover span {
        background: #ffffff;
    }



.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: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
}

.rr-side-menu-body .nav-categories a {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  background: #EBEBEB;
  transition: transform 0.15s, background 0.15s;
  padding: 0;
}

.rr-side-menu-body .nav-categories a:hover {
  background: #DCDCDC;
  transform: translateY(-2px);
}

.rr-side-menu-body .nav-categories a .rr-side-cat-img-wrap {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EBEBEB;
  margin-bottom: 0;
}

.rr-side-menu-body .nav-categories a .rr-side-cat-img-wrap img {
  width: 80px;
  height: 60px;
  object-fit: contain;
}

.rr-side-menu-body .nav-categories a .rr-side-cat-img-placeholder {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 2rem;
  background: #EBEBEB;
}

.rr-side-menu-body .nav-categories a .rr-side-cat-label {
  background: #fafafa;
  color: var(--rr-text);
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.3;
  padding: 8px 6px;
  flex: 1;
}



.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);
}



.citycenter-subnav {
  background: #e4e7ed;
  padding: 0.55rem 0;
}

.citycenter-subnav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.4rem;
  justify-content: space-evenly;
}

.citycenter-subnav-list a {
  color: #333;
  text-decoration: none;
  font-size: 1.15rem;
  padding: 0 0.5rem;
}

.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 {
  background: #000000 !important;
  border-top: 1px solid #1A1A1A;
}

#navigation .main-nav > li > a {
  color: #cccccc !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);
}


    #navigation.rr-mega-nav {
        position: relative;
        z-index: 1;
    }

#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;
  justify-content: space-between;
}

@media (min-width: 992px) {
  #navigation.rr-mega-nav .rr-mega-top.main-nav {
    gap: 0 1rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  #navigation.rr-mega-nav .rr-mega-top.main-nav {
    gap: 0 0.75rem;
  }
  #navigation.rr-mega-nav a.rr-mega-trigger {
    font-size: 13px !important;
  }
  #navigation.rr-mega-nav .rr-mega-top.main-nav > li:not(.rr-mega-parent) > a {
    font-size: 13px !important;
  }
}

#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: #cccccc;
        font-family: "Open Sans", system-ui, sans-serif;
        font-weight: 700;
        font-size: 14px;
        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);
}


#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: #cccccc !important;
  font-family: "Open Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  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: #1a1a1a !important;
    font-weight: 700;
    background: #ffffff;
    padding-inline: 8px;
    margin-inline: -8px;
    border-radius: 4px 4px 0 0;
}

#navigation.rr-mega-nav .rr-mega-top.main-nav > li:not(.rr-mega-parent) > a,
#navigation.rr-mega-nav a.rr-mega-trigger {
  position: relative;
}
#navigation.rr-mega-nav .rr-mega-top.main-nav > li:not(.rr-mega-parent) > a::after,
#navigation.rr-mega-nav a.rr-mega-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--rr-brand), #E5340F);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
#navigation.rr-mega-nav .rr-mega-top.main-nav > li:not(.rr-mega-parent) > a:hover::after,
#navigation.rr-mega-nav .rr-mega-top.main-nav > li.active:not(.rr-mega-parent) > a::after,
#navigation.rr-mega-nav a.rr-mega-trigger:hover::after,
#navigation.rr-mega-nav .rr-mega-parent.active > a.rr-mega-trigger::after {
  transform: scaleX(1);
}
#navigation.rr-mega-nav .rr-mega-parent.is-open > a.rr-mega-trigger::after {
  display: none;
}


#navigation.rr-mega-nav .rr-mega-strip-host {
  position: static;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

#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: #364153;
    font-size: 14px;
    font-weight: 700;
    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: transparent;
}

@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;
  }
}


.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;
  }
}

.rr-hero-section {
  background:
    radial-gradient(ellipse 900px 340px at 50% 0%, rgba(255, 105, 0, 0.07) 0%, rgba(255, 105, 0, 0) 70%),
    #F9FAFB;
  padding: 40px 0 40px;
}

.rr-hero-heading {
    margin: 0 0 40px;
    letter-spacing: -0.02em;
    font-size: 48px;
    line-height: 1.15;
    text-align: center;
    font-weight: 800;
    color: #1a1a1a;
}


.rr-hero-slider-wrap {
  position: relative;
  padding: 0;
}


.rr-hero-slider {
  border-radius: 16px;
  background: #FFDBC0;
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}


.rr-hero-slider .slick-list {
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .rr-hero-slider .slick-list {
    border-radius: 0;
  }
}

.rr-hero-slide {
  outline: none;
}

.rr-hero-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.rr-hero-img {
  height: 250px;
  background-color: #FFDBC0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



.rr-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 36px;
  height: 36px;
  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: 12px;
}

.rr-hero-arrow--next {
  right: 12px;
}


[dir=rtl] .rr-hero-arrow--prev {
  left: auto;
  right: 12px;
}

[dir=rtl] .rr-hero-arrow--next {
  right: auto;
  left: 12px;
}

[dir=rtl] .rr-hero-arrow svg {
  transform: scaleX(-1);
}

.rr-hero-arrow:hover {
  background: var(--rr-brand);
  border-color: var(--rr-brand);
  box-shadow: 0 4px 14px rgba(255, 105, 0, 0.28);
}

.rr-hero-arrow:hover svg {
  stroke: #fff;
}


.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 {
    margin-bottom: 16px;
  }
  .rr-hero-slider-wrap {
    padding: 0;
  }
  .rr-hero-img {
    height: 220px;
  }
  .rr-hero-arrow {
    width: 36px;
    height: 36px;
  }
}

.rr-trust-strip {
  background: #fff;
  border-bottom: 1px solid #F0F0F0;
  padding: 22px 0;
}
.rr-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.rr-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.rr-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFF3EA;
  color: var(--rr-brand);
  flex-shrink: 0;
}
.rr-trust-text {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
}
@media (max-width: 767px) {
  .rr-trust-grid { grid-template-columns: repeat(2, 1fr); row-gap: 16px; }
  .rr-trust-item { justify-content: flex-start; }
}


.rr-free-delivery-bar {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  background: #FF6900;
  border-radius: 12px;
  padding: 14px 24px 0;
  margin: 0 0 40px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(255, 105, 0, 0.28);
}
.rr-free-delivery-bar span {
  padding-bottom: 14px;
  align-self: center;
}

.rr-free-delivery-icon {
  display: block;
  width: 120px;
  height: 90px;
  object-fit: contain;
  object-position: bottom;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .rr-free-delivery-bar {
    font-size: 12px;
    padding: 10px 16px 0;
    gap: 10px;
  }
  .rr-free-delivery-icon {
    width: 90px;
    height: 68px;
  }
}

.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);
}


.rr-section-title {
  text-align: center;
  color: #1a1a1a;
  font-weight: 800;
  margin: 0 0 14px;
  font-size: 28px;
  letter-spacing: -0.01em;
}
.rr-section-title::after {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  border-radius: 4px;
  background: var(--rr-brand);
  margin: 14px auto 0;
}

.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-cat-card {
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #EFEFEF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s cubic-bezier(.22,1,.36,1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.rr-cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 105, 0, 0.5), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.rr-cat-card:hover {
  border-color: rgba(255, 105, 0, 0.35);
  box-shadow: 0 20px 40px -16px rgba(255, 105, 0, 0.32), 0 12px 26px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

.rr-cat-card:hover::after {
  opacity: 1;
}

.rr-cat-card:focus-visible {
  outline: 2px solid var(--rr-brand);
  outline-offset: 2px;
}

.rr-cat-top {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFF3EA 0%, #ffffff 100%);
  padding: 12px;
  box-sizing: border-box;
}

.rr-cat-top::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 105, 0, 0.22), transparent 70%);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(.22,1,.36,1);
}

.rr-cat-card:hover .rr-cat-top::before {
  opacity: 1;
  transform: scale(1);
}

@media (min-width: 992px) {
  .rr-cat-top {
    height: 120px;
  }
}
.rr-cat-bottom {
    height: 100%;
    background: #fff;
    text-align: center;
    font-size: 12.5px;
    font-weight: 700;
    padding: 12px 10px;
    color: #1a1a1a;
    border-top: 1px solid #F2F2F2;
    transition: color 0.2s ease;
}

.rr-cat-card:hover .rr-cat-bottom {
  color: var(--rr-brand);
}

.rr-cat-img {
  width: 92px;
  height: 72px;
  border-radius: 10px;
  background: #d7d7d7;
  position: relative;
  transition: transform 0.3s cubic-bezier(.22,1,.36,1);
}

.rr-cat-card:hover .rr-cat-img {
  transform: scale(1.08) rotate(-2deg);
}

@media (min-width: 992px) {
  .rr-cat-img {
    width: 100px;
    height: 80px;
  }
}
.rr-cat-real-img {
    max-width: 100px;
    max-height: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
    position: relative;
    transition: transform 0.3s cubic-bezier(.22,1,.36,1);
}

.rr-cat-card:hover .rr-cat-real-img {
  transform: scale(1.1);
}

@media (min-width: 992px) {
  .rr-cat-real-img {
    max-width: 110px;
    max-height: 74px;
  }
}

@media (max-width: 767px) {
  .rr-cat-real-img {
    max-width: 84px;
    max-height: 56px;
  }
}

.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;
}


.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;
}


.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 {
  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(255, 105, 0, 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;
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.3;
  color: #000;
}

.product-price {
  display: block;
  padding: 0 0.6rem 0.6rem;
  color: var(--primary-dark);
  font-weight: 600;
}


.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: #E35D00;
  color: #E35D00;
}

.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: #E35D00;
  text-decoration: none;
}

.rr-allcat-breadcrumb a:hover {
  text-decoration: underline;
}

.rr-allcat-bc-sep {
  margin: 0 0.4rem;
  color: #ccc;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.rr-allcat-page {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 0 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(3, 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;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rr-allcat-card-img img {
  width: 100%;
  height: 90%;
  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: 700;
  padding: 12px 10px;
  color: var(--rr-text);
}


.rr-flash-section {
  background: #0A0A0A;
  padding: 44px 0 48px;
  position: relative;
  overflow: hidden;
}
.rr-flash-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
  animation: rr-flash-drift 14s ease-in-out infinite alternate;
}
.rr-flash-glow--a {
  top: -220px;
  left: -140px;
  background: radial-gradient(circle, #FF6900, transparent 70%);
}
.rr-flash-glow--b {
  bottom: -240px;
  right: -160px;
  background: radial-gradient(circle, #FB2C36, transparent 70%);
  animation-delay: -7s;
}
@keyframes rr-flash-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, -20px) scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
  .rr-flash-glow { animation: none; }
}

.rr-flash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 12px;
}
.rr-section-title--dark {
  text-align: left;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
[dir="rtl"] .rr-section-title--dark { text-align: right; }
.rr-section-title--dark::after { display: none; }

.rr-flash-bolt {
  display: inline-flex;
  color: #FF6900;
  filter: drop-shadow(0 0 10px rgba(255, 105, 0, 0.65));
}

.rr-flash-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #FB2C36;
  background: rgba(251, 44, 54, 0.12);
  border: 1px solid rgba(251, 44, 54, 0.35);
  border-radius: 999px;
  padding: 4px 11px;
  margin-inline-start: 4px;
}
.rr-flash-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FB2C36;
  animation: rr-flash-pulse 1.4s ease-in-out infinite;
}
@keyframes rr-flash-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.7); }
}
@media (prefers-reduced-motion: reduce) {
  .rr-flash-live-dot { animation: none; }
}

.rr-flash-viewall {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--rr-brand);
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  white-space: nowrap;
}
.rr-flash-viewall:hover { color: #fff; }
[dir="rtl"] .rr-flash-viewall svg { transform: scaleX(-1); }

.rr-flash-banner {
    padding: 0 0 28px;
}

.rr-flash-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 180% at 15% 0%, rgba(255, 105, 0, 0.35), transparent 55%),
    linear-gradient(115deg, #1A1A1A 0%, #0A0A0A 55%, #1A1A1A 100%);
  border: 1px solid rgba(255, 105, 0, 0.25);
  border-radius: 18px;
  padding: 40px 20px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  color: #ffffff;
  box-shadow: 0 20px 50px -18px rgba(0, 0, 0, 0.6);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.rr-flash-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 105, 0, 0.55);
  color: #fff;
}
.rr-flash-pill-shine {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.10) 45%, transparent 60%);
  animation: rr-flash-shine 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes rr-flash-shine {
  0%, 15% { transform: translateX(-160%); }
  55%, 100% { transform: translateX(220%); }
}
@media (prefers-reduced-motion: reduce) {
  .rr-flash-pill-shine { animation: none; opacity: 0; }
}
.rr-flash-pill-eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFB366;
}
.rr-flash-pill-title {
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(255, 105, 0, 0.55);
}
.rr-flash-pill-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 9px 22px;
  border-radius: 999px;
  background: #FF6900;
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
}
[dir="rtl"] .rr-flash-pill-cta svg { transform: scaleX(-1); }

.rr-flash-banner-img-link {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  text-decoration: none;
  
  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: 32px 0 44px;
}

.rr-flash-slider .slick-slide {
  padding: 0 14px;
}

.rr-flash-slider {
  margin: 0 -14px;
}


.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-arrow--prev { left: -18px; }
.rr-flash-arrow--next { right: -18px; }

[dir=rtl] .rr-flash-arrow--prev { left: auto; right: -18px; }
[dir=rtl] .rr-flash-arrow--next { right: auto; left: -18px; }

.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: 14px;
  overflow: hidden;
  box-shadow: var(--rr-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rr-border);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.rr-product-card:hover {
  box-shadow: 0 20px 40px -14px rgba(255, 105, 0, 0.28), var(--rr-shadow-hover);
  transform: translateY(-5px);
  border-color: rgba(255, 105, 0, 0.35);
}

.rr-product-media {
  position: relative;
}

.rr-sale-badge {
  position: absolute;
  top: 12px;
  /* Physical (not logical) on purpose: this rule forces direction:ltr below (to
     keep "-25%" reading correctly), and a logical inset-inline-* offset resolves
     against the ELEMENT's own direction, not the document's — so inset-inline-start
     here would resolve to the physical left in both LTR and RTL, landing on top of
     the wishlist heart button (.rr-product-wishlist-btn, which has no forced
     direction and therefore correctly mirrors to the left in RTL). Pinning this
     badge to the physical right keeps the two on opposite corners in RTL. */
  right: 12px;
  z-index: 2;
  /* Decorative only — never intercept clicks meant for the wishlist heart button
     that shares this corner of the product card (see .rr-product-wishlist-btn). */
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #FF6900, #E5340F);
  color: #fff;
  border-radius: 999px;
  padding: 5px 12px;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 14px -4px rgba(255, 105, 0, 0.55);
  /* Keep "-25%" reading left-to-right even inside an RTL document — the bidi
     algorithm otherwise reorders the leading minus sign to the trailing edge
     ("25%-"). Scoped to just this badge's text run. */
  direction: ltr;
  unicode-bidi: isolate;
}


.rr-tag-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  color: #fff;
  border-radius: 999px;
  padding: 5px 12px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  z-index: 2;
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.35);
}
.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: 0.8rem;
  line-height: 1.35;
  margin-bottom: 0.4rem;
}

.rr-product-title-link {
  display: block;
  color: #000;
  text-decoration: none;
}

.rr-product-title-link:hover {
  text-decoration: underline;
}

.rr-product-desc {
    font-size: 0.8rem;
    color: #4D4D4D;
    line-height: 1.45;
    margin-bottom: 0.5rem;
    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; 
}

.rr-old {
  color: #FB2C36;
  text-decoration: line-through;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  direction: ltr; 
}

.rr-old small {
  font-size: 10px;
  margin-top: 2px;
  padding-inline-start: 2px;
}

.rr-new {
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  direction: ltr; 
}

.rr-new small {
  font-size: 10px;
  font-weight: 700;
  margin-top: 2px;
  padding-inline-start: 2px;
}

.rr-countdown {
  margin: 10px 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.rr-countdown-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rr-countdown-pill {
    display: inline-flex;
    gap: 4px;
    align-items: end;
    padding: 6px 24px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(251, 44, 54, 0.12), rgba(251, 44, 54, 0.06));
    border: 1px solid rgba(251, 44, 54, 0.25);
    line-height: 1;
    direction: ltr;
}

.rr-countdown-main {
  font-family: "Digital-7 Mono", "Digital-7", ui-monospace, monospace;
  font-size: 24px;
  color: var(--rr-sale);
  text-shadow: 0 0 12px rgba(251, 44, 54, 0.35);
  /* Force Western (lining/tabular) digit glyphs on this specific span rather than relying on
     inheritance from .rr-countdown-pill (ui-enhancements.css) — some Arabic web fonts substitute
     ASCII digits with Arabic-Indic glyphs per-run, which previously produced a mix of numeral
     systems between this span and .rr-countdown-sec. Applying the same rule to both spans
     directly keeps them consistent regardless of stylesheet load order or font fallback. */
  font-variant-numeric: tabular-nums lining-nums;
  unicode-bidi: isolate;
  direction: ltr;
}

.rr-countdown-sec {
  font-family: "Digital-7 Mono", "Digital-7", ui-monospace, monospace;
  font-size: 16px;
  color: var(--rr-sale);
  opacity: 0.85;
  font-variant-numeric: tabular-nums lining-nums;
  unicode-bidi: isolate;
  direction: ltr;
}

.rr-countdown--empty {
  visibility: hidden;
}

.rr-add {
  display: block;
  text-align: center;
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #FF6900, #E5340F);
  color: #fff;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  box-shadow: 0 8px 18px -8px rgba(255, 105, 0, 0.55);
}
.rr-add:active { transform: scale(0.98); }

.rr-add:hover {
  filter: brightness(1.08);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(255, 105, 0, 0.65);
}

.rr-add i {
  margin-right: 8px;
}

.rr-add-link {
  cursor: pointer;
}

.rr-add-form {
  margin: 0;
}


@media (max-width: 767px) {
  .rr-flash-section {
    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 20px 0 0;
  }
}

@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;
  }
}

.rr-main-sections {
  padding: 40px 0 40px;
  background-color: white;
}


.rr-two-banners {
  margin-top: 18px;
}

.rr-banner {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  position: relative;
  height: 300px;
  background: #222;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s ease, border-color 0.3s ease;
}

@media (max-width: 767px) {
  .rr-banner {
    height: 200px;
  }
}

.rr-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.5s cubic-bezier(.22,1,.36,1);
}

.rr-banner::after {
  content: "";
  position: absolute;
  bottom: -60px;
  inset-inline-end: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 105, 0, 0.35), transparent 70%);
  filter: blur(30px);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.rr-banner:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -18px rgba(255, 105, 0, 0.4);
  border-color: rgba(255, 105, 0, 0.4);
}

.rr-banner:hover::after {
  opacity: 1;
}

.rr-banner:hover::before {
  transform: scale(1.08);
}

.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;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.65) 100%);
  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;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.rr-banner-desc {
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.5;
}
.rr-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 9px 22px;
  background: linear-gradient(135deg, #FF6900, #E5340F);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px -6px rgba(255, 105, 0, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.rr-banner:hover .rr-banner-cta {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -6px rgba(255, 105, 0, 0.65);
}

.rr-clients {
  padding: 40px 0 50px;
  position: relative;
}

.rr-client {
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
}


.rr-clients-slider {
  position: relative;
  padding: 0 44px;
}


.rr-cl-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #D1D5DC;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  color: #4D4D4D;
  font-size: 16px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.rr-cl-arrow:hover {
  background: linear-gradient(135deg, #FF6900, #E5340F);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 18px -4px rgba(255, 105, 0, 0.5);
  transform: translateY(-50%) scale(1.06);
}

.rr-cl-arrow--prev {
  left: 0;
}

.rr-cl-arrow--next {
  right: 0;
}

[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;
  filter: grayscale(65%) opacity(0.7);
  transition: filter 0.25s ease, transform 0.25s cubic-bezier(.22,1,.36,1);
}
.rr-client:hover .rr-client-logo-img {
  filter: none;
  transform: scale(1.08);
}

.rr-newsletter {
  padding: 64px 0;
  background-color: #0D0D0D;
  position: relative;
  overflow: hidden;
}
.rr-newsletter-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 380px;
  background: radial-gradient(ellipse, rgba(255, 105, 0, 0.22), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.rr-newsletter .rr-section-title { color: #ffffff; }
.rr-newsletter .rr-section-sub { color: #B3B3B3; }

.rr-newsletter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin-bottom: 18px;
  color: var(--rr-brand);
  background: rgba(255, 105, 0, 0.1);
  border: 1px solid rgba(255, 105, 0, 0.3);
  box-shadow: 0 0 24px rgba(255, 105, 0, 0.25);
}

.rr-subscribe {
  max-width: 460px;
  margin: 18px auto 0;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  border: 1px solid transparent;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.2s ease;
}
.rr-subscribe:focus-within {
  box-shadow: 0 0 0 3px rgba(255, 105, 0, 0.28), 0 10px 28px rgba(0, 0, 0, 0.35);
}

.rr-email-icon {
  position: absolute;
  inset-inline-start: 18px;
  color: #9a9a9a;
  pointer-events: none;
}

.rr-email {
  flex: 1;
  border: 0;
  padding: 14px 14px 14px 44px;
  font-size: 14px;
  outline: none;
}
[dir="rtl"] .rr-email { padding: 14px 44px 14px 14px; }

.rr-sub-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 999px;
  margin: 4px;
  background: linear-gradient(135deg, #FF6900, #E5340F);
  color: #fff;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 13.5px;
  white-space: nowrap;
  transition: transform 0.18s ease, filter 0.18s ease;
}
.rr-sub-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
[dir="rtl"] .rr-sub-btn svg { transform: scaleX(-1); }

.rr-newsletter-msg {
  text-align: center;
  margin-top: 0.75rem;
  color: var(--rr-brand);
  font-weight: 600;
}

.rr-or-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 320px;
  margin: 26px auto 22px;
  color: #6b6b6b;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.rr-or-divider::before,
.rr-or-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.rr-whats {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 22px 12px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
[dir="rtl"] .rr-whats { padding: 12px 12px 12px 22px; }
.rr-whats:hover {
  border-color: rgba(19, 153, 10, 0.5);
  background: rgba(19, 153, 10, 0.08);
  transform: translateY(-2px);
  color: inherit;
}

.rr-whats-icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #13990A;
  color: #fff;
  font-size: 19px;
}

.rr-whats-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
}
[dir="rtl"] .rr-whats-text-group { align-items: flex-end; }

.rr-whats-label {
  font-size: 12px;
  color: #9a9a9a;
  font-weight: 600;
}

.rr-whats-num {
  font-weight: 700;
  font-size: 14.5px;
  color: #fff;
  direction: ltr;
}


.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;
}


.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;
}


.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;
}


.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;
}


.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;
}



.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;
}



.ecom-footer-bar {
  background: #8b0000;
  height: 4px;
}

.ecom-footer-inner {
  padding-top: 1.5rem;
}


.rr-footer {
  background: var(--rr-footer);
  color: #fff;
  margin-top: 22px;
  position: relative;
  overflow: hidden;
}
.rr-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 105, 0, 0.6) 50%, transparent);
}
.rr-footer::after {
  content: "";
  position: absolute;
  top: -160px;
  inset-inline-start: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 105, 0, 0.14), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.rr-footer .container { position: relative; z-index: 1; }


.rr-footer-grid {
    padding: 48px 0 20px;
}

.rr-footer-col h4 {
  margin: 0 0 16px;
  font-size: 14px;
  position: relative;
  padding-bottom: 12px;
}
.rr-footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--rr-brand);
}
[dir="rtl"] .rr-footer-col h4::after { left: auto; right: 0; }

.rr-footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #cfcfcf;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 11px;
  transition: color 0.2s ease, transform 0.2s ease, gap 0.2s ease;
}

.rr-footer-col a:hover {
  color: #ffffff;
  text-decoration: none;
  gap: 9px;
}
.rr-footer-col a::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--rr-brand);
  transition: width 0.2s ease;
}
.rr-footer-col a:hover::before {
  width: 10px;
}

.rr-footer-logo {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: #fff;
}

.rr-footer-logo-img {
  height: 35px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(255, 105, 0, 0.3));
}

@media (max-width: 767px) {
  .rr-footer-logo-img {
    height: 60px;
  }

  .rr-footer-col a {
    padding: 12px 0;
    margin-top: -12px;
    margin-bottom: -1px;
    min-height: 44px;
    box-sizing: border-box;
  }
}

.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: #fff;
  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: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid 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 ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.rr-social-btn:hover {
  background: linear-gradient(135deg, #FF6900, #E5340F);
  border-color: transparent;
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 105, 0, 0.35);
}

.rr-footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  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: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.rr-pay-badge-img:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 105, 0, 0.4);
}


#footer {
    background: var(--rr-footer);
    color: #fff;
}

#footer .section {
  background: transparent;
}

.rr-footer-wrap {
  padding: 42px 0;
}


#footer .rr-footer-subaddr {
  padding-left: 24px;
}

#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;
}


.rr-footer-bottom .rr-copy,
.rr-footer-bottom .rr-copy .copyright {
  color: #fff;
}

#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;
}


#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;
}



:root {
  --rr-brand: #FF6900;
  --rr-text: #000000;
  --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: #000000;
  --rr-topbar: #ffffff;
  --rr-border: #D1D5DC;
  --rr-gray: #4D4D4D;
}

.rr-home {
  background: var(--rr-bg);
  color: var(--rr-text);
}

.rr-brand {
  color: var(--rr-brand);
}


.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;
}


.category-page-head-wrap {
  background: #F5F8FC;
  width: 100%;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.rr-category-details .category-page-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  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-weight: 700;
  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;
}
@media (max-width: 767px) {
  .category-page-head-wrap {
    background: transparent;
  }
  .category-page-head {
    padding-top: 1.5rem !important;
  }
  .rr-category-details .category-page-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  .rr-category-details .category-page-head-breadcrumb {
    padding-inline-start: calc(32px + 0.75rem);
    order: -1;
  }
}


.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.2rem;
  color: #999;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

[dir=rtl] .breadcrumb-sep {
  transform: scaleX(-1);
}

.category-page-breadcrumb-uppercase {
  text-transform: uppercase;
}

.category-page-breadcrumb-uppercase a {
  text-transform: uppercase;
}


.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: auto;
  border-radius: 8px;
}


.category-filters-citycenter .filter-block {
  border-bottom: none;
}

.category-filters-citycenter .filter-spec-group-heading {
  padding: 0.4rem 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: #171717;
  background: #D8F5F2;
  
  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;
}


.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;
}


.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;
}


.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;
}


.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;
  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: #FF6900 !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: 30px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: none;
}
@media (min-width: 992px) {
  .category-page-title {
    font-size: 20px;
  }
}


.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: 100px;
  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: 700;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  color: var(--rr-text);
  background: #fafafa;
}


.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: 6px 10px;
}

.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: #FFF1E6;
}

    .view-mode-btn.active {
        background: #FF6900;
        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;
}


.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(255, 105, 0, 0.16);
}

.rr-toolbar-dd.is-open .rr-toolbar-dd-btn {
  border-color: var(--category-accent);
  box-shadow: 0 0 0 2.5px rgba(255, 105, 0, 0.16);
}

.rr-toolbar-dd-label {
    font-weight: 400;
    color: #364153;
    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: 700;
  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: #FFF1E6;
  color: var(--category-accent);
}

.rr-toolbar-dd-item.is-selected {
  color: var(--category-accent);
  font-weight: 600;
  background: #FFF1E6;
}

.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 .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%;
}


.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.category-products-grid--full:not(.category-products--list) {
    grid-template-columns: repeat(4, 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;
}


.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;
}


.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: 14px;
  overflow: hidden;
  background: #FFF;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  box-shadow: var(--rr-shadow);
}

.category-products-grid .product.product-card-citycenter:hover {
  box-shadow: 0 20px 40px -14px rgba(255, 105, 0, 0.28), var(--rr-shadow-hover);
  transform: translateY(-5px);
  border-color: rgba(255, 105, 0, 0.35);
}

.category-products-grid .product.product-card-citycenter:hover .product-img img {
  transform: scale(1.05);
}

.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 {
  transition: transform 0.35s ease;
}

.category-products-grid .product.product-card-citycenter .product-body {
  position: relative;
  z-index: 1;
  background: #fff;
  text-align: start;
}

.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;
    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 {
  position: absolute;
  top: 10px;
  z-index: 2;
}

/* Mirrored vs. main.css: in RTL the wishlist heart button (.rr-product-wishlist-btn,
   which uses inset-inline-end) physically sits at "left" — so the sale/new labels are
   swapped to the opposite physical corner here to avoid sitting exactly on top of it
   (see round 7 QA: sale badge was invisible behind the wishlist heart in RTL). */
.category-products-grid .product-card-citycenter .product-label-sale {
  right: 10px;
  left: auto;
}

.category-products-grid .product-card-citycenter .product-label-new {
  left: 10px;
  right: 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: 0.8rem;
    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;
}
@media (min-width: 576px) and (max-width: 1199.98px) {
  .category-products-grid .product-card-citycenter .product-name {
    -webkit-line-clamp: 4;
  }
}

.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.8rem;
    font-weight: 400;
    color: #4D4D4D;
    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: start;
}

.category-products-grid .product-card-citycenter .product-price {
    margin: 0.25rem 0 0.65rem;
    font-size: 1rem;
    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;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  display: flex;
  direction: ltr; 
}

    .category-products-grid .product-card-citycenter .product-current-price small {
        font-size: 10px;
        font-weight: 700;
        margin-top: 2px;
        padding-inline-start: 2px;
    }

.category-products-grid .product.product-card-citycenter .product-price .product-old-price {
  color: #FB2C36 !important;
  display: flex;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  text-decoration: line-through !important;
  direction: ltr; 
}

    .category-products-grid .product.product-card-citycenter .product-price .product-old-price small {
        font-size: 10px;
        margin-top: 2px;
        padding-inline-start: 2px;
    }

.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: linear-gradient(135deg, #FF6900, #E5340F) !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: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.25;
  box-shadow: 0 6px 16px -6px rgba(255, 105, 0, 0.5);
}

.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: linear-gradient(135deg, #FF6900, #E5340F) !important;
  color: #fff !important;
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -6px rgba(255, 105, 0, 0.55);
}

.category-products-grid .product-card-citycenter .category-add-to-cart-btn:active,
.category-products-grid .product-card-citycenter .add-to-cart-form.category-add-to-cart-form .add-to-cart-btn:active {
  transform: scale(0.98);
}


.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: center;
}

.category-products-grid.category-products--list .product-card-citycenter .product-img {
  width: 140px;
  min-width: 140px;
  height: 140px;
  flex-shrink: 0;
  aspect-ratio: auto;
}

.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;
  align-items: start;
  align-self: stretch;
  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: start;
}

.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 {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto auto;
    flex-direction: unset;
  }
  .category-products-grid.category-products--list .product-card-citycenter .product-img {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 100%;
    min-width: 0;
    min-height: 120px;
  }
  .category-products-grid.category-products--list .product-card-citycenter .product-body {
    grid-column: 2;
    grid-row: 1;
    text-align: start;
  }
  .category-products-grid.category-products--list .product-card-citycenter .product-price {
    justify-content: flex-start;
    flex-direction: column-reverse;
  }
  .category-products-grid.category-products--list .product-card-citycenter .add-to-cart {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    min-width: 0;
    padding: 0 0.75rem 0.75rem;
    justify-content: flex-start;
  }
}

.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, #CC5400);
}

.rr-toolbar-filters-btn .fa {
  font-size: 0.9rem;
}

@media (min-width: 992px) {
  .rr-toolbar-filters-btn {
    display: none;
  }
}

.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, #FF6900);
  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;
}


@media (max-width: 991px) {
  .category-sidebar.category-sidebar--drawer.is-open .category-drawer-header {
    display: flex;
  }
}

@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: 6px;
        margin: 20px;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
  body.category-drawer-open {
    overflow: hidden;
  }
}
.no-products-msg {
  padding: 2rem;
  text-align: center;
  color: #666;
}

.category-pagination-hint {
  padding-top: 1.1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #666;
}

.pagination-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.rr-cat-toolbar {
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
  .rr-cat-toolbar .row {
    row-gap: 0.65rem;
  }
  
  .rr-cat-toolbar .col-lg-10 {
    order: -1;
  }
  .rr-cat-toolbar .col-lg-2 {
    order: 0;
  }
}

@media (max-width: 767px) {
  
  .rr-category-details .category-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
  }
  .rr-category-details .category-toolbar-left {
    display: contents;
  }
  
  .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%;
  }
  
  .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);
}



.rr-pdp-page {
  --rr-pdp-accent: var(--category-accent, #E35D00);
}

.rr-pdp-toolbar {
    background: #F5F8FC;
    border-bottom: 1px solid #e4e7ed;
    padding: 0.65rem 0;
}

@media (max-width: 767px) {
  .rr-pdp-toolbar {
    padding: 1.5rem 0 0;
    border: none;
    background: none;
  }
}

.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;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.rr-pdp-bc-muted {
  color: #777;
}

.rr-pdp-bc-current {
  color: var(--rr-pdp-accent);
  font-weight: 700;
}
@media (max-width: 767px) {
  .rr-pdp-toolbar-title {
    display: none;
  }
  .rr-pdp-toolbar-bc {
    text-align: start;
    flex: 1;
    min-width: 0;
  }
}


.rr-page-toolbar {
  background: #F5F8FC;
  border-bottom: 1px solid #e4e7ed;
  padding: 1.5rem 0;
}

.rr-page-toolbar-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.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, #E35D00);
  color: var(--rr-brand, #E35D00);
}

.rr-page-toolbar-title {
  font-size: 1.5rem !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: #FF6900;
        text-decoration: none;
    }

.rr-page-toolbar-bc a:hover {
  color: var(--rr-brand, #E35D00);
}

.rr-page-toolbar-bc-sep {
  margin: 0 0.3rem;
  color: #bbb;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .rr-page-toolbar {
    background: none;
    border-bottom: none;
    padding-top: 1.5rem;
  }
  .rr-page-toolbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  .rr-page-toolbar-bc {
    order: -1;
    text-align: start;
    padding-inline-start: calc(38px + 0.65rem);
  }
}

.rr-pdp-section {
  padding-top: 1.25rem;
  padding-bottom: 2.5rem;
}


@media (min-width: 992px) {
  .rr-pdp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    align-items: start;
  }
  .rr-pdp-buy-head,
  .rr-pdp-title,
  .rr-pdp-lead,
  .rr-pdp-cart-form {
    grid-column: 2;
  }
  .rr-pdp-media {
    grid-column: 1;
    grid-row: 1 / span 4;
    align-self: start;
  }
  .rr-pdp-tabs-wrap {
    grid-column: 1 / -1;
  }
}


.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;
  height: min(56vw, 520px);
}

.rr-pdp-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}
.rr-pdp-main-inner:hover .rr-pdp-main-img {
    transform: scale(1.12);
}
.rr-pdp-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.88);
    align-items: center;
    justify-content: center;
}
.rr-pdp-lightbox.is-open {
    display: flex;
}
.rr-pdp-lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    user-select: none;
}
.rr-pdp-lightbox-close {
    position: absolute;
    top: 20px;
    left: 20px;
    right: auto;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.rr-pdp-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.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(227, 93, 0, 0.2);
}

.rr-pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


@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;
    
    max-height: 280px;
    overflow-y: auto;
    scrollbar-width: none;
    order: -1;
    
    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: 0;
    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: #4D4D4D;
}

.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: #FF6900;
  color: #fff;
}

.rr-pdp-btn--cart:hover:not(:disabled) {
  background: var(--category-accent-hover, #CC5400);
  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(227, 93, 0, 0.06);
  color: var(--category-accent-hover, #CC5400);
}

.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-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,
.rr-pdp-page .rr-pdp-tab-nav > li > a.nav-link.active,
.rr-pdp-page .rr-pdp-tab-nav > li > a.nav-link.active:hover,
.rr-pdp-page .rr-pdp-tab-nav > li > a.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 > li > a:hover {
  color: #333;
  background: transparent !important;
}


@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,
  .rr-pdp-page .rr-pdp-tab-nav > li > a.nav-link.active,
  .rr-pdp-page .rr-pdp-tab-nav > li > a.nav-link.active:hover,
  .rr-pdp-page .rr-pdp-tab-nav > li > a.nav-link.active:focus {
    color: #fff !important;
    background: var(--rr-pdp-accent) !important;
    border: none !important;
    border-bottom: none !important;
    margin-bottom: 0;
  }
  .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,
  .rr-pdp-page .rr-pdp-tab-nav > li > a.nav-link.active:hover {
    background: var(--rr-pdp-accent) !important;
    color: #fff !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-spec-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 0.5rem;
}

.rr-spec-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rr-spec-section-heading {
  font-family: "Open Sans", -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #0a0a0a;
  margin: 0;
}

.rr-spec-rows {
  display: flex;
  flex-direction: column;
}

.rr-spec-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e8;
}

.rr-spec-rows .rr-spec-row:last-child {
  border-bottom: none;
}

.rr-spec-label {
  flex: 1 0 0;
  font-family: "Open Sans", -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: #4a5565;
  min-width: 0;
}

.rr-spec-value {
  flex: 1 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #4a5565;
  min-width: 0;
}

@media (max-width: 767px) {
  .rr-spec-panel {
    gap: 0;
    padding-top: 0;
  }
  .rr-spec-section {
    gap: 0;
  }
  .rr-spec-section-heading {
    background: #f2f2f2;
    min-height: 40px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: #0a0a0a;
  }
  .rr-spec-row {
    min-height: 40px;
    padding: 8px 12px;
    border-bottom: 1px solid #e8e8e8;
  }
  .rr-spec-rows .rr-spec-row:last-child {
    border-bottom: 1px solid #e8e8e8;
  }
  .rr-spec-label {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
  }
  .rr-spec-value {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 991px) {
  .rr-pdp-buy-card {
    position: static;
    margin-top: 1.5rem;
  }
}

.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: #FF6900;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-add-cart:hover {
  background: #CC5400;
  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-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-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: 14px;
    font-weight: 600;
    color: #555555;
    margin-bottom: 0.2rem;
}

.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;
}


.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;
}


.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;
}


.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;
}


.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: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;
}


.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;
}




.rr-pdp-price-card {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 1.1rem 1.2rem;
    background: rgba(217,217,217,0.15);
    margin-bottom: 1rem;
}


.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: #FEEDD7;
  color: #FF5F00;
  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: #FF4D4D;
  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;
}


.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;
  /* Currency amounts are conventionally rendered LTR even on an RTL page:
     without this, the flex items reorder (unit/int/dec swap) and the
     bidi-neutral "." in the decimal span gets repositioned by the digits
     around it. justify-content: flex-end keeps the block visually flush
     with the right edge, matching the rest of the RTL layout. */
  direction: ltr;
  justify-content: flex-end;
}

.rr-pdp-price-unit {
  font-size: 2.6rem;
  font-weight: 700;
  color: #111;
  align-self: flex-end;
  line-height: 1;
  text-transform: uppercase;
}

.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;
}


.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: 1rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
}

.rr-pdp-delivery-sub {
    font-size: 14px;
    color: #555555;
    line-height: 1.3;
}


.rr-pdp-countdown-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  padding: 0.25rem 0;
}


.pdp-offer-ends-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #555555;
    margin-bottom: 0.2rem;
}

.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;
  direction: ltr;
}

.pdp-cd-sep {
  padding: 0 2px;
  color: var(--rr-sale, #FB2C36);
}

.pdp-countdown-labels {
    display: flex;
    gap: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #555555;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    width: 100%;
    justify-content: space-around;
    padding: 0 8px;
}


.rr-pdp-qty-stock-row {
    border-top: 1px solid #E5E7EB;
    padding-top: 0.85rem;
    margin-top: 0.1rem;
}


.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: 5rem;
  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;
}


.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: 1rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.2;
}

.rr-pdp-stock-sub {
    font-size: 14px;
    color: #6A7282;
    line-height: 1.2;
}

.rr-pdp-out-of-stock {
  font-size: 0.85rem;
  font-weight: 700;
  color: #c62828;
}


.rr-pdp-cta-row {
  margin-bottom: 0.85rem;
}


.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;
}


.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;
}

.rr-pdp-pay-logo {
  flex: 1;
  height: 60px;
  width: 0;
  min-width: 0;
  object-fit: contain;
  border: 0;
  border-radius: 6px;
  padding: 4px 8px;
  background: #fff;
}


.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(227, 93, 0, 0.15);
}



.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;
}


.rr-cart-table-wrap {
  width: 100%;
  overflow-x: auto;
  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: #E9E9E9;
    font-size: 0.875rem;
    font-weight: 700;
    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-total {
  font-weight: 500;
  color: #000;
}

.rr-cart-td-num {
  text-align: center;
  color: #888;
  font-size: 0.85rem;
  font-weight: 700;
}

.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: 700;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.4;
  display: block;
}

.rr-cart-product-name:hover {
  color: #E35D00;
}

.rr-cart-product-sub {
  font-size: 0.78rem;
  color: #888;
  margin-top: 0.2rem;
}

.rr-cart-sku {
  font-size: 0.85rem;
  color: #666;
}


.rr-cart-qty-row {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.rr-cart-qty-form {
  display: inline-flex;
  align-items: stretch;
}

.rr-cart-qty-ctrl {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
}

.rr-cart-qty-input {
  width: 3.6rem;
  text-align: center;
  border: none;
  border-inline-end: 1.5px solid #e2e8f0;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #374151;
  padding: 0 2px;
  box-sizing: border-box;
  height: 34px;
  background: #f3f4f6;
  -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;
}


.rr-cart-qty-update {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: none;
  border-inline-end: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 0;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s;
}

.rr-cart-qty-update:hover {
  background: var(--primary-dark, #CC5400);
}


.rr-cart-qty-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 0;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s;
}

.rr-cart-qty-remove:hover {
  background: #e53e3e;
}


.rr-cart-product-price-mobile {
  display: none;
}


.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: #E35D00;
}

.rr-cart-promo-apply {
  padding: 0.45rem 1rem;
  background: #E35D00;
  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: #7A3300;
}

.rr-cart-promo-applied {
  font-size: 0.875rem;
  color: #333;
}

.rr-cart-promo-remove {
  background: #e53e3e;
}

.rr-cart-promo-remove:hover {
  background: #b83030;
}


.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-label {
  font-size: 19px;
  font-weight: 700;
  color: #0d0d0d;
}

.rr-cart-grand-val {
    font-size: 19px;
    font-weight: 500;
    color: #000;
}


.rr-cart-divider {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 0 0 1.25rem;
}


.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 #FF6900;
    border-radius: 8px;
    color: #FF6900;
    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: #FF6900;
        color: #fff;
    }

.rr-cart-checkout-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 2.25rem;
    border: 2px solid #FF6900;
    border-radius: 8px;
    background: #FF6900;
    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: #7A3300;
  border-color: #7A3300;
  color: #fff;
}


.rr-cart-empty {
  text-align: center;
  padding: 4rem 1rem;
}

.rr-cart-empty-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.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: #E35D00;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #E35D00;
  transition: background 0.2s;
}

.rr-cart-btn-primary:hover {
  background: #7A3300;
  border-color: #7A3300;
  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%;
  }
}


.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-item:last-child {
  border-bottom: none;
}

.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: 16px;
  font-weight: 600;
  color: #0d0d0d;
  text-decoration: none;
  line-height: 1.4;
  margin-bottom: 0.15rem;
}
.rr-minicart-item-name:hover {
  color: #E35D00;
}

.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: 18px;
  font-weight: 700;
  color: #E35D00;
}

.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;
  padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  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;
  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 #E35D00;
  border-radius: 8px;
  color: #E35D00;
  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: #E35D00;
  color: #ffffff;
}

.rr-minicart-checkout {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.5rem;
  border: 1.5px solid #E35D00;
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  background: #E35D00;
  transition: background 0.18s, border-color 0.18s;
}
.rr-minicart-checkout:hover {
  background: #7A3300;
  border-color: #7A3300;
  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) {
  
  .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 {
    min-width: 0;
  }
  .rr-cart-table thead {
    display: none;
  }
  .rr-cart-row {
    display: grid !important;
    grid-template-columns: 72px 1fr auto;
    gap: 10px;
    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;
  }
  
  .rr-cart-td-img {
    grid-column: 1;
  }
  .rr-cart-td-img .rr-cart-product-img {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    object-fit: contain;
  }
  
  .rr-cart-td-name {
    grid-column: 2;
    min-width: 0;
    overflow: hidden;
  }
  .rr-cart-product-name {
    font-size: 1rem;
  }
  .rr-cart-product-sub {
    font-size: 0.72rem;
  }
  .rr-cart-product-price-mobile {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 0.3rem;
  }
  
  .rr-cart-td-qty {
    grid-column: 3;
    margin-left: 0;
    margin-right: 0;
  }
  .rr-cart-qty-row {
    display: flex;
    overflow: visible;
  }
  .rr-cart-qty-form {
    display: flex;
  }
  .rr-cart-qty-ctrl {
    display: flex;
  }
  .rr-cart-qty-input {
    width: 2.6rem;
    height: 30px;
  }
  .rr-cart-qty-update,
  .rr-cart-qty-remove {
    width: 30px;
    height: 30px;
  }
  
  .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;
  }
  
  .rr-cart-totals-inner {
    min-width: 0;
    width: 100%;
  }
}

.rr-cart-variant-label {
  color: var(--category-accent, #E35D00);
  font-size: 0.8rem;
}

.rr-checkout-line-variant {
  font-size: 0.78rem;
  color: var(--category-accent, #E35D00);
  margin-top: 0.1rem;
  margin-bottom: 0.15rem;
}


.rr-sale-original {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
    line-height: 1.3;
}

.rr-cart-product-price-mobile .rr-sale-original {
  display: block;
  margin-inline-start: 0;
  margin-top: 0.1rem;
}

.rr-checkout-line-price .rr-sale-original {
    display: inline;
    margin-inline-end: 0.3rem;
}


.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;
}

.rr-checkout-step-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.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, #E35D00);
}

.rr-checkout-step-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #000000;
}

.rr-checkout-guest-hint {
    margin: 0.5rem 0 0;
    font-size: 0.85rem;
    color: #6b7280;
}

.rr-checkout-guest-hint a {
    color: #FF6900;
    font-weight: 600;
    text-decoration: none;
}

.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, #E35D00) !important;
  box-shadow: 0 0 0 3px rgba(227, 93, 0, 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, #E35D00) !important;
  box-shadow: 0 0 0 3px rgba(227, 93, 0, 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, #E35D00);
  border-color: var(--category-accent, #E35D00);
}

.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, #E35D00);
  background: rgba(227, 93, 0, 0.06);
  box-shadow: 0 0 0 1px rgba(227, 93, 0, 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, #E35D00);
}

.rr-checkout-pm-logo {
  object-fit: contain;
  border-radius: 6px;
}

.rr-checkout-card-hint {
  font-size: 0.75rem;
  color: #888;
  margin: 0 0 0.75rem;
}

.rr-checkout-card-fields {
  padding-top: 0.25rem;
}

.rr-checkout-bank-redirect-notice {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #FFF3EA;
  border: 1px solid #FFC69A;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #CC5400;
  font-size: 0.92rem;
  margin-top: 0.5rem;
}

.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, #E35D00);
  border-color: var(--category-accent, #E35D00);
}

.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, #E35D00);
  font-weight: 600;
}

.rr-checkout-card-hint {
  display: none;
}


.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, #E35D00);
  box-shadow: 0 0 0 3px rgba(227, 93, 0, 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, #E35D00);
}

.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, #E35D00);
  font-weight: 600;
  background: rgba(227, 93, 0, 0.06);
}

.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, #E35D00);
  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, #CC5400);
  color: #fff;
}

.rr-checkout-place-btn-total {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background-color: #FF6900;
  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;
}

.rr-checkout-summary-title {
    margin: 0 0 1rem;
    font-size: 20px;
    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: 1rem;
  font-weight: 600;
  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: 18px;
    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, #E35D00);
  outline: none;
  box-shadow: 0 0 0 2px rgba(227, 93, 0, 0.15);
}

.rr-checkout-promo-apply {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid var(--category-accent, #E35D00);
  color: var(--category-accent, #E35D00);
  font-weight: 600;
  border-radius: 8px;
  font-size: 0.875rem;
}

.rr-checkout-promo-apply:hover {
  background: rgba(227, 93, 0, 0.08);
  color: var(--category-accent-hover, #CC5400);
}

.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: 500;
        color: black;
    }

.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, #E35D00);
  margin-top: 0.1rem;
}

@media (max-width: 991px) {
  .rr-checkout-summary-card {
    position: static;
  }
  .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;
    height:100%;
    padding: 0.5rem 0.25rem;
  }
  .rr-checkout-pm-title {
    font-size: 0.7rem;
  }
}

.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;
  }
}

.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: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, 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(21, 21, 26, 0.06);
  padding: 1.25rem 0;
  position: sticky;
  top: 1rem;
  z-index: 3;
  align-self: start;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .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, #FF6900, #CC5400);
  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, #FF6900);
  color: #fff !important;
}

.rr-account-nav-item.is-active i {
  color: #fff;
}

.rr-account-nav-item.is-active .rr-nav-icon path {
  stroke: #fff;
}

.rr-account-nav-item .rr-nav-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.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;
}


.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(21, 21, 26, 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, #FF6900);
  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, #FF6900) !important;
  border-color: var(--rr-brand, #FF6900);
}

.rr-prof-btn--outline:hover {
  background: rgba(255, 105, 0, 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(21, 21, 26, 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, #FF6900);
  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(21, 21, 26, 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;
}


.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(21, 21, 26, 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, #FF6900);
  background: rgba(255, 105, 0, 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;
}


.rr-set-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(21, 21, 26, 0.06);
  padding: 1.35rem 1.5rem;
}

.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(22, 163, 74, 0.12);
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, 0.25);
}


.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: 20px;
    font-weight: 500;
    color: #111827;
}

.rr-orders-toolbar-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.65rem;
    align-items: center;
    width: 100%;
}

@media (min-width: 992px) {
  .rr-orders-toolbar-actions {
    width: auto;
    flex: 1;
    justify-content: flex-end;
  }
  .rr-orders-search-form {
    max-width: 320px;
  }
}

.rr-orders-search-form {
  margin: 0;
  flex: 1;
  min-width: 0;
}

.rr-orders-filter-form {
  margin: 0;
  flex-shrink: 0;
}

.rr-orders-search-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.45rem 0.75rem;
  width: 100%;
}

.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;
}

.rr-sf-wrap {
  position: relative;
}

.rr-sf-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
  height: 100%;
}

.rr-sf-trigger:hover,
.rr-sf-wrap.is-open .rr-sf-trigger {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 105, 0, 0.1);
}

.rr-sf-wrap.is-active .rr-sf-trigger {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 105, 0, 0.06);
}

.rr-sf-active-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  display: inline-block;
}

.rr-sf-chevron {
  font-size: 0.7rem;
  transition: transform 0.22s;
  opacity: 0.6;
}

.rr-sf-wrap.is-open .rr-sf-chevron {
  transform: rotate(180deg);
}

.rr-sf-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: auto;
  min-width: 180px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(11, 11, 14, 0.12);
  padding: 0.4rem;
  z-index: 200;
  list-style: none;
  margin: 0;
}

.rr-sf-opt {
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.rr-sf-opt:hover {
  background: #f4f6f8;
  color: #000000;
}

.rr-sf-opt.is-selected {
  background: rgba(255, 105, 0, 0.1);
  color: var(--primary);
  font-weight: 700;
}

.rr-orders-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rr-orders-card {
  background: #fff;
  border-radius: 12px;
  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: 600;
}

.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: #F54900;
  border: 1px solid #FFD6A8;
}

.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: #FFF1E6;
  color: #FF6900;
  border: 1px solid #FFCBA3;
}

.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-reorder-form {
  display: flex;
  flex: 1;
  margin: 0;
}

.rr-orders-reorder-form .rr-orders-btn {
  width: 100%;
}

.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, #FF6900);
  color: #fff !important;
  border-color: var(--rr-brand, #FF6900);
}

.rr-orders-btn--primary:hover {
  background: #CC5400;
  color: #fff;
}

.rr-orders-btn--outline {
  background: #fff;
  color: var(--rr-brand, #FF6900) !important;
  border-color: var(--rr-brand, #FF6900);
}

.rr-orders-btn--outline:hover {
  background: #FFF1E6;
}

.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, #FF6900);
  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, #FF6900);
  color: var(--rr-brand, #FF6900);
}

.rr-orders-page-current {
  background: var(--rr-brand, #FF6900);
  color: #fff !important;
  border-color: var(--rr-brand, #FF6900);
}


.rr-od-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  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, #FF6900);
  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, #FF6900);
}

.rr-od-tab:hover:not(.is-active) {
  background: rgba(255, 105, 0, 0.06);
}

.rr-od-tab.is-active {
  background: var(--rr-brand, #FF6900);
  color: #fff !important;
}

.rr-od-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eef1f5;
  box-shadow: 0 4px 20px rgba(21, 21, 26, 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;
    font-weight: 600;
}

.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;
}

@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-retry-payment {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.rr-od-retry-payment-msg {
  margin: 0;
  color: #b91c1c;
  font-size: 0.9rem;
}

.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 {
  border-top: 1px solid #f3f4f6;
  padding-top: 0.5rem;
}

.rr-od-price-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 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: 1.1rem;
  color: var(--rr-brand, #FF6900);
}

.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, #FF6900);
  font-weight: 600;
  text-decoration: none;
}

.rr-od-panel--track {
    margin-bottom: 1rem;
    margin-inline-start: 1rem;
}


.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;
}

html[dir=rtl] .rr-tlv {
  padding: 0 14px 0 0;
}

.rr-tlv__item {
    position: relative;
    padding: 0 1.35rem 1.35rem 0;
}

.rr-tlv__item:last-child {
  padding-bottom: 0;
}

.rr-tlv__item::after {
  content: "";
  position: absolute;
  left: -14px;
  top: 34px;
  bottom: 0;
  width: 3px;
}

.rr-tlv__item:last-child::after {
  display: none;
}

.rr-tlv__item--done::after {
  background: #CC5400;
}

.rr-tlv__item--current::after,
.rr-tlv__item--pending::after {
  background: #E5E7EB;
}

html[dir=rtl] .rr-tlv__item::after {
  left: auto;
  right: -14px;
}

.rr-tlv__dot {
  position: absolute;
  left: -29px;
  top: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

html[dir=rtl] .rr-tlv__dot {
  left: auto;
  right: -29px;
}

.rr-tlv__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.rr-tlv__icon--check {
  background: var(--rr-brand, #FF6900);
  color: #fff;
}

.rr-tlv__icon--accent {
  background: #ff6d00;
  color: #fff;
}

.rr-tlv__item--done .rr-tlv__icon--accent {
  background: var(--rr-brand, #FF6900);
}

.rr-tlv__icon--ghost {
  background: #f3f4f6;
  color: #9ca3af;
  border: 1px solid #e5e7eb;
}

.rr-tlv__title {
  font-weight: 600;
  color: #111827;
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.rr-tlv__item--pending .rr-tlv__title {
  color: #9ca3af;
  font-weight: 600;
}

.rr-tlv__desc {
  font-size: 0.86rem;
  color: #6b7280;
  line-height: 1.45;
}

.rr-tlv__item--pending .rr-tlv__desc {
  color: #cbd5e1;
}

.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, #FF6900);
  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;
}


.rr-alert {
  padding: 0.65rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.rr-alert--success {
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, 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(21, 21, 26, 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: #FF6900;
  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: #FF6900;
}

.rr-form-check-label {
  font-size: 0.92rem;
  color: #374151;
}

.rr-addr-form-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}


.rr-pay-methods-list {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

@media(max-width:767px) {
    .rr-pay-methods-list {
        flex-direction: column;
    }
}

.rr-pay-method-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(21, 21, 26, 0.06);
    padding: 1rem 1.25rem;
    width: 100%;
}

.rr-pay-method-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 105, 0, 0.1);
  color: #FF6900;
  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;
}



.rr-auth-header {
    background: #fff;
    padding: 1rem 1rem;
}
@media (min-width: 992px) {
  .rr-auth-header {
    background: #F5F8FC;
  }
}

.rr-auth-header-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}


.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: #E35D00;
  color: #E35D00;
}

.rr-auth-page-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}


.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);
}


.rr-auth-tabs {
  display: flex;
  gap: 8px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 1.75rem;
}

.rr-auth-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #555;
  background: #EBF8F7;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}

.rr-auth-tab--active {
  background: #FF6900;
  color: #fff;
  box-shadow: 0 2px 10px rgba(255, 105, 0, 0.3);
}

.rr-auth-tab:hover:not(.rr-auth-tab--active) {
  color: #FF6900;
  background: #d6f2f0;
}


.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;
}


.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: #E35D00;
  box-shadow: 0 0 0 3px rgba(227, 93, 0, 0.12);
}

.rr-auth-field-error {
  font-size: 0.8rem;
  color: #c00;
}


.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: #E35D00;
}

.rr-auth-forgot {
  font-size: 0.875rem;
  color: #E35D00;
  text-decoration: none;
  font-weight: 500;
}

.rr-auth-forgot:hover {
  text-decoration: underline;
  color: #7A3300;
}


.rr-auth-submit {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #E35D00;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.25rem;
}

.rr-auth-submit:hover {
  background: #7A3300;
}


@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-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 1.5rem 0 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.track-step {
  position: relative;
  padding: 0 0.25rem;
  font-size: 0.82rem;
  color: #9ca3af;
}

.track-step::before {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(-100% + 18px);
  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 0 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, #FF6900);
}

.track-step.is-active::before {
  background: var(--rr-brand, #FF6900);
}

.track-step.is-done .track-dot {
  background: var(--rr-brand, #FF6900);
  color: #fff;
}

.track-step.is-active .track-dot {
  background: #f97316;
  color: #fff;
  animation: track-pulse 1.8s ease-out infinite;
}

@keyframes track-pulse {
  0%   { box-shadow: 0 0 0 0    rgba(249, 115, 22, 0.50); }
  70%  { box-shadow: 0 0 0 12px rgba(249, 115, 22, 0); }
  100% { box-shadow: 0 0 0 0    rgba(249, 115, 22, 0); }
}

.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;
}


.rr-track-page {
    background: #ffffff;
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.rr-track-toolbar {
  background: #F5F8FC;
  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, #FF6900);
  color: var(--rr-brand, #FF6900);
}

.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, #FF6900);
  font-weight: 600;
  text-decoration: none;
}

.rr-track-bc a:hover {
  text-decoration: underline;
}

.rr-track-bc-sep {
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.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;
}


.rr-track-form {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 1px 6px rgba(21, 21, 26, 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, #FF6900);
  box-shadow: 0 0 0 3px rgba(255, 105, 0, 0.1);
}

.rr-track-form-btn {
  padding: 0.65rem 1.75rem;
  background: var(--rr-brand, #FF6900);
  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: #CC5400;
}

.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;
}


.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(255, 105, 0, 0.38);
  margin: 0;
  height: 0;
}

.rr-track-results {
  padding: 1.75rem 0 3rem;
  margin: 0 auto;
}


.rr-trc-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(21, 21, 26, 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;
}


.rr-trc-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid var(--rr-brand, #FF6900);
  margin-top: 0.25rem;
}

.rr-trc-tab {
  padding: 0.65rem 1rem;
  border: none;
  background: #fff;
  color: var(--rr-brand, #FF6900);
  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, #FF6900);
}

html[dir=rtl] .rr-trc-tab + .rr-trc-tab {
  border-left: none;
  border-right: 1.5px solid var(--rr-brand, #FF6900);
}

.rr-trc-tab--active {
  background: var(--rr-brand, #FF6900);
  color: #fff;
}

.rr-trc-tab:hover:not(.rr-trc-tab--active) {
  background: rgba(255, 105, 0, 0.07);
}


.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) {
  
  .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;
  }
  
  .rr-track-hero-title {
    display: block;
  }
  .rr-track-hero {
    padding: 1.5rem 0 2rem;
  }
  .rr-track-illustration {
    margin-bottom: 1.5rem;
  }
  
  .rr-track-form {
    padding: 1.25rem;
  }
  .rr-track-form-body {
    grid-template-columns: 1fr;
  }
  .rr-track-form-btn {
    width: 100%;
    padding: 0.82rem 1rem;
  }
  
  .rr-trc-htrack {
    display: none;
  }
  .rr-trc-vtrack {
    display: block;
  }
}
@media (max-width: 480px) {
  .rr-trc-card {
    padding: 1rem;
  }
    .rr-trc-panel {
        padding: 1rem;
        padding-inline-start: 2rem;
    }
  .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, #FF6900);
  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, #FF6900);
}

.rr-track-page .track-step.is-done .track-dot {
  background: var(--rr-brand, #FF6900);
  border-color: var(--rr-brand, #FF6900);
}

.rr-track-page .track-step.is-active .track-dot {
  box-shadow: 0 0 0 6px rgba(255, 105, 0, 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;
}

.rr-track-od-card {
  margin-left: auto;
  margin-right: auto;
}


.rr-oc-page {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f8f9fb;
  padding-bottom: 3rem;
}


.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: #E35D00;
  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;
}


.rr-oc-body {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}


.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;
}


.rr-oc-ship-strip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.5rem;
  background: rgba(227, 93, 0, 0.06);
  font-size: 0.875rem;
  font-weight: 500;
  color: #E35D00;
  border-bottom: 1px solid rgba(227, 93, 0, 0.12);
}

.rr-oc-ship-icon {
  font-size: 1rem;
}


.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: #E35D00;
}

.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: #E35D00;
  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;
}


.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;
}


.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;
}


.rr-oc-mobile-items {
  display: none;
}


.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;
}


.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: #E35D00;
  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 #E35D00;
  border-radius: 8px;
  color: #E35D00;
  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: #E35D00;
  color: #fff;
}

.rr-oc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.5rem;
  border: 2px solid #E35D00;
  border-radius: 8px;
  background: #E35D00;
  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: #7A3300;
  border-color: #7A3300;
  color: #fff;
}


.rr-oc-support-line {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  padding-top: 0.25rem;
}

.rr-oc-support-link {
  color: #E35D00;
  font-weight: 600;
  text-decoration: none;
}

.rr-oc-support-link:hover {
  text-decoration: underline;
}


@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;
  }
  
  .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: #E35D00;
    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: #E35D00;
  }
  .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;
  }
  
  .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;
  }
  
  .rr-oc-totals {
    align-items: stretch;
  }
  .rr-oc-total-row {
    justify-content: space-between;
  }
  
  .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;
  }
}


@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);
  }
}

[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;
}


[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;
  }
}

#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, #E35D00);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}



.rr-pg-hero {
  background: linear-gradient(135deg, #0A0A0A 0%, #000000 55%, #0A0A0A 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(255, 105, 0, 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(255, 105, 0, 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(255, 105, 0, 0.15);
  border: 1px solid rgba(255, 105, 0, 0.3);
  color: #FFB366;
  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;
}


.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: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.rr-contact-info-panel::before {
  display: none;
}

.rr-contact-info-panel__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.3rem;
}

.rr-contact-info-panel__sub {
  color: #6b7280;
  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(255, 105, 0, 0.1);
  border: 1px solid rgba(255, 105, 0, 0.2);
  color: #FF6900;
  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: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 0.22rem;
}

.rr-contact-info-val {
  color: #374151;
  font-size: 0.91rem;
  line-height: 1.55;
  margin: 0;
}

.rr-contact-info-val a {
  color: #374151;
  text-decoration: none;
}

.rr-contact-info-val a:hover {
  color: #FF6900;
}

.rr-contact-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  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: #f9fafb;
  border: 1px solid #e5e7eb;
  color: #374151;
  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(255, 105, 0, 0.08);
  border-color: rgba(255, 105, 0, 0.3);
  color: #FF6900;
}

.rr-contact-social-btn.wa {
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.25);
  color: #16a34a;
}

.rr-contact-social-btn.wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

.rr-contact-form-panel {
  background: #fff;
  border-radius: 20px;
  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: #000000;
  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: #000000;
  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(255, 105, 0, 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(255, 105, 0, 0.35);
}

.rr-form-submit:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 18px rgba(255, 105, 0, 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;
}


.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: #000000;
  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(11, 11, 14, 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(11, 11, 14, 0.12);
}

.rr-value-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 105, 0, 0.12) 0%, rgba(255, 105, 0, 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: #000000;
  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: #000000;
  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(255, 105, 0, 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: #000000;
  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;
}


.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(255, 105, 0, 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(255, 105, 0, 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: #000000;
  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: #333333;
    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(255, 105, 0, 0.15) 0%, transparent 70%);
}

.rr-faq-cta__icon {
  font-size: 2.5rem;
  color: #FFB366;
  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;
  position: relative;
  z-index: 1;
}

.rr-faq-cta__link:hover {
  background: var(--primary-dark);
  color: #fff;
}


.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(11, 11, 14, 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(255, 105, 0, 0.12) 0%, rgba(255, 105, 0, 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: #000000;
  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: #555555;
    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(255, 105, 0, 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-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .rr-ship-bottom-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
  .rr-ship-bottom-row .rr-ship-steps {
    flex: 1;
    max-width: none;
  }
  .rr-ship-bottom-row .rr-ship-links-grid {
    flex: 1;
    max-width: none;
    margin-top: 0;
    align-self: flex-start;
  }
}

.rr-ship-steps {
  max-width: 700px;
}

.rr-ship-steps__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #000000;
  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(255, 105, 0, 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;
}

.rr-ship-step__body {
  flex: 1;
  padding-top: 0.35rem;
}

.rr-ship-step__title {
  font-size: 0.97rem;
  font-weight: 700;
  color: #000000;
  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: #000000;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.rr-ship-link-card:hover {
  border-color: var(--primary);
  background: #FFF3EA;
  box-shadow: 0 4px 16px rgba(255, 105, 0, 0.1);
  color: #000000;
}

.rr-ship-link-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(255, 105, 0, 0.12) 0%, rgba(255, 105, 0, 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: #000000;
  margin: 0 0 0.1rem;
}

.rr-ship-link-sub {
  font-size: 0.77rem;
  color: #8a94a6;
  margin: 0;
}


.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(255, 105, 0, 0.1);
  border: 1px solid rgba(255, 105, 0, 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(11, 11, 14, 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: #000000;
  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: #000000;
  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: #000000;
  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(11, 11, 14, 0.06);
}

.rr-policy-empty__icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.rr-policy-empty__text {
  font-size: 0.95rem;
}


.rr-gallery-section-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #000000;
  margin: 0 0 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.rr-gallery-section-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to left, #e8ecf0, transparent);
  border-radius: 2px;
}

.rr-gallery-brands {
  margin-bottom: 3rem;
}

.rr-gallery-brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

@media (max-width: 1000px) {
  .rr-gallery-brand-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .rr-gallery-brand-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 400px) {
  .rr-gallery-brand-grid { grid-template-columns: repeat(2, 1fr); }
}

.rr-gallery-brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: #fff;
  border: 1.5px solid #e8ecf0;
  border-radius: 16px;
  padding: 1.5rem 1rem 1.25rem;
}

.rr-gallery-brand-card img {
  width: 100%;
  max-width: 90px;
  height: 48px;
  object-fit: contain;
}

.rr-gallery-brand-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(255, 105, 0, 0.1) 0%, rgba(255, 105, 0, 0.05) 100%);
  color: var(--primary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rr-gallery-brand-card__name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #6b7280;
  text-align: center;
  line-height: 1.3;
}

.rr-gallery-cats {
  margin-bottom: 1rem;
}

.rr-gallery-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 860px) {
  .rr-gallery-cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .rr-gallery-cat-grid { grid-template-columns: repeat(2, 1fr); }
}

.rr-gallery-cat-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid #e8ecf0;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #000000;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
  box-shadow: 0 4px 16px rgba(11, 11, 14, 0.05);
}

.rr-gallery-cat-card:hover {
  border-color: rgba(255, 105, 0, 0.4);
  box-shadow: 0 10px 28px rgba(255, 105, 0, 0.14);
  transform: translateY(-3px);
  color: #000000;
}

.rr-gallery-cat-card__img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}

.rr-gallery-cat-card:hover .rr-gallery-cat-card__img {
  transform: scale(1.04);
}

.rr-gallery-cat-icon {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFF3EA 0%, #FFDFC7 100%);
  color: var(--primary);
  font-size: 2.2rem;
}

.rr-gallery-cat-card__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #000000;
  padding: 0.75rem 1rem;
  text-align: center;
  line-height: 1.35;
  transition: color 0.22s;
}

.rr-gallery-cat-card:hover .rr-gallery-cat-card__name {
  color: var(--primary);
}

.rr-gallery-empty {
  text-align: center;
  padding: 5rem 2rem;
  color: #b0b9c6;
}

.rr-gallery-empty i {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
}

.rr-gallery-empty p {
  font-size: 1rem;
  margin: 0;
}


.rr-support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .rr-support-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .rr-support-cards { grid-template-columns: 1fr; }
}

.rr-support-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid #e8ecf0;
  border-radius: 18px;
  padding: 1.75rem 1.5rem 1.5rem;
  text-decoration: none;
  color: #000000;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
  box-shadow: 0 4px 20px rgba(11, 11, 14, 0.05);
  position: relative;
  overflow: hidden;
}

.rr-support-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(270deg, var(--primary), #FFB366);
  opacity: 0;
  transition: opacity 0.22s;
}

.rr-support-card:hover {
  border-color: rgba(255, 105, 0, 0.4);
  box-shadow: 0 10px 32px rgba(255, 105, 0, 0.14);
  transform: translateY(-3px);
  color: #000000;
}

.rr-support-card:hover::before { opacity: 1; }

.rr-support-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 105, 0, 0.12) 0%, rgba(255, 105, 0, 0.06) 100%);
  color: var(--primary);
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
  transition: background 0.22s, color 0.22s;
}

.rr-support-card:hover .rr-support-card__icon {
  background: var(--primary);
  color: #fff;
}

.rr-support-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 0.45rem;
    line-height: 1.3;
}

.rr-support-card__desc {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0 0 1.1rem;
  line-height: 1.65;
  flex: 1;
}

.rr-support-card__arrow {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
  display: inline-block;
  transition: letter-spacing 0.2s;
}

.rr-support-card:hover .rr-support-card__arrow { letter-spacing: 0.02em; }

.rr-support-contact {
    background: #555555;
    border-radius: 22px;
    padding: 2.5rem 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.rr-support-contact::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 105, 0, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.rr-support-contact::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 105, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 600px) {
  .rr-support-contact { padding: 1.75rem 1.25rem; }
}

.rr-support-contact__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.5rem;
  position: relative;
  z-index: 1;
}

.rr-support-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.rr-support-contact-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.91rem;
}

.rr-support-contact-item i {
  color: #FFB366;
  font-size: 1rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.rr-support-contact-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.rr-support-contact-item a:hover { color: #FFB366; }

.rr-support-contact-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.rr-support-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 10px;
  padding: 0.72rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.22s;
}

.rr-support-cta-btn--primary {
  background: var(--primary);
  color: #fff;
  border: 1.5px solid var(--primary);
  box-shadow: 0 4px 14px rgba(255, 105, 0, 0.35);
}

.rr-support-cta-btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 105, 0, 0.45);
}

.rr-support-cta-btn--outline {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.rr-support-cta-btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}


.rr-pay-methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (max-width: 860px) {
  .rr-pay-methods-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .rr-pay-methods-grid { grid-template-columns: 1fr 1fr; }
}

.rr-pay-method-card {
  background: #fff;
  border: 1.5px solid #e8ecf0;
  border-radius: 18px;
  padding: 2rem 1.25rem 1.75rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(11, 11, 14, 0.05);
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
  position: relative;
  overflow: hidden;
}

.rr-pay-method-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(270deg, var(--primary), #FFB366);
  opacity: 0;
  transition: opacity 0.22s;
}

.rr-pay-method-card:hover {
  border-color: rgba(255, 105, 0, 0.4);
  box-shadow: 0 10px 32px rgba(255, 105, 0, 0.14);
  transform: translateY(-3px);
}

.rr-pay-method-card:hover::before { opacity: 1; }

.rr-pay-method-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 105, 0, 0.12) 0%, rgba(255, 105, 0, 0.06) 100%);
  color: var(--primary);
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.22s, color 0.22s;
}

.rr-pay-method-card:hover .rr-pay-method-card__icon {
  background: var(--primary);
  color: #fff;
}

.rr-pay-method-card__name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.35;
}

.rr-pay-cta {
    background: #555555;
    border-radius: 20px;
    padding: 2.5rem 2.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

.rr-pay-cta::before {
  content: '';
  position: absolute;
  top: -50px; left: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 105, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 600px) {
  .rr-pay-cta { flex-direction: column; text-align: center; padding: 1.75rem 1.25rem; }
}

.rr-pay-cta__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.93rem;
  margin: 0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  flex: 1;
}

.rr-pay-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  padding: 0.78rem 1.75rem;
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.rr-pay-cta__btn:hover {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 105, 0, 0.45);
}




body,
h1, h2, h3, h4, h5, h6,
.rr-category-details,
.rr-account-page,
.rr-auth-page,
.rr-cart-page,
.rr-allcats-page,
.rr-pdp-page,
.rr-order-confirm,
.rr-track-page,
.rr-spec-label,
.rr-spec-section-heading,
.ecom-nav,
button, input, select, textarea {
  font-family: "Cairo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}


.ecom-chat-tab {
  right: auto;
  left: 0;
  border-radius: 0 6px 6px 0;
  writing-mode: vertical-lr;
}


.header-right {
  flex-direction: row-reverse;
}

.ecom-nav-inner {
  flex-direction: row-reverse;
}


.rr-category-details select.category-page-size-select {
  padding-right: 0.55rem;
  padding-left: 1.85rem;
}

.rr-category-details select.category-sort {
  padding: 0.5rem 0.75rem 0.5rem 2.1rem;
  background-position: left 0.55rem center;
}


.category-products-grid.category-products--list .product-card-citycenter .product-body {
  text-align: right;
}

.category-products-grid.category-products--list .product-card-citycenter .product-specs {
  text-align: right;
}

.category-products-grid.category-products--list .product-card-citycenter .product-price {
  justify-content: flex-end;
}


.rr-hero-arrow--prev {
  left: auto;
  right: 12px;
}

.rr-hero-arrow--next {
  right: auto;
  left: 12px;
}


.rr-free-delivery-bar {
  padding: 14px 24px 0;
}

.rr-free-delivery-bar span {
  padding-bottom: 14px;
  align-self: center;
}

@media (max-width: 768px) {
  .rr-free-delivery-bar {
    padding: 10px 16px 0;
  }
  .rr-free-delivery-icon {
    width: 90px;
    height: 68px;
  }
}

.rr-cart-th {
  text-align: right;
}


.rr-pdp-bc-sep,
.rr-page-toolbar-bc-sep,
.rr-track-bc-sep,
.rr-allcat-bc-sep {
  transform: scaleX(-1);
}




.rr-track-bc {
  flex-direction: row-reverse;
}


.rr-track-search {
  flex-direction: row-reverse;
}


.rr-trc-tab + .rr-trc-tab {
  border-left: none;
  border-right: 1.5px solid var(--rr-brand, #FF6900);
}

.rr-tlv__dot {
  left: auto;
  right: -29px;
}

.rr-tlv__item--done .rr-tlv__icon--check,
.rr-tlv__item--current .rr-tlv__icon--accent {
  direction: ltr;
}


.rr-auth-tab:not(:first-child) {
  border-left: none;
  border-right: 1px solid #E35D00;
}


.rr-toolbar-dd-menu {
  right: auto;
  left: 0;
}

.rr-toolbar-dd-item.is-selected::before {
  left: auto;
  right: 0;
  border-radius: 2px 0 0 2px;
}


.category-page-nav {
  transform: scaleX(-1);
}


.category-filters-citycenter .filter-row-arrow {
  transform: scaleX(-1);
}


.category-filters-citycenter .filter-row-btn[aria-expanded=true] ~ .filter-row-arrow,
.category-filters-citycenter .filter-row-btn:not(.collapsed) ~ .filter-row-arrow {
  transform: scaleX(-1) rotate(90deg);
}


.rr-side-menu {
  left: auto;
  right: 0;
  transform: translateX(100%);
}

.rr-side-menu.show {
  transform: translateX(0);
}

.rr-side-menu-close {
  margin-left: 0;
  margin-right: auto;
}


@media (max-width: 991px) {
  .category-sidebar.category-sidebar--drawer {
    left: auto;
    right: 0;
    transform: translateX(100%);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  }
  .category-sidebar.category-sidebar--drawer.is-open {
    transform: translateX(0);
  }
}
.category-drawer-close {
  margin-left: 0;
  margin-right: auto;
}

/* "tel" excluded: a phone number is LTR-formatted data regardless of ambient page
   direction; this reset was cancelling out the explicit dir="ltr" on Checkout's phone
   inputs, since `unset` on an inheritable property resolves to the RTL page's ambient
   direction, not the element's own `dir` attribute. */
[type=email], [type=number], [type=url] {
    direction: unset;
}

.rr-notfound-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: #f8f9fa;
  padding: 4rem 0;
}
.rr-notfound-inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.rr-notfound-code {
  font-size: clamp(7rem, 20vw, 11rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}
.rr-notfound-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.75rem;
}
.rr-notfound-desc {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 2rem;
}
.rr-notfound-code-hint {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
}
.rr-notfound-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.rr-notfound-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.4rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.15s;
}
.rr-notfound-btn:hover { transform: translateY(-2px); }
.rr-notfound-btn--primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.rr-notfound-btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.rr-notfound-btn--outline { background: #fff; color: var(--primary); border-color: var(--primary); }
.rr-notfound-btn--outline:hover { background: var(--primary); color: #fff; }
.rr-notfound-btn--ghost { background: transparent; color: #6b7280; border-color: #e5e7eb; }
.rr-notfound-btn--ghost:hover { background: #f3f4f6; color: #374151; border-color: #d1d5db; }
@media (max-width: 480px) {
  .rr-notfound-actions { flex-direction: column; align-items: center; }
  .rr-notfound-btn { width: 100%; justify-content: center; }
}


.rr-oos-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  left: auto;
  background: linear-gradient(135deg, #4D4D4D, #262626);
  color: #fff;
  border-radius: 999px;
  padding: 5px 12px;
  font-weight: 700;
  font-size: 12px;
  z-index: 2;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.35);
}
.product-card-citycenter.is-oos .product-img img {
  opacity: 0.5;
  filter: grayscale(40%);
}
.product-card-citycenter.is-oos .product-price {
  color: #9ca3af;
}
