﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300..900;1,300..900&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  font-family: "Poppins", sans-serif;
  background: #eef3f7;
  color: #111827;
}
button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
:root {
  --white: #fff;
  --red: #e21a22;
  --red-dark: #b2161c;
  --border-soft: #e5e7eb;
  --text-muted: #6b7280;
  --shadow-soft: 0 18px 45px rgba(15,23,42,.14);
  --radius-lg: 1.25rem;
  --sidebar-width: 280px;
  --sidebar-width-collapsed: 80px;
  --header-height: 100px;
  --glass: rgba(255,255,255,.72);
  --ink: #0f172a;
  --bg-soft: #f7f8fb;
  --bg-soft-2: #eef2f7;
  --ring: rgba(226,26,34,.18);
  --shadow-1: 0 12px 28px rgba(15,23,42,.10);
  --shadow-2: 0 22px 60px rgba(15,23,42,.16);
  --rp-red: #e30613;
  --rp-ink: #121212;
  --rp-muted: #6b7280;
  --rp-line: #e7eaf0;
  --rp-soft: #f6f8fb;
  --rp-radius: 22px;
  --rp-meta-bg: #edecec;
  --rp-meta-hover: #2e2c2c;
  --rp-header-h: 70px;
}
@keyframes rpBounce {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}
.rp-scrollTop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(.96);
  transition: opacity .2s ease, transform .2s ease;
  display: grid;
  place-items: center;
}


.rp-scrollTop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.rp-scrollTop .rp-st-spin {
  width: 56px;
  height: 56px;
  display: block;
  background: url("/assets/images/scrool.svg") center/contain no-repeat;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.22));
  transform-origin: 50% 50%;
  will-change: transform;
}
.rp-scrollTop .rp-st-badge {
  position: absolute;
  left: 50%;
  bottom: -3px;
  top: auto;
  transform: translateX(-50%);
}
.rp-scrollTop.is-down .rp-st-badge {
  bottom: auto;
  top: -3px;
}
.rp-scrollTop .rp-st-badge-inner {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
  animation: rpBounce 1.2s ease-in-out infinite;
}
.rp-scrollTop .rp-st-badge-inner i {
  display: block;
  transition: transform .18s ease;
}
.rp-scrollTop.is-down .rp-st-badge-inner i {
  transform: rotate(180deg);
}
.app-shell {
  min-height: 100vh;
  display: flex;
  overflow-x: hidden;
}
.sidebar {
  width: var(--sidebar-width);
  background: #101827;
  color: #f9fafb;
  padding: 1rem .85rem;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  z-index: 55;
  transition: width .25s ease, transform .25s ease;
}
.sidebar-brand {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .25rem .4rem 1rem;
  position: relative;
}
.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #111827;
  padding: 3px;
  object-fit: contain;
}
.brand-logo-full {
  height: 22px;
  object-fit: contain;
}
.sidebar-toggle-btn {
  margin-left: auto;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(15,23,42,.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  margin-left: -10px;
}
.sidebar-toggle-btn .chev {
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  transform: translateY(-1px);
}
.sidebar-close {
  position: absolute;
  right: .55rem;
  top: .35rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-size: 1.25rem;
  backdrop-filter: blur(10px);
}
.sidebar-nav {
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(148,163,184,.35);
}
.sidebar-nav-secondary {
  margin-top: 1.25rem;
}
.sidebar-section-title {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #9ca3af;
  margin: 0 0 .35rem .55rem;
}
.sidebar-link {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .55rem .55rem;
  margin-bottom: .2rem;
  border-radius: .95rem;
  color: #e5e7eb;
  font-size: .92rem;
  transition: background .18s ease, color .18s ease, transform .12s ease;
}
.sidebar-link .nav-icon {
  flex: 0 0 38px;
  height: 38px;
  border-radius: .95rem;
  background: #151c2b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.sidebar-link .nav-label {
  white-space: nowrap;
}
.sidebar-link .nav-icon {
  width: 18px;
  min-width: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}
.sidebar-link .nav-chevron {
  margin-left: auto;
  font-size: 16px;
  opacity: .8;
}
.nav-chevron {
  margin-left: auto;
  font-size: 1.55rem;
  opacity: 1;
  transform: translateY(-1px);
  color: #cbd5e1;
}
.sidebar-link.is-active, .sidebar-link:hover {
  background: #141c2b;
  color: #fff;
  transform: translateY(-1px);
}
.sidebar-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(148,163,184,.35);
  font-size: .78rem;
  color: #9ca3af;
}
body.sidebar-collapsed .sidebar {
  width: var(--sidebar-width-collapsed);
}
body.sidebar-collapsed .brand-logo-full, body.sidebar-collapsed .sidebar-link .nav-label, body.sidebar-collapsed .sidebar-section-title, body.sidebar-collapsed .sidebar-footer {
  display: none;
}
body.sidebar-collapsed .sidebar-link {
  justify-content: center;
}
body.sidebar-collapsed .nav-chevron {
  display: none;
}
body.sidebar-collapsed .sidebar-toggle-btn {
  transform: rotate(180deg);
}
.shell-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
.topbar {
  height: var(--header-height);
  background: #fff;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 40;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.header-logo {
  display: none;
}
.header-logo img {
  height: 26px;
  display: block;
}
body.sidebar-collapsed .header-logo {
  display: block;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: .6rem;
  min-width: 0;
  flex: 1;
  justify-content: flex-end;
}
.top-search {
  position: relative;
  flex: 1;
  min-width: 0;
  max-width: 420px;
}
.top-search-input {
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  padding: .5rem 2.6rem .5rem 1rem;
  font-size: .9rem;
  width: 100%;
  background: #f9fafb;
}
.top-search-input:focus {
  outline: none;
  border-color: #cbd5f5;
  background: #fff;
}
.top-search-icon {
  position: absolute;
  right: .7rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: .95rem;
}
.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: auto;
  width: 100%;
  max-width: 100vw;
  background: #fff;
  border-radius: .95rem;
  box-shadow: var(--shadow-soft);
  padding: .75rem .9rem .9rem;
  display: none;
  max-height: 420px;
  min-width: 200px;
  overflow: auto;
  z-index: 80;
}
.top-search.is-open .search-dropdown {
  display: block;
}
.search-dropdown-section + .search-dropdown-section {
  margin-top: .7rem;
}
.search-title {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #9ca3af;
  margin-bottom: .35rem;
}
.search-chip {
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: .3rem .7rem;
  font-size: .8rem;
  margin: 0 .3rem .3rem 0;
  background: #f9fafb;
}
.lang-switcher {
  position: relative;
  flex: 0 0 auto;
}
.btn-lang {
  padding: .44rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: #f9fafb;
  font-size: .82rem;
  display: inline-flex;
  align-items: center;
  gap: .15rem;
  white-space: nowrap;
}
.lang-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border-radius: .9rem;
  box-shadow: var(--shadow-soft);
  padding: .4rem;
  display: none;
  min-width: 170px;
  z-index: 90;
}
.lang-switcher.is-open .lang-dropdown {
  display: block;
}
.lang-item {
  width: 100%;
  text-align: left;
  padding: .4rem .6rem;
  border-radius: .7rem;
  font-size: .84rem;
}
.lang-item.is-active {
  background: #f3f4f6;
  font-weight: 800;
}
.lang-item:hover {
  background: #f3f4f6;
}
.btn-lang, .lang-item {
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  background-color: initial;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-fill-color: currentColor;
}
.mobile-menu-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #f3f4f6;
  display: none;
  align-items: center;
  justify-content: center;
}
.hamburger {
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  position: relative;
}
.hamburger::before, .hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: #111827;
}
.hamburger::before {
  top: -5px;
}
.hamburger::after {
  top: 5px;
}
.content {
  padding: 1.25rem 1.8rem 2.5rem;
}
.section-header {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}
.section-title {
  font-size: 1.15rem;
  font-weight: 700;
}
.section-subtitle {
  font-size: .88rem;
  color: var(--text-muted);
  margin-top: .25rem;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1.25rem;
  margin-bottom: 1.6rem;
}
.promo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
  isolation: isolate;
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(15,23,42,.2);
}
.promo-header {
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  overflow: hidden;
}
.promo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.promo-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(226,26,34,.30), rgba(0,0,0,.48));
}
.promo-header::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 0%, rgba(255,255,255,.20), transparent 58%);
}
.promo-header-title {
  position: absolute;
  z-index: 1;
  color: #fff;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .72rem;
  text-align: center;
  padding: .55rem .3rem;
  max-width: calc(100% - 24px);
  border-radius: 999px;
  background: rgba(17, 24, 39, .55);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(10px);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
  bottom: 10px;
  left: 10px;
}
.masonry {
  column-count: 4;
  column-gap: 1.25rem;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
}
.cat-card {
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15,23,42,.08);
  transition: transform .18s ease, box-shadow .18s ease;
  background: #fff;
  isolation: isolate;
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15,23,42,.16);
}
.cat-thumb {
  position: relative;
  overflow: hidden;
}
.cat-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.cat-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  opacity: 0;
  background: rgba(0,0,0,0);
  transition: opacity .25s ease, background .25s ease;
}
.cat-badge {
  display: inline-flex;
  padding: .5rem .75rem;
  border-radius: .9rem;
  background: rgba(17,24,39,.72);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  backdrop-filter: blur(10px);
  transform: translateY(10px);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}
