/* ============================================================
   Liquid Glass — ResinPlan flavor
   Apple-style frosted glass on a fluid blue ResinPlan background.
   ============================================================ */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  color: var(--fg-1);
  background: #eaf1ff;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* ---- The fluid, colorful page backdrop ---------------------- */
.rp-stage {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  background:
    radial-gradient(60% 50% at 12% 8%, #c7d9ff 0%, transparent 60%),
    radial-gradient(55% 45% at 92% 18%, #a9c4ff 0%, transparent 65%),
    radial-gradient(40% 35% at 75% 90%, #dde7ff 0%, transparent 70%),
    radial-gradient(50% 40% at 20% 95%, #b9d0ff 0%, transparent 70%),
    linear-gradient(180deg, #eaf1ff 0%, #dfeaff 100%);
}

.rp-stage::before,
.rp-stage::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* faint wave-band motif drawn in CSS */
.rp-stage::before {
  background:
    radial-gradient(70% 40% at 80% -10%, rgba(41, 121, 255, 0.22), transparent 60%),
    radial-gradient(50% 35% at -10% 30%, rgba(80, 146, 255, 0.22), transparent 65%),
    radial-gradient(45% 30% at 60% 60%, rgba(0, 89, 237, 0.12), transparent 70%);
  filter: blur(20px);
}

.rp-stage::after {
  display: none;
}

/* ---- Floating blurred orbs (gives the glass something to refract) ---- */
.rp-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.rp-orb.o1 {
  bottom: -8%;
  left: -8%;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, #2979ff 0%, transparent 70%);
  animation: liquidOrbBL 14s ease-in-out infinite alternate;
}

.rp-orb.o2 {
  top: -8%;
  right: -10%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, #5092ff 0%, transparent 70%);
  opacity: 0.55;
  animation: liquidOrbTR 11s ease-in-out infinite alternate;
}

.rp-orb.o3 {
  bottom: 20%;
  left: 30%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, #8bb6ff 0%, transparent 70%);
  opacity: 0.3;
  animation: liquidOrbBL 18s ease-in-out infinite alternate-reverse;
}

.rp-orb.o4 {
  top: 15%;
  left: 50%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #c7d9ff 0%, transparent 70%);
  opacity: 0.4;
  animation: liquidOrbTR 9s ease-in-out infinite alternate-reverse;
}

/* ============================================================
   GLASS PRIMITIVES
   ============================================================ */

/* Standard frosted card — used for cards, panels, popovers */
.glass {
  position: relative;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.35) 50%,
      rgba(255, 255, 255, 0.45) 100%);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 -1px 0 rgba(255, 255, 255, 0.18) inset,
    0 12px 32px rgba(24, 25, 63, 0.10),
    0 4px 12px rgba(24, 25, 63, 0.06);
}

/* Highlight rim — adds the Apple specular sheen on the top-left edge */
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 35%);
  opacity: 0.7;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Heavier glass — for nav, modals, hero panels */
.glass-strong {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.55) 100%);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 1px rgba(41, 121, 255, 0.04),
    0 16px 40px rgba(24, 25, 63, 0.10),
    0 4px 12px rgba(24, 25, 63, 0.06);
}

/* Tinted blue glass — for active/primary buttons */
.glass-blue {
  background: linear-gradient(180deg,
      rgba(80, 146, 255, 0.85) 0%,
      rgba(41, 121, 255, 0.92) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 -1px 0 rgba(0, 0, 0, 0.08) inset,
    0 8px 24px rgba(41, 121, 255, 0.35),
    0 2px 6px rgba(41, 121, 255, 0.20);
}

/* Soft / lighter glass — for chips, secondary buttons */
.glass-soft {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 4px 14px rgba(24, 25, 63, 0.06);
}

/* Dark glass — for the top promo bar */
.glass-ink {
  background: linear-gradient(180deg, rgba(24, 25, 63, 0.78), rgba(24, 25, 63, 0.62));
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: white;
}

/* Liquid pill — for navigation tabs, the rounded floating pill */
.glass-pill {
  border-radius: var(--radius-pill);
}

/* ---- Buttons --------------------------------------------------- */
.btn {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 12px 22px;
  border-radius: var(--radius-squircle);
  border: none;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out),
    background var(--dur-base) var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn:active {
  transform: scale(0.97);
}

/* .glass-pill su un .btn ripristina la forma pill (es. chip, badge) */
.btn.glass-pill {
  border-radius: var(--radius-pill);
}

.btn-primary {
  background: linear-gradient(180deg, rgba(80, 146, 255, 0.95), rgba(41, 121, 255, 1));
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 8px 22px rgba(41, 121, 255, 0.4),
    0 2px 6px rgba(41, 121, 255, 0.25);
}

.btn-primary:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 10px 30px rgba(41, 121, 255, 0.5),
    0 2px 6px rgba(41, 121, 255, 0.3);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  color: var(--fg-1);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 4px 14px rgba(24, 25, 63, 0.08);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.7);
}

