/* ==========================================================================
   RN Pilates Products — Frontend stylesheet v1.1
   Brand: #471f6e (deep purple) → #ce487a (rose pink)
   Flatsome theme overrides applied with !important where required.
   System fonts only — no external font imports.
   ========================================================================== */

:root {
    --rnpp-purple: #471f6e;
    --rnpp-pink: #ce487a;
    --rnpp-gradient: linear-gradient(135deg, #471f6e 0%, #ce487a 100%);
    --rnpp-gradient-soft: linear-gradient(135deg, rgba(71,31,110,0.04) 0%, rgba(206,72,122,0.04) 100%);
    --rnpp-ink: #1a1325;
    --rnpp-ink-soft: #4a4055;
    --rnpp-ink-mute: #8a8195;
    --rnpp-line: #ece8ee;
    --rnpp-bg: #ffffff;
    --rnpp-bg-cream: #f4eae9;
    --rnpp-bg-soft: #faf6f5;
    --rnpp-photo-bg: #f6f4f0;
    --rnpp-radius: 4px;
    --rnpp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Base ====================================================================== */
.rnpp-single,
.rnpp-archive,
.rnpp-row,
.rnpp-slider,
.rnpp-card {
    color: var(--rnpp-ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

.rnpp-single *,
.rnpp-archive *,
.rnpp-row *,
.rnpp-slider *,
.rnpp-card * { box-sizing: border-box; }

.rnpp-single img,
.rnpp-archive img,
.rnpp-row img,
.rnpp-slider img,
.rnpp-card img { max-width: 100%; height: auto; display: block; }

/* ==========================================================================
   FLATSOME OVERRIDES — !important is mandatory; theme styles win otherwise
   ========================================================================== */
.rnpp-single .rnpp-btn,
.rnpp-single button.rnpp-btn,
.rnpp-single a.rnpp-btn,
.rnpp-archive .rnpp-btn,
.rnpp-row .rnpp-btn,
.rnpp-slider .rnpp-btn,
.rnpp-card .rnpp-btn {
    border-radius: var(--rnpp-radius) !important;
    text-transform: none !important;
    letter-spacing: 0.1em !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    min-height: 0 !important;
    min-width: 0 !important;
    max-width: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    vertical-align: middle !important;
    /* Match the heights of <a> and <button> exactly */
    box-sizing: border-box !important;
}

.rnpp-single .rnpp-thumb,
.rnpp-single button.rnpp-thumb,
.rnpp-slider .rnpp-arrow,
.rnpp-slider button.rnpp-arrow,
.rnpp-slider .rnpp-dot,
.rnpp-slider button.rnpp-dot {
    text-transform: none !important;
    letter-spacing: 0 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    line-height: 1 !important;
    min-height: 0 !important;
    font-weight: normal !important;
}

.rnpp-thumb { border-radius: var(--rnpp-radius) !important; }
.rnpp-arrow { border-radius: 50% !important; }
.rnpp-dot { border-radius: 0 !important; padding: 0 !important; }

.rnpp-card a,
.rnpp-archive a,
.rnpp-single a { box-shadow: none !important; }

/* ==========================================================================
   Card
   ========================================================================== */
.rnpp-card {
    display: block;
    background: #fff;
    text-decoration: none !important;
    color: var(--rnpp-ink) !important;
    position: relative;
    min-width: 0;
    box-shadow: 0 1px 2px rgba(26,19,37,0.04) !important;
    border: 1px solid rgba(71,31,110,0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s var(--rnpp-ease), box-shadow 0.4s var(--rnpp-ease), border-color 0.4s var(--rnpp-ease);
}

.rnpp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(26,19,37,0.08), 0 2px 6px rgba(26,19,37,0.04) !important;
    border-color: rgba(71,31,110,0.12);
}

.rnpp-card-media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--rnpp-photo-bg);
    border-bottom: 1px solid var(--rnpp-line);
    margin: 0;
    transition: filter 0.4s var(--rnpp-ease);
}

.rnpp-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 28px;
    transition: transform 0.8s var(--rnpp-ease);
}

.rnpp-card:hover .rnpp-card-media img { transform: scale(1.04); }

.rnpp-card-noimg {
    width: 100%;
    height: 100%;
    background: var(--rnpp-gradient-soft);
}

/* Swatch chip — appears on hover, glass effect */
.rnpp-card-swatches {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    display: flex;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 4px 16px rgba(26,19,37,0.08);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--rnpp-ease), transform 0.3s var(--rnpp-ease);
}

.rnpp-card:hover .rnpp-card-swatches {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.rnpp-card-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: block;
    border: 1px solid rgba(0,0,0,0.08);
    box-sizing: border-box;
    transition: transform 0.25s var(--rnpp-ease);
}

.rnpp-card-dot.is-active {
    box-shadow: 0 0 0 1.5px var(--rnpp-purple);
}

/* Bottom meta row */
.rnpp-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    padding: 18px 20px 20px;
}

.rnpp-card-meta-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.rnpp-card-cat {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--rnpp-ink-mute);
}

.rnpp-card-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--rnpp-ink);
    transition: color 0.3s var(--rnpp-ease);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rnpp-card:hover .rnpp-card-title { color: var(--rnpp-pink); }

.rnpp-card-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--rnpp-pink);
    flex-shrink: 0;
    transition: gap 0.3s var(--rnpp-ease);
    white-space: nowrap;
    padding-bottom: 1px;
}

.rnpp-card:hover .rnpp-card-action { gap: 10px; }

.rnpp-card-action svg {
    transition: transform 0.3s var(--rnpp-ease);
}

/* Touch / no-hover devices — show swatches permanently */
@media (hover: none) {
    .rnpp-card-swatches {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 560px) {
    .rnpp-card-media { margin-bottom: 14px; }
    .rnpp-card-media img { padding: 20px; }
    .rnpp-card-title { font-size: 15px; }
    .rnpp-card-cat { font-size: 9px; letter-spacing: 0.2em; }
    .rnpp-card-action { font-size: 11px; }
}

/* ==========================================================================
   Row layout — minmax(0, 1fr) prevents grid blowout
   ========================================================================== */
.rnpp-row { display: grid; gap: 32px 24px; width: 100%; }

.rnpp-cols-1 { grid-template-columns: minmax(0, 1fr); }
.rnpp-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.rnpp-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rnpp-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 1180px) {
    .rnpp-cols-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
    .rnpp-cols-3, .rnpp-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .rnpp-row { gap: 24px 16px; }
}
@media (max-width: 560px) {
    .rnpp-cols-2, .rnpp-cols-3, .rnpp-cols-4 { grid-template-columns: minmax(0, 1fr); }
}

/* ==========================================================================
   Slider
   ========================================================================== */
.rnpp-slider { position: relative; padding: 0 0 50px; width: 100%; }

.rnpp-slider-track {
    overflow: hidden;
    width: 100%;
    /* Top/bottom padding so card hover-lift isn't clipped */
    padding: 12px 0;
    margin: -12px 0;
}