.cat-card:hover .cat-overlay {
  opacity: 1;
  background: rgba(0,0,0,.28);
}
.cat-card:hover .cat-badge {
  opacity: 1;
  transform: translateY(0);
}
.cat-card:hover img {
  transform: scale(1.06);
}
.cat-type-1 .cat-thumb {
  height: 554px;
}
.cat-type-2 .cat-thumb {
  height: 310px;
}
.cat-type-3 .cat-thumb {
  height: 420px;
}
.lazy-img {
  opacity: 0;
  transition: opacity .25s ease;
}
.lazy-img.is-loaded {
  opacity: 1;
}
.sidebar-panels {
  position: fixed;
  left: var(--sidebar-width);
  top: var(--header-height);
  right: 0;
  z-index: 65;
  pointer-events: none;
}
body.sidebar-collapsed .sidebar-panels {
  left: var(--sidebar-width-collapsed);
}
.sidebar-panel {
  max-width: 760px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15,23,42,.18);
  border-radius: 1rem;
  padding: 1rem 1.4rem 1.2rem;
  display: none;
  pointer-events: auto;
}
.panel-corporate {
  max-width: 260px !important;
}
.sidebar-panel.active {
  display: block;
}
.panel-header {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .85rem;
}
.panel-headings {
  min-width: 0;
}
.panel-header h3 {
  margin: 0 0 .15rem;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.panel-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: .82rem;
}
.panel-back {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #f3f4f6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  flex: 0 0 auto;
}
.panel-body {
  display: flex;
  gap: 1.1rem;
}
.panel-main-list {
  width: 270px;
  border-right: 1px solid var(--border-soft);
  padding-right: .9rem;
}
.panel-main-item {
  width: 100%;
  text-align: left;
  padding: .52rem .6rem;
  border-radius: .75rem;
  font-size: .88rem;
  margin-bottom: .18rem;
  display: flex;
  align-items: center;
  gap: .55rem;
}
.panel-main-item img {
  width: 40px;
  height: 40px;
  border-radius: .6rem;
  object-fit: cover;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 3px;
}
.panel-main-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.2;
  font-weight: 700;
}
.panel-main-item.is-active {
  background: #e5e5e5;
}
.panel-main-item:hover {
  background: #e5e5e5;
}
.panel-sub-list {
  flex: 1;
  min-width: 0;
}
.sub-grid {
  display: none;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .65rem;
  max-height: 520px;
  overflow: auto;
  padding-right: .25rem;
}
.sub-grid.is-active {
  display: grid;
}
.sub-card {
  display: flex;
  align-items: center;
  padding: .55rem .65rem;
  border-radius: .85rem;
  background: #f8fafc;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
}
.sub-card-title {
  display: block;
  font-weight: 600;
  margin: 0;
  font-size: .82rem;
  line-height: 1.2;
}
.sub-card:hover {
  background: #efefef;
  border-color: #9ca3af;
}
.sub-empty {
  grid-column: 1 / -1;
  padding: .8rem .9rem;
  border: 1px dashed #d1d5db;
  border-radius: .85rem;
  color: var(--text-muted);
  background: #fff;
}
.panel-body.single-column {
  display: block;
}
.sub-card--parent {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sub-card--parent img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.sub-card--parent .sub-card-title {
  line-height: 1.2;
}
.sub-grid strong {
  display: block;
}
.sub-grid .sub-card--parent {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sub-grid .sub-card--parent img {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: .6rem;
  object-fit: cover;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 3px;
}
.corp-link {
  display: block;
  padding: .6rem .7rem;
  border-radius: .85rem;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  margin-bottom: .45rem;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
}
.corp-link:hover {
  background: #efefef;
  border-color: #9ca3af;
}
.corp-title {
  display: block;
  font-weight: 700;
  margin-bottom: .18rem;
}
.corp-meta {
  font-size: .8rem;
  color: var(--text-muted);
}
.footer {
  border-top: 1px solid var(--border-soft);
  padding: 1.2rem 1.8rem;
  font-size: .82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #f9fafb;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-links a {
  color: var(--text-muted);
  font-weight: 700;
  transition: color .15s ease;
}
.footer-links a:hover {
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-sep {
  opacity: .55;
  user-select: none;
}
.sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 45;
}
body.sidebar-open .sidebar-backdrop {
  opacity: 1;
  pointer-events: auto;
}
.desktop-only {
  display: inline-flex;
}
.mobile-only {
  display: none;
}
.search-result-list {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .5rem .55rem;
  border-radius: .8rem;
  transition: background .15s ease;
}
.search-result-item:hover {
  background: #f3f4f6;
}
.search-result-thumb {
  width: 42px;
  height: 42px;
  border-radius: .7rem;
  overflow: hidden;
  background: #e5e7eb;
  flex: 0 0 42px;
}
.search-result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.search-result-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .12rem;
  flex: 1;
}
.search-result-code {
  font-weight: 700;
  font-size: .82rem;
  line-height: 1.1;
}
.search-result-name {
  font-size: .78rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result-empty {
  font-size: .82rem;
  color: var(--text-muted);
  padding: .25rem .1rem;
}
.sidebar-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
html {
  scroll-behavior: smooth;
}
body.page-enter .shell-main {
  opacity: 0;
  transform: translateY(8px);
}
body.page-ready .shell-main {
  opacity: 1;
  transform: none;
  transition: opacity .35s ease, transform .35s ease;
}
body.page-leave .shell-main {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease;
}
.page-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,12,18,.35);
  backdrop-filter: blur(6px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.page-loader.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.loader-card {
  width: min(420px, 92vw);
  background: var(--glass);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: var(--shadow-2);
  border-radius: 22px;
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.spinner {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 3px solid rgba(15,23,42,.18);
  border-top-color: var(--red);
  animation: spin .8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loader-text {
  font-weight: 700;
  color: #0b1220;
}
.page-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background: rgba(10,12,16,.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 1;
  visibility: visible;
  transition: opacity .28s ease,visibility .28s ease;
}
.page-loader:not(.is-visible) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader .loader-card {
  width: min(440px,calc(100% - 36px));
  border-radius: 26px;
  padding: 26px 24px 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.page-loader .loader-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(60% 70% at 50% 15%, rgba(226,26,34,.35) 0%, rgba(226,26,34,0) 60%);
  pointer-events: none;
}
.page-loader .spinner {
  width: 92px;
  height: 92px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 50%;
}
.page-loader .spinner::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(226,26,34,0) 0 18%, rgba(226,26,34,1) 22%, rgba(226,26,34,0) 42%, rgba(226,26,34,1) 62%, rgba(226,26,34,0) 82% 100%);
  filter: drop-shadow(0 10px 28px rgba(226,26,34,.22));
  animation: rpSpin 1.05s linear infinite;
}
.page-loader .spinner::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.15);
}
.page-loader .spinner-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.45));
  animation: rpPulse 1.25s ease-in-out infinite;
}
.page-loader .loader-logo {
  height: 26px;
  width: auto;
  display: block;
  margin: 0 auto 8px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.28));
}
.page-loader .loader-text {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .2px;
  color: rgba(255,255,255,.94);
  text-shadow: 0 10px 28px rgba(0,0,0,.35);
}
.page-loader .loader-progress {
  margin: 14px auto 0;
  height: 10px;
  width: min(320px,100%);
  background: rgba(255,255,255,.10);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
}
.page-loader .loader-progress span {
  display: block;
  height: 100%;
  width: 38%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(226,26,34,0) 0%, rgba(226,26,34,1) 35%, rgba(226,26,34,0) 70%);
  animation: rpBar 1.15s ease-in-out infinite;
}
@keyframes rpSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes rpPulse {
  0%,100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: .92;
  }
}
@keyframes rpBar {
  0% {
    transform: translateX(-15%);
  }
  50% {
    transform: translateX(145%);
  }
  100% {
    transform: translateX(-15%);
  }
}
.cardx {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  box-shadow: var(--shadow-1);
}
.pad {
  padding: 18px;
}
.pad-lg {
  padding: 22px;
}
.kicker {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #94a3b8;
  font-weight: 700;
}
.h1 {
  margin: .25rem 0 0;
  font-size: 1.75rem;
  line-height: 1.12;
  color: #0b1220;
}
.h2 {
  margin: .1rem 0 0;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 700;
}
.muted {
  color: var(--text-muted);
}
.hr {
  border: 0;
  border-top: 1px solid var(--border-soft);
  margin: 14px 0;
}
.btnx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .62rem .98rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0);
  background: var(--red);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 35px rgba(226,26,34,.18);
  transition: transform .12s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btnx:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(226,26,34,.24);
}
.btnx:active {
  transform: translateY(0);
}
.btnx-soft {
  background: #f3f4f6;
  color: #111827;
  box-shadow: none;
  border: 1px solid var(--border-soft);
}
.btnx-soft:hover {
  background: #e5e7eb;
}
.btnx-ghost {
  background: transparent;
  color: #111827;
  border: 1px solid var(--border-soft);
  box-shadow: none;
}
.btnx-sm {
  padding: .48rem .82rem;
  font-size: .9rem;
}
.btnx-xs {
  padding: .38rem .65rem;
  font-size: .82rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .28rem .58rem;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e3a8a;
  font-size: .75rem;
  font-weight: 700;
}
.badge.hot {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #9a3412;
}
.badge.ok {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}
.badge.new {
  background: #fdf2f8;
  border-color: #fbcfe8;
  color: #9d174d;
}
[data-reveal] {
  opacity: 1;
  transform: none;
}
[data-reveal].inview {
  opacity: 1;
  transform: none;
}
.imgbox {
  position: relative;
  background: linear-gradient(90deg, #eef2f7, #f8fafc, #eef2f7);
  background-size: 200% 200%;
  animation: shimmer 1.2s ease infinite;
}
@keyframes shimmer {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
img[data-skel].is-loading {
  opacity: 0;
}
img[data-skel] {
  opacity: 1;
  transition: opacity .25s ease;
}
.timeline {
  position: relative;
  padding-left: 18px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--red), rgba(226,26,34,.15));
  border-radius: 999px;
}
.t-item {
  position: relative;
  margin: 14px 0;
  padding-left: 18px;
}
.t-dot {
  position: absolute;
  left: -2px;
  top: 14px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #fff;
  border: 3px solid var(--red);
  box-shadow: 0 10px 25px rgba(226,26,34,.22);
}
.t-card {
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  background: #fff;
  box-shadow: var(--shadow-1);
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
}
.t-media {
  position: relative;
  min-height: 160px;
  background: #0b1220;
}
.t-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t-body {
  padding: 16px;
}
.t-year {
  font-weight: 700;
  color: #0b1220;
  font-size: 1.1rem;
}
.t-body p {
  margin: 8px 0 0;
  color: var(--text-muted);
}
.rp-categories .cat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.rp-categories .catg-card {
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  background: #fff;
  box-shadow: var(--shadow-1);
  overflow: hidden;
  transition: transform .15s ease, box-shadow .18s ease;
}
.rp-categories .catg-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.rp-categories .catg-media {
  position: relative;
  height: 170px;
  background: #0b1220;
  overflow: hidden;
}
.rp-categories .catg-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .45s ease;
}
.rp-categories .catg-card:hover .catg-media img {
  transform: scale(1.07);
}
.rp-categories .catg-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.58));
  opacity: .85;
  transition: opacity .25s ease;
}
.rp-categories .catg-card:hover .catg-media::after {
  opacity: .92;
}
.rp-categories .catg-body {
  padding: 12px 14px 14px;
}
.rp-categories .catg-title {
  font-weight: 700;
  color: #0b1220;
}
.rp-categories .catg-meta {
  margin-top: 4px;
  font-size: .85rem;
  color: var(--text-muted);
}
.rp-products .products-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 16px;
  align-items: start;
}
.rp-products .sticky {
  position: sticky;
  top: calc(var(--header-height) + 14px);
}
.rp-products .form-control, .rp-products .form-textarea, .rp-products .form-select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  background: #fff;
  padding: .68rem .88rem;
  font-size: .94rem;
}
.rp-products .form-control:focus, .rp-products .form-textarea:focus, .rp-products .form-select:focus {
  outline: none;
  border-color: #cbd5f5;
  box-shadow: 0 0 0 4px rgba(191,219,254,.45);
}
.rp-products .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.rp-products .chip {
  padding: .44rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: #fff;
  font-weight: 700;
  font-size: .86rem;
  transition: transform .12s ease, background .18s ease;
}
.rp-products .chip:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
}
.rp-products .prod-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.rp-products .prod-card {
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  background: #fff;
  box-shadow: var(--shadow-1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .18s ease;
}
.rp-products .prod-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.rp-products .prod-media {
  position: relative;
  height: 190px;
  background: #0b1220;
  overflow: hidden;
}
.rp-products .prod-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .45s ease;
}
.rp-products .prod-card:hover .prod-media img {
  transform: scale(1.08);
}
.rp-products .prod-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.52));
  opacity: .75;
}
.rp-products .prod-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.rp-products .prod-code {
  font-size: .78rem;
  letter-spacing: .12em;
  font-weight: 700;
  color: #94a3b8;
}
.rp-products .prod-name {
  font-weight: 700;
  color: #0b1220;
  line-height: 1.2;
}
.rp-products .prod-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 2px;
}
.rp-products .price {
  font-weight: 700;
  font-size: 1.05rem;
}
.rp-products .prod-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.rp-product-detail .pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.rp-product-detail .gallery-main {
  position: relative;
  height: 420px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: #0b1220;
  box-shadow: var(--shadow-1);
}
.rp-product-detail .gallery-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rp-product-detail .gallery-thumbs {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.rp-product-detail .thumb {
  width: 88px;
  height: 68px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: #0b1220;
  cursor: pointer;
  position: relative;
}
.rp-product-detail .thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
}
.rp-product-detail .thumb.active {
  outline: 3px solid rgba(226,26,34,.22);
  border-color: rgba(226,26,34,.35);
}
.rp-product-detail .spec-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.rp-product-detail .spec {
  padding: 10px 12px;
  border-radius: 16px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: .92rem;
}
.rp-product-detail .spec span {
  color: var(--text-muted);
  font-weight: 700;
}
.rp-product-detail .tabs {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.rp-product-detail .tabbtn {
  padding: .52rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: #fff;
  font-weight: 700;
  font-size: .9rem;
}
.rp-product-detail .tabbtn.active {
  background: #f3f4f6;
}
.rp-product-detail .tabpanel {
  display: none;
  margin-top: 12px;
}
.rp-product-detail .tabpanel.active {
  display: block;
}
.rp-contact .grid-2 {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
}
.rp-contact .office-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.rp-contact .acc {
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.rp-contact .acc button {
  width: 100%;
  text-align: left;
  padding: 14px;
  border: 0;
  background: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.rp-contact .acc .body {
  padding: 0 14px 14px;
  color: var(--text-muted);
  display: none;
}
.rp-contact .acc.open .body {
  display: block;
}
.rp-about .rp-about-wrap {
  margin: 0 auto;
}
.rp-about .rp-about-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(15,23,42,.65);
}
.rp-about .rp-about-hero {
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(15,23,42,.10);
  overflow: hidden;
}
.rp-about-hero-grid.is-no-media {
  display: block !important;
}
.rp-about .rp-about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  padding: 22px;
}
.rp-about .rp-about-hero-copy h1 {
  margin: 8px 0 10px;
  font-size: clamp(1.6rem, 2.2vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  color: #0f172a;
}
.rp-about .rp-about-lead {
  margin: 0 0 14px;
  color: rgba(15,23,42,.78);
  line-height: 1.65;
}
.rp-about .rp-about-proof {
  margin-top: 14px;
}
.rp-about .rp-proof-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(247,248,251,.9);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.rp-about .rp-proof-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15,23,42,.10);
  border-color: rgba(226,26,34,.18);
}
.rp-about .rp-proof-ic {
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226,26,34,.18);
  background-color: #e30613;
  color: var(--red);
  font-weight: 700;
}
.rp-about .rp-proof-item b {
  display: block;
  font-size: .98rem;
  margin-bottom: 2px;
  color: #0f172a;
}
.rp-about .rp-proof-item img {
  display: flex;
  text-align: center;
  width: 75% !important;
  height: 75% !important;
}
.rp-about .rp-proof-item span {
  display: block;
  color: rgba(15,23,42,.70);
  line-height: 1.35;
}
.rp-about .rp-about-hero-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}
.rp-about .rp-about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}
.rp-about .rp-about-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.rp-about .rp-about-hero-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  color: rgba(255,255,255,.92);
}
.rp-about .rp-about-hero-caption b {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -.01em;
}
.rp-about .rp-about-hero-caption span {
  display: block;
  opacity: .88;
  font-size: .92rem;
}
.rp-about .rp-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 18px 0;
}
.rp-about .rp-stat {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 200px;
  border: 1px solid rgba(15,23,42,.10);
  background: linear-gradient(180deg, rgba(15,23,42,.85), rgba(15,23,42,.55)), var(--bg) center/cover no-repeat;
  box-shadow: 0 18px 60px rgba(15,23,42,.10);
}
.rp-about .rp-stat-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
}
.rp-about .rp-stat-num {
  font-weight: 700;
  font-size: clamp(2.2rem, 3.1vw, 3.25rem);
  line-height: 1;
  color: rgba(255,255,255,.96);
  text-shadow: 0 12px 32px rgba(0,0,0,.35);
}
.rp-about .rp-stat-label {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.rp-about .rp-about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 10px 0 18px;
}
.rp-about .rp-pillar {
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 18px 55px rgba(15,23,42,.08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.rp-about .rp-pillar:hover {
  transform: translateY(-3px);
  border-color: rgba(226,26,34,.18);
  box-shadow: 0 26px 70px rgba(15,23,42,.12);
}
.rp-about .rp-pillar-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.rp-about .rp-pillar-ic {
  width: 50px;
  height: 50px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226,26,34,.18);
  background-color: var(--red);
  flex: 0 0 50px;
  color: var(--white);
  font-weight: 700;
  font-size: 30px;
}
.rp-about .rp-pillar h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #0f172a;
  line-height: 50px;
}
.rp-about .rp-pillar-sub {
  margin-top: 2px;
  font-size: .93rem;
  color: rgba(15,23,42,.70);
}
.rp-about .rp-pillar-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(15,23,42,.78);
  line-height: 1.55;
}
.rp-about .rp-pillar-list p {
  margin: 6px 0;
}
.rp-about .rp-about-quality {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 18px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(15,23,42,.10);
  overflow: hidden;
}
.rp-about .rp-quality-media {
  min-height: 320px;
}
.rp-about .rp-quality-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rp-about .rp-quality-copy {
  padding: 22px;
}
.rp-about .rp-quality-copy h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  line-height: 1.18;
  letter-spacing: -.01em;
  color: #0f172a;
}
.rp-about .rp-quality-bullets {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.rp-about .rp-qb {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.rp-about .rp-qb-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 6px;
  background: var(--red);
  box-shadow: 0 10px 22px rgba(226,26,34,.25);
  flex: 0 0 10px;
}
.rp-about .rp-qb b {
  display: block;
  color: #0f172a;
  margin-bottom: 2px;
}
.rp-about .rp-qb span {
  display: block;
  color: rgba(15,23,42,.72);
}
.category-section .masonry {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 150px;
  gap: 18px;
  column-count: unset;
  column-gap: 0;
}
.category-section .masonry-item {
  margin: 0;
  break-inside: unset;
  min-width: 0;
}
.category-section .masonry .masonry-item:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}
.category-section .masonry .masonry-item:nth-child(2) {
  grid-column: 3 / span 1;
  grid-row: 1 / span 2;
}
.category-section .masonry .masonry-item:nth-child(3) {
  grid-column: 4 / span 1;
  grid-row: 1 / span 1;
}
.category-section .masonry .masonry-item:nth-child(4) {
  grid-column: 4 / span 1;
  grid-row: 2 / span 1;
}
.category-section .masonry .masonry-item:nth-child(5) {
  grid-column: 1 / span 1;
  grid-row: 3 / span 2;
}
.category-section .masonry .masonry-item:nth-child(6) {
  grid-column: 2 / span 1;
  grid-row: 3 / span 1;
}
.category-section .masonry .masonry-item:nth-child(7) {
  grid-column: 2 / span 1;
  grid-row: 4 / span 1;
}
.category-section .masonry .masonry-item:nth-child(8) {
  grid-column: 3 / span 2;
  grid-row: 3 / span 2;
}
.category-section .cat-card, .category-section .cat-thumb {
  height: 100%;
}
.masonry.masonry-collage {
  column-count: unset;
  column-gap: unset;
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 1.25rem;
  align-items: stretch;
}
.masonry.masonry-collage .masonry-item {
  margin: 0;
}
.masonry.masonry-collage .cat-thumb {
  height: 100%;
  border-radius: inherit !important;
  border-radius: var(--radius-lg) !important;
}
.masonry.masonry-collage .cat-thumb img {
  position: absolute;
}
.masonry.masonry-collage .cat-card {
  height: 100%;
}
.masonry.masonry-collage .pos-1 {
  grid-column: 1/3;
  grid-row: 1/3;
}
.masonry.masonry-collage .pos-2 {
  grid-column: 3/4;
  grid-row: 1/3;
}
.masonry.masonry-collage .pos-3 {
  grid-column: 4/5;
  grid-row: 1/2;
}
.masonry.masonry-collage .pos-4 {
  grid-column: 4/5;
  grid-row: 2/3;
}
.masonry.masonry-collage .pos-5 {
  grid-column: 1/2;
  grid-row: 3/5;
}
.masonry.masonry-collage .pos-6 {
  grid-column: 2/3;
  grid-row: 3/4;
}
.masonry.masonry-collage .pos-7 {
  grid-column: 2/3;
  grid-row: 4/5;
}
.masonry.masonry-collage .pos-8 {
  grid-column: 3/5;
  grid-row: 3/5;
}
.masonry.masonry-collage {
  grid-auto-rows: 150px;
}
.rp-products .rp-wrap {
  margin: 0 auto;
  padding: 18px 0 26px;
  position: relative;
  isolation: isolate;
}
.rp-products .rp-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 10px 12px;
  border: 1px solid var(--rp-line);
  background: #fff;
  border-radius: 16px;
  position: relative;
  z-index: 20000;
}
.rp-products .rp-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--rp-muted);
  line-height: 1;
  min-width: 240px;
}
.rp-products .rp-bc-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #f8fafc;
  color: #475569;
  font-size: 12px;
  line-height: 1;
}
.rp-products .rp-bc-item:hover {
  background: #fff;
  color: #0f172a;
}
.rp-products .kataktif {
  background: var(--red, #e21a22);
  border-color: #fff;
  color: #fff;
  font-weight: 700;
  max-width: min(520px, 68vw);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rp-products .kataktif:hover {
  background: #fff;
  color: #0f172a;
}
.rp-products .rp-bc-sep {
  opacity: .5;
  font-size: 12px;
}
.rp-products .rp-bc-item i {
  color: #9aa3b2;
}
.rp-products .rp-title::after {
  content: none;
}
.rp-products .rp-title h1 {
  font-size: 24px;
  line-height: 1.18;
  color: #0f172a;
  letter-spacing: -.2px;
  display: inline-block;
  position: relative;
  padding: 20px 0 15px;
  margin: 0 15px;
  max-width: 100%;
}
.rp-products .rp-title h1::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #e21a22;
  border-radius: 3px;
  margin-top: 10px;
}
.rp-products .rp-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 25000;
}
.rp-products .rp-dd {
  position: relative;
  z-index: 26000;
}
.rp-products .rp-dd-btn {
  appearance: none;
  border: 1px solid var(--rp-line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: #0f172a;
  line-height: 1;
  transition: transform .15s ease,box-shadow .15s ease,border-color .15s ease;
  user-select: none;
}
.rp-products .rp-dd-btn i {
  color: #94a3b8;
}
.rp-products .rp-dd-btn:hover {
  border-color: #d7dbe6;
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
  transform: translateY(-1px);
}
.rp-products .rp-dd-btn .rp-dd-caret {
  color: #94a3b8;
  font-size: 12px;
  margin-left: 2px;
}
.rp-products .rp-dd-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--rp-line);
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(2,6,23,.18);
  padding: 8px;
  display: none;
  z-index: 300000;
}
.rp-products .rp-dd-item {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 10px 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: #0f172a;
}
.rp-products .rp-dd-item i {
  color: #94a3b8;
}
.rp-products .rp-dd-item:hover {
  background: #f3f6fb;
}
.rp-products .rp-dd-item.is-active {
  background: rgba(226,26,34,.08);
  color: var(--rp-red);
}
.rp-products .rp-dd-item.is-active i {
  color: var(--rp-red);
}
.rp-products .rp-grid-toggles {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 10px;
}
.rp-products .rp-grid-btn {
  width: auto;
  height: 38px;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 0;
  padding: 0;
}
.rp-products .rp-grid-ic {
  display: flex;
  align-items: center;
  gap: 4px;
}
.rp-products .rp-grid-ic span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #d6dbe6;
}
.rp-products .rp-grid-btn.is-active .rp-grid-ic span {
  background: var(--rp-red);
}
.rp-products .rp-grid {
  margin-top: 14px;
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.rp-products .rp-grid.is-grid-3 {
  grid-template-columns: repeat(3,minmax(0,1fr));
}
.rp-products .rp-grid.is-grid-4 {
  grid-template-columns: repeat(4,minmax(0,1fr));
}
.rp-products .rp-grid.is-grid-5 {
  grid-template-columns: repeat(5,minmax(0,1fr));
}
.rp-products .rp-prod-card {
  position: relative;
  border-radius: var(--rp-radius);
  background: #fff;
  border: 1px solid var(--rp-line);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15,23,42,.08);
  transform: translateZ(0);
  transition: transform .18s ease,box-shadow .18s ease;
  height: 390px;
}
.rp-products .rp-grid.is-grid-4 .rp-prod-card {
  height: 380px;
}
.rp-products .rp-grid.is-grid-3 .rp-prod-card {
  height: 410px;
}
.rp-products .rp-grid.is-grid-5 .rp-prod-card {
  height: 360px;
}
.rp-products .rp-prod-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(15,23,42,.14);
}
.rp-products .rp-prod-card > a {
  display: flex !important;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
@property --rpRingA {

}
.rp-products .rp-prod-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: var(--rp-radius);
  pointer-events: none;
  opacity: 0;
  z-index: 6;
  background: conic-gradient(from 270deg,var(--rp-red) 0deg var(--rpRingA),transparent 0deg 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  mask-composite: exclude;
  transition: opacity .12s ease;
}
.rp-products .rp-prod-card:hover::after, .rp-products .rp-prod-card:focus-within::after {
  opacity: 1;
  animation: rpRingDraw .85s ease forwards;
}
@keyframes rpRingDraw {
  from {
    --rpRingA: 0deg;
  }
  to {
    --rpRingA: 360deg;
  }
}
.rp-products .rp-prod-media {
  flex: 1;
  background: #fff;
  border-bottom: 1px solid #f1f3f7;
  padding: 10px;
  display: block;
  min-height: 0;
}
.rp-products .rp-prod-media-inner {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f0f2f7;
  display: block;
}
.rp-products .rp-prod-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .28s ease,filter .28s ease;
}
.rp-products .rp-prod-card:hover .rp-prod-media img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}
.rp-products .rp-prod-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  background: var(--rp-meta-bg);
  color: #1b1825;
  transition: background .18s ease,color .18s ease;
  min-height: 84px;
}
.rp-products .rp-prod-title {
  margin: 0;
  color: #1b1825;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: calc(1.25em * 2);
}
.rp-products .rp-prod-go {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background-color: #2e2c2c;
  display: grid;
  place-items: center;
  color: #fff;
  flex: 0 0 auto;
  transition: background .18s ease,color .18s ease,transform .18s ease;
}
.rp-products .rp-prod-card:hover .rp-prod-meta, .rp-products .rp-prod-card:focus-within .rp-prod-meta {
  background: var(--rp-meta-hover);
  color: #fff;
}
.rp-products .rp-prod-card:hover .rp-prod-title, .rp-products .rp-prod-card:focus-within .rp-prod-title {
  color: #fff;
}
.rp-products .rp-prod-card:hover .rp-prod-go, .rp-products .rp-prod-card:focus-within .rp-prod-go {
  background-color: var(--rp-red);
  color: #fff;
  transform: translateX(1px);
}
.rp-products .rp-pager {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--rp-muted);
  font-size: 13px;
}
.rp-products .rp-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.rp-products .pg-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #d7dbe6;
  background: #fff;
  display: grid;
  place-items: center;
  color: #0f172a;
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  transition: transform .15s ease,box-shadow .15s ease,border-color .15s ease;
}
.rp-products .pg-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
  border-color: #cfd5e3;
}
.rp-products .pg-btn.is-active {
  border-color: rgba(226,26,34,.45);
  color: var(--rp-red);
  font-weight: 800;
}
.rp-product-detail .pd-wrap {
  margin: 0 auto;
}
.rp-product-detail .pd-top {
  margin: 10px 0 12px;
}
.rp-product-detail .pd-title {
  font-size: 24px;
  line-height: 1.18;
  color: #0f172a;
  letter-spacing: -.2px;
  display: inline-block;
  position: relative;
  padding: 20px 0px 15px 0px;
  max-width: 100%;
  margin: 0 15px;
}
.rp-product-detail .pd-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #e21a22;
  border-radius: 3px;
}
.rp-product-detail .pd-sub {
  margin-top: 6px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.7;
  max-width: 980px;
}
.rp-product-detail .pd-bcbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(17,24,39,.05);
}
.rp-product-detail .pd-bc {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.rp-product-detail .pd-bc-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: #f8fafc;
  color: #475569;
  font-size: 12px;
  line-height: 1;
}
.rp-product-detail .pd-bc-item i {
  font-size: 13px;
  opacity: .85;
}
.rp-product-detail .pd-bc-item:hover {
  background: #000;
  color: #fff;
}
.rp-product-detail .pd-bc-sep {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #94a3b8;
}
.rp-product-detail .pd-bc-sep i {
  font-size: 12px;
}
.rp-product-detail .pd-bc-cur {
  background: var(--red,#e21a22);
  border-color: #fff;
  color: #fff;
  font-weight: 700;
  max-width: min(520px, 68vw);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rp-product-detail .pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 12px;
}
.rp-product-detail .pd-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(17,24,39,.06);
}
.rp-product-detail .pd-gallery {
  padding: 14px;
}
.rp-product-detail .pd-main {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  display: block;
}
.rp-product-detail .pd-main img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  display: block;
  opacity: 1;
  transform: scale(1);
  transition: opacity .18s ease, transform .22s ease;
}
.rp-product-detail .pd-main img.is-fading {
  opacity: .18;
  transform: scale(.995);
}
.rp-product-detail .pd-main-tools {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 10px;
}
.rp-product-detail .pd-ic {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: rgba(16,22,54,.92);
  color: #fff;
  border: 1px solid rgba(0,0,0,.10);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(0,0,0,.10);
}
.rp-product-detail .pd-ic i {
  font-size: 18px;
}
.rp-product-detail .pd-thumbs {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 10px;
  align-items: center;
}
.rp-product-detail .pd-track {
  display: flex;
  gap: 10px;
  overflow: auto;
  scrollbar-width: none;
  padding: 2px;
}
.rp-product-detail .pd-track::-webkit-scrollbar {
  display: none;
}
.rp-product-detail .pd-thumb {
  width: 92px;
  height: 68px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.rp-product-detail .pd-thumb:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}