.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 4px 12px rgba(24, 25, 63, 0.06);
  color: var(--fg-1);
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: translateY(-1px);
}

/* ---- Type helpers ---------------------------------------------- */
.display {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  font-size: 13px;
  color: var(--rp-blue);
  text-transform: uppercase;
}

/* page wrap */
.page {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* fade-in */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fade-up {
  animation: fadeUp 400ms var(--ease-out) both;
}

/* scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(41, 121, 255, 0.25);
  border-radius: 999px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

/* link reset */
a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.nav-menu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-squircle);

  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-1);

  transition:
    transform var(--dur-base) var(--ease-out),
    background var(--dur-base) var(--ease-out),
    color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-1px);
}

.nav-item.is-active {
  color: white;
  background: linear-gradient(180deg, rgba(80, 146, 255, 0.95), rgba(41, 121, 255, 1));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 10px 24px rgba(41, 121, 255, 0.38),
    0 2px 6px rgba(41, 121, 255, 0.22);
}

.nav-item.is-active:hover {
  transform: translateY(-1px);
}

.nav-chevron {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0;
}

.rp-product-column-card {
  border-radius: var(--radius-xl);
  padding: 28px;
  min-height: 430px;
}

.rp-product-column-header {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(24, 25, 63, 0.07);
}

.rp-product-column-title {
  color: var(--rp-blue);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.rp-product-column-nav {
  width: 36px;
  height: 36px;
  min-height: 36px;
  border-radius: 50%;
  color: var(--rp-ink-50);
}

.rp-product-list {
  gap: 16px;
}

.rp-product-list-item {
  gap: 18px;
  padding: 12px;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

.rp-product-list-item:hover {
  background: rgba(255, 255, 255, 0.44);
}

.rp-product-thumb {
  width: 66px;
  height: 66px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
}

.rp-product-thumb img {
  max-height: 44px;
  max-width: 44px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.10));
}

.rp-product-name {
  color: var(--rp-ink);
  font-size: 15px;
  font-weight: 700;
}

.rp-product-desc {
  font-size: 12px;
  color: var(--rp-ink-50);
  margin-top: 3px !important;
}

.rp-product-price {
  color: var(--rp-blue);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.rp-hide-scroll::-webkit-scrollbar {
  display: none;
}

.rp-product-thumb-white {
  background: #ffffff !important;
  isolation: isolate;
}

.rp-product-thumb-white img {
  background: #ffffff !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
  filter: none !important;
  border-radius: var(--radius-sm);
}

.rp-footer {
  width: 90%;
  margin: 90px auto 32px;
  position: relative;
}

.rp-footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 64px;

  padding: 48px 54px;

  border-radius: var(--radius-xl);
}

.rp-footer-logo {
  display: inline-flex;
  margin-bottom: 22px;
}

.rp-footer-logo img {
  width: 210px;
  height: auto;
  display: block;
}

.rp-footer-brand p {
  max-width: 330px;

  margin: 0;

  color: var(--rp-ink-70);

  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
}

.rp-footer-column h4 {
  margin: 0 0 18px;

  color: var(--rp-ink);

  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rp-footer-column ul {
  list-style: none;

  margin: 0;
  padding: 0;

  display: grid;
  gap: 10px;
}

.rp-footer-column a,
.rp-footer-legal a {
  color: var(--rp-ink-70);

  font-family: var(--font-sans);
  font-size: 14px;

  text-decoration: none;

  transition:
    color var(--dur-base) var(--ease-out),
    opacity var(--dur-base) var(--ease-out);
}

.rp-footer-column a:hover,
.rp-footer-legal a:hover {
  color: var(--rp-blue);
}

.rp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 24px;

  padding: 18px 12px 0;

  color: var(--rp-ink-50);

  font-family: var(--font-sans);
  font-size: 12px;
}

.rp-footer-legal {
  display: flex;
  align-items: center;
  gap: 14px;

  flex-wrap: wrap;
}