.rnpp-slider-stage {
    display: flex;
    gap: 24px;
    transition: transform 0.6s var(--rnpp-ease);
    will-change: transform;
}

/* Default 4 per view: 3 gaps × 24px = 72px subtracted */
.rnpp-slider--cols-4 .rnpp-slide,
.rnpp-slide { flex: 0 0 calc((100% - 72px) / 4); min-width: 0; }

/* 3 per view */
.rnpp-slider--cols-3 .rnpp-slide { flex: 0 0 calc((100% - 48px) / 3); }

/* 2 per view */
.rnpp-slider--cols-2 .rnpp-slide { flex: 0 0 calc((100% - 24px) / 2); }

/* 1 per view — full width showcase */
.rnpp-slider--cols-1 .rnpp-slide { flex: 0 0 100%; }

/* Responsive narrowing — caps at requested columns */
@media (max-width: 1180px) {
    .rnpp-slider--cols-4 .rnpp-slide,
    .rnpp-slide { flex: 0 0 calc((100% - 48px) / 3); }
    /* cols-3, cols-2, cols-1 already <= 3 */
}

@media (max-width: 900px) {
    .rnpp-slider-stage { gap: 16px; }
    .rnpp-slider--cols-4 .rnpp-slide,
    .rnpp-slider--cols-3 .rnpp-slide,
    .rnpp-slider--cols-2 .rnpp-slide,
    .rnpp-slide { flex: 0 0 calc((100% - 16px) / 2); }
    /* cols-1 stays full width */
    .rnpp-slider--cols-1 .rnpp-slide { flex: 0 0 100%; }
}

@media (max-width: 560px) {
    .rnpp-slider-stage { gap: 12px; }
    .rnpp-slider--cols-4 .rnpp-slide,
    .rnpp-slider--cols-3 .rnpp-slide,
    .rnpp-slider--cols-2 .rnpp-slide,
    .rnpp-slide { flex: 0 0 88%; }
    .rnpp-slider--cols-1 .rnpp-slide { flex: 0 0 100%; }
}

/* Arrows — minimal, no background, no border, sit outside the track */
.rnpp-arrow {
    position: absolute;
    top: 35%;
    z-index: 2;
    width: 32px !important;
    height: 32px !important;
    background: transparent !important;
    border: none !important;
    color: var(--rnpp-ink) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.25s var(--rnpp-ease), transform 0.25s var(--rnpp-ease);
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.rnpp-arrow svg {
    width: 28px;
    height: 28px;
}

.rnpp-arrow svg path {
    stroke-width: 1.6 !important;
}

.rnpp-arrow:hover {
    background: transparent !important;
    color: var(--rnpp-purple) !important;
    transform: translateY(-50%) translateX(-2px);
}

.rnpp-next:hover {
    transform: translateY(-50%) translateX(2px);
}

/* Outside the slider track — far enough not to overlap cards */
.rnpp-prev { left: -44px; transform: translateY(-50%); }
.rnpp-next { right: -44px; transform: translateY(-50%); }

@media (max-width: 1180px) {
    .rnpp-prev { left: -34px; }
    .rnpp-next { right: -34px; }
}

@media (max-width: 900px) {
    .rnpp-arrow { width: 28px !important; height: 28px !important; }
    .rnpp-arrow svg { width: 24px; height: 24px; }
    .rnpp-prev { left: -8px; }
    .rnpp-next { right: -8px; }
}

@media (max-width: 560px) {
    /* Hide arrows on phones — touch-swipe only */
    .rnpp-arrow { display: none !important; }
}

.rnpp-arrow:disabled { opacity: 0.2; cursor: default; pointer-events: none; }

/* Dots — smart pagination, max ~7 visible, edge dots scale down */
.rnpp-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
    overflow: hidden;
    padding: 0 4px;
    max-width: 100%;
}

.rnpp-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: var(--rnpp-line);
    border-radius: 50% !important;
    border: none !important;
    cursor: pointer;
    transition: all 0.3s var(--rnpp-ease);
    padding: 0 !important;
}

.rnpp-dot.is-active {
    background: var(--rnpp-purple);
    width: 24px;
    border-radius: 100px !important;
}

/* Edge dots — gradually shrink toward the visible-window edge */
.rnpp-dot.is-edge { transform: scale(0.7); opacity: 0.5; }
.rnpp-dot.is-edge-far { transform: scale(0.45); opacity: 0.25; }
.rnpp-dot.is-hidden { display: none; }

@media (max-width: 560px) {
    .rnpp-dots { margin-top: 22px; gap: 6px; }
    .rnpp-dot { width: 6px; height: 6px; }
    .rnpp-dot.is-active { width: 18px; }
}

/* ==========================================================================
   Single product
   ========================================================================== */
/* ==========================================================================
   Page Header — compact deep purple band with breadcrumb + product title
   ========================================================================== */
.rnpp-page-header {
    width: 100%;
    background: #2a1340;
    color: #fff;
    padding: 28px 24px 32px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

/* Subtle radial highlight for richness — top-left soft glow */
.rnpp-page-header::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(206,72,122,0.14), rgba(206,72,122,0) 60%);
    pointer-events: none;
}

/* Hairline pink divider at the bottom (brand signature) */
.rnpp-page-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(206,72,122,0) 0%, rgba(206,72,122,0.5) 50%, rgba(206,72,122,0) 100%);
    pointer-events: none;
}

.rnpp-page-header-inner {
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.rnpp-page-header .rnpp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.rnpp-page-header .rnpp-breadcrumb a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.3s;
}
.rnpp-page-header .rnpp-breadcrumb a:hover { color: #fff; }
.rnpp-page-header .rnpp-breadcrumb span { color: rgba(255,255,255,0.25); }

.rnpp-page-header-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--rnpp-pink);
    margin-bottom: 8px;
}

.rnpp-page-header-title {
    font-weight: 500 !important;
    font-size: clamp(20px, 2vw, 26px) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
    margin: 0 !important;
    color: #fff !important;
    text-transform: none !important;
}

@media (max-width: 900px) {
    .rnpp-page-header { padding: 22px 24px 26px; text-align: center; }
    .rnpp-page-header-inner { align-items: center; }
    .rnpp-page-header .rnpp-breadcrumb {
        margin-bottom: 10px;
        font-size: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .rnpp-page-header-title { font-size: clamp(18px, 4vw, 22px) !important; }
}

@media (max-width: 560px) {
    .rnpp-page-header { padding: 18px 16px 22px; }
    .rnpp-page-header-eyebrow { font-size: 9px; margin-bottom: 6px; }
    .rnpp-page-header-title { font-size: 17px !important; }
}

/* ==========================================================================
   Single layout
   ========================================================================== */
.rnpp-single {
    max-width: 1420px;
    margin: 0 auto;
    padding: 56px 24px 20px;
    overflow: hidden;
}

/* Old in-page breadcrumb (now unused, kept for backward compat with other contexts) */
.rnpp-breadcrumb {
    display: none;
}

/* Hero — minmax(0, 1fr) prevents children from forcing oversize */
.rnpp-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
    align-items: start;
    margin-bottom: 64px;
}

