/* =========================================================
   RAHA OUTDOOR — OPTIONAL PRODUCT COLOR CUSTOMIZER
   File: raha-product-customizer.css
   Version: 5.0.0
   ========================================================= */

.raha-product-customizer {
  --rpc-primary: #ff7b1b;
  --rpc-primary-dark: #dc650d;
  --rpc-ink: #211b17;
  --rpc-muted: #756a61;
  --rpc-soft: #fff8f2;
  --rpc-border: #eadfd5;
  --rpc-success: #2f7d45;
  --rpc-success-bg: #f2fbf4;
  --rpc-shadow: 0 18px 48px rgba(35, 26, 20, 0.09);

  direction: rtl;
  width: 100%;
  margin: 18px 0 10px;
  font-family: 'Cairo', 'Jost', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--rpc-ink);
}

.raha-product-customizer,
.raha-product-customizer * {
  box-sizing: border-box;
}

.raha-pc-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rpc-border);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 123, 27, 0.09), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fffdfb 100%);
  box-shadow: var(--rpc-shadow);
}

.raha-pc-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 110px;
  height: 3px;
  border-radius: 0 0 999px 0;
  background: linear-gradient(90deg, transparent, var(--rpc-primary));
  opacity: 0.8;
}

.raha-pc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 15px;
  border-bottom: 1px solid rgba(234, 223, 213, 0.8);
}

.raha-pc-header__content {
  min-width: 0;
}

.raha-pc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  margin-bottom: 6px;
  border: 1px solid rgba(255, 123, 27, 0.14);
  border-radius: 999px;
  background: #fff4ea;
  padding: 0 10px;
  color: var(--rpc-primary-dark);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.raha-pc-title {
  margin: 0 !important;
  color: var(--rpc-ink) !important;
  font-size: 18px !important;
  line-height: 1.55 !important;
  font-weight: 900 !important;
}

.raha-pc-description {
  max-width: 680px;
  margin: 5px 0 0 !important;
  color: var(--rpc-muted) !important;
  font-size: 11px !important;
  line-height: 1.85 !important;
  font-weight: 700 !important;
}

.raha-product-customizer .raha-pc-optional {
  flex: 0 0 auto;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 30px;
  border: 1px solid rgba(255, 123, 27, 0.20) !important;
  border-radius: 999px !important;
  background: #fff5ec !important;
  background-image: none !important;
  padding: 0 11px !important;
  color: #c85b15 !important;
  font-size: 9px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap;
  box-shadow: none !important;
}

.raha-pc-body {
  display: grid;
  gap: 18px;
  padding: 18px;
}

.raha-pc-groups {
  display: grid;
  gap: 16px;
}

.raha-pc-group {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.raha-pc-group + .raha-pc-group {
  padding-top: 15px;
  border-top: 1px dashed #eadfd5;
}

.raha-pc-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.raha-pc-group-title {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: #332a24;
  font-size: 13px;
  font-weight: 900;
}

.raha-pc-group-title::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rpc-primary);
  box-shadow: 0 0 0 4px rgba(255, 123, 27, 0.10);
}

.raha-pc-group-note {
  color: #9a8d83;
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.raha-pc-colors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(108px, 1fr));
  gap: 8px;
}

.raha-pc-color {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 44px;
  margin: 0;
  border: 1px solid #e7ddd5;
  border-radius: 12px;
  background: #ffffff;
  padding: 7px 10px;
  color: #4c4139;
  cursor: pointer;
  font-family: inherit;
  font-size: 10px;
  font-weight: 800;
  text-align: right;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.raha-pc-color:hover {
  transform: translateY(-1px);
  border-color: #d8c8ba;
  background: #fffdfb;
}

.raha-pc-color:focus-visible {
  outline: 3px solid rgba(255, 123, 27, 0.18);
  outline-offset: 2px;
}

.raha-pc-color.is-selected {
  border-color: var(--rpc-primary);
  background: #fff8f1;
  box-shadow: 0 0 0 3px rgba(255, 123, 27, 0.10);
}

.raha-pc-color.is-selected::after {
  content: "✓";
  position: absolute;
  top: 5px;
  left: 6px;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--rpc-primary);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

.raha-pc-swatch {
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  border: 1px solid rgba(31, 27, 24, 0.18);
  border-radius: 50%;
  background: var(--rpc-swatch, #ddd);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.32),
    0 1px 4px rgba(31, 27, 24, 0.08);
}

.raha-pc-color-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.raha-pc-summary {
  display: none;
  gap: 8px;
  border: 1px solid rgba(255, 123, 27, 0.17);
  border-radius: 13px;
  background: var(--rpc-soft);
  padding: 11px 12px;
}

.raha-pc-summary.is-visible {
  display: grid;
}

.raha-pc-summary-title {
  color: var(--rpc-primary-dark);
  font-size: 10px;
  font-weight: 900;
}

.raha-pc-summary-items {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.raha-pc-summary-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid #eadfd5;
  border-radius: 999px;
  background: #fff;
  padding: 0 9px;
  color: #5f534a;
  font-size: 9px;
  font-weight: 800;
}

.raha-product-customizer .raha-pc-statusbar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  padding: 0 !important;
  color: inherit !important;
  box-shadow: none !important;
}

.raha-product-customizer .raha-pc-autosave {
  flex: 1;
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  min-height: 42px;
  margin: 0 !important;
  border: 1px solid #dcebdd !important;
  border-radius: 12px !important;
  background: #f2fbf4 !important;
  background-color: #f2fbf4 !important;
  background-image: none !important;
  padding: 0 12px !important;
  color: #2f7d45 !important;
  font-size: 9px !important;
  line-height: 1.55 !important;
  font-weight: 900 !important;
  box-shadow: none !important;
}

.raha-pc-autosave::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: rgba(47, 125, 69, 0.10);
  color: var(--rpc-success);
  font-size: 10px;
  font-weight: 900;
}