.rp-product-detail .pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rp-product-detail .pd-thumb.is-active {
  outline: 3px solid rgba(226,26,34,.18);
  border-color: rgba(226,26,34,.45);
}
.rp-product-detail .pd-arrow {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  display: grid;
  place-items: center;
  transition: transform .14s ease, box-shadow .14s ease;
  -webkit-appearance: none;
  appearance: none;
  color: inherit;
  -webkit-text-fill-color: currentColor;
  -webkit-tap-highlight-color: transparent;
}
.rp-product-detail .pd-arrow:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}
.rp-product-detail .pd-arrow i {
  font-size: 18px;
  color: inherit;
}
.rp-product-detail .pd-rail {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 12px;
}
.rp-product-detail .pd-panel {
  padding: 14px;
}
.rp-product-detail .pd-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.rp-product-detail .pd-panel-title {
  font-weight: 700;
  color: #0f172a;
  font-size: 13px;
  letter-spacing: .2px;
}
.rp-product-detail .pd-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.rp-product-detail .pd-tab {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  font-weight: 700;
  font-size: 12px;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
  -webkit-appearance: none;
  appearance: none;
  color: inherit;
  -webkit-text-fill-color: currentColor;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}
.rp-product-detail .pd-tab:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0,0,0,.06);
}
.rp-product-detail .pd-tab.is-active {
  background-color: #d9d9d9;
}
.rp-product-detail .pd-panel-body {
  margin-top: 12px;
}
.rp-product-detail .pd-text {
  color: #4b5563;
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}
.rp-product-detail table {
  width: 100% !important;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
}
.rp-product-detail table th, .rp-product-detail table td {
  padding: 11px 12px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: 13px;
  transition: background .12s ease, color .12s ease;
}
.rp-product-detail table tbody tr:nth-of-type(odd) {
  background-color: #f5f5f5;
}
.rp-product-detail table th {
  width: 42%;
  text-align: left;
  background: #f6f8fb;
  color: #0f172a;
}
.rp-product-detail table td {
  color: #374151;
}
.rp-product-detail table tr:hover th {
  background-color: #f5f5f5;
}
.rp-product-detail table tr:hover td {}
.rp-product-detail table tr:last-child th, .rp-product-detail table tr:last-child td {
  border-bottom: none;
}
.rp-product-detail .pd-manual-list {
  display: grid;
  gap: 10px;
}
.rp-product-detail .pd-file {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.rp-product-detail .pd-file:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0,0,0,.06);
  border-color: rgba(226,26,34,.20);
}
.rp-product-detail .pd-file-ic {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(226,26,34,.08);
  display: grid;
  place-items: center;
  border: 1px solid rgba(226,26,34,.18);
}
.rp-product-detail .pd-file-ic i {
  font-size: 20px;
  color: var(--red,#e21a22);
}
.rp-product-detail .pd-file-body {
  flex: 1 1 auto;
  min-width: 0;
}
.rp-product-detail .pd-file-title {
  font-weight: 700;
  color: #0f172a;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rp-product-detail .pd-file-meta {
  margin-top: 3px;
  font-size: 12px;
  color: #6b7280;
}
.rp-product-detail .pd-file a {
  font-weight: 600;
  font-size: 15px;
  color: var(--red,#e21a22);
  white-space: nowrap;
  display: contents;
  align-items: center;
  gap: 8px;
}
.rp-product-detail .pd-video-tile {
  width: 100%;
  text-align: left;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.08);
  background: linear-gradient(180deg,#0f172a,#0b1224);
  color: #fff;
  overflow: hidden;
  position: relative;
  display: block;
}
.rp-product-detail .pd-video-cover {
  aspect-ratio: 16/9;
  position: relative;
  opacity: .92;
  background: radial-gradient(circle at 20% 20%, rgba(226,26,34,.40), transparent 55%),radial-gradient(circle at 80% 40%, rgba(255,255,255,.12), transparent 58%),linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
}
.rp-product-detail .pd-video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px 13px;
}
.rp-product-detail .pd-video-meta .l {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.rp-product-detail .pd-video-badge {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  display: grid;
  place-items: center;
}
.rp-product-detail .pd-video-badge i {
  font-size: 18px;
}
.rp-product-detail .pd-video-title {
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rp-product-detail .pd-video-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(226,26,34,.92);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 700;
  font-size: 12px;
}
.rp-product-detail .pd-video-cta i {
  font-size: 14px;
}
.rp-product-detail .pd-video-play {
  position: absolute;
  inset: auto 14px 14px auto;
}
.rp-product-detail .pd-video-play .pd-ic {
  background: rgba(255,255,255,.92);
}
.rp-product-detail .pd-warn {
  padding: 0;
}
.rp-product-detail .pd-warn-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--red,#e21a22);
  color: #fff;
  border-radius: 18px 18px 0 0;
  font-weight: 600;
}
.rp-product-detail .pd-warn-body {
  padding: 18px 14px 14px;
  border: 1px solid rgba(0,0,0,.08);
  border-top: none;
  border-radius: 0 0 18px 18px;
  background: #fff;
}
.rp-product-detail .pd-warn-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 12px;
}
.rp-product-detail .pd-warn-ic {
  width: 100%;
  border-radius: 100px;
  border: 1px dotted rgba(0,0,0,.10);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform .14s ease, box-shadow .14s ease;
}
.rp-product-detail .pd-warn-ic:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0,0,0,.06);
}
.rp-product-detail .pd-warn-ic .ic {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
}
.rp-product-detail .pd-warn-ic img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
}
.rp-product-detail .pd-warn-ic i {
  display: none;
  font-size: 22px;
  color: #111827;
}
.rp-product-detail .pd-warn-ic.is-fallback i {
  display: block;
}
.rp-product-detail .pd-warn-ic.is-fallback .ic {
  display: none;
}
.rp-product-detail .pd-warn-ic::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translate(-50%,-100%);
  white-space: nowrap;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17,24,39,.92);
  color: #fff;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
  box-shadow: 0 12px 24px rgba(0,0,0,.20);
  z-index: 30;
}
.rp-product-detail .pd-warn-ic::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  transform: translate(-50%,-100%);
  width: 10px;
  height: 10px;
  background: rgba(17,24,39,.92);
  rotate: 45deg;
  opacity: 0;
  transition: opacity .16s ease;
  z-index: 29;
}
.rp-product-detail .pd-warn-ic:hover::after, .rp-product-detail .pd-warn-ic:focus-visible::after {
  opacity: 1;
  transform: translate(-50%,-102%);
}
.rp-product-detail .pd-warn-ic:hover::before, .rp-product-detail .pd-warn-ic:focus-visible::before {
  opacity: 1;
}
.rp-product-detail .pd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9997;
  display: none;
}
.rp-product-detail .pd-lightbox.is-open {
  display: block;
}
.rp-product-detail .pd-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(10px);
}
.rp-product-detail .pd-shell {
  position: relative;
  max-width: min(1180px, calc(100vw - 24px));
  margin: 14px auto;
  height: calc(100vh - 28px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
}
.rp-product-detail .pd-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
}
.rp-product-detail .pd-topbar .t {
  font-weight: 700;
  font-size: 13px;
  opacity: .95;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rp-product-detail .pd-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.rp-product-detail .pd-x {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: #e30613;
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform .14s ease, background .14s ease;
}
.rp-product-detail .pd-x:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.12);
}
.rp-product-detail .pd-x i {
  font-size: 18px;
}
.rp-product-detail .pd-stage {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.30);
  display: grid;
  place-items: center;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.rp-product-detail .pd-stage img {
  max-width: 100%;
  max-height: calc(100vh - 230px);
  width: auto;
  height: auto;
  display: block;
  transition: transform .18s ease;
}
.rp-product-detail .pd-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.rp-product-detail .pd-nav .hint {
  color: rgba(255,255,255,.70);
  font-size: 12px;
}
.rp-product-detail .pd-navbtn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: #e30613;
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform .14s ease, background .14s ease;
}
.rp-product-detail .pd-navbtn:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.14);
}
.rp-product-detail .pd-navbtn i {
  font-size: 18px;
}
.rp-product-detail .pd-vmodal .modal-dialog {
  max-width: min(1100px, calc(100vw - 24px));
  margin: 14px auto;
}
.rp-product-detail .pd-vmodal .modal-content {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.rp-product-detail .pd-vmodal .modal-header {
  border: 0;
  gap: 10px;
  background: transparent;
  padding: 12px 14px;
  color: #fff;
}
.rp-product-detail .pd-vmodal .modal-title {
  font-weight: 700;
  font-size: 13px;
  opacity: .95;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rp-product-detail .pd-vmodal .btn-close {
  filter: invert(1);
  opacity: .9;
}
.rp-product-detail .pd-vmodal .modal-body {
  padding: 0;
  background: #000;
}
.rp-product-detail .pd-vmodal .ratio {
  background: #000;
}
.rp-product-detail .pd-vmodal iframe {
  border: 0;
}
.rp-product-detail .pd-vmodal .modal-footer {
  border: 0;
  background: transparent;
  padding: 10px 14px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.rp-product-detail .pd-vmodal .pd-linkbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
}
.rp-product-detail .pd-vmodal .pd-linkbtn:hover {
  background: rgba(255,255,255,.14);
}
.rp-media .rm-wrap {
  margin: 0 auto;
}
.rp-media .rm-top {
  margin: 10px 0 12px;
}
.rp-media .rm-bcbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(17,24,39,.05);
}
.rp-media .rm-bc {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.rp-media .rm-bc-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: #f8fafc;
  color: #475569;
  font-size: 12px;
  line-height: 1;
}
.rp-media .rm-bc-item i {
  font-size: 13px;
  opacity: .85;
}
.rp-media .rm-bc-item:hover {
  background: #fff;
  color: #0f172a;
}
.rp-media .rm-bc-sep {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #94a3b8;
}
.rp-media .rm-bc-sep i {
  font-size: 12px;
}
.rp-media .rm-bc-cur {
  background: var(--red,#e21a22);
  border-color: #fff;
  color: #fff;
  font-weight: 700;
  max-width: min(520px,68vw);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rp-media .rm-title {
  font-size: 24px;
  line-height: 1.18;
  color: #0f172a;
  letter-spacing: -.2px;
  display: inline-block;
  position: relative;
  padding: 20px 0 15px;
  margin: 0 15px;
  max-width: 100%;
}
.rp-media .rm-title:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #e21a22;
  border-radius: 3px;
  margin-top: 10px;
}
.rp-media .rm-sub {
  margin-top: 8px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.7;
  max-width: 980px;
}
.rp-media .rm-toolbar {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.rp-media .rm-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 24px rgba(17,24,39,.04);
  font-weight: 700;
  font-size: 12px;
  color: #0f172a;
}
.rp-media .rm-pill i {
  color: var(--red,#e21a22);
}
.rp-media .rm-count {
  opacity: .75;
  font-weight: 800;
}
.rp-media .rm-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 14px;
}
.rp-media .rm-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(17,24,39,.06);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease;
}
.rp-media .rm-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(17,24,39,.10);
}
.rp-media .rm-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(180deg,#0b1224,#0f172a);
}
.rp-media .rm-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .35s ease, filter .35s ease;
  filter: saturate(1.06) contrast(1.02);
}
.rp-media .rm-card:hover .rm-thumb img {
  filter: saturate(1.12) contrast(1.05);
}
.rp-media .rm-sheen {
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle at 20% 25%, rgba(255,255,255,.14), transparent 55%);
  transform: translate3d(0,0,0);
  opacity: .0;
  transition: opacity .18s ease;
}
.rp-media .rm-card:hover .rm-sheen {
  opacity: 1;
}
.rp-media .rm-topchips {
  position: absolute;
  left: 12px;
  top: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.rp-media .rm-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.14);
  backdrop-filter: blur(10px);
  font-weight: 700;
  font-size: 11px;
  color: #0f172a;
}
.rp-media .rm-chip i {
  color: var(--red,#e21a22);
}
.rp-media .rm-chip-sub {
  opacity: .7;
  font-weight: 900;
}
.rp-media .rm-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: linear-gradient(180deg,rgba(0,0,0,0) 0%, rgba(0,0,0,.58) 70%, rgba(0,0,0,.70) 100%);
  opacity: 0;
  transition: opacity .18s ease;
}
.rp-media .rm-card:hover .rm-overlay {
  opacity: 1;
}
.rp-media .rm-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.rp-media .rm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.16);
  font-weight: 700;
  font-size: 12px;
  color: #0f172a;
}
.rp-media .rm-btn:hover {
  background: #fff;
}
.rp-media .rm-btn i {
  font-size: 14px;
}
.rp-media .rm-btn.is-primary {
  background: rgba(226,26,34,.96);
  border-color: rgba(255,255,255,.16);
  color: #fff;
}
.rp-media .rm-btn.is-primary:hover {
  filter: brightness(1.03);
}
.rp-media .rm-btn.is-icon {
  width: 42px;
  height: 42px;
  justify-content: center;
  padding: 0;
  border-radius: 16px;
}
.rp-media .rm-play {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: rgba(226,26,34,.96);
  border: 1px solid rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 30px rgba(0,0,0,.25);
}
.rp-media .rm-play i {
  font-size: 18px;
  color: #fff;
}
.rp-media .rm-body {
  padding: 12px 12px 14px;
}
.rp-media .rm-name {
  margin: 0;
  color: #0f172a;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.rp-media .rm-meta {
  margin-top: 7px;
  color: #6b7280;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rp-media .rm-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #cbd5e1;
}
.rp-media .rm-code {
  font-family: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  font-size: 11px;
  color: #64748b;
}
.rp-media .rm-pagination {
  margin: 18px 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.rp-media .rm-pagebtn {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
  color: #0f172a;
  box-shadow: 0 10px 24px rgba(17,24,39,.04);
}
.rp-media .rm-pagebtn:hover {
  background: #f8fafc;
}
.rp-media .rm-pagebtn.is-active {
  background: rgba(226,26,34,.08);
  border-color: rgba(226,26,34,.28);
}
.rp-media .rm-pagebtn.is-disabled {
  opacity: .45;
  pointer-events: none;
}
.rp-media .rm-toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 10000;
  display: none;
}
.rp-media .rm-toast.is-show {
  display: block;
}
.rp-media .rm-toast-card {
  background: rgba(15,23,42,.92);
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
  display: flex;
  gap: 10px;
  align-items: center;
  backdrop-filter: blur(10px);
}
.rp-media .rm-toast-card i {
  color: #fff;
  opacity: .95;
}
.rp-media .rm-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.rp-media .rm-modal.is-open {
  display: block;
}
.rp-media .rm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.78);
  backdrop-filter: blur(10px);
}
.rp-media .rm-shell {
  position: relative;
  max-width: min(1100px,calc(100vw - 24px));
  margin: 14px auto;
  height: calc(100vh - 28px);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
}
.rp-media .rm-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
}
.rp-media .rm-topbar .t {
  font-weight: 700;
  font-size: 13px;
  opacity: .95;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rp-media .rm-actionsbar {
  display: flex;
  gap: 10px;
  align-items: center;
}
.rp-media .rm-x, .rp-media .rm-yt {
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
}
.rp-media .rm-x {
  width: 42px;
  justify-content: center;
  padding: 0;
}
.rp-media .rm-x:hover, .rp-media .rm-yt:hover {
  background: rgba(255,255,255,.12);
}
.rp-media .rm-yt i {
  font-size: 14px;
}
.rp-media .rm-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: #000;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.rp-media .rm-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.rp-media .rm-frame:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.rp-media .rm-hint {
  margin-top: 8px;
  color: rgba(255,255,255,.74);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.rp-contact .rc-wrap {
  margin: 0 auto;
}
.rp-contact .rc-top {
  margin: 10px 0 14px;
}
.rp-contact .rc-bcbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(17,24,39,.05);
}
.rp-contact .rc-bc {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.rp-contact .rc-bc-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: #f8fafc;
  color: #475569;
  font-size: 12px;
  line-height: 1;
}
.rp-contact .rc-bc-item i {
  font-size: 13px;
  opacity: .85;
}
.rp-contact .rc-bc-item:hover {
  background: #fff;
  color: #0f172a;
}
.rp-contact .rc-bc-sep {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #94a3b8;
}
.rp-contact .rc-bc-sep i {
  font-size: 12px;
}
.rp-contact .rc-bc-cur {
  background: var(--red,#e21a22);
  border-color: #fff;
  color: #fff;
  font-weight: 700;
  max-width: min(520px,68vw);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rp-contact .rc-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(17,24,39,.06);
}
.rp-contact .rc-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(17,24,39,.08);
}
.rp-contact .rc-card {
  transition: transform .16s ease, box-shadow .16s ease;
}
.rp-contact .rc-map {
  margin-top: 12px;
  overflow: hidden;
}
.rp-contact .rc-map .rc-mapframe {
  aspect-ratio: 16/6;
  min-height: 280px;
  border: 0;
  width: 100%;
  display: block;
}
.rp-contact .rc-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}
.rp-contact .rc-pad {
  padding: 16px;
}
.rp-contact .rc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #000;
}
.rp-contact .rc-kicker::before, .rp-contact .rc-kicker::after {
  content: "";
  height: 3px;
  width: 18px;
  border-radius: 999px;
  background: var(--red,#e21a22);
}
.rp-contact .rc-title {
  margin: 10px 0 0;
  color: #0f172a;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.2px;
  display: inline-block;
  position: relative;
}
.rp-contact .rc-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: var(--red,#e21a22);
  margin-top: 10px;
}
.rp-contact .rc-desc {
  margin: 10px 0 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.7;
  max-width: 62ch;
}
.rp-contact .rc-form {
  margin-top: 14px;
  display: grid;
  gap: 14px;
}
.rp-contact .rc-row {
  display: block;
}
.rp-contact .rc-field {
  position: relative;
}
.rp-contact .rc-inp, .rp-contact .rc-txt {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: #f6f8fb;
  padding: 12px 14px;
  font: inherit;
  font-size: 13px;
  color: #0f172a;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.rp-contact .rc-inp:focus, .rp-contact .rc-txt:focus {
  background: #fff;
  border-color: rgba(226,26,34,.35);
  box-shadow: 0 0 0 4px rgba(226,26,34,.10);
}
.rp-contact .rc-txt {
  min-height: 140px;
  resize: vertical;
}
.rp-contact .rc-captchaRow {
  display: grid;
  grid-template-columns: 1fr 140px 44px;
  gap: 10px;
  align-items: center;
}
.rp-contact .rc-captchaBox {
  height: 44px;
  border-radius: 14px;
  border: 1px dashed rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: .22em;
  color: #0f172a;
  background: #fff;
}
.rp-contact .rc-captchaBtn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  display: grid;
  place-items: center;
}
.rp-contact .rc-captchaBtn:hover {
  background: #f8fafc;
}
.rp-contact .rc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(226,26,34,.25);
  background: var(--red,#e21a22);
  color: #fff;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  width: max-content;
  min-width: 140px;
}
.rp-contact .rc-btn:hover {
  filter: brightness(.98);
}
.rp-contact .rc-hint {
  margin-left: 10px;
  color: #94a3b8;
  font-size: 12px;
}
.rp-contact .rc-info {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}
.rp-contact .rc-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  align-items: center;
}
.rp-contact .rc-ic {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(226,26,34,.08);
  border: 1px solid rgba(226,26,34,.18);
  flex: 0 0 auto;
  align-self: center;
}
.rp-contact .rc-ic i {
  font-size: 18px;
  color: var(--red,#e21a22);
}
.rp-contact .rc-itTitle {
  margin: 0;
  color: #0f172a;
  font-weight: 700;
  font-size: 13px;
}
.rp-contact .rc-itText {
  margin: 4px 0 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.6;
}
.rp-contact .rc-itText a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 900;
}
.rp-contact .rc-itText a:hover {
  color: var(--red,#e21a22);
}
.rp-contact .rc-social {
  margin-top: 6px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.rp-contact .rc-sbtn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  display: grid;
  place-items: center;
}
.rp-contact .rc-sbtn i {
  font-size: 18px;
  color: #0f172a;
}
.rp-contact .rc-sbtn:hover {
  background: #0f172a;
  border-color: #0f172a;
}
.rp-contact .rc-sbtn:hover i {
  color: #fff;
}
.rp-contact .rc-toast {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 9999;
  display: none;
  background: #0f172a;
  color: #fff;
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  max-width: min(420px,calc(100vw - 28px));
}
.rp-contact .rc-toast.is-open {
  display: block;
}
.rp-contact .rc-toast .t {
  font-weight: 700;
  margin: 0 0 4px;
  font-size: 13px;
}
.rp-contact .rc-toast .d {
  margin: 0;
  font-size: 12px;
  opacity: .85;
  line-height: 1.5;
}
.rp-service .rs-wrap {
  margin: 0 auto;
}
.rp-service .rs-top {
  margin: 10px 0 12px;
}
.rp-service .rs-bcbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--rp-line);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(17,24,39,.05);
}
.rp-service .rs-bc {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.rp-service .rs-bc-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: #f8fafc;
  color: #475569;
  font-size: 12px;
  line-height: 1;
}
.rp-service .rs-bc-item i {
  font-size: 13px;
  opacity: .85;
}
.rp-service .rs-bc-item:hover {
  background: #fff;
  color: var(--rp-ink);
}
.rp-service .rs-bc-sep {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #94a3b8;
}
.rp-service .rs-bc-sep i {
  font-size: 12px;
}
.rp-service .rs-bc-cur {
  background: var(--rp-red);
  border-color: #fff;
  color: #fff;
  font-weight: 700;
  max-width: min(520px,68vw);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rp-service .rs-title {
  margin: 12px 2px 0;
}
.rp-service .rs-title h1 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
  color: var(--rp-ink);
  letter-spacing: -.2px;
  display: inline-block;
  position: relative;
  padding: 6px 0 14px;
}
.rp-service .rs-title h1::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: var(--rp-red);
  margin-top: 10px;
}
.rp-service .rs-sub {
  margin: 8px 2px 0;
  color: var(--rp-muted);
  font-size: 13px;
  line-height: 1.75;
  max-width: 980px;
}
.rp-service .rs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}
.rp-service .rs-card {
  background: #fff;
  border: 1px solid var(--rp-line);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(17,24,39,.06);
}
.rp-service .rs-card-pad {
  padding: 14px;
}
.rp-service .rs-feature-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}
.rp-service .rs-feature {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  padding: 16px 14px 14px;
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: center;
  text-align: center;
  transition: transform .18s ease,box-shadow .18s ease,background .18s ease,border-color .18s ease;
}
.rp-service .rs-feature .t {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .2px;
  color: var(--rp-ink);
  text-transform: uppercase;
}
.rp-service .rs-feature .d {
  color: #475569;
  font-size: 12px;
  line-height: 1.6;
  max-width: 52ch;
}
.rp-service .rs-ic {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  transition: background .18s ease,border-color .18s ease;
}
.rp-service .rs-ic img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  display: block;
}
.rp-service .rs-ic img.w {
  display: none;
}
.rp-service .rs-gallery-card {
  overflow: hidden;
}
.rp-service .rs-gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.rp-service .rs-h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--rp-ink);
  letter-spacing: -.15px;
}
.rp-service .rs-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  padding: 14px;
}
.rp-service .rs-g-item {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  background: #0b1220;
  isolation: isolate;
}
.rp-service .rs-g-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .25s ease,filter .25s ease;
}
.rp-service .rs-g-action {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 20px rgba(0,0,0,.14);
  transform: translateY(-4px);
  opacity: 0;
  transition: opacity .2s ease,transform .2s ease;
}
.rp-service .rs-g-action i {
  color: #0f172a;
  font-size: 16px;
}
.rp-service .rs-g-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 12px 12px;
  background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,0));
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}
.rp-service .rs-g-cap strong {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: -.1px;
}
.rp-service .rs-g-cap span {
  font-size: 12px;
  opacity: .9;
  white-space: nowrap;
}
.rp-service .rs-filterbar {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}
.rp-service .rs-field label {
  display: block;
  font-size: 12px;
  color: #475569;
  font-weight: 700;
  margin: 0 0 6px;
}
.rp-service .rs-help {
  margin-top: 10px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.6;
}
.rp-service .rs-btn {
  height: 42px;
  border-radius: 14px;
  background: var(--rp-red);
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,.06);
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(226,26,34,.20);
  white-space: nowrap;
}
.rp-service .rs-btn:active {
  transform: translateY(1px);
}
.select2-container--default .select2-selection--single {
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: #f8fafc;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 42px;
  padding-left: 12px;
  color: #0f172a;
  font-weight: 700;
  font-size: 13px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 42px;
}
.select2-dropdown {
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  overflow: hidden;
}
.select2-results__option {
  font-size: 13px;
  padding: 9px 10px;
}
.select2-container--default .select2-results__option--selected {
  background: #f4f4f4;
  color: #0f172a;
}
.rp-service .rs-table-wrap {
  padding: 12px 14px 14px;
}
.rp-service table.dataTable {
  border-collapse: separate !important;
  border-spacing: 0 !important;
}
.rp-service table.dataTable thead th {
  background: #f6f8fb;
  color: #0f172a;
  border-bottom: 1px solid rgba(0,0,0,.10) !important;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .2px;
  white-space: nowrap;
}
.rp-service table.dataTable tbody td {
  border-bottom: 1px solid rgba(0,0,0,.06) !important;
  font-size: 13px;
  color: #111827;
  vertical-align: top;
}
.rp-service table.dataTable tbody tr:hover {
  background: #e5e5e5;
}
.rp-service .rs-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--rp-red);
  text-decoration: none;
}
.rp-service .rs-map:hover {
  text-decoration: underline;
}
.rp-service .rs-tel {
  color: var(--rp-red);
  text-decoration: none;
  font-weight: 500;
}
.rp-service .rs-tel:hover {
  text-decoration: none;
}