@media (max-width: 900px) {
    .rnpp-hero { grid-template-columns: minmax(0, 1fr); gap: 40px; margin-bottom: 48px; }
}

.rnpp-hero-gallery { position: sticky; top: 40px; min-width: 0; max-width: 100%; }

@media (max-width: 900px) { .rnpp-hero-gallery { position: static; } }

.rnpp-hero-info { min-width: 0; max-width: 100%; }

.rnpp-main-image {
    aspect-ratio: 1;
    background: var(--rnpp-photo-bg);
    border: 1px solid var(--rnpp-line);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.rnpp-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 24px;
    transition: opacity 0.4s, transform 0.5s var(--rnpp-ease);
    cursor: zoom-in;
}

.rnpp-main-image:hover img { transform: scale(1.02); }

/* Gallery arrows on main image */
.rnpp-gal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px !important;
    height: 44px !important;
    min-height: 0 !important;
    min-width: 0 !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.92) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.06) !important;
    color: var(--rnpp-ink) !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(26,19,37,0.08) !important;
    text-shadow: none !important;
    opacity: 0;
    transition: opacity 0.3s var(--rnpp-ease), background 0.3s var(--rnpp-ease), transform 0.3s var(--rnpp-ease);
    line-height: 1 !important;
}

.rnpp-main-image:hover .rnpp-gal-arrow,
.rnpp-gal-arrow:focus-visible {
    opacity: 1;
}

.rnpp-gal-arrow:hover {
    background: #fff !important;
    transform: translateY(-50%) scale(1.06);
}

.rnpp-gal-prev { left: 12px; }
.rnpp-gal-next { right: 12px; }

/* Zoom hint button (bottom-right) */
.rnpp-gal-zoom {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 3;
    width: 36px !important;
    height: 36px !important;
    min-height: 0 !important;
    min-width: 0 !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.92) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.06) !important;
    color: var(--rnpp-ink) !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(26,19,37,0.08) !important;
    text-shadow: none !important;
    opacity: 0;
    transition: opacity 0.3s var(--rnpp-ease), background 0.3s, transform 0.3s var(--rnpp-ease);
    line-height: 1 !important;
}

.rnpp-main-image:hover .rnpp-gal-zoom { opacity: 1; }
.rnpp-gal-zoom:hover { background: #fff !important; transform: scale(1.08); }

/* On touch devices, show arrows + zoom always */
@media (hover: none) {
    .rnpp-gal-arrow, .rnpp-gal-zoom { opacity: 1; }
}

.rnpp-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.rnpp-single .rnpp-thumbs button.rnpp-thumb,
.rnpp-single .rnpp-thumbs .rnpp-thumb,
button.rnpp-thumb,
.rnpp-thumb {
    flex: 0 0 80px !important;
    width: 80px !important;
    height: 80px !important;
    border: 1px solid var(--rnpp-line) !important;
    border-radius: var(--rnpp-radius) !important;
    background: #fff !important;
    padding: 6px !important;
    margin: 0 !important;
    cursor: pointer;
    overflow: hidden !important;
    transition: all 0.3s var(--rnpp-ease) !important;
    position: relative;
    display: inline-block !important;
    box-shadow: none !important;
    text-shadow: none !important;
    line-height: 1 !important;
    min-height: 0 !important;
    min-width: 0 !important;
    font-size: 0 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: inherit !important;
}

.rnpp-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 0 !important;
}

.rnpp-thumb.is-active {
    border-color: var(--rnpp-purple) !important;
}

.rnpp-thumb.is-active::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--rnpp-pink);
    border-radius: var(--rnpp-radius) !important;
    pointer-events: none;
}

/* Hero info content */
.rnpp-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: none;
    color: var(--rnpp-pink);
    margin-bottom: 14px;
}

.rnpp-product-title {
    font-weight: 500 !important;
    font-size: clamp(28px, 3.6vw, 40px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    margin: 0 0 24px !important;
    color: var(--rnpp-ink) !important;
    text-transform: none !important;
}

.rnpp-product-short {
    font-size: 15px;
    line-height: 1.7;
    color: var(--rnpp-ink-soft);
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--rnpp-line);
}

.rnpp-product-short p { margin: 0 0 12px; }
.rnpp-product-short p:last-child { margin-bottom: 0; }

/* Color variants — Apple-style: single label line that updates on hover */
.rnpp-variants { margin-bottom: 32px; }

.rnpp-variants-label {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.rnpp-variants-eyebrow {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--rnpp-ink-mute);
}

.rnpp-variants-sep {
    color: var(--rnpp-ink-mute);
    font-size: 12px;
    opacity: 0.6;
}

.rnpp-variants-name {
    font-size: 14px;
    color: var(--rnpp-ink);
    font-weight: 500;
    letter-spacing: -0.005em;
    transition: color 0.2s var(--rnpp-ease);
}

.rnpp-swatches { display: flex; gap: 12px; flex-wrap: wrap; }

.rnpp-swatch {
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    padding: 4px;
    background: transparent;
    border: 1px solid var(--rnpp-line);
    cursor: pointer;
    transition: border-color 0.3s var(--rnpp-ease), transform 0.3s var(--rnpp-ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: none !important;
    position: relative;
}

.rnpp-swatch:hover { border-color: var(--rnpp-purple); transform: translateY(-1px); }

.rnpp-swatch.is-active {
    border-color: var(--rnpp-purple);
    border-width: 1.5px;
    padding: 3px;
}

.rnpp-swatch-dot {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    border: 1px solid rgba(0,0,0,0.08);
    box-sizing: border-box;
}

/* Tooltip — Apple-style, pure CSS, reads data-name attribute */
.rnpp-swatch::after,
.rnpp-swatch::before {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s var(--rnpp-ease), transform 0.18s var(--rnpp-ease);
    transform: translateX(-50%) translateY(4px);
    z-index: 10;
}

.rnpp-swatch::after {
    content: attr(data-name);
    background: var(--rnpp-ink);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

.rnpp-swatch::before {
    content: '';
    bottom: calc(100% + 4px);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--rnpp-ink);
}

.rnpp-swatch:hover::after,
.rnpp-swatch:hover::before,
.rnpp-swatch:focus-visible::after,
.rnpp-swatch:focus-visible::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Hide tooltip when no name is set */
.rnpp-swatch:not([data-name])::after,
.rnpp-swatch[data-name=""]::after,
.rnpp-swatch:not([data-name])::before,
.rnpp-swatch[data-name=""]::before {
    display: none;
}

/* CTA buttons — Flatsome override */
.rnpp-cta-stack { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }

.rnpp-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 16px 28px !important;
    font-size: 13px !important;
    text-decoration: none !important;
    border: 1px solid transparent !important;
    cursor: pointer;
    transition: all 0.4s var(--rnpp-ease) !important;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    height: auto !important;
}

.rnpp-btn-primary {
    background: var(--rnpp-gradient) !important;
    background-size: 200% 100% !important;
    background-position: 0% 0% !important;
    color: #fff !important;
}