.raha-product-customizer .raha-pc-clear {
  appearance: none;
  -webkit-appearance: none;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid #e5dbd3 !important;
  border-radius: 12px !important;
  background: #fff !important;
  background-image: none !important;
  padding: 0 13px;
  color: #7b6f65;
  cursor: pointer;
  font-family: inherit;
  font-size: 9px;
  font-weight: 900;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.raha-pc-clear.is-visible {
  display: inline-flex;
}

.raha-pc-clear:hover {
  border-color: #d8c8ba;
  background: #faf8f6;
}

.raha-pc-help {
  margin: -2px 0 0 !important;
  color: #968a80 !important;
  font-size: 9px !important;
  line-height: 1.75 !important;
  text-align: center;
  font-weight: 700 !important;
}

.raha-product-customizer.is-saved .raha-pc-card {
  box-shadow:
    0 18px 48px rgba(35, 26, 20, 0.09),
    0 0 0 2px rgba(47, 125, 69, 0.06);
}

/* تقليل الفراغ بين الـCustomizer وأزرار EasyOrders */
.raha-product-customizer + .mt-5 {
  margin-top: 10px !important;
}

@media (max-width: 640px) {
  .raha-product-customizer {
    margin-top: 15px;
  }

  .raha-pc-card {
    border-radius: 16px;
  }

  .raha-pc-header {
    display: grid;
    gap: 10px;
    padding: 15px;
  }

  .raha-pc-optional {
    width: max-content;
  }

  .raha-pc-title {
    font-size: 16px !important;
  }

  .raha-pc-description {
    font-size: 10px !important;
  }

  .raha-pc-body {
    gap: 16px;
    padding: 15px;
  }

  .raha-pc-colors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .raha-pc-color {
    min-height: 43px;
    padding: 7px 9px;
  }

  .raha-product-customizer .raha-pc-statusbar {
    display: grid !important;
    grid-template-columns: 1fr;
  }

  .raha-pc-clear {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .raha-pc-colors {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   RAHA — EasyOrders theme collision hardening
   بعض الثيمات تطبق Styles على أسماء Classes تحتوي footer/button.
   لذلك الـstatusbar لا يستخدم كلمة footer ونثبت الخلفيات هنا.
   ========================================================= */
.raha-product-customizer {
  isolation: isolate;
}

.raha-product-customizer .raha-pc-statusbar,
.raha-product-customizer .raha-pc-statusbar::before,
.raha-product-customizer .raha-pc-statusbar::after {
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

.raha-product-customizer .raha-pc-autosave,
.raha-product-customizer .raha-pc-autosave:hover,
.raha-product-customizer .raha-pc-autosave:focus {
  background-color: #f2fbf4 !important;
  background-image: none !important;
  color: #2f7d45 !important;
}

.raha-product-customizer .raha-pc-clear,
.raha-product-customizer .raha-pc-clear:hover,
.raha-product-customizer .raha-pc-clear:focus {
  background-color: #ffffff !important;
  background-image: none !important;
  color: #7b6f65 !important;
}


/* =========================================================
   RAHA PRODUCT CUSTOMIZER — MODAL MODE V4
   Full viewport BODY PORTAL + independent scroll
   ========================================================= */

html.raha-pc-modal-open,
body.raha-pc-modal-open {
  overflow: hidden !important;
  overscroll-behavior: none !important;
}

.raha-product-customizer--modal {
  position: relative;
  z-index: 20;
  isolation: isolate;
}

/*
 * الـPortal موجود مباشرة داخل body، لذلك نعيد تعريف Variables
 * بدل الاعتماد على inheritance من .raha-product-customizer.
 */
.raha-pc-portal {
  --rpc-primary: #ff7b1b;
  --rpc-primary-dark: #dc650d;
  --rpc-ink: #211b17;
  --rpc-muted: #756a61;
  --rpc-soft: #fff8f2;
  --rpc-border: #eadfd5;
  --rpc-success: #2f7d45;
  --rpc-success-bg: #f2fbf4;
  --rpc-shadow: 0 18px 48px rgba(35, 26, 20, 0.09);

  direction: rtl;
  font-family: 'Cairo', 'Jost', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--rpc-ink);
}

.raha-pc-portal,
.raha-pc-portal * {
  box-sizing: border-box;
}

.raha-product-customizer .raha-pc-launcher {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 100% !important;
  min-height: 66px !important;
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 !important;
  border: 1px solid #eadfd5 !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #fffaf5 0%, #ffffff 62%) !important;
  background-color: #ffffff !important;
  padding: 11px 13px !important;
  color: #211b17 !important;
  cursor: pointer !important;
  font-family: inherit !important;
  text-align: right !important;
  box-shadow: 0 12px 34px rgba(35, 26, 20, 0.08) !important;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease !important;
}

.raha-product-customizer .raha-pc-launcher:hover {
  transform: translateY(-1px) !important;
  border-color: rgba(255, 123, 27, .42) !important;
  box-shadow: 0 16px 38px rgba(35, 26, 20, 0.11) !important;
}

.raha-product-customizer .raha-pc-launcher.has-selection {
  border-color: rgba(47, 125, 69, .30) !important;
  background: linear-gradient(135deg, #f5fcf6 0%, #ffffff 65%) !important;
}

.raha-pc-launcher-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 123, 27, .17);
  border-radius: 13px;
  background: #fff0e4;
  color: #dc650d;
  font-size: 19px;
}

.raha-pc-launcher-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.raha-pc-launcher-copy strong {
  color: #211b17 !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
  font-weight: 900 !important;
}

.raha-pc-launcher-copy small {
  min-width: 0;
  overflow: hidden;
  color: #7b6f65 !important;
  font-size: 9px !important;
  line-height: 1.6 !important;
  font-weight: 700 !important;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.raha-pc-launcher.has-selection .raha-pc-launcher-copy small {
  color: #2f7d45 !important;
  font-weight: 900 !important;
}

.raha-pc-launcher-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  background: #ff7b1b !important;
  padding: 0 12px;
  color: #fff !important;
  font-size: 9px;
  font-weight: 900;
  white-space: nowrap;
}

.raha-pc-modal[hidden] {
  display: none !important;
}

/*
 * Full viewport overlay.
 * الـModal هنا child مباشر لـ body وليس للـProduct container.
 */
.raha-pc-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483646 !important;
  width: 100vw !important;
  width: 100dvw !important;
  height: 100vh !important;
  height: 100dvh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior: contain !important;
  padding:
    max(16px, env(safe-area-inset-top))
    max(16px, env(safe-area-inset-right))
    max(16px, env(safe-area-inset-bottom))
    max(16px, env(safe-area-inset-left)) !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  isolation: isolate;
  transition: opacity .18s ease, visibility .18s ease;
}

.raha-pc-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.raha-pc-modal-backdrop {
  position: fixed !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: rgba(20, 15, 11, .62) !important;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.raha-pc-modal-dialog {
  position: relative !important;
  z-index: 2 !important;
  flex: 0 0 auto !important;
  width: min(700px, calc(100vw - 32px)) !important;
  max-width: 700px !important;
  max-height: calc(100vh - 32px) !important;
  max-height: calc(100dvh - 32px) !important;
  margin: auto !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior: contain !important;
  border-radius: 22px !important;
  background: #fff !important;
  box-shadow: 0 34px 110px rgba(18, 13, 10, .34) !important;
  transform: translateY(14px) scale(.985);
  opacity: .96;
  outline: none !important;
  transition: transform .18s ease, opacity .18s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 123, 27, .45) transparent;
}

.raha-pc-modal-dialog::-webkit-scrollbar {
  width: 7px;
}

.raha-pc-modal-dialog::-webkit-scrollbar-track {
  background: transparent;
}

.raha-pc-modal-dialog::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 123, 27, .35);
}