.rp-service .rs-dtbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin: 8px 0 10px;
}
.rp-service .dataTables_wrapper .dataTables_length, .rp-service .dataTables_wrapper .dataTables_filter {
  float: none;
  text-align: left;
  margin: 0;
}
.rp-service .dataTables_wrapper .dataTables_filter label, .rp-service .dataTables_wrapper .dataTables_length label {
  font-size: 12px;
  color: #475569;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.rp-service .dataTables_wrapper .dataTables_filter input {
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  padding: 0 12px;
  outline: none;
  margin: 0;
  min-width: 220px;
}
.rp-service .dataTables_wrapper .dataTables_length select {
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  padding: 0 8px;
  margin: 0;
}
.rp-service .dataTables_wrapper .dataTables_info {
  font-size: 12px;
  color: #6b7280;
  padding-top: 10px;
}
.rp-service .dataTables_wrapper .dataTables_paginate {
  padding-top: 10px;
}
.rp-service .dataTables_wrapper .dataTables_paginate .paginate_button {
  border-radius: 12px !important;
  border: 1px solid rgba(0,0,0,.10) !important;
  background: #fff !important;
  color: #0f172a !important;
  margin: 0 4px !important;
}
.rp-service .dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: rgba(226,26,34,.10) !important;
  border-color: rgba(226,26,34,.35) !important;
}
.rp-service .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #f6f8fb !important;
}
.rp-service .rs-card table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control, .rp-service .rs-card table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control {
  padding-left: 36px;
}
.rp-service table.dataTable > tbody > tr.child ul.dtr-details {
  width: 100%;
}
.rp-service table.dataTable > tbody > tr.child span.dtr-title {
  min-width: 110px;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: #ebebeb;
  color: #0f172a;
}
.rp-safety .sf-wrap {
  margin: 0 auto;
}
.rp-safety .sf-top {
  margin: 10px 0 12px;
}
.rp-safety .sf-bcbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--rp-line);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(17,24,39,.05);
}
.rp-safety .sf-bc {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.rp-safety .sf-bc-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: #f8fafc;
  color: #475569;
  font-size: 12px;
  line-height: 1;
}
.rp-safety .sf-bc-item:hover {
  background: #fff;
  color: var(--rp-ink);
}
.rp-safety .sf-bc-sep {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #94a3b8;
}
.rp-safety .sf-bc-cur {
  background: var(--rp-red);
  border-color: #fff;
  color: #fff;
  font-weight: 700;
  max-width: min(520px,68vw);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rp-safety .sf-title {
  margin: 12px 2px 0;
}
.rp-safety .sf-title h1 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
  color: var(--rp-ink);
  letter-spacing: -.2px;
  display: inline-block;
  position: relative;
  padding: 6px 0 14px;
}
.rp-safety .sf-title h1::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: var(--rp-red);
  margin-top: 10px;
}
.rp-safety .sf-sub {
  margin: 8px 2px 0;
  color: var(--rp-muted);
  font-size: 13px;
  line-height: 1.75;
  max-width: 980px;
}
.rp-safety .sf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}
.rp-safety .sf-card {
  background: #fff;
  border: 1px solid var(--rp-line);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(17,24,39,.06);
}
.rp-safety .sf-pad {
  padding: 14px;
}
.rp-safety .sf-row {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items: start;
}
.rp-safety .sf-row-mid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 14px;
  align-items: start;
}
.rp-safety .sf-h2 {
  margin: 0;
  display: inline-block;
  font-size: 14px;
  letter-spacing: .2px;
  text-transform: uppercase;
  color: var(--rp-ink);
  font-weight: 700;
  position: relative;
  padding: 2px 0 10px;
}
.rp-safety .sf-h2::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--rp-red);
  border-radius: 2px;
  width: 100%;
  margin-top: 8px;
}
.rp-safety .sf-text {
  color: #334155;
  font-size: 12.5px;
  line-height: 1.8;
  margin-top: 10px;
}
.rp-safety .sf-text p {
  margin: 0 0 10px;
}
.rp-safety .sf-text strong {
  color: var(--rp-ink);
}
.rp-safety .sf-muted {
  color: var(--rp-muted);
}
.rp-safety .sf-icon-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px;
  margin-top: 12px;
}
.rp-safety .sf-ic {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  background: #f8fafc;
}
.rp-safety .sf-ic .b {
  width: 60px;
  height: 60px;
}
.rp-safety .sf-ic .b i {
  font-size: 18px;
}
.rp-safety .sf-ic .t {
  font-weight: 700;
  color: var(--rp-ink);
  font-size: 14px;
  line-height: 1.2;
}
.rp-safety .sf-ic .d {
  color: #64748b;
  font-size: 12px;
  line-height: 1.2;
}
.rp-safety .sf-mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  align-items: stretch;
}
.rp-safety .sf-mini {
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 300px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(17,24,39,.05);
}
.rp-safety .sf-mini .b {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
}
.rp-safety .sf-mini .b i {
  font-size: 18px;
}
.rp-safety .sf-mini .t {
  font-weight: 700;
  color: var(--rp-ink);
  font-size: 13px;
  line-height: 1.2;
}
.rp-safety .sf-warn {
  margin-top: 10px;
}
.rp-safety .sf-warn .w-item {
  margin: 10px 0 0;
  padding-left: 14px;
  position: relative;
}
.rp-safety .sf-warn .w-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--rp-red);
}
.rp-safety .sf-warn .w-k {
  font-weight: 700;
  color: var(--rp-ink);
}
.rp-safety .sf-mat-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 10px;
  margin-top: 12px;
}
.rp-safety .sf-mat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  background: #f8fafc;
}
.rp-safety .sf-mat .b {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  color: #0b5cab;
}
.rp-safety .sf-mat .b i {
  font-size: 16px;
}
.rp-safety .sf-mat .t {
  font-weight: 700;
  color: var(--rp-ink);
  font-size: 14px;
  line-height: 1.2;
}
.rp-safety .sf-divider {
  height: 1px;
  background: rgba(0,0,0,.06);
  margin: 14px 0;
}
.rp-safety .sf-dy-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.rp-safety .sf-dy-note {
  font-size: 12px;
  color: #64748b;
  font-weight: 800;
}
.rp-safety .sf-dy-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
  margin-top: 12px;
}
.rp-safety .dy-card {
  border-radius: 16px;
  border: 2px solid rgba(226,26,34,.90);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(17,24,39,.08);
}
.rp-safety .dy-sides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px;
  background: #fff;
}
.rp-safety .dy-side {
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 10px;
  transition: background .18s ease, border-color .18s ease;
}
.rp-safety .dy-card:hover .dy-side.good {
  background: rgba(22,163,74,.06);
  border-color: rgba(22,163,74,.20);
}
.rp-safety .dy-card:hover .dy-side.bad {
  background: rgba(239,68,68,.06);
  border-color: rgba(239,68,68,.20);
}
.rp-safety .dy-side img {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: contain;
  display: block;
  background: #fff;
}
.rp-safety .dy-cap {
  border-top: 1px solid rgba(0,0,0,.06);
  background: #f8fafc;
  padding: 12px 14px;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.6;
  color: #111827;
  font-weight: 500;
}
.rp-catalogs .rc-wrap {
  margin: 0 auto;
}
.rp-catalogs .rc-top {
  margin: 10px 0 12px;
}
.rp-catalogs .rc-bcbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--rp-line);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(17,24,39,.05);
}
.rp-catalogs .rc-bc {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.rp-catalogs .rc-bc-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: #f8fafc;
  color: #475569;
  font-size: 12px;
  line-height: 1;
}
.rp-catalogs .rc-bc-item i {
  font-size: 13px;
  opacity: .85;
}
.rp-catalogs .rc-bc-item:hover {
  background: #fff;
  color: var(--rp-ink);
}
.rp-catalogs .rc-bc-sep {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #94a3b8;
}
.rp-catalogs .rc-bc-sep i {
  font-size: 12px;
}
.rp-catalogs .rc-bc-cur {
  background: var(--rp-red);
  border-color: #fff;
  color: #fff;
  font-weight: 700;
  max-width: min(520px,68vw);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rp-catalogs .rc-title {
  margin: 12px 2px 0;
}
.rp-catalogs .rc-title h1 {
  font-size: 24px;
  line-height: 1.18;
  color: #0f172a;
  letter-spacing: -.2px;
  display: inline-block;
  position: relative;
  padding: 20px 0 15px;
  margin: 0 15px;
  max-width: 100%;
}
.rp-catalogs .rc-title h1::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: var(--rp-red);
  margin-top: 10px;
}
.rp-catalogs .rc-sub {
  margin: 8px 2px 0;
  color: var(--rp-muted);
  font-size: 13px;
  line-height: 1.75;
  max-width: 980px;
}
.rp-catalogs .rc-card {
  background: #fff;
  border: 1px solid var(--rp-line);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(17,24,39,.06);
}
.rp-catalogs .rc-card-pad {
  padding: 14px;
}
.rp-catalogs .rc-headrow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.rp-catalogs .rc-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  color: var(--rp-ink);
  font-weight: 700;
  font-size: 12px;
}
.rp-catalogs .rc-count i {
  color: var(--rp-red);
}
.rp-catalogs .rc-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
  margin-top: 12px;
}
.rp-catalogs .rc-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  box-shadow: 0 10px 20px rgba(17,24,39,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.rp-catalogs .rc-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(17,24,39,.10);
  border-color: rgba(226,26,34,.25);
}
.rp-catalogs .rc-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.rp-catalogs .rc-cover {
  position: relative;
  aspect-ratio: 4/3;
  background: #f3f6fb;
  overflow: hidden;
}
.rp-catalogs .rc-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .35s ease, filter .35s ease;
}
.rp-catalogs .rc-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0) 40%, rgba(15,23,42,.18) 100%);
  opacity: 0;
  transition: opacity .18s ease;
}
.rp-catalogs .rc-cover::before {
  content: "";
  position: absolute;
  left: -60%;
  top: -40%;
  width: 40%;
  height: 180%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.22) 45%, rgba(255,255,255,0) 100%);
  transform: rotate(18deg);
  opacity: 0;
  filter: blur(.2px);
  transition: opacity .2s ease;
  pointer-events: none;
}
.rp-catalogs .rc-item:hover .rc-cover::after {
  opacity: 1;
}
.rp-catalogs .rc-item:hover .rc-cover::before {
  opacity: 1;
  animation: rcShine .9s ease forwards;
}
.rp-catalogs .rc-item:hover .rc-cover img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.03);
}
@keyframes rcShine {
  from {
    transform: translateX(0) rotate(18deg);
  }
  to {
    transform: translateX(360%) rotate(18deg);
  }
}
.rp-catalogs .rc-badges {
  position: absolute;
  left: 10px;
  top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 2;
}
.rp-catalogs .rc-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
  font-weight: 700;
  font-size: 12px;
  color: var(--rp-ink);
  backdrop-filter: blur(6px);
}
.rp-catalogs .rc-badge i {
  color: var(--rp-red);
}
.rp-catalogs .rc-action {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.rp-catalogs .rc-action i {
  font-size: 18px;
  color: var(--rp-ink);
}
.rp-catalogs .rc-item:hover .rc-action {
  transform: scale(1.02);
  background: rgba(226,26,34,.08);
  border-color: rgba(226,26,34,.22);
}
.rp-catalogs .rc-name {
  margin: 0;
  height: calc(1.35em * 2);
  display: flex;
  align-items: center;
  padding: 10px;
}
.rp-catalogs .rc-name-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: var(--rp-ink);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.35;
}
.rp-catalogs .rc-meta {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0px 10px 20px 10px;
}
.rp-catalogs .rc-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  color: #334155;
  font-weight: 800;
  font-size: 12px;
}
.rp-catalogs .rc-mini i {
  color: var(--rp-red);
}
.rp-catalogs .rc-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rp-red);
  font-weight: 700;
  font-size: 12px;
}
.rp-catalogs .rc-open i {
  font-size: 13px;
}
.rp-catalogs .rc-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 10px;
  margin-top: 12px;
}
.rp-catalogs .rc-pagebtn {
  height: 40px;
  min-width: 40px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  color: var(--rp-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.rp-catalogs .rc-pagebtn:hover {
  background: #f6f8fb;
}
.rp-catalogs .rc-pagebtn:active {
  transform: translateY(1px);
}
.rp-catalogs .rc-pagebtn.is-active {
  background: rgba(226,26,34,.10);
  border-color: rgba(226,26,34,.35);
}
.rp-catalogs .rc-pagebtn.is-disabled {
  opacity: .5;
  pointer-events: none;
  cursor: not-allowed;
}
.rp-catalogs .rc-ellipsis {
  padding: 0 6px;
  color: #94a3b8;
  font-weight: 900;
}
.rp-quality .rp-quality-media {
  border-radius: 22px;
  overflow: hidden;
  background: #f6f8fb;
  border: 1px solid #e7eaf0;
  box-shadow: 0 10px 26px rgba(17,24,39,.08);
}
.rp-quality .rp-quality-media img {
  width: 100%;
  height: auto;
  display: block;
}
.rp-media .rm-tip::before, .rp-media .rm-tip::after, .rp-media [data-tip]::before, .rp-media [data-tip]::after {
  content: none !important;
  display: none !important;
}
.rp-media .rm-tipbox {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  background: rgba(17,24,39,.92);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  white-space: nowrap;
  transition: .12s ease;
}
.rp-media .rm-tipbox.is-show {
  opacity: 1;
  transform: translateY(0);
}
.rp-media .rm-tipbox {
  position: fixed;
  z-index: 9999;
  max-width: 260px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(17,24,39,.92);
  color: #fff;
  font-size: 12px;
  line-height: 1.25;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  opacity: 0;
  transform: translateY(6px) scale(.98);
  transition: opacity .12s ease, transform .12s ease;
  pointer-events: none;
  white-space: nowrap;
}
.rp-media .rm-tipbox.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.rp-media .rm-tipbox::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 10px;
  height: 10px;
  background: rgba(17,24,39,.92);
  transform: translateX(-50%) rotate(45deg);
}
.rp-media .rm-tipbox.is-below::after {
  top: -6px;
  bottom: auto;
}
.rm-tipbox {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999999;
  max-width: 260px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(17,24,39,.96);
  color: #fff;
  font-size: 12px;
  line-height: 1.15;
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
  opacity: 0;
  transform: translateY(6px) scale(.98);
  transition: opacity .12s ease, transform .12s ease;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.rm-tipbox.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.rm-tipbox::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid rgba(17,24,39,.96);
  bottom: -7px;
}
.rm-tipbox.is-below::after {
  border-top: 0;
  border-bottom: 7px solid rgba(17,24,39,.96);
  top: -7px;
  bottom: auto;
}
.rp-service .dataTables_wrapper {
  width: 100%;
}
.rp-service .dataTables_wrapper .dataTables_length, .rp-service .dataTables_wrapper .dataTables_filter {
  margin: 10px 12px;
}
.rp-service .dataTables_wrapper .dataTables_length label, .rp-service .dataTables_wrapper .dataTables_filter label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--rp-muted, #6b7280);
  flex-wrap: wrap;
}
.rp-service .dataTables_wrapper .dataTables_length select {
  height: 38px;
  border: 1px solid var(--rp-line, #e7eaf0);
  border-radius: 12px;
  padding: 0 10px;
  background: #fff;
  outline: none;
}
.rp-service .dataTables_wrapper .dataTables_filter input {
  height: 38px;
  border: 1px solid var(--rp-line, #e7eaf0);
  border-radius: 12px;
  padding: 0 12px;
  background: #fff;
  outline: none;
  min-width: 240px;
}
.rp-service .dataTables_wrapper .dataTables_info {
  padding: 10px 12px 14px;
  font-size: 13px;
  color: var(--rp-muted, #6b7280);
}
.rp-service table.dataTable.no-footer {
  border-bottom: 1px solid var(--rp-line, #e7eaf0);
}
.rp-service table.dataTable thead th {
  background: #fff;
  border-bottom: 1px solid var(--rp-line, #e7eaf0) !important;
  font-size: 13px;
}
.rp-service table.dataTable tbody td {
  font-size: 13px;
  vertical-align: middle;
  font-weight: 600;
}
.rp-service .dataTables_wrapper .dataTables_paginate {
  padding: 10px 12px 16px;
  text-align: right;
}
.rp-service .dataTables_wrapper .dataTables_paginate .paginate_button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px !important;
  margin: 0 4px !important;
  border-radius: 12px !important;
  border: 1px solid var(--rp-line, #e7eaf0) !important;
  background: #fff !important;
  color: var(--rp-ink, #111827) !important;
  box-shadow: 0 1px 0 rgba(16,24,40,.04);
}
.rp-service .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  border-color: var(--red, #e21a22) !important;
  color: var(--red, #e21a22) !important;
  background: rgba(226,26,34,.06) !important;
}
.rp-service .dataTables_wrapper .dataTables_paginate .paginate_button.current {
  border-color: var(--red, #e21a22) !important;
  color: var(--red, #e21a22) !important;
  background: rgba(226,26,34,.08) !important;
}
.rp-service .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .rp-service .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
  opacity: .5;
  cursor: not-allowed !important;
  border-color: var(--rp-line, #e7eaf0) !important;
  color: var(--rp-muted, #6b7280) !important;
  background: #fff !important;
}
.rp-service .dataTables_wrapper .dataTables_paginate .ellipsis {
  padding: 0 6px;
  color: var(--rp-muted, #6b7280);
}
.rp-b2b .rb-wrap {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 14px 26px;
}
.rp-b2b .rc-bcbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(17,24,39,.05);
  margin: 10px 0 14px;
}
.rp-b2b .rc-bc {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.rp-b2b .rc-bc-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: #f8fafc;
  color: #475569;
  font-size: 12px;
  line-height: 1;
}
.rp-b2b .rc-bc-item i {
  font-size: 13px;
  opacity: .85;
}
.rp-b2b .rc-bc-item:hover {
  background: #fff;
  color: #0f172a;
}
.rp-b2b .rc-bc-sep {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #94a3b8;
}
.rp-b2b .rc-bc-sep i {
  font-size: 12px;
}
.rp-b2b .rc-bc-cur {
  background: var(--red,#e21a22);
  border-color: #fff;
  color: #fff;
  font-weight: 700;
  max-width: min(520px,68vw);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rp-b2b .rb-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(17,24,39,.05);
  overflow: hidden;
  margin-bottom: 20px;
}
.rp-b2b .rb-pad {
  padding: 14px;
}
.rp-b2b .rb-mapHead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.rp-b2b .rb-sub {
  margin: 0;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.35;
}
.rp-b2b .rb-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: #f8fafc;
  color: #0f172a;
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  transition: transform .12s ease,background .12s ease;
}
.rp-b2b .rb-reset:hover {
  background: #fff;
  transform: translateY(-1px);
}
.rp-b2b .rb-reset:active {
  transform: translateY(0);
}
.rp-b2b .rb-reset::before {
  content: "↺";
  font-weight: 900;
}
.rp-b2b .b2b-map {
  height: 560px;
  min-height: 360px;
  z-index: 1;
}
.rp-b2b .leaflet-container {
  background: #eef3f7;
}
.rp-b2b .leaflet-control-zoom {
  border: none;
  box-shadow: 0 12px 24px rgba(17,24,39,.18);
  border-radius: 14px;
  overflow: hidden;
}
.rp-b2b .leaflet-control-zoom a {
  width: 42px;
  height: 42px;
  line-height: 42px;
  color: #0f172a;
  border: none;
}
.rp-b2b .leaflet-control-zoom a:hover {
  background: #fff;
}
.rp-b2b .leaflet-control-zoom a.leaflet-disabled {
  opacity: .55;
}
.rp-b2b .leaflet-marker-icon {
  filter: drop-shadow(0 10px 18px rgba(17,24,39,.22));
}
.rp-b2b .b2b-marker {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--red,#e21a22);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  border: 3px solid #fff;
  user-select: none;
  transform: translateY(0) scale(1);
  transition: transform .14s ease;
}
.rp-b2b .b2b-marker.is-hover {
  animation: b2b-bounce .75s ease-in-out infinite;
  transform: translateY(-2px) scale(1.06);
}
@keyframes b2b-bounce {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.08);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
.rp-b2b .leaflet-popup-content-wrapper {
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(17,24,39,.24);
}
.rp-b2b .leaflet-popup-content {
  margin: 12px 12px 12px;
  min-width: 210px;
}
.rp-b2b .leaflet-popup-tip {
  box-shadow: 0 18px 40px rgba(17,24,39,.18);
}
.rp-b2b .b2b-pop {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rp-b2b .b2b-pop-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rp-b2b .b2b-pop-code {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fee2e2;
  color: #b91c1c;
  font-weight: 900;
}
.rp-b2b .b2b-pop-name {
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
}
.rp-b2b .b2b-pop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 12px;
  border-radius: 12px;
  background: var(--red,#e21a22);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  transition: transform .12s ease,filter .12s ease;
}
.rp-b2b .b2b-pop-btn:hover {
  filter: brightness(.98);
  transform: translateY(-1px);
}
.rp-b2b .b2b-pop-btn:active {
  transform: translateY(0);
}
.rp-b2b .b2b-pop-muted {
  padding: 10px 12px;
  border-radius: 12px;
  background: #f1f5f9;
  color: #64748b;
  font-weight: 800;
}
.rp-b2b .b2b-fallback {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.rp-b2b .b2b-fallback a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rp-b2b .b2b-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  box-shadow: 0 10px 24px rgba(17,24,39,.06);
  white-space: nowrap;
  transition: transform .12s ease,box-shadow .12s ease;
}
.rp-b2b .b2b-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(17,24,39,.10);
}
.rp-b2b .b2b-pill:active {
  transform: translateY(0);
}
.rp-b2b .b2b-pill .c {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--red,#e21a22);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
}
.rp-b2b .b2b-pill .n {
  font-weight: 700;
  color: #0f172a;
  font-size: 13px;
}
.rp-b2b .b2b-pill .go {
  margin-left: 2px;
  color: #94a3b8;
  font-size: 13px;
}
.rp-b2b .b2b-pill[aria-disabled="true"] {
  opacity: .55;
  pointer-events: none;
}
.pd-warn-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
}
.pd-warn-link:hover {
  transform: translateY(-1px);
}
.pd-warn-link i {
  font-size: 18px;
}
.pd-warn-link span {
  font-weight: 800;
}
.DiskTaslamaSecurity {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 24px rgba(17,24,39,.05);
  color: #0f172a;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.DiskTaslamaSecurity__ic {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(22,163,74,.12);
  color: #16a34a;
  flex: 0 0 46px;
}
.DiskTaslamaSecurity__ic i {
  font-size: 22px;
}
.DiskTaslamaSecurity__txt {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 2px;
}
.DiskTaslamaSecurity__title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.1;
}
.DiskTaslamaSecurity__sub {
  font-size: 12px;
  color: #64748b;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 52ch;
}
.DiskTaslamaSecurity__go {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  color: #0f172a;
  flex: 0 0 36px;
  transition: transform .18s ease, background .18s ease;
}
.DiskTaslamaSecurity::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 20% 20%, rgba(22,163,74,.18), transparent 45%), radial-gradient(circle at 80% 30%, rgba(226,26,34,.12), transparent 48%), radial-gradient(circle at 50% 90%, rgba(59,130,246,.10), transparent 45%);
  opacity: 0;
  transform: scale(.98);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}
.DiskTaslamaSecurity:hover {
  background: #fff;
  border-color: rgba(0,0,0,.12);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(17,24,39,.10);
}
.DiskTaslamaSecurity:hover::before {
  opacity: 1;
  transform: scale(1);
}
.DiskTaslamaSecurity:hover .DiskTaslamaSecurity__go {
  transform: translateY(-1px);
}
@keyframes DiskTaslamaSecurityFloatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes DiskTaslamaSecurityPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(22,163,74,.18);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(22,163,74,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22,163,74,0);
  }
}
.DiskTaslamaSecurity:hover .DiskTaslamaSecurity__ic {
  animation: DiskTaslamaSecurityFloatY .9s ease-in-out infinite, DiskTaslamaSecurityPulse 1.2s ease-out infinite;
}
.rp-title-row {
  display: flex;
  gap: 0px;
  align-items: stretch;
}
.rp-title-col, .rp-detail-col {
  flex: 0 0 50%;
  min-width: 0;
  display: flex;
}
.rp-title-col {
  align-items: center;
  padding: 10px 0;
}
.rp-detail-col {
  align-items: center;
  padding: 20px 0 0px;
}
.rp-title-h1 {
  margin: 0;
  padding: 0;
  font-size: 24px;
  line-height: 1.18;
  color: #0f172a;
  letter-spacing: -.2px;
  display: inline-block;
  position: relative;
  max-width: 100%;
}
.rp-title-h1:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #e21a22;
  border-radius: 3px;
  margin-top: 10px;
}
.rp-cat-detail {
  margin: 0;
  line-height: 1.45;
  font-size: 15px;
}
.rp-topline, .rp-breadcrumbs {
  overflow: visible !important;
}
.rp-breadcrumbs .rp-bc-item {
  overflow: visible;
}
.rp-bc-last {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rp-bc-last-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.rp-bc-dd-btn {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
.rp-bc-dd-btn i {
  font-size: 14px;
  display: inline-block;
  transition: transform .18s ease;
}
.rp-bc-dd-btn:hover {
  background: rgba(15,23,42,.04);
}
.rp-bc-ddwrap .rp-bc-dd {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  max-width: 360px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  box-shadow: 0 14px 35px rgba(15,23,42,.14);
  padding: 10px;
  z-index: 9999;
}
.rp-bc-ddwrap .rp-bc-dd::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 18px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid rgba(15,23,42,.10);
  border-top: 1px solid rgba(15,23,42,.10);
  transform: rotate(45deg);
}
.rp-bc-dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px;
  border-radius: 10px;
  color: #0f172a;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rp-bc-dd-item:hover {
  background: rgb(229, 229, 229);
}
.rp-products .rp-toolbar {
  overflow: visible !important;
}
.rp-products .rp-dd {
  position: relative;
  z-index: 60;
}
.rp-products .rp-dd .rp-dd-menu {
  display: none;
}
.rp-products .rp-dd.open .rp-dd-menu {
  display: block;
}
.rp-products .rp-dd .rp-dd-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: auto;
  transform: none !important;
  background: #fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  box-shadow: 0 14px 35px rgba(15,23,42,.14);
  padding: 10px;
  z-index: 9999;
}
.rp-products .rp-dd .rp-dd-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 18px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid rgba(15,23,42,.10);
  border-top: 1px solid rgba(15,23,42,.10);
  transform: rotate(45deg);
}
.rp-products .rp-dd .rp-dd-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 0;
  background: transparent;
  font-size: 14px;
  line-height: 1.2;
  color: #0f172a;
  cursor: pointer;
  text-align: left;
}
.rp-products .rp-dd .rp-dd-item i {
  font-size: 16px;
  opacity: .75;
}
.rp-products .rp-dd .rp-dd-item:hover {
  background: rgba(226,26,34,.08);
}
.rp-products .rp-dd .rp-dd-item.is-active {
  background: rgba(226,26,34,.08);
  color: #e21a22;
}
.rp-bc-ddwrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rp-bc-dd-btn i {
  display: inline-block;
  transition: transform .18s ease;
}
.rp-bc-dd-btn[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.rp-bc-ddwrap .rp-bc-dd {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: auto;
  min-width: 260px;
  max-width: 360px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  box-shadow: 0 14px 35px rgba(15,23,42,.14);
  padding: 10px;
  z-index: 99999;
}
.rp-bc-ddwrap .rp-bc-dd, .rp-bc-ddwrap .rp-bc-dd-menu {
  max-height: min(60vh, 420px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.rp-appbar[hidden] {
  display: none !important;
}
.rp-appbar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(env(safe-area-inset-bottom) + 12px);
  z-index: 99999;
  pointer-events: none;
}
.rp-appbar-inner {
  pointer-events: auto;
  background: #171717;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
  padding: 14px 14px 14px 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "left x" "cta cta";
  gap: 12px;
  align-items: center;
}
.rp-appbar-left {
  grid-area: left;
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}
.rp-appbar-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
  flex: 0 0 46px;
  background-color: #fff;
}
.rp-appbar-text {
  min-width: 0;
}
.rp-appbar-title {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.15;
}
.rp-appbar-sub {
  opacity: .85;
  font-size: 13px;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rp-appbar-cta {
  grid-area: cta;
  border: 0;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  background: var(--red, #e21a22);
  color: #fff;
}
.rp-appbar-x {
  padding-top: 5px;
  grid-area: x;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  display: grid;
  place-items: center;
  font-size: 0 !important;
  line-height: 0 !important;
  position: relative;
}
.rp-appbar-x::before {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  background: center / 18px 18px no-repeat url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2016%2016%27%20fill%3D%27none%27%20stroke%3D%27%23fff%27%20stroke-width%3D%272.2%27%20stroke-linecap%3D%27round%27%3E%3Cpath%20d%3D%27M3%203l10%2010M13%203L3%2013%27/%3E%3C/svg%3E");
}
.hero-slider {
  margin-bottom: 1.25rem;
}
.slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #0b1220;
  isolation: isolate;
}

.slide-hit{
  position:absolute;
  inset:0;
  display:block;
  color:inherit;
  text-decoration:none;
}
.slide-hit{
  position:absolute;
  left:0; top:0; right:0; bottom:0;
  display:block;
  z-index:5;
}
.slide-hit .slide-shade,
.slide-hit .slide-caption{pointer-events:none}

.slides {
  position: relative;
  height: 520px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .45s ease,transform .6s ease;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 0;
  pointer-events: none;
  will-change: opacity,transform;
}
.slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.slide-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(0,0,0,.62),rgba(0,0,0,.18) 55%,rgba(0,0,0,.05));
  pointer-events: none;
  z-index: 1;
}
.slide-caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  max-width: min(760px,calc(100% - 160px));
  color: #fff;
  padding: 12px 14px 14px;
  border-radius: 14px;
  background: rgba(17,24,39,.25);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  z-index: 3;
}
.slide-title {
  margin: 0;
  line-height: 1.15;
  font-size: 1.55rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    color: #fff;
    font-size: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: none;
    transition: transform .15s ease,background .15s ease;
    padding-bottom: 5px;
}
    .slider-nav:hover {
        /* transform: translateY(-50%) scale(1.06);*/
        background: var(--red);
        color: var(--white);
        padding-bottom: 5px;
    }