.rnpp-btn-primary:hover {
    background-position: 100% 0% !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px -8px rgba(206,72,122,0.4) !important;
}

.rnpp-btn-outline {
    color: var(--rnpp-purple) !important;
    border-color: var(--rnpp-purple) !important;
    background: transparent !important;
}

.rnpp-btn-outline:hover {
    border-color: var(--rnpp-purple) !important;
    color: #fff !important;
    background: var(--rnpp-purple) !important;
}

/* Dimensions — premium card grid with icons */
.rnpp-dims {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

/* Dynamic columns based on count */
.rnpp-dims--cols-1 { grid-template-columns: minmax(0, 1fr); }
.rnpp-dims--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.rnpp-dims--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rnpp-dims--cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.rnpp-dim {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--rnpp-line);
    border-radius: 10px;
    list-style: none;
    transition: border-color 0.25s var(--rnpp-ease), box-shadow 0.25s var(--rnpp-ease);
}

.rnpp-dim:hover {
    border-color: rgba(71,31,110,0.18);
    box-shadow: 0 4px 12px rgba(26,19,37,0.05);
}

.rnpp-dim-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rnpp-bg-cream);
    color: var(--rnpp-purple);
    border-radius: 8px;
}

.rnpp-dim-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.rnpp-dim-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.rnpp-dim-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--rnpp-ink-mute);
}

.rnpp-dim-value {
    font-size: 16px;
    color: var(--rnpp-ink);
    font-weight: 500;
    letter-spacing: -0.005em;
    line-height: 1.2;
}

@media (max-width: 560px) {
    .rnpp-dims--cols-3,
    .rnpp-dims--cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .rnpp-dim { padding: 12px 14px; gap: 12px; }
    .rnpp-dim-icon { width: 32px; height: 32px; }
    .rnpp-dim-icon svg { width: 18px; height: 18px; }
}

/* ==========================================================================
   Sections
   ========================================================================== */
.rnpp-overview,
.rnpp-features-section,
.rnpp-related { margin-bottom: 80px; }

/* Contact CTA section — single premium box with 3 vertical columns ------- */
.rnpp-contact {
    margin-bottom: 80px;
}

.rnpp-contact-box {
    background: #fff;
    border: 1px solid var(--rnpp-line);
    border-radius: 16px;
    overflow: hidden;
}

/* Header — top of the box, slightly tinted cream stripe */
.rnpp-contact-header {
    padding: 32px 40px 28px;
    background: var(--rnpp-bg-cream);
    border-bottom: 1px solid var(--rnpp-line);
}

.rnpp-contact-header .rnpp-section-eyebrow { margin-bottom: 10px; }
.rnpp-contact-header .rnpp-section-headline {
    font-size: clamp(20px, 2.2vw, 26px) !important;
    margin-bottom: 12px !important;
}

.rnpp-contact-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--rnpp-ink-soft);
    margin: 0;
    max-width: 760px;
}

/* 3 vertical columns separated by hairline dividers */
.rnpp-contact-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rnpp-contact-col {
    padding: 32px 36px;
    border-right: 1px solid var(--rnpp-line);
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.rnpp-contact-col:last-child {
    border-right: none;
}

/* Icon: subtle outline mark, not filled */
.rnpp-contact-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--rnpp-purple);
    border: 1px solid rgba(71,31,110,0.18);
    border-radius: 8px;
    flex-shrink: 0;
    margin-bottom: 4px;
}

.rnpp-contact-icon svg { display: block; }

.rnpp-contact-key {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rnpp-ink-mute);
    margin: 0;
}

/* Emails — most prominent element after key */
.rnpp-contact-emails {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rnpp-contact-emails li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.rnpp-contact-emails li::before { content: none !important; }

.rnpp-contact-emails a {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: var(--rnpp-ink) !important;
    letter-spacing: -0.005em;
    line-height: 1.45;
    word-break: break-all;
    text-decoration: none !important;
    transition: color 0.25s var(--rnpp-ease);
}

.rnpp-contact-emails a:hover {
    color: var(--rnpp-purple) !important;
}

/* Note — smallest, supportive only */
.rnpp-contact-note {
    font-size: 12.5px;
    color: var(--rnpp-ink-mute);
    line-height: 1.65;
    margin: 6px 0 0 !important;
}

@media (max-width: 900px) {
    .rnpp-contact-header { padding: 26px 28px 22px; }
    .rnpp-contact-cols {
        grid-template-columns: minmax(0, 1fr);
    }
    .rnpp-contact-col {
        padding: 24px 28px;
        border-right: none;
        border-bottom: 1px solid var(--rnpp-line);
    }
    .rnpp-contact-col:last-child {
        border-bottom: none;
    }
}

@media (max-width: 560px) {
    .rnpp-contact-box { border-radius: 12px; }
    .rnpp-contact-header { padding: 22px 22px 20px; }
    .rnpp-contact-col { padding: 22px 22px; }
    .rnpp-contact-icon { width: 32px; height: 32px; border-radius: 7px; }
    .rnpp-contact-icon svg { width: 18px; height: 18px; }
    .rnpp-contact-emails a { font-size: 14px; }
    .rnpp-contact-key { font-size: 10px; }
    .rnpp-contact-note { font-size: 12px; }
}

@media (max-width: 900px) {
    .rnpp-overview, .rnpp-features-section, .rnpp-related, .rnpp-contact { margin-bottom: 56px; }
}

.rnpp-section-head {
    margin-bottom: 40px;
    max-width: 700px;
    padding-bottom: 0;
    border-bottom: none;
}

.rnpp-section-eyebrow {
    display: inline-block;
    font-size: 13px;
    color: var(--rnpp-pink);
    letter-spacing: 0.25em;
    margin-bottom: 18px;
    font-weight: 500;
}

.rnpp-section-headline {
    font-size: clamp(24px, 3vw, 32px) !important;
    line-height: 1.15 !important;
    color: var(--rnpp-ink) !important;
    letter-spacing: -0.02em !important;
    margin: 0 !important;
    font-weight: 500 !important;
    text-transform: none !important;
}

/* Overview — horizontal meta bar on top + 2-column body underneath */
.rnpp-overview-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 0;
    padding: 22px 32px;
    background: var(--rnpp-bg-cream);
    border-radius: 12px;
    margin-bottom: 36px;
}

.rnpp-meta-cell {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 0;
    padding: 4px 24px;
    min-width: 140px;
    border-right: 1px solid rgba(71,31,110,0.1);
}

.rnpp-meta-cell:first-child { padding-left: 0; }
.rnpp-meta-cell:last-child  { border-right: none; padding-right: 0; }

.rnpp-meta-key {
    font-size: 11px;
    color: var(--rnpp-ink-mute);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1;
}

.rnpp-meta-val {
    font-size: 15px;
    color: var(--rnpp-ink);
    font-weight: 500;
    letter-spacing: -0.005em;
    line-height: 1.3;
}

/* Body — fallback for legacy WordPress editor content (single column) */
.rnpp-overview-body {
    font-size: 15px;
    line-height: 1.75;
    color: var(--rnpp-ink-soft);
}