.raha-pc-modal.is-open .raha-pc-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.raha-pc-card--modal {
  min-height: 0 !important;
  overflow: visible !important;
  border-radius: 22px !important;
  box-shadow: none !important;
}

.raha-pc-card--modal .raha-pc-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 10 !important;
  border-radius: 22px 22px 0 0 !important;
  background: rgba(255, 255, 255, .97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.raha-pc-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Portal overrides للعناصر التي كانت scoped بالـCustomizer */
.raha-pc-portal .raha-pc-optional {
  flex: 0 0 auto;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 30px;
  border: 1px solid rgba(255, 123, 27, 0.20) !important;
  border-radius: 999px !important;
  background: #fff5ec !important;
  background-image: none !important;
  padding: 0 11px !important;
  color: #c85b15 !important;
  font-size: 9px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap;
  box-shadow: none !important;
}

.raha-pc-portal .raha-pc-statusbar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  background-image: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.raha-pc-portal .raha-pc-autosave,
.raha-pc-portal .raha-pc-autosave:hover,
.raha-pc-portal .raha-pc-autosave:focus {
  flex: 1;
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  min-height: 42px;
  margin: 0 !important;
  border: 1px solid #dcebdd !important;
  border-radius: 12px !important;
  background: #f2fbf4 !important;
  background-image: none !important;
  padding: 0 12px !important;
  color: #2f7d45 !important;
  font-size: 9px !important;
  line-height: 1.55 !important;
  font-weight: 900 !important;
  box-shadow: none !important;
}

.raha-pc-portal .raha-pc-clear,
.raha-pc-portal .raha-pc-clear:hover,
.raha-pc-portal .raha-pc-clear:focus {
  appearance: none !important;
  -webkit-appearance: none !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 42px !important;
  margin: 0 !important;
  border: 1px solid #e5dbd3 !important;
  border-radius: 12px !important;
  background: #fff !important;
  background-image: none !important;
  padding: 0 13px !important;
  color: #7b6f65 !important;
  cursor: pointer !important;
  font-family: inherit !important;
  font-size: 9px !important;
  font-weight: 900 !important;
  box-shadow: none !important;
}

.raha-pc-portal .raha-pc-clear {
  display: none !important;
}

.raha-pc-portal .raha-pc-clear.is-visible {
  display: inline-flex !important;
}

.raha-pc-modal-x {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 34px !important;
  height: 34px !important;
  display: grid !important;
  place-items: center !important;
  flex: 0 0 34px !important;
  margin: 0 !important;
  border: 1px solid #e8ded6 !important;
  border-radius: 50% !important;
  background: #fff !important;
  background-image: none !important;
  padding: 0 !important;
  color: #5f534a !important;
  cursor: pointer !important;
  font-family: Arial, sans-serif !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

.raha-pc-modal-done {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 100% !important;
  min-height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  border: 1px solid #ff7b1b !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #ff8a32 0%, #f36a08 100%) !important;
  padding: 0 16px !important;
  color: #fff !important;
  cursor: pointer !important;
  font-family: inherit !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  box-shadow: 0 12px 28px rgba(243, 106, 8, .22) !important;
}

@media (max-width: 640px) {
  .raha-product-customizer .raha-pc-launcher {
    min-height: 62px !important;
    grid-template-columns: auto 1fr auto !important;
    gap: 9px !important;
    padding: 10px !important;
    border-radius: 14px !important;
  }

  .raha-pc-launcher-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    font-size: 17px;
  }

  .raha-pc-launcher-action {
    min-height: 31px;
    padding: 0 9px;
    font-size: 8px;
  }

  /* Mobile: modal حقيقي على الشاشة كلها */
  .raha-pc-modal {
    display: block !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    overflow: hidden !important;
    padding: 0 !important;
  }

  .raha-pc-modal-dialog {
    width: 100vw !important;
    max-width: none !important;
    height: 100vh !important;
    height: 100dvh !important;
    max-height: 100vh !important;
    max-height: 100dvh !important;
    margin: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    border-radius: 0 !important;
    transform: translateY(24px) !important;
  }

  .raha-pc-modal.is-open .raha-pc-modal-dialog {
    transform: translateY(0) !important;
  }

  .raha-pc-card--modal {
    min-height: 100vh !important;
    min-height: 100dvh !important;
    border: 0 !important;
    border-radius: 0 !important;
  }

  .raha-pc-card--modal .raha-pc-header {
    top: 0 !important;
    border-radius: 0 !important;
    padding-top: max(15px, env(safe-area-inset-top)) !important;
  }

  .raha-pc-card--modal .raha-pc-body {
    padding-bottom: max(22px, env(safe-area-inset-bottom)) !important;
  }

  .raha-pc-portal .raha-pc-statusbar {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .raha-pc-portal .raha-pc-clear.is-visible {
    width: 100% !important;
  }
}

@media (max-width: 360px) {
  .raha-pc-modal-x {
    width: 32px !important;
    height: 32px !important;
    flex-basis: 32px !important;
  }
}