.rp-footer-top-btn {
  position: fixed;

  right: 28px;
  bottom: 28px;

  width: 52px;
  height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: var(--rp-blue);

  background: rgba(255, 255, 255, 0.72);

  border: 1px solid rgba(255, 255, 255, 0.8);

  box-shadow: var(--shadow-2);

  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);

  text-decoration: none;

  z-index: 900;

  transition:
    transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}

.rp-footer-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-3);
}

/* ============================================================
   ResinPlan — Liquid Glass Toast / Toastr
   ============================================================ */

#toast-container {
  z-index: 99999;
  bottom: 15px;
  right: 100px;
}

#toast-container>.toast {
  position: relative;
  overflow: hidden;

  width: 360px;
  min-height: 72px;

  padding: 16px 18px 16px 58px !important;

  font-family: var(--font-sans);
  color: var(--rp-ink) !important;

  border-radius: var(--radius-lg) !important;

  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.46) 52%,
      rgba(255, 255, 255, 0.58) 100%) !important;

  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);

  border: 1px solid rgba(255, 255, 255, 0.72);

  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 -1px 0 rgba(255, 255, 255, 0.18) inset,
    0 16px 40px rgba(24, 25, 63, 0.12),
    0 4px 12px rgba(24, 25, 63, 0.08) !important;

  opacity: 1 !important;

  transition:
    transform var(--motion-base, 220ms) var(--ease-liquid, cubic-bezier(0.16, 1, 0.3, 1)),
    box-shadow var(--motion-base, 220ms) var(--ease-liquid, cubic-bezier(0.16, 1, 0.3, 1));
}

#toast-container>.toast:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 20px 52px rgba(24, 25, 63, 0.16),
    0 6px 16px rgba(24, 25, 63, 0.10) !important;
}

/* highlight glass */
#toast-container>.toast::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.75) 0%,
      rgba(255, 255, 255, 0) 36%);
  opacity: .75;
  mix-blend-mode: overlay;
}

/* barra laterale liquida */
#toast-container>.toast::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 16px;
  bottom: 16px;
  width: 5px;
  border-radius: var(--radius-pill);
  background: var(--rp-blue);
  box-shadow: 0 8px 22px rgba(41, 121, 255, 0.35);
}

/* titolo / testo */
.toast-title {
  font-family: var(--font-sans);
  font-size: var(--fs-14);
  font-weight: var(--fw-bold);
  color: var(--rp-ink) !important;
  line-height: var(--lh-snug);
  margin-bottom: 3px;
}

.toast-message {
  font-family: var(--font-sans);
  font-size: var(--fs-13, 13px);
  font-weight: var(--fw-medium);
  color: var(--rp-ink-70) !important;
  line-height: 1.45;
}

.toast-message a {
  color: var(--rp-blue);
  font-weight: var(--fw-bold);
  text-decoration: none;
}

.toast-message a:hover {
  color: var(--rp-blue-300);
}

/* close */
.toast-close-button {
  position: absolute;
  top: 10px;
  right: 12px;

  color: var(--rp-ink-50) !important;
  text-shadow: none !important;
  opacity: .75 !important;

  font-size: 18px !important;
  font-weight: 400 !important;
}

.toast-close-button:hover {
  color: var(--rp-blue) !important;
  opacity: 1 !important;
}

/* progress bar */
#toast-container>.toast .toast-progress {
  height: 3px;
  border-radius: var(--radius-pill);
  opacity: 1;
  background: rgba(41, 121, 255, 0.75);
}

/* varianti */
#toast-container>.toast-success::after {
  background: var(--success);
  box-shadow: 0 8px 22px rgba(0, 237, 43, 0.25);
}

#toast-container>.toast-info::after {
  background: var(--info);
  box-shadow: 0 8px 22px rgba(41, 121, 255, 0.35);
}

#toast-container>.toast-warning::after {
  background: var(--warning);
  box-shadow: 0 8px 22px rgba(217, 237, 0, 0.25);
}

#toast-container>.toast-error::after {
  background: var(--danger);
  box-shadow: 0 8px 22px rgba(237, 71, 0, 0.25);
}

/* icone toastr: le rendiamo meno anni 2012 */
#toast-container>.toast-success,
#toast-container>.toast-info,
#toast-container>.toast-warning,
#toast-container>.toast-error {
  background-image: none !important;
}

/* pseudo icona */
#toast-container>.toast .toast-title::before {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);

  width: 22px;
  height: 22px;
  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 11px;

  color: white;
  background: var(--rp-blue);
}