.rnpp-overview-body p {
    margin: 0 0 18px;
}
.rnpp-overview-body p:last-child { margin-bottom: 0; }
.rnpp-overview-body strong {
    color: var(--rnpp-ink);
    font-weight: 500;
}
.rnpp-overview-body h2,
.rnpp-overview-body h3 {
    color: var(--rnpp-ink);
    font-weight: 500;
    margin: 28px 0 8px;
}
.rnpp-overview-body h3 { font-size: 16px; }

/* New: structured Overview cards in 2-column grid */
.rnpp-overview-sections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 56px;
}

/* Last card alone on its row spans full width */
.rnpp-overview-sections .rnpp-overview-card:nth-child(odd):last-child {
    grid-column: 1 / -1;
    max-width: 820px;
}

.rnpp-overview-card {
    min-width: 0;
}

.rnpp-overview-card-title {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--rnpp-ink) !important;
    margin: 0 0 10px !important;
    letter-spacing: -0.005em !important;
    line-height: 1.3 !important;
}

.rnpp-overview-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--rnpp-ink-soft);
    margin: 0;
}

@media (max-width: 900px) {
    .rnpp-overview-meta-bar {
        padding: 18px 20px;
        gap: 12px;
    }
    .rnpp-meta-cell {
        padding: 6px 16px;
        min-width: 120px;
    }
    .rnpp-meta-key { font-size: 10px; }
    .rnpp-meta-val { font-size: 14px; }
    .rnpp-overview-body { font-size: 14px; }
    .rnpp-overview-sections {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }
    .rnpp-overview-sections .rnpp-overview-card:nth-child(odd):last-child {
        grid-column: auto;
    }
}

@media (max-width: 560px) {
    .rnpp-overview-meta-bar {
        flex-direction: column;
        gap: 0;
        padding: 16px 18px;
    }
    .rnpp-meta-cell {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-right: none;
        border-bottom: 1px solid rgba(71,31,110,0.1);
        gap: 16px;
    }
    .rnpp-meta-cell:last-child { border-bottom: none; padding-bottom: 0; }
    .rnpp-meta-cell:first-child { padding-top: 0; }
    .rnpp-meta-key { font-size: 10px; }
    .rnpp-meta-val { font-size: 14px; text-align: right; }
    .rnpp-overview-card-title { font-size: 15px !important; }
    .rnpp-overview-card-desc { font-size: 13px; }
}

/* ==========================================================================
   Features — Apple-style minimal list
   3 columns: icon | label | description, separated by hairlines
   ========================================================================== */

.rnpp-features-section {
    width: 100%;
}

/* Feature grid — 2 columns of cards, last odd item spans full width */
.rnpp-features-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

/* If feature count is odd, last one is alone on its row → span full width */
.rnpp-features-list .rnpp-feat:nth-child(odd):last-child {
    grid-column: 1 / -1;
}

.rnpp-feat {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 26px 26px;
    background: #fff;
    border: 1px solid var(--rnpp-line);
    border-radius: 12px;
    transition: border-color 0.3s var(--rnpp-ease), box-shadow 0.3s var(--rnpp-ease), transform 0.3s var(--rnpp-ease);
    min-width: 0;
}

.rnpp-feat:hover {
    border-color: rgba(71,31,110,0.18);
    box-shadow: 0 8px 22px rgba(26,19,37,0.06);
    transform: translateY(-2px);
}

.rnpp-feat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rnpp-bg-cream);
    border-radius: 10px;
    flex-shrink: 0;
}

.rnpp-feat-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.rnpp-feat-text {
    min-width: 0;
}

.rnpp-feat-label {
    font-size: 16px;
    color: var(--rnpp-ink);
    letter-spacing: -0.01em;
    line-height: 1.35;
    font-weight: 500;
    margin: 0 0 8px;
}

.rnpp-feat-desc {
    font-size: 13px;
    color: var(--rnpp-ink-soft);
    line-height: 1.7;
    margin: 0;
}

/* Tablet/mobile — collapse to single column */
@media (max-width: 900px) {
    .rnpp-features-list {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }
    .rnpp-feat {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 16px;
        padding: 22px 22px;
    }
    .rnpp-feat-icon { width: 44px; height: 44px; }
    .rnpp-feat-icon img { width: 24px; height: 24px; }
    .rnpp-features-list .rnpp-feat:nth-child(odd):last-child {
        grid-column: auto;
    }
}

/* Mobile */
@media (max-width: 560px) {
    .rnpp-section-head { margin-bottom: 36px; }
    .rnpp-feat {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 14px;
        padding: 20px 18px;
    }
    .rnpp-feat-icon { width: 36px; height: 36px; border-radius: 8px; }
    .rnpp-feat-icon img { width: 20px; height: 20px; }
    .rnpp-feat-label { font-size: 15px; }
    .rnpp-feat-desc { font-size: 13px; }
}


/* ==========================================================================
   Archive
   ========================================================================== */
.rnpp-archive { max-width: 1350px; margin: 0 auto; padding: 60px 24px 100px; }

.rnpp-archive-head {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--rnpp-line);
}

.rnpp-archive-title {
    font-weight: 500 !important;
    font-size: clamp(32px, 4.5vw, 48px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.02em !important;
    margin: 12px 0 0 !important;
    text-transform: none !important;
    color: var(--rnpp-ink) !important;
}

.rnpp-archive-desc {
    max-width: 600px;
    margin: 24px auto 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--rnpp-ink-soft);
}

.rnpp-cat-filter {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.rnpp-chip {
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: none;
    color: var(--rnpp-ink-soft);
    text-decoration: none;
    border: 1px solid var(--rnpp-line);
    border-radius: 100px !important;
    transition: all 0.3s var(--rnpp-ease);
    background: transparent;
}

.rnpp-chip:hover { border-color: var(--rnpp-purple); color: var(--rnpp-purple); }

.rnpp-chip.is-active {
    background: var(--rnpp-gradient);
    color: #fff;
    border-color: transparent;
}

/* Color filter ----------------------------------------------------------- */
.rnpp-color-filter {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 56px;
    padding: 14px 20px;
    background: #faf8f5;
    border: 1px solid var(--rnpp-line);
    border-radius: 100px;
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.rnpp-color-filter-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rnpp-ink-mute);
    margin-right: 6px;
    padding-left: 4px;
}

.rnpp-color-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--rnpp-ink-soft);
    text-decoration: none !important;
    border: 1px solid transparent;
    border-radius: 100px !important;
    transition: all 0.25s var(--rnpp-ease);
    background: transparent;
}

.rnpp-color-chip:hover {
    background: #fff;
    color: var(--rnpp-ink);
    border-color: var(--rnpp-line);
}

.rnpp-color-chip.is-active {
    background: #fff;
    color: var(--rnpp-ink);
    border-color: var(--rnpp-purple);
    box-shadow: 0 2px 8px rgba(71,31,110,0.12);
}