.slider-nav.prev {
  left: 12px;
}
.slider-nav.next {
  right: 12px;
}
.slider-dots {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 8px;
  z-index: 4;
}
.slider-dot {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.25);
}
    .slider-dot.is-active {
        background: var(--red);
        box-shadow: 0 0 0 4px rgba(255,255,255,.12);
    }
@supports (-webkit-touch-callout: none) {
  .rp-about .rp-proof-item, .rp-about .rp-proof-item > div, .rp-about .rp-proof-ic {
    min-width: 0;
  }
  .rp-about .rp-proof-item b, .rp-about .rp-proof-item span {
    -webkit-text-fill-color: currentColor;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .rp-about .rp-proof-ic img {
    width: 52px;
    height: 52px;
    max-width: 52px;
    max-height: 52px;
    object-fit: contain;
    display: block;
  }
}
.rp-vitrin {
  position: relative;
  margin: 18px 0 10px;
}
.rp-vitrin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
  min-height: 52px;
}
.rp-vitrin-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--rp-ink,#1b1825);
  display: flex;
  align-items: center;
}
.rp-vitrin-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.rp-vitrin-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  box-shadow: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .12s ease;
}
.rp-vitrin-btn:hover {
  background: #222;
  color: var(--white);
  border-color: rgba(0,0,0,.14);
}
.rp-vitrin-btn:active {
  transform: translateY(1px);
}
.rp-vitrin-shell {
  --rp-perView: 1;
  --rp-gap: 12px;
  position: relative;
}
.rp-vitrin-viewport {
  overflow: hidden;
  transition: opacity var(--rp-fade-ms,160ms) ease;
}
.rp-vitrin-viewport.is-fading {
  opacity: 0;
}
.rp-vitrin-track {
  display: flex;
  gap: var(--rp-gap);
  padding: 8px;
  will-change: transform;
  transform: translate3d(0,0,0);
  transition: transform 520ms ease;
}
.rp-vitrin-item {
  flex: 0 0 calc((100% - (var(--rp-gap) * (var(--rp-perView) - 1))) / var(--rp-perView)); 
}
.js-vitrin-viewport {
    touch-action: pan-y;
}
.rp-vitrin-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 46px;
  z-index: 2;
  pointer-events: none;
}
.rp-vitrin-fade-left {
  left: 0;
  background: linear-gradient(to right, rgba(238,243,247,1), rgba(238,243,247,0));
}
.rp-vitrin-fade-right {
  right: 0;
  background: linear-gradient(to left, rgba(238,243,247,1), rgba(238,243,247,0));
}
.rp-vitrin-wave {
  display: none !important;
}
.rp-vitrin .rp-prod-card, .rp-vitrin .rp-prod-card a, .rp-vitrin .rp-prod-media, .rp-vitrin .rp-prod-media-inner, .rp-vitrin .rp-prod-media-inner img, .rp-vitrin .rp-vitrin-track, .rp-vitrin .rp-vitrin-item {
  box-shadow: none !important;
  filter: none !important;
}
.rp-vitrin .is-dragging, .rp-vitrin .is-dragging * {
  box-shadow: none !important;
  filter: none !important;
}
.rp-vitrin.is-single .rp-vitrin-actions {
  display: none;
}
.rp-vitrin.is-single .rp-vitrin-fade {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .rp-scrollTop .rp-st-badge-inner {
    animation: none !important;
  }
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .page-loader, .page-loader * {
    animation: none !important;
    transition: none !important;
  }
}
@media (max-width: 768px) {
  .search-dropdown {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    top: calc(env(safe-area-inset-top) + 70px + 8px) !important;
    z-index: 9999 !important;
  }
  .rp-service .rs-title h1 {
    font-size: 22px;
  }
  .rp-service .rs-sub {
    font-size: 12.5px;
  }
  .rp-service .rs-card-pad {
    padding: 12px;
  }
  .rp-service .rs-filterbar {
    grid-template-columns: 1fr;
  }
  .rp-service .rs-help {
    font-size: 12px;
  }
  .rp-service .rs-table-wrap {
    padding: 10px;
  }
  .rp-service .dataTables_wrapper .dataTables_length label, .rp-service .dataTables_wrapper .dataTables_filter label {
    display: block;
    width: 100%;
  }
  .rp-service .dataTables_wrapper .dataTables_length select {
    width: 100%;
    margin: 8px 0 0;
    height: 42px;
    border-radius: 14px;
  }
  .rp-service .dataTables_wrapper .dataTables_filter input {
    height: 42px;
    border-radius: 14px;
  }
  .rp-service table.dataTable thead th, .rp-service table.dataTable tbody td {
    white-space: normal;
  }
  .rp-service table.dataTable tbody td {
    word-break: break-word;
  }
  .rp-safety .sf-wrap {
    padding: 0 14px;
  }
  .rp-safety .sf-mat-grid {
    grid-template-columns: 1fr;
  }
  .rp-safety .sf-mini {
    min-width: 200px;
    max-width: 100%;
  }
  .rp-catalogs .rc-bcbar {
    padding: 10px;
  }
  .rp-catalogs .rc-title h1 {
    font-size: 22px;
  }
  .rp-title-row {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .rp-title-col, .rp-detail-col {
    flex: 0 0 auto;
    width: 100%;
    padding: 0;
  }
  .rp-title-col {
    padding: 16px 0 8px;
  }
  .rp-detail-col {
    padding: 0 0 8px;
  }
  .rp-bc-ddwrap .rp-bc-dd {
    left: 0;
    right: auto;
    min-width: min(92vw, 360px);
    max-width: min(92vw, 360px);
  }
  .rp-products .rp-dd .rp-dd-menu {
    min-width: min(92vw, 300px);
    max-width: min(92vw, 300px);
  }
  .rp-bc-ddwrap .rp-bc-dd-menu {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: min(92vw, 360px) !important;
    min-width: 0 !important;
    max-width: 360px !important;
    max-height: min(60vh, 420px) !important;
    z-index: 99999 !important;
  }
  .rp-bc-ddwrap .rp-bc-dd::before, .rp-bc-ddwrap .rp-bc-dd-menu::before {
    left: 50% !important;
    transform: translateX(-50%) rotate(45deg) !important;
  }
}
@media (min-width: 961px) {
  .sub-grid strong:has(.sub-card--parent) {
    display: none;
  }
  .sub-grid .sub-card--parent {
    display: none;
  }
  .sub-grid strong {
    display: block;
  }
  .sub-grid .sub-card--parent {
    grid-column: 1/-1;
    background: var(--rp-red);
    color: #fff;
    justify-content: center;
    border: 0;
    border-radius: 16px;
    padding: 14px 16px;
  }
  .sub-grid .sub-card--parent img {
    display: none;
  }
  .sub-grid .sub-card--parent .sub-card-title {
    font-weight: 900;
  }
  .rp-appbar {
    display: none !important;
  }
}
@media (max-width: 960px) {
  .sub-grid strong {
    margin-bottom: 10px;
  }
  .sub-grid .sub-card--parent {
    width: 100%;
    justify-content: flex-start;
    background-color: #e5e5e5;
  }
  body.sidebar-open {
    overflow: hidden;
  }
  .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(86vw, 380px);
    transform: translateX(-100%);
  }
  body.sidebar-open .sidebar {
    transform: translateX(0);
  }
  .sidebar-close {
    display: inline-flex;
  }
  .sidebar-toggle-btn.desktop-only {
    display: none;
  }
  .header-logo {
    display: block;
  }
  .mobile-menu-btn {
    display: inline-flex;
  }
  .sidebar-panels {
    display: block;
    left: 0;
    top: 0;
    right: auto;
    width: min(86vw, 380px);
    height: 100vh;
    pointer-events: none;
  }
  body.mobile-panel-open .sidebar-panels {
    pointer-events: auto;
  }
  .sidebar-panel {
    max-width: none;
    height: 100%;
    border-radius: 0;
    padding: 1rem 1rem 1.25rem;
    overflow: auto;
  }
  .panel-body {
    display: block;
  }
  .panel-main-list {
    width: 100%;
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--border-soft);
    padding-bottom: .75rem;
    margin-bottom: .9rem;
  }
  .sub-grid {
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
  }
  .topbar {
    padding: 0 .9rem;
  }
  .top-search {
    max-width: 60vw;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1rem;
  }
  .footer-links {
    justify-content: flex-start;
  }
  .mobile-only {
    display: inline-flex !important;
  }
  .desktop-only {
    display: none !important;
  }
  .rp-service .rs-bcbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .rp-service .rs-feature-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .rp-service .rs-gallery-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .rp-service .rs-filterbar {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .rp-service .rs-filterbar .rs-field:nth-child(3) {
    grid-column: 1/-1;
  }
  .rp-service .rs-filterbar .rs-field:nth-child(4) {
    grid-column: 1/-1;
  }
  .rp-service .rs-btn {
    width: 100%;
    justify-content: center;
  }
  .rp-service .dataTables_wrapper .dataTables_length, .rp-service .dataTables_wrapper .dataTables_filter, .rp-service .dataTables_wrapper .dataTables_info, .rp-service .dataTables_wrapper .dataTables_paginate {
    float: none;
    text-align: left;
  }
  .rp-service .dataTables_wrapper .dataTables_filter {
    margin: 10px 0 0;
  }
  .rp-service .dataTables_wrapper .dataTables_filter input {
    width: 100%;
    margin: 8px 0 0;
  }
  .rp-safety .sf-icon-grid {
    grid-template-columns: 1fr;
  }
  .rp-safety .sf-dy-grid {
    grid-template-columns: 1fr;
  }
  .rp-safety .sf-mat-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .rp-catalogs .rc-wrap {
    padding: 0 14px;
  }
  .rp-catalogs .rc-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .slides {
    height: 300px;
  }
  .slide-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }
  .slide-title {
    font-size: 1.15rem;
  }
  .slider-nav {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }
  .slider-nav.prev {
    left: 8px;
  }
  .slider-nav.next {
    right: 8px;
  }
  .slider-dots {
    right: 12px;
    bottom: 12px;
  }
}
@media (max-width: 1280px) {
  .promo-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .masonry {
    column-count: 3;
  }
  .masonry.masonry-collage {
    grid-template-columns: repeat(2,minmax(0,1fr));
    grid-auto-rows: 190px;
  }
  .masonry.masonry-collage .pos-1, .masonry.masonry-collage .pos-2, .masonry.masonry-collage .pos-3, .masonry.masonry-collage .pos-4, .masonry.masonry-collage .pos-5, .masonry.masonry-collage .pos-6, .masonry.masonry-collage .pos-7, .masonry.masonry-collage .pos-8 {
    grid-column: auto;
    grid-row: auto;
  }
  .rp-service .rs-wrap {
    max-width: 1200px;
    padding: 0 16px;
  }
  .rp-service .rs-feature-grid {
    gap: 10px;
  }
  .rp-service .rs-ic {
    width: 108px;
    height: 108px;
  }
  .rp-service .rs-ic img {
    width: 92px;
    height: 92px;
  }
  .rp-service .rs-filterbar {
    grid-template-columns: 1.2fr 1fr 1fr auto;
  }
  .rp-service .rs-table-wrap {
    padding: 10px 12px 12px;
  }
  .rp-safety .sf-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .rp-safety .sf-row-mid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .rp-safety .sf-mat-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .rp-catalogs .rc-grid {
    grid-template-columns: repeat(3,1fr);
  }
  .slides {
    height: 340px;
  }
}
@media (max-width: 640px) {
  .content {
    padding: 1rem 1rem 2.2rem;
  }
  .masonry {
    column-count: 1;
  }
  .promo-header-title {
    font-size: .84rem;
    letter-spacing: .08em;
  }
  .cat-overlay {
    opacity: 1;
    background: rgba(0,0,0,.22);
  }
  .cat-badge {
    opacity: 1;
    transform: translateY(0);
  }
  .sidebar, .sidebar-panels {
    width: 100vw !important;
    max-width: none !important;
  }
  .topbar-right {
    gap: .45rem !important;
  }
  .top-search {
    max-width: 56vw;
    max-width: 62vw !important;
  }
  .btn-lang {
    padding: .42rem .7rem;
    padding: .42rem .65rem !important;
  }
  .masonry.masonry-collage {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .rp-products .rp-topline {
    display: block;
    padding: 10px;
  }
  .rp-products .rp-breadcrumbs {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    min-width: 0;
  }
  .rp-products .rp-breadcrumbs > .rp-bc-item:first-child, .rp-products .rp-breadcrumbs > .rp-bc-sep:first-of-type {
    display: none !important;
  }
  .rp-products .rp-bc-sep {
    display: none !important;
  }
  .rp-products .rp-bc-item {
    width: 100%;
    max-width: none;
    justify-content: space-between;
  }
  .rp-products .kataktif {
    width: 100%;
    max-width: none;
  }
  .rp-products .rp-toolbar {
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .rp-products .rp-grid-toggles {
    flex: 0 0 auto;
  }
  .rp-products .rp-dd {
    flex: 1 1 auto;
    min-width: 0;
  }
  .rp-products .rp-dd-btn {
    width: 100%;
    justify-content: space-between;
  }
  .rp-products .rp-dd .rp-dd-menu {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
  }
  .rp-service .rs-wrap {
    padding: 0 12px;
  }
  .rp-service .rs-feature {
    padding: 14px 14px 12px;
    min-height: 108px;
  }
  .rp-service .rs-ic {
    width: 96px;
    height: 96px;
    border-radius: 18px;
  }
  .rp-service .rs-ic img {
    width: 82px;
    height: 82px;
  }
  .rp-service .rs-gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .rp-service .rs-bc-item {
    padding: 7px 10px;
    font-size: 11.5px;
  }
  .rp-service .rs-table-wrap {
    padding: 10px;
  }
  .rp-service .dataTables_wrapper .dataTables_paginate {
    margin-top: 10px;
  }
  .rp-service .dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: .4em .7em !important;
    margin: 0 3px !important;
  }
  .rp-safety .sf-title h1 {
    font-size: 22px;
  }
  .rp-safety .sf-bc-item {
    padding: 7px 10px;
  }
  .rp-safety .dy-side {
    min-height: 160px;
  }
  .rp-safety .dy-side img {
    max-height: 200px;
  }
  .rp-catalogs .rc-grid {
    grid-template-columns: 1fr;
  }
  .rp-catalogs .rc-cover {
    aspect-ratio: 16/10;
  }
  .rp-service .dataTables_wrapper .dataTables_filter input {
    min-width: 160px;
    width: 100%;
  }
  .rp-service .dataTables_wrapper .dataTables_length label, .rp-service .dataTables_wrapper .dataTables_filter label {
    width: 100%;
  }
}
@media (max-width: 860px) {
  .t-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1180px) {
  .rp-categories .cat-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
  .rp-products .prod-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 920px) {
  .rp-categories .cat-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 540px) {
  .rp-categories .cat-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 980px) {
  .rp-products .products-layout {
    grid-template-columns: 1fr;
  }
  .rp-products .sticky {
    position: static;
  }
  .rp-product-detail .pdp-grid {
    grid-template-columns: 1fr;
  }
  .rp-contact .grid-2 {
    grid-template-columns: 1fr;
  }
  .rp-contact .office-grid {
    grid-template-columns: 1fr;
  }
  .category-section .masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 170px;
  }
  .category-section .masonry .masonry-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
  .category-section .masonry .masonry-item:nth-child(1) {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
  }
  .category-section .masonry .masonry-item:nth-child(2) {
    grid-column: 1 / span 2;
    grid-row: 3 / span 2;
  }
  .category-section .masonry .masonry-item:nth-child(8) {
    grid-column: 1 / span 2;
    grid-row: 5 / span 2;
  }
  .rp-contact .rc-grid {
    grid-template-columns: 1fr;
  }
  .rp-contact .rc-map .rc-mapframe {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 560px) {
  .rp-products .prod-grid {
    grid-template-columns: 1fr;
  }
  .rp-product-detail .spec-grid {
    grid-template-columns: 1fr;
  }
  .rp-about .rp-about-proof {
    grid-template-columns: 1fr;
  }
  .category-section .masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
  }
  .category-section .masonry .masonry-item:nth-child(n) {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}
@media (max-width: 1024px) {
  .rp-about .rp-about-hero-grid {
    grid-template-columns: 1fr;
  }
  .rp-about .rp-about-proof {
    grid-template-columns: 1fr 1fr;
  }
  .rp-about .rp-about-stats {
    grid-template-columns: 1fr;
  }
  .rp-about .rp-about-pillars {
    grid-template-columns: 1fr;
  }
  .rp-about .rp-about-quality {
    grid-template-columns: 1fr;
  }
  .rp-about .rp-quality-media {
    min-height: 260px;
  }
}
@media (min-width: 760px) and (max-width: 1270px) {
  .masonry.masonry-collage {
    grid-template-columns: repeat(3,minmax(0,1fr));
    grid-auto-rows: 160px;
  }
  .masonry.masonry-collage .pos-1 {
    grid-column: 1/3;
    grid-row: 1/3;
  }
  .masonry.masonry-collage .pos-2 {
    grid-column: 3/4;
    grid-row: 1/3;
  }
  .masonry.masonry-collage .pos-3 {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .masonry.masonry-collage .pos-4 {
    grid-column: 2/3;
    grid-row: 3/4;
  }
  .masonry.masonry-collage .pos-5 {
    grid-column: 3/4;
    grid-row: 3/5;
  }
  .masonry.masonry-collage .pos-6 {
    grid-column: 1/2;
    grid-row: 4/5;
  }
  .masonry.masonry-collage .pos-7 {
    grid-column: 2/3;
    grid-row: 4/5;
  }
  .masonry.masonry-collage .pos-8 {
    grid-column: 1/3;
    grid-row: 5/7;
  }
}
@media (max-width: 1100px) {
  .rp-products .rp-grid.is-grid-4, .rp-products .rp-grid.is-grid-3, .rp-products .rp-grid.is-grid-5 {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .rp-products .rp-grid-toggles {
    display: none;
  }
  .rp-products .rp-prod-card {
    height: 400px;
  }
  .rp-product-detail .pd-grid {
    grid-template-columns: 1fr;
  }
  .rp-product-detail .pd-rail {
    position: static;
  }
  .rp-product-detail .pd-main img {
    height: 390px;
  }
  .rp-product-detail .pd-warn-grid {
    grid-template-columns: repeat(4,1fr);
  }
  .rp-media .rm-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
  .rp-service .rs-feature-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .rp-service .rs-filterbar {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }
  .rp-service .rs-filterbar .rs-field:nth-child(3), .rp-service .rs-filterbar .rs-field:nth-child(4) {
    grid-column: 1/-1;
  }
  .rp-service .rs-gallery-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .rp-b2b .b2b-map {
    height: 520px;
  }
}
@media (max-width: 520px) {
  .rp-product-detail .pd-wrap {
    padding: 0 12px;
  }
  .rp-product-detail .pd-main img {
    height: 330px;
  }
  .rp-product-detail .pd-thumb {
    width: 82px;
    height: 60px;
  }
  .rp-product-detail .pd-warn-grid {
    grid-template-columns: repeat(3,1fr);
  }
  .rp-media .rm-wrap {
    padding: 0 12px;
  }
  .rp-media .rm-grid {
    grid-template-columns: 1fr;
  }
  .rp-media .rm-title {
    font-size: 22px;
  }
  .rp-contact .rc-wrap {
    padding: 0 12px;
  }
  .rp-contact .rc-row {
    grid-template-columns: 1fr;
  }
  .rp-contact .rc-captchaRow {
    grid-template-columns: 1fr 120px 44px;
  }
  .rp-service .rs-wrap {
    padding: 0 12px;
  }
  .rp-service .rs-feature {
    padding: 14px 12px 12px;
  }
  .rp-service .rs-ic {
    width: 78px;
    height: 78px;
  }
  .rp-service .rs-ic img {
    width: 58px;
    height: 58px;
  }
  .rp-service .rs-filterbar {
    grid-template-columns: 1fr;
  }
  .rp-service .rs-btn {
    width: 100%;
    justify-content: center;
  }
  .rp-service .rs-gallery-grid {
    grid-template-columns: 1fr;
  }
  .rp-service .rs-g-item img {
    height: 200px;
  }
  .rp-service .rs-dtbar {
    flex-direction: column;
    align-items: stretch;
  }
  .rp-service .dataTables_wrapper .dataTables_filter input {
    min-width: 0;
    width: 100%;
  }
  .rp-service .rs-feature-grid {
    grid-template-columns: 1fr;
  }
  .rp-service .rs-title h1 {
    font-size: 21px;
  }
  .rp-service .rs-sub {
    font-size: 12.25px;
  }
  .rp-service .rs-bc-cur {
    max-width: 92vw;
  }
  .rp-service .dataTables_wrapper .dataTables_info {
    margin-top: 8px;
  }
  .rp-service .dataTables_wrapper .dataTables_paginate {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .rp-service .dataTables_wrapper .dataTables_paginate .paginate_button {
    flex: 0 0 auto;
  }
  .rp-safety .sf-wrap {
    padding: 0 12px;
  }
  .rp-safety .dy-sides {
    grid-template-columns: 1fr;
  }
  .rp-safety .dy-side img {
    max-height: 240px;
  }
  .rp-catalogs .rc-wrap {
    padding: 0 12px;
  }
  .rp-catalogs .rc-pager {
    gap: 8px;
  }
  .rp-catalogs .rc-pagebtn {
    border-radius: 12px;
  }
  .rp-b2b .b2b-map {
    height: 380px;
  }
}
@media (max-width: 820px) {
  .rp-media .rm-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .rp-b2b .b2b-map {
    height: 460px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .rp-service .rs-feature:hover {
    background: var(--rp-red);
    border-color: rgba(226,26,34,.20);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(226,26,34,.18);
  }
  .rp-service .rs-feature:hover .t, .rp-service .rs-feature:hover .d {
    color: #fff;
  }
  .rp-service .rs-feature:hover .rs-ic {}
  .rp-service .rs-feature:hover .rs-ic img.b {
    display: none;
  }
  .rp-service .rs-feature:hover .rs-ic img.w {
    display: block;
  }
  .rp-service .rs-g-item:hover img {
    transform: scale(1.04);
    filter: saturate(1.05);
  }
  .rp-service .rs-g-item:hover .rs-g-action {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (hover: none) {
  .rp-service .rs-feature:hover {
    background: #fff;
    border-color: rgba(0,0,0,.08);
    transform: none;
    box-shadow: none;
  }
  .rp-service .rs-feature:hover .t, .rp-service .rs-feature:hover .d {
    color: var(--rp-ink);
  }
  .rp-service .rs-feature:hover .rs-ic {
    background: transparent;
  }
  .rp-service .rs-feature:hover .rs-ic img.b {
    display: block;
  }
  .rp-service .rs-feature:hover .rs-ic img.w {
    display: none;
  }
}
@media (max-width: 900px) {
  .rp-about .rp-about-hero, .rp-about .rp-about-hero-inner, .rp-about .rp-about-top, .rp-about .rp-about-split {
    grid-template-columns: 1fr !important;
  }
  .rp-about .rp-about-proof {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .rp-vitrin-shell {
    --rp-perView: 2;
  }
}
@media (min-width: 992px) {
  .rp-vitrin-shell {
    --rp-perView: 3;
  }
}
@media (min-width: 1200px) {
  .rp-vitrin-shell {
    --rp-perView: 4;
  }
}