#toast-container>.toast-success .toast-title::before {
  content: "\f00c";
  background: var(--success);
}

#toast-container>.toast-info .toast-title::before {
  content: "\f129";
  background: var(--info);
}

#toast-container>.toast-warning .toast-title::before {
  content: "\f071";
  background: var(--warning);
  color: var(--rp-ink);
}

#toast-container>.toast-error .toast-title::before {
  content: "\f00d";
  background: var(--danger);
}

/* mobile */
@media (max-width: 576px) {
  #toast-container {
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
  }

  #toast-container>.toast {
    width: 100% !important;
    border-radius: var(--radius-md) !important;
  }
}

#toast-container>.toast {
  display: flex;
  align-items: center;

  padding: 18px 20px 18px 64px !important;
}

/* wrapper interno */
#toast-container>.toast .toast-message,
#toast-container>.toast .toast-title {
  font-family: var(--font-sans) !important;
}

/* titolo */
.toast-title {
  font-family: var(--font-sans) !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em;

  margin-bottom: 4px;
}

/* testo */
.toast-message {
  font-family: var(--font-sans) !important;
  font-weight: 800 !important;

  display: flex;
  align-items: center;

  min-height: 20px;

  color: var(--rp-ink-70) !important;
}

/* ── Product page ── */

/* Gallery panel */
.rp-gallery-panel {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(24, 25, 63, 0.07);
  box-shadow: 0 4px 24px rgba(24, 25, 63, 0.07);
  overflow: visible;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 0;
}

/* keep slider functional and centered */
.rp-gallery-panel .single-pro-img {
  margin: 0;
  width: 100%;
  min-width: 0;
}

.rp-gallery-panel .single-product-scroll,
.rp-gallery-panel .single-product-cover {
  width: 100%;
  text-align: center;
  min-width: 0;
}

/* Slick: non forzare la track al 100%, altrimenti con più foto la gallery impazzisce */
.rp-gallery-panel .slick-list {
  width: 100% !important;
  overflow: hidden !important;
}

.rp-gallery-panel .single-product-cover .slick-track {
  display: flex !important;
  align-items: center;
}

.rp-gallery-panel .slick-slide {
  height: auto !important;
}

.rp-gallery-panel .slick-slide>div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.rp-gallery-panel .single-product-cover .single-slide {
  width: 100% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 400px;
  min-height: 400px;
}

.rp-gallery-panel .single-product-cover .single-slide img {
  max-height: 360px;
  width: auto;
  max-width: 80%;
  object-fit: contain;
  border-radius: 0;
  display: block;
  margin: 0 auto;
}

.rp-gallery-panel .single-nav-thumb {
  margin-top: 12px;
  padding: 0 18px 18px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.rp-gallery-panel .single-nav-thumb .slick-track {
  display: flex !important;
  align-items: center;
}

.rp-gallery-panel .single-nav-thumb .slick-slide {
  padding: 0 5px;
}

.rp-gallery-panel .single-nav-thumb .single-slide {
  width: 74px !important;
  height: 74px;
  min-height: 74px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(24, 25, 63, 0.08);
  border-radius: var(--radius-md);
  cursor: pointer;
}

.rp-gallery-panel .single-nav-thumb .slick-current .single-slide {
  border-color: rgba(41, 121, 255, 0.45);
  box-shadow: 0 4px 14px rgba(41, 121, 255, 0.12);
}

.rp-gallery-panel .single-nav-thumb .single-slide img {
  max-height: 54px;
  max-width: 54px;
  width: auto;
  object-fit: contain;
}

.rp-gallery-link-chip {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 6;

  width: 42px;
  height: 42px;
  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  background: linear-gradient(180deg, rgba(80, 146, 255, 0.95), rgba(41, 121, 255, 1));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 10px 24px rgba(41, 121, 255, 0.32),
    0 2px 6px rgba(41, 121, 255, 0.18);

  text-decoration: none;
  font-size: 15px;

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.rp-gallery-link-chip:hover {
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 14px 30px rgba(41, 121, 255, 0.42),
    0 4px 10px rgba(41, 121, 255, 0.22);
}

.rp-gallery-link-chip i {
  pointer-events: none;
}

/* Floating spec chip */
.rp-spec-chip {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: 0 4px 16px rgba(24, 25, 63, 0.1);
  position: absolute;
  z-index: 5;
  min-width: 100px;
}

.rp-spec-chip-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--rp-ink-50);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.rp-spec-chip-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--rp-blue);
  line-height: 1;
}