/* "All" chip has no swatch — extra left padding */
.rnpp-color-chip:not(:has(.rnpp-color-swatch)) {
    padding-left: 14px;
}

.rnpp-color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.08);
    display: inline-block;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 2px #fff;
}

.rnpp-color-chip-label {
    line-height: 1;
}

@media (max-width: 720px) {
    .rnpp-color-filter {
        max-width: 100%;
        border-radius: 16px;
        padding: 12px 14px;
        gap: 6px;
    }
    .rnpp-color-filter-label {
        flex-basis: 100%;
        text-align: center;
        margin: 0 0 6px;
        padding: 0;
    }
    .rnpp-color-chip { padding: 4px 12px 4px 4px; font-size: 11px; }
    .rnpp-color-chip:not(:has(.rnpp-color-swatch)) { padding-left: 12px; }
    .rnpp-color-swatch { width: 18px; height: 18px; }
}

.rnpp-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 80px;
}

.rnpp-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
    color: var(--rnpp-ink-soft) !important;
    text-decoration: none;
    border: 1px solid var(--rnpp-line);
    border-radius: var(--rnpp-radius) !important;
    transition: all 0.3s;
    box-shadow: none !important;
}

.rnpp-pagination .page-numbers:hover,
.rnpp-pagination .page-numbers.current {
    background: var(--rnpp-gradient) !important;
    color: #fff !important;
    border-color: transparent;
}

.rnpp-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--rnpp-ink-mute);
    font-style: italic;
}

/* Responsive ================================================================ */
@media (max-width: 560px) {
    .rnpp-single { padding: 24px 16px 20px; }
    .rnpp-archive { padding: 40px 16px 60px; }
    .rnpp-section-head { margin-bottom: 32px; }
    .rnpp-cta-stack .rnpp-btn { flex: 1 1 100%; }
    .rnpp-thumbs { gap: 8px; }
    .rnpp-thumbs button.rnpp-thumb,
    .rnpp-thumb { flex: 0 0 64px !important; width: 64px !important; height: 64px !important; }
    .rnpp-swatch { width: 40px; height: 40px; }
}

/* ==========================================================================
   Lightbox — fullscreen image viewer
   ========================================================================== */
.rnpp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(8, 5, 12, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--rnpp-ease), visibility 0.3s;
    padding: 60px 80px;
}

.rnpp-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.rnpp-lb-stage {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rnpp-lb-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s var(--rnpp-ease);
    user-select: none;
    -webkit-user-drag: none;
}

/* Close button (top-right) */
.rnpp-lb-close {
    position: absolute !important;
    top: 24px;
    right: 24px;
    z-index: 2;
    width: 44px !important;
    height: 44px !important;
    min-height: 0 !important;
    min-width: 0 !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.08) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12) !important;
    color: #fff !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
    text-shadow: none !important;
    transition: background 0.25s var(--rnpp-ease), transform 0.25s var(--rnpp-ease);
}

.rnpp-lb-close:hover {
    background: rgba(255,255,255,0.18) !important;
    transform: scale(1.06);
}

/* Lightbox arrows */
.rnpp-lb-arrow {
    flex: 0 0 auto;
    width: 52px !important;
    height: 52px !important;
    min-height: 0 !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 12px;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.06) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: #fff !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
    text-shadow: none !important;
    transition: background 0.25s var(--rnpp-ease), transform 0.25s var(--rnpp-ease);
}

.rnpp-lb-arrow:hover {
    background: rgba(255,255,255,0.16) !important;
    transform: scale(1.06);
}

/* Counter (bottom-center) */
.rnpp-lb-counter {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    letter-spacing: 0.18em;
    user-select: none;
}

.rnpp-lb-counter span {
    color: #fff;
}

/* Mobile lightbox */
@media (max-width: 900px) {
    .rnpp-lightbox { padding: 50px 12px; }
    .rnpp-lb-arrow { width: 44px !important; height: 44px !important; margin: 0 4px; }
    .rnpp-lb-close { top: 14px; right: 14px; }
}

@media (max-width: 560px) {
    .rnpp-lightbox { padding: 56px 4px 60px; }
    .rnpp-lb-arrow { width: 40px !important; height: 40px !important; margin: 0 2px; background: rgba(255,255,255,0.12) !important; }
    .rnpp-lb-counter { bottom: 18px; font-size: 11px; }
}

/* ==========================================================================
   Mobile typography fine-tuning
   ========================================================================== */
@media (max-width: 560px) {
    .rnpp-eyebrow { font-size: 11px; margin-bottom: 10px; }
    .rnpp-section-eyebrow { font-size: 12px; margin-bottom: 14px; }
    .rnpp-product-title { font-size: clamp(24px, 7vw, 30px) !important; margin-bottom: 18px !important; }
    .rnpp-section-headline { font-size: clamp(20px, 5.5vw, 26px) !important; }
    .rnpp-product-short { font-size: 14px; margin-bottom: 24px; padding-bottom: 24px; }
    .rnpp-overview-body { font-size: 14px; }
    .rnpp-dim-label { font-size: 9px; }
    .rnpp-dim-value { font-size: 15px; }
    .rnpp-card-title { font-size: 14px; }
    .rnpp-archive-title { font-size: clamp(26px, 7vw, 32px) !important; }
}

/* ==========================================================================
   Search — header trigger + dropdown panel (premium minimal)
   ========================================================================== */

.rnpp-search {
    position: relative;
    display: inline-block;
}