.rp-spec-chip-unit {
  font-size: 11px;
  font-weight: 600;
  color: var(--rp-ink-50);
  margin-left: 2px;
}

/* Wishlist bubble */
.rp-wish-bubble {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(24, 25, 63, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--rp-ink-50);
  font-size: 16px;
  text-decoration: none;
  transition: background .15s, color .15s;
}

.rp-wish-bubble:hover {
  background: #fff;
  color: #e53935;
}

/* size chips */
.rp-size-chip {
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  background: rgba(24, 25, 63, 0.05);
  border: 1.5px solid rgba(24, 25, 63, 0.1);
  color: var(--rp-ink-70);
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
}

.rp-size-chip:hover {
  background: rgba(41, 121, 255, 0.07);
  border-color: rgba(41, 121, 255, 0.3);
  color: var(--rp-blue);
}

.rp-size-chip.active {
  background: linear-gradient(180deg, rgba(80, 146, 255, 0.95), rgba(41, 121, 255, 1));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset, 0 6px 18px rgba(41, 121, 255, 0.35);
  border-color: transparent;
  color: #fff;
}

/* qty stepper */
.rp-qty-wrap {
  display: flex;
  align-items: center;
  background: rgba(24, 25, 63, 0.05);
  border: 1.5px solid rgba(24, 25, 63, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

.rp-qty-btn {
  width: 40px;
  height: 50px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--rp-ink);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.rp-qty-btn:hover {
  background: rgba(24, 25, 63, 0.06);
}

#quantity {
  width: 42px;
  height: 50px;
  text-align: center;
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 800;
  color: var(--rp-ink);
  outline: none;
}

/* cart CTA button */
.rp-cart-btn {
  flex: 1;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(80, 146, 255, 0.95), rgba(41, 121, 255, 1));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset, 0 10px 24px rgba(41, 121, 255, 0.38), 0 2px 6px rgba(41, 121, 255, 0.22);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow .2s, transform .15s;
}

.rp-cart-btn:hover {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset, 0 14px 30px rgba(41, 121, 255, 0.48), 0 2px 8px rgba(41, 121, 255, 0.28);
  color: #fff;
  text-decoration: none;
}

/* custom tab panes: use Bootstrap's own .active logic, add fade */
.rp-tab-content>.tab-pane {
  display: none;
  opacity: 0;
  transition: opacity .2s ease;
}

.rp-tab-content>.tab-pane.active {
  display: block;
}

.rp-tab-content>.tab-pane.active.show {
  opacity: 1;
}

/* trust bar */
.rp-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(24, 25, 63, 0.07);
  padding-top: 16px;
  margin-top: 16px;
}

.rp-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--rp-ink-60);
  flex: 1;
  min-width: 100px;
}

.rp-trust-item i {
  color: var(--rp-blue);
  font-size: 14px;
}

.rp-availability-badge {
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background .15s, color .15s, border-color .15s;
}

.rp-availability-badge.is-available {
  background: rgba(25, 135, 84, 0.09);
  color: #198754;
  border: 1px solid rgba(25, 135, 84, 0.2);
}

.rp-availability-badge.is-warning {
  background: rgba(255, 193, 7, 0.12);
  color: #9a7000;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.rp-availability-badge.is-danger {
  background: rgba(220, 53, 69, 0.09);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

/* tab nav */
.rp-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(24, 25, 63, 0.07);
}

.rp-tab-link {
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--rp-ink);
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: color .15s, background .15s;
}

.rp-tab-link:hover {
  color: var(--rp-blue);
  background: rgba(41, 121, 255, 0.07);
}

.rp-tab-link.active {
  background: linear-gradient(180deg, rgba(80, 146, 255, 0.95), rgba(41, 121, 255, 1));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset, 0 6px 16px rgba(41, 121, 255, 0.3);
  color: #fff;
  font-weight: 600;
}

.rp-tab-content {
  padding: 28px 24px;
}

.rp-safety-item {
  background: rgba(24, 25, 63, 0.03);
  border: 1px solid rgba(24, 25, 63, 0.07);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 12px;
}

.rp-safety-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--rp-ink-50);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pittogrammi {
  justify-content: center;
}

.pittogrammi img {
  width: 36px;
  height: 36px;
  margin-right: 4px;
}

.rp-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  background: rgba(24, 25, 63, 0.04);
  border: 1.5px solid rgba(24, 25, 63, 0.1);
  color: var(--rp-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s, border-color .15s;
}

.rp-pdf-btn:hover {
  background: rgba(41, 121, 255, 0.07);
  border-color: rgba(41, 121, 255, 0.3);
  color: var(--rp-blue);
}

.rp-pdf-btn i {
  color: var(--rp-blue);
  font-size: 18px;
  flex-shrink: 0;
}

/* spec table inside right panel card */
.rp-spec-table {
  font-size: 14px;
  color: var(--rp-ink-60);
  line-height: 1.5;
}

/* table-based specs */
.rp-spec-table table {
  width: 100%;
  border-collapse: collapse;
}

.rp-spec-table tr {
  border-bottom: 1px solid rgba(24, 25, 63, 0.07);
}

.rp-spec-table tr:last-child {
  border-bottom: none;
}

.rp-spec-table td,
.rp-spec-table th {
  padding: 13px 0;
  font-size: 14px;
  vertical-align: middle;
}

.rp-spec-table td:first-child {
  color: var(--rp-ink-60);
  font-weight: 400;
  padding-right: 12px;
}

.rp-spec-table td:last-child {
  font-weight: 700;
  color: var(--rp-ink);
  text-align: right;
}

/* paragraph-based specs: ogni <p> con <strong> viene reso come riga */
.rp-spec-table p {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 13px 0;
  margin: 0;
  border-bottom: 1px solid rgba(24, 25, 63, 0.07);
  font-size: 14px;
  color: var(--rp-ink-60);
}

.rp-spec-table p:last-child {
  border-bottom: none;
}

.rp-spec-table p strong {
  font-weight: 700;
  color: var(--rp-ink);
  white-space: nowrap;
}

.rp-spec-table h1,
.rp-spec-table h2,
.rp-spec-table h3,
.rp-spec-table h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rp-blue);
  margin: 0 0 8px;
}

.rp-spec-table ul,
.rp-spec-table ol {
  padding-left: 18px;
  margin-bottom: 8px;
}

/* related product cards */
.rp-product-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 24px rgba(24, 25, 63, 0.08);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.rp-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(24, 25, 63, 0.15);
}

.rp-card-img-wrap {
  background: #fff;
  padding: 20px;
  position: relative;
  flex-shrink: 0;
}

/* ── Card availability pill (top-right) ──────────────────── */
.rp-avail-strip {
  position: absolute;
  top: 8px; right: 8px;
  bottom: auto; left: auto;
  padding: 4px 9px 4px 7px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  pointer-events: none;
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  z-index: 4;
  white-space: nowrap;
}

.rp-avail-strip.is-unavailable {
  background: rgba(255, 255, 255, 0.88);
  color: #c0192a;
  border: 1.5px solid rgba(192, 25, 42, 0.28);
}

.rp-avail-strip.is-on-request {
  background: rgba(255, 255, 255, 0.88);
  color: #9a5c00;
  border: 1.5px solid rgba(180, 100, 0, 0.28);
}

.rp-avail-strip i {
  font-size: 10px;
}

/* ── Grayscale for unavailable cards ─────────────────────── */
.rp-product-card.is-unavailable,
.ec-product-lsc.is-unavailable {
  filter: grayscale(100%);
  transition: filter .35s ease, transform .22s ease, box-shadow .22s ease;
}

.rp-product-card.is-unavailable:hover,
.ec-product-lsc.is-unavailable:hover {
  filter: grayscale(0%);
}

.rp-card-info-rel {
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(24, 25, 63, 0.07);
  flex-grow: 1;
}

/* ============================================================
   ResinPlan — Liquid Glass SweetAlert
   ============================================================ */

.swal2-container {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* popup */
.rp-swal-popup {
  position: relative;
  overflow: hidden;

  width: 520px !important;

  padding: 34px !important;

  border-radius: var(--radius-xl) !important;

  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.46) 52%,
      rgba(255, 255, 255, 0.58) 100%) !important;

  backdrop-filter: blur(34px) saturate(180%);
  -webkit-backdrop-filter: blur(34px) saturate(180%);

  border: 1px solid rgba(255, 255, 255, 0.72) !important;

  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 -1px 0 rgba(255, 255, 255, 0.18) inset,
    0 28px 80px rgba(24, 25, 63, 0.16),
    0 8px 24px rgba(24, 25, 63, 0.10) !important;
}

/* sheen glass */
.rp-swal-popup::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0) 36%);

  opacity: .8;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* titolo */