/* Trigger — pill button with bordered icon chip */
.rnpp-search-trigger,
.rnpp-search button.rnpp-search-trigger {
    /* Reset Flatsome button defaults */
    text-transform: none !important;
    letter-spacing: 0.02em !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    min-height: 0 !important;
    min-width: 0 !important;
    max-width: none !important;
    text-align: left !important;
    text-shadow: none !important;
    vertical-align: middle !important;
    margin: 0 !important;

    /* Our styles */
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    background: #fff !important;
    border: 1px solid var(--rnpp-purple, #471f6e) !important;
    padding: 6px 22px 6px 6px !important;
    cursor: pointer;
    color: var(--rnpp-ink, #1a1325) !important;
    font-size: 13px !important;
    border-radius: 100px !important;
    box-shadow: 0 2px 8px rgba(71,31,110,0.10) !important;
    transition: border-color 0.25s var(--rnpp-ease), box-shadow 0.25s var(--rnpp-ease), background 0.25s var(--rnpp-ease);
    height: auto !important;
    width: auto;
}

.rnpp-search-trigger:hover,
.rnpp-search.is-open .rnpp-search-trigger {
    background: var(--rnpp-bg-cream, #f4eae9) !important;
    box-shadow: 0 4px 12px rgba(71,31,110,0.18) !important;
}

/* Icon chip — circular brand color background */
.rnpp-search-trigger svg {
    display: block;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background: var(--rnpp-bg-cream, #f4eae9);
    color: var(--rnpp-purple, #471f6e);
    border-radius: 50%;
    padding: 7px;
    box-sizing: content-box;
    transition: background 0.25s var(--rnpp-ease), color 0.25s var(--rnpp-ease);
}

.rnpp-search-trigger:hover svg,
.rnpp-search.is-open .rnpp-search-trigger svg {
    background: var(--rnpp-purple, #471f6e);
    color: #fff;
}

.rnpp-search-trigger-label { line-height: 1; }

/* When no label — make it a circle with just the icon */
.rnpp-search-trigger:not(:has(.rnpp-search-trigger-label)) {
    padding: 4px !important;
    border-radius: 50% !important;
    gap: 0;
}

/* Dropdown panel — drops from below the trigger */
.rnpp-search-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 9999;
    width: 420px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border: 1px solid var(--rnpp-line, #ece8ee);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(26,19,37,0.14), 0 4px 12px rgba(26,19,37,0.06);
    padding: 16px;
    animation: rnpp-search-fadein 0.18s var(--rnpp-ease, cubic-bezier(0.22,1,0.36,1));
}

@keyframes rnpp-search-fadein {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Search bar inside the panel */
.rnpp-search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    background: #faf8f5;
    border: 1px solid var(--rnpp-line, #ece8ee);
    border-radius: 100px;
    transition: border-color 0.25s var(--rnpp-ease, cubic-bezier(0.22,1,0.36,1)), background 0.25s var(--rnpp-ease, cubic-bezier(0.22,1,0.36,1));
}

.rnpp-search-bar:focus-within {
    background: #fff;
    border-color: var(--rnpp-purple, #471f6e);
    box-shadow: 0 0 0 3px rgba(71,31,110,0.08);
}

.rnpp-search-bar-icon {
    color: var(--rnpp-ink-mute, #8a8195);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.rnpp-search-input,
.rnpp-search-bar input.rnpp-search-input {
    flex: 1;
    /* Reset Flatsome input defaults */
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    min-height: 0 !important;
    min-width: 0;
    max-width: none !important;
    height: auto !important;
    border-radius: 0 !important;

    /* Our styles */
    color: var(--rnpp-ink, #1a1325) !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    letter-spacing: -0.005em !important;
    line-height: 1.4 !important;
    padding: 6px 0 !important;
    text-transform: none !important;
}

.rnpp-search-input::placeholder {
    color: var(--rnpp-ink-mute, #8a8195);
}

.rnpp-search-clear,
button.rnpp-search-clear {
    /* Reset Flatsome button defaults */
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    min-height: 0 !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    text-shadow: none !important;

    /* Our styles */
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    background: rgba(0,0,0,0.08) !important;
    border: none !important;
    color: var(--rnpp-ink, #1a1325) !important;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s var(--rnpp-ease, cubic-bezier(0.22,1,0.36,1));
    padding: 0 !important;
    box-shadow: none !important;
}

.rnpp-search-clear:hover { background: rgba(0,0,0,0.14) !important; }
.rnpp-search-clear svg { display: block; }

/* Results area */
.rnpp-search-results {
    margin-top: 12px;
    max-height: 420px;
    overflow-y: auto;
}

.rnpp-search-hint,
.rnpp-search-empty {
    text-align: center;
    color: var(--rnpp-ink-mute, #8a8195);
    font-size: 13px;
    padding: 24px 8px;
    letter-spacing: 0.01em;
}

.rnpp-search-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 4px 0 !important;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rnpp-search-item {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
.rnpp-search-item::before { content: none !important; }

.rnpp-search-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 10px;
    color: var(--rnpp-ink, #1a1325) !important;
    text-decoration: none !important;
    transition: background 0.15s var(--rnpp-ease, cubic-bezier(0.22,1,0.36,1));
}

.rnpp-search-link:hover,
.rnpp-search-link.is-focused {
    background: #faf8f5;
}

.rnpp-search-thumb {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f6f4f0;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rnpp-search-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.rnpp-search-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: var(--rnpp-bg-cream, #f4eae9);
}

.rnpp-search-meta {
    flex: 1;
    min-width: 0;
}

.rnpp-search-cat {
    display: block;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rnpp-pink, #ce487a);
    margin-bottom: 2px;
}

.rnpp-search-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--rnpp-ink, #1a1325);
    line-height: 1.35;
    letter-spacing: -0.005em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rnpp-search-arrow {
    color: var(--rnpp-ink-mute, #8a8195);
    flex-shrink: 0;
    transition: transform 0.2s var(--rnpp-ease, cubic-bezier(0.22,1,0.36,1)), color 0.2s var(--rnpp-ease, cubic-bezier(0.22,1,0.36,1));
}

.rnpp-search-link:hover .rnpp-search-arrow,
.rnpp-search-link.is-focused .rnpp-search-arrow {
    color: var(--rnpp-purple, #471f6e);
    transform: translateX(2px);
}

@media (max-width: 720px) {
    /* Trigger goes full-width on phones (since it's usually inside the mobile menu drawer) */
    .rnpp-search,
    .rnpp-search-wrapper {
        display: block !important;
        width: 100% !important;
    }
    .rnpp-search-trigger,
    .rnpp-search button.rnpp-search-trigger {
        display: flex !important;
        width: 100% !important;
        justify-content: flex-start !important;
        padding: 6px 18px 6px 6px !important;
        font-size: 13px !important;
    }
    .rnpp-search-trigger:not(:has(.rnpp-search-trigger-label)) {
        width: auto !important;
        padding: 4px !important;
    }

    /* On phones, anchor the panel to viewport instead of trigger to avoid clipping */
    .rnpp-search-panel {
        position: fixed;
        top: auto;
        right: 12px;
        left: 12px;
        width: auto;
        max-width: none;
        margin-top: 8px;
        padding: 12px;
    }

    /* Compact search bar on mobile */
    .rnpp-search-bar { padding: 4px 12px; gap: 8px; }
    .rnpp-search-input,
    .rnpp-search-bar input.rnpp-search-input {
        font-size: 16px !important;
        padding: 4px 0 !important;
    }
    .rnpp-search-bar-icon { width: 14px; height: 14px; }
    .rnpp-search-clear,
    button.rnpp-search-clear { width: 20px !important; height: 20px !important; }
    .rnpp-search-clear svg { width: 12px; height: 12px; }
    .rnpp-search-thumb { width: 36px; height: 36px; }
    .rnpp-search-results { max-height: 60vh; }
}

/* ==========================================================================
   Mail modal — opens from the "Send Email" CTA on the single product page
   ========================================================================== */

.rnpp-mail-modal {
    position: fixed;
    inset: 0;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.rnpp-mail-modal[hidden] { display: none; }

.rnpp-mail-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 5, 12, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: rnpp-mail-fade 0.2s var(--rnpp-ease);
}

.rnpp-mail-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(26,19,37,0.20);
    padding: 28px 28px 24px;
    animation: rnpp-mail-pop 0.25s var(--rnpp-ease);
}

@keyframes rnpp-mail-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes rnpp-mail-pop {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.rnpp-mail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.rnpp-mail-header .rnpp-section-eyebrow {
    margin-bottom: 8px !important;
}

.rnpp-mail-title {
    font-size: 22px !important;
    font-weight: 500 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.2 !important;
    color: var(--rnpp-ink) !important;
    margin: 0 !important;
    text-transform: none !important;
}

.rnpp-mail-close,
button.rnpp-mail-close {
    /* Reset Flatsome */
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    min-height: 0 !important;
    min-width: 0 !important;
    margin: 0 !important;

    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    border: 1px solid var(--rnpp-line) !important;
    background: #fff !important;
    color: var(--rnpp-ink) !important;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 !important;
    box-shadow: none !important;
    transition: background 0.2s var(--rnpp-ease), border-color 0.2s var(--rnpp-ease);
}

.rnpp-mail-close:hover {
    background: var(--rnpp-bg-cream) !important;
    border-color: var(--rnpp-purple) !important;
}

.rnpp-mail-intro {
    font-size: 13px;
    line-height: 1.65;
    color: var(--rnpp-ink-soft);
    margin: 0 0 20px;
    padding: 16px 18px;
    background: var(--rnpp-bg-cream);
    border-radius: 10px;
}

.rnpp-mail-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rnpp-mail-card {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid var(--rnpp-line);
    border-radius: 12px;
    transition: border-color 0.25s var(--rnpp-ease), box-shadow 0.25s var(--rnpp-ease);
}

.rnpp-mail-card:hover {
    border-color: rgba(71,31,110,0.18);
    box-shadow: 0 4px 12px rgba(26,19,37,0.04);
}

.rnpp-mail-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--rnpp-bg-cream);
    color: var(--rnpp-purple);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rnpp-mail-icon svg { display: block; }

.rnpp-mail-card-body { min-width: 0; }

.rnpp-mail-key {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rnpp-ink-mute);
    margin-bottom: 6px;
}

.rnpp-mail-note {
    font-size: 12.5px;
    color: var(--rnpp-ink-soft);
    line-height: 1.6;
    margin: 0 0 10px !important;
}

.rnpp-mail-emails {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rnpp-mail-emails li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rnpp-mail-emails li::before { content: none !important; }

.rnpp-mail-link {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 12px;
    background: #faf8f5;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--rnpp-ink) !important;
    text-decoration: none !important;
    transition: background 0.2s var(--rnpp-ease), color 0.2s var(--rnpp-ease);
    min-width: 0;
}

.rnpp-mail-link:hover {
    background: var(--rnpp-purple);
    color: #fff !important;
}

.rnpp-mail-link span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.rnpp-mail-link svg { flex-shrink: 0; opacity: 0.5; transition: opacity 0.2s var(--rnpp-ease); }
.rnpp-mail-link:hover svg { opacity: 1; }

.rnpp-mail-copy,
button.rnpp-mail-copy {
    /* Reset Flatsome */
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    min-height: 0 !important;
    min-width: 0 !important;
    margin: 0 !important;

    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    border: 1px solid var(--rnpp-line) !important;
    background: #fff !important;
    color: var(--rnpp-ink-mute) !important;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 !important;
    box-shadow: none !important;
    transition: all 0.2s var(--rnpp-ease);
    position: relative;
}

.rnpp-mail-copy:hover {
    border-color: var(--rnpp-purple) !important;
    color: var(--rnpp-purple) !important;
}

.rnpp-mail-copy.is-copied {
    border-color: var(--rnpp-purple) !important;
    background: var(--rnpp-purple) !important;
    color: #fff !important;
}

/* Body scroll lock */
body.rnpp-mail-open { overflow: hidden; }

@media (max-width: 560px) {
    .rnpp-mail-modal { padding: 16px; }
    .rnpp-mail-panel { padding: 22px 20px 18px; border-radius: 14px; }
    .rnpp-mail-title { font-size: 18px !important; }
    .rnpp-mail-card { padding: 14px 16px; gap: 12px; grid-template-columns: 32px minmax(0, 1fr); }
    .rnpp-mail-icon { width: 32px; height: 32px; }
    .rnpp-mail-icon svg { width: 18px; height: 18px; }
    .rnpp-mail-link { padding: 8px 10px; font-size: 12.5px; }
    .rnpp-mail-copy,
    button.rnpp-mail-copy { width: 30px !important; height: 30px !important; }
}

/* ==========================================================================
   Upholstery — global palette + properties section
   ========================================================================== */

.rnpp-upholstery {
    margin-bottom: 80px;
}

.rnpp-upholstery .rnpp-section-head {
    text-align: center;
    margin: 0 auto 40px;
    max-width: 700px;
}

.rnpp-section-sub {
    margin-top: 16px !important;
    font-size: 14px;
    line-height: 1.7;
    color: var(--rnpp-ink-soft);
}

/* Color palette grid — 7 across on desktop, responsive */
.rnpp-uph-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 56px;
}

.rnpp-uph-item {
    text-align: center;
}

.rnpp-uph-swatch {
    aspect-ratio: 1;
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 12px rgba(26,19,37,0.06);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s var(--rnpp-ease), box-shadow 0.3s var(--rnpp-ease);
    margin-bottom: 14px;
}

.rnpp-uph-item:hover .rnpp-uph-swatch {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(26,19,37,0.12);
}

.rnpp-uph-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.rnpp-uph-code {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rnpp-ink-mute);
    padding: 3px 8px;
    border: 1px solid var(--rnpp-line);
    border-radius: 4px;
    align-self: center;
}

.rnpp-uph-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--rnpp-ink);
    letter-spacing: -0.005em;
}

@media (max-width: 1180px) {
    .rnpp-uph-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
}
@media (max-width: 900px) {
    .rnpp-uph-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
}
@media (max-width: 560px) {
    .rnpp-uph-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
    .rnpp-uph-name { font-size: 12px; }
    .rnpp-uph-code { font-size: 9px; padding: 2px 6px; }
}

/* Properties — brand-colored block inside Upholstery section */
.rnpp-uph-props {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding: 32px 36px;
    background: linear-gradient(135deg, #2a1340 0%, #471f6e 60%, #6e2a72 100%);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}

/* Subtle radial highlight */
.rnpp-uph-props::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(206,72,122,0.30), rgba(206,72,122,0) 60%);
    pointer-events: none;
}

.rnpp-uph-prop {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.rnpp-uph-prop-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
}

.rnpp-uph-prop-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.rnpp-uph-prop-body {
    min-width: 0;
}

.rnpp-uph-prop-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.005em;
    margin-bottom: 4px;
}

.rnpp-uph-prop-desc {
    display: block;
    font-size: 12.5px;
    color: rgba(255,255,255,0.72);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .rnpp-uph-props { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 24px; gap: 20px; }
}
@media (max-width: 560px) {
    .rnpp-uph-props { grid-template-columns: minmax(0, 1fr); padding: 20px; gap: 16px; }
    .rnpp-uph-prop-icon { width: 32px; height: 32px; }
    .rnpp-uph-prop-icon svg { width: 22px; height: 22px; }
    .rnpp-uph-prop-label { font-size: 13px; }
    .rnpp-uph-prop-desc { font-size: 12px; }
}