.rp-swal-title {
  font-family: var(--font-sans) !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;

  color: var(--rp-ink) !important;

  padding: 0 !important;
  margin-top: 10px !important;
}

/* testo */
.rp-swal-text {
  font-family: var(--font-sans) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.65 !important;

  color: var(--rp-ink-70) !important;

  margin-top: 12px !important;
}

/* contenitore bottoni */
.rp-swal-actions {
  gap: 12px;
  margin-top: 28px !important;
}

/* confirm */
.rp-swal-confirm {
  min-width: 140px;
  height: 48px;

  border: none !important;
  border-radius: var(--radius-squircle) !important;

  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 700 !important;

  color: white !important;

  background: linear-gradient(180deg,
      rgba(80, 146, 255, 0.95),
      rgba(41, 121, 255, 1)) !important;

  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 10px 24px rgba(41, 121, 255, 0.38),
    0 2px 6px rgba(41, 121, 255, 0.22) !important;

  transition:
    transform var(--motion-fast) var(--ease-press),
    box-shadow var(--motion-base) var(--ease-liquid);
}

.rp-swal-confirm:hover {
  transform: translateY(-2px);

  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 14px 34px rgba(41, 121, 255, 0.48),
    0 4px 10px rgba(41, 121, 255, 0.28) !important;
}

/* cancel */
.rp-swal-cancel {
  min-width: 120px;
  height: 48px;

  border: none !important;
  border-radius: var(--radius-squircle) !important;

  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 700 !important;

  color: var(--rp-ink) !important;

  background: rgba(255, 255, 255, 0.45) !important;

  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);

  border: 1px solid rgba(255, 255, 255, 0.65) !important;

  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 4px 14px rgba(24, 25, 63, 0.08) !important;
}

.rp-swal-cancel:hover {
  background: rgba(255, 255, 255, 0.68) !important;
  transform: translateY(-2px);
}

/* icon */
.rp-swal-icon {
  border-width: 3px !important;
  transform: scale(.9);
}

/* animazioni */
.rp-swal-show {
  animation: rpSwalShow 420ms var(--ease-liquid) forwards;
}

.rp-swal-hide {
  animation: rpSwalHide 180ms ease forwards;
}

@keyframes rpSwalShow {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.96);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes rpSwalHide {
  to {
    opacity: 0;
    transform: scale(.97);
  }
}

.rp-swal-icon.swal2-info {
  border-color: rgba(41, 121, 255, 0.32) !important;
  color: var(--rp-blue) !important;

  background:
    radial-gradient(circle at 30% 30%,
      rgba(255, 255, 255, 0.42),
      rgba(255, 255, 255, 0.08));

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 8px 22px rgba(41, 121, 255, 0.14);
}

/* la i centrale */
.rp-swal-icon.swal2-info .swal2-icon-content {
  font-weight: 700 !important;
  color: var(--rp-blue) !important;

  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45),
    0 0 12px rgba(41, 121, 255, 0.12);
}

.rp-swal-icon.swal2-error {
  border-color: rgba(255, 107, 107, 0.42) !important;
  color: #ff6b6b !important;

  background:
    radial-gradient(circle at 30% 30%,
      rgba(255, 255, 255, 0.42),
      rgba(255, 255, 255, 0.08));

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 8px 22px rgba(255, 107, 107, 0.14);
}

/* X interna */
.rp-swal-icon.swal2-error [class^='swal2-x-mark-line'] {
  background-color: #ff6b6b !important;

  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28),
    0 0 10px rgba(255, 107, 107, 0.16);
}

/* contenitore X */
.rp-swal-icon.swal2-error .swal2-x-mark {
  transform: scale(1.04);
}

.rp-swal-title {
  font-family: var(--font-sans) !important;
  font-size: 30px !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.04em !important;
  color: var(--rp-ink) !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.rp-swal-text {
  max-width: 430px;
  margin: 14px auto 0 !important;

  font-family: var(--font-sans) !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  line-height: 1.55 !important;
  letter-spacing: -0.015em !important;

  color: rgba(24, 25, 63, 0.82) !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.rp-swal-text b,
.rp-swal-text strong {
  color: var(--rp-ink) !important;
  font-weight: 800 !important;
}

/* ── Checkout page ── */

/* Payment method tabs */
.rp-pay-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(24, 25, 63, 0.07);
}

.rp-pay-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--rp-ink);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .15s, background .15s;
}

.rp-pay-tab:hover {
  color: var(--rp-blue);
  background: rgba(41, 121, 255, 0.07);
}

.rp-pay-tab.active {
  background: linear-gradient(180deg, rgba(80, 146, 255, 0.95), rgba(41, 121, 255, 1));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset, 0 6px 16px rgba(41, 121, 255, 0.3);
  color: #fff;
  font-weight: 600;
}

.rp-pay-tab i {
  font-size: 15px;
}

/* Tab panes */
.rp-pay-content>.tab-pane {
  display: none;
  opacity: 0;
  transition: opacity .2s ease;
}

.rp-pay-content>.tab-pane.active {
  display: block;
}

.rp-pay-content>.tab-pane.active.show {
  opacity: 1;
}

.rp-pay-content {
  padding: 28px 28px 32px;
}

/* Form inputs */
.rp-field-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--rp-ink-50);
  display: block;
  margin-bottom: 8px;
}

.rp-input {
  width: 100%;
  background: rgba(24, 25, 63, 0.04);
  border: 1.5px solid rgba(24, 25, 63, 0.1);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--rp-ink);
  outline: none;
  transition: border-color .2s;
}

.rp-input:focus {
  border-color: var(--rp-blue);
}

.rp-input:disabled {
  opacity: .55;
  cursor: not-allowed;
}

/* Stripe card element wrapper */
#card-element {
  background: rgba(24, 25, 63, 0.04);
  border: 1.5px solid rgba(24, 25, 63, 0.1);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  transition: border-color .2s;
}

#card-element.StripeElement--focus {
  border-color: var(--rp-blue);
}

#card-errors {
  font-size: 13px;
  color: #dc3545;
  margin-top: 8px;
  font-weight: 600;
  min-height: 20px;
}

/* Stripe CTA */
.rp-stripe-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(80, 146, 255, 0.95), rgba(41, 121, 255, 1));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset, 0 10px 24px rgba(41, 121, 255, 0.38);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: box-shadow .2s;
}

.rp-stripe-btn:hover {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset, 0 14px 32px rgba(41, 121, 255, 0.5);
}

/* Bonifico details */
.rp-bank-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(24, 25, 63, 0.07);
  font-size: 14px;
}

.rp-bank-row:last-child {
  border-bottom: none;
}

.rp-bank-label {
  color: var(--rp-ink-60);
  font-weight: 500;
  flex-shrink: 0;
}

.rp-bank-value {
  font-weight: 700;
  color: var(--rp-ink);
  text-align: right;
}

.rp-reference-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(41, 121, 255, 0.08);
  border: 1.5px solid rgba(41, 121, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 800;
  color: var(--rp-blue);
  letter-spacing: .04em;
}

.rp-bonifico-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(80, 146, 255, 0.95), rgba(41, 121, 255, 1));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset, 0 10px 24px rgba(41, 121, 255, 0.38);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: box-shadow .2s;
}

.rp-bonifico-btn:hover {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset, 0 14px 32px rgba(41, 121, 255, 0.5);
}

/* PayPal wrap */
.rp-paypal-wrap {
  max-width: 480px;
  margin: 0 auto;
}

/* Summary sidebar */
.rp-order-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(24, 25, 63, 0.07);
  font-size: 14px;
}

.rp-order-row:last-child {
  border-bottom: none;
}

.rp-order-label {
  color: var(--rp-ink-60);
}

.rp-order-value {
  font-weight: 700;
  color: var(--rp-ink);
  text-align: right;
}

.rp-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(24, 25, 63, 0.04);
  border: 1px solid rgba(24, 25, 63, 0.08);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--rp-ink-60);
}

.rp-trust-pill i {
  color: var(--rp-blue);
  font-size: 11px;
}


/* ── Checkout page ── */
@media (max-width: 991px) {
  .rp-pay-nav {
    padding: 14px 16px;
  }

  .rp-pay-content {
    padding: 20px 16px 24px;
  }
}

@media (max-width: 992px) {
  .rp-footer-inner {
    grid-template-columns: 1fr 1fr;

    gap: 36px;

    padding: 38px;
  }
}

@media (max-width: 768px) {
  .rp-footer {
    width: 100%;

    padding: 0 16px;

    margin-top: 64px;
  }

  .rp-footer-inner {
    grid-template-columns: 1fr;

    gap: 30px;

    padding: 30px 24px;

    border-radius: 26px;
  }

  .rp-footer-logo img {
    width: 185px;
  }

  .rp-footer-bottom {
    flex-direction: column;
    align-items: flex-start;

    padding-inline: 4px;
  }
}