/* =============================================================
   ready-pcs.css  —  Ready PCs. Customize Your Way.
   ============================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #f5f6fa;
    --surface: #ffffff;
    --border: #e8eaed;
    --primary: #2563eb;
    --primary-h: #1d4ed8;
    --primary-lt: rgba(37, 99, 235, 0.09);
    --text-900: #0f172a;
    --text-700: #334155;
    --text-500: #64748b;
    --text-400: #94a3b8;
    --green: #16a34a;
    --orange: #ea580c;
    --purple: #7c3aed;
    --red: #dc2626;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.09);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.13);
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --font: "Lato", sans-serif;
    --tr: 0.18s ease;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text-900);
}

.rpc-page {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* =============================================================
   HERO
   ============================================================= */
.rpc-hero {
    background: linear-gradient(
        130deg,
        #e8f0fe 0%,
        #f0e9ff 40%,
        #fce4ec 70%,
        #e8f5e9 100%
    );
    border-radius: var(--radius-xl);
    margin: 24px 0 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    overflow: hidden;
    min-height: 180px;
}

/* subtle sparkle dots */
.rpc-hero::before {
    content: "+ + + + + + + + + + + + + + + + + + + + +";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 14px;
    color: rgba(37, 99, 235, 0.12);
    letter-spacing: 28px;
    line-height: 32px;
    white-space: pre-wrap;
    word-break: break-all;
    pointer-events: none;
}

.rpc-hero-content {
    position: relative;
    z-index: 1;
}

.rpc-hero-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-900);
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.rpc-hero-sub {
    font-size: 14px;
    color: var(--text-500);
    margin-bottom: 10px;
}

.rpc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    text-decoration: none;
    transition:
        background var(--tr),
        box-shadow var(--tr);
}

.rpc-btn-primary:hover {
    background: var(--primary-h);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
    color: #fff;
}

.rpc-hero-img {
    position: relative;
    flex-shrink: 0;
    width: 220px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rpc-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 8px 24px rgba(100, 60, 200, 0.3));
}

.rpc-hero-glow {
    position: absolute;
    inset: 10px;
    background: radial-gradient(
        circle,
        rgba(139, 92, 246, 0.25) 0%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(20px);
}

/* =============================================================
   TABS
   ============================================================= */
.rpc-tabs-wrap {
    margin: 28px 0 20px;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.rpc-tabs-wrap::-webkit-scrollbar {
    height: 6px;
}

.rpc-tabs-wrap::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}

.rpc-tabs {
    display: flex;
    gap: 6px;
    min-width: max-content;
    /* background: var(--surface); */
    /* border: 1px solid var(--border); */
    border-radius: var(--radius-xl);
    padding: 6px;
    width: fit-content;
}

.rpc-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;

    background: #f1f5f9; /* default hover-like background */
    border: 1px solid transparent;

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

    font-size: 13.5px;
    font-weight: 600;

    font-family: var(--font);
    color: var(--text-700);

    cursor: pointer;
    white-space: nowrap;

    transition: all .25s ease;
}

.rpc-tab svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.rpc-tab:hover {
    background: #f1f5f9; /* same default cement color */
    color: var(--text-700);

    font-weight: 700;

    transform: scale(1.05);

    border: 1px solid #dbe2ea;

    box-shadow: 0 4px 12px rgba(15,23,42,.08);
}
.rpc-tab.active {
    background: var(--primary-lt);
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 0 0 1.5px rgba(37, 99, 235, 0.2);
}

.rpc-tab.active svg {
    opacity: 1;
}

/* =============================================================
   GRID
   ============================================================= */
.rpc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width: 1100px) {
    .rpc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .rpc-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================================
   CARD
   ============================================================= */
.rpc-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: row;
    transition:
        box-shadow var(--tr),
        border-color var(--tr),
        transform var(--tr);
}

.rpc-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: #c7d2fe;
    transform: translateY(-2px);
}

/* Badge */
.rpc-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 999px;
    z-index: 5;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.rpc-badge--orange {
    background: #ff6b1a;
    color: #fff;
}

.rpc-badge--green {
    background: var(--green);
    color: #fff;
}

.rpc-badge--purple {
    background: var(--purple);
    color: #fff;
}

.rpc-badge--blue {
    background: var(--primary);
    color: #fff;
}

/* Image — left column */
.rpc-card-img {
    width: 150px;
    flex-shrink: 0;
    /* background: linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.rpc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.rpc-card:hover .rpc-card-img img {
    transform: scale(1.06);
}

.rpc-card-img.rpc-img-placeholder {
    min-height: 160px;
}

/* .rpc-card-img.rpc-img-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(99, 102, 241, .5) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(139, 92, 246, .4) 0%, transparent 50%);
} */
.rpc-card-img {
    width: 145px;
    min-width: 145px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.rpc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Body — right column */
.rpc-card-body {
    flex: 1;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
}

.rpc-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.rpc-card-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-900);
    line-height: 1.2;
}

.rpc-card-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    flex-shrink: 0;
}

.rpc-rating-val {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-900);
}

.rpc-rating-cnt {
    font-size: 11px;
    color: var(--text-400);
}

/* Specs row */
.rpc-specs-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.rpc-spec {
    font-size: 10.5px;
    font-weight: 500;
    color: var(--text-500);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1px 6px;
}

/* Tag row */
.rpc-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.rpc-tag {
    font-size: 10.5px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
}

.rpc-tag--blue {
    background: #dbeafe;
    color: #1d4ed8;
}

.rpc-tag--purple {
    background: #ede9fe;
    color: #6d28d9;
}

.rpc-tag--green {
    background: #dcfce7;
    color: #15803d;
}

.rpc-tag--teal {
    background: #ccfbf1;
    color: #0f766e;
}

.rpc-tag--orange {
    background: #ffedd5;
    color: #c2410c;
}

.rpc-tag--pink {
    background: #fce7f3;
    color: #be185d;
}

.rpc-tag--red {
    background: #fee2e2;
    color: #dc2626;
}

.rpc-tag--gray {
    background: #f1f5f9;
    color: #475569;
}

/* FPS row */
.rpc-fps-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rpc-fps-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-500);
    line-height: 1.2;
    white-space: nowrap;
    min-width: 34px;
}

.rpc-fps-label small {
    font-weight: 400;
    color: var(--text-400);
}

.rpc-fps-bar-wrap {
    flex: 1;
    height: 6px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
}

.rpc-fps-bar {
    height: 100%;
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 999px;
    transition: width 0.6s ease;
}

.rpc-fps-val {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-700);
    white-space: nowrap;
    min-width: 28px;
    text-align: right;
}

/* Card footer */
/* align footer properly */
/* .rpc-card-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-top:auto;
    flex-wrap:nowrap;
} */

/* price styling */
.rpc-price {
    font-size: 26px;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
    white-space: nowrap;
    min-width: 85px;
}

/* buttons alignment */
.rpc-card-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}
.rpc-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.3px;
}

.rpc-card-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.rpc-btn-view {
    padding: 7px 12px;
    background: #fff;
    border: 1px solid #dbe2ea;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 600;
    font-family: var(--font);
    color: var(--text-500);
    cursor: pointer;
    transition: all var(--tr);
}

.rpc-btn-view:hover {
    color: var(--primary);
}

.rpc-btn-customize {
    padding: 7px 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 12.5px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    white-space: nowrap;
    transition:
        background var(--tr),
        box-shadow var(--tr);
}

.rpc-btn-customize:hover {
    background: var(--primary-h);
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.35);
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 900px) {
    .rpc-hero {
        padding: 28px 24px;
        flex-direction: column;
    }

    .rpc-hero-img {
        display: none;
    }

    .rpc-hero-title {
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .rpc-card {
        flex-direction: column;
    }

    .rpc-card-img {
        width: 100%;
        height: 160px;
    }

    .rpc-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

.rpc-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    border: 1px solid #cbd5e1;
    border-radius: 10px;

    background: #fff;
    color: #2563eb;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
.rpc-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* SAME IMAGE SIZE + PRICE ALIGNMENT */
.rpc-card {
    border: 1px solid #e5e7eb;
    min-height: 145px;
}

/* first card blue border */
/* .rpc-card:first-child {
    border: 2px solid #2563eb;
} */

/* image sizing */
.rpc-card-img {
    width: 120px;
    min-width: 120px;
    height: 145px;
    padding: 8px;
    background: #fff;
}

.rpc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* align footer properly */
.rpc-card-footer {
    margin-top: auto;
    align-items: center;
}

/* price styling */
/* FINAL CARD FOOTER FIX */
/* smooth sticky spacing */
/* REMOVE BIG GAP */
.rpc-customize-section{
    padding-bottom:8px;
    margin-top:16px;
}

.rpc-fixed-footer{
    margin:8px auto 0;
}

.rpc-customize-top {
    display: grid;
    grid-template-columns: 1.1fr 2fr;
    gap: 20px;
}

.rpc-preview-card,
.rpc-components-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px;
}

.rpc-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.rpc-preview-header h3,
.rpc-components-card h3 {
    font-size: 16px;
    font-weight: 700;
}
/* WARNING CARD FULL WIDTH */
/* WARNING PARALLEL TO COOLING */
.rpc-warning-box{
    grid-column:auto;
    margin-top:0;
}
.rpc-compatible {
    background: #dcfce7;
    color: #15803d;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.rpc-preview-content {
    display: flex;
    gap: 15px;
}

.rpc-preview-content img {
    width: 230px;
    height: 180px;
    object-fit: contain;
    border-radius: 12px;
    background: #f8fafc;
}

.rpc-summary-box {
    flex: 1;
}

.rpc-summary-box h4 {
    margin-bottom: 12px;
}

.rpc-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
}

.rpc-summary-box a {
    color: #2563eb;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.rpc-component-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 15px;
}

.rpc-component-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rpc-component-item button {
    border: none;
    background: #eff6ff;
    color: #2563eb;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.rpc-bottom-bar {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    gap: 16px;
}

.rpc-price-box,
.rpc-cart-btn,
.rpc-secondary-btn {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px;
}

.rpc-price-box h2 {
    color: #2563eb;
    margin-top: 5px;
}

.rpc-cart-btn {
    background: #2563eb;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 700;
}

.rpc-secondary-btn {
    font-size: 15px;
    font-weight: 600;
    background: #fff;
}

@media (max-width: 991px) {
    .rpc-customize-top {
        grid-template-columns: 1fr;
    }

    .rpc-bottom-bar {
        grid-template-columns: 1fr;
    }

    .rpc-preview-content {
        flex-direction: column;
    }

    .rpc-preview-content img {
        width: 100%;
    }

    .rpc-component-grid {
        grid-template-columns: 1fr;
    }
}

/* REDUCE CUSTOMIZE SECTION SIZE */
.rpc-preview-card,
.rpc-components-card {
    padding: 12px;
}

.rpc-preview-content {
    gap: 10px;
}

.rpc-preview-content img {
    width: 160px;
    height: 120px;
}

.rpc-summary-box h4 {
    font-size: 14px;
    margin-bottom: 8px;
}

.rpc-summary-item {
    margin-bottom: 6px;
    font-size: 12px;
}

.rpc-component-grid {
    gap: 10px;
    margin-top: 10px;
}

.rpc-component-item {
    padding: 10px 14px;
    min-height: 56px;
}

.rpc-component-item span {
    font-size: 14px;
}

.rpc-component-item button {
    padding: 5px 10px;
    font-size: 11px;
}

.rpc-bottom-bar {
    gap: 10px;
    margin-top: 12px;
}

.rpc-price-box,
.rpc-cart-btn,
.rpc-secondary-btn {
    padding: 14px;
}

/* ULTRA COMPACT BOTTOM BAR */
.rpc-bottom-bar {
    gap: 6px;
}

.rpc-price-box,
.rpc-cart-btn,
.rpc-secondary-btn {
    padding: 6px 12px !important;
    min-height: 52px !important;
    border-radius: 10px;
}

.rpc-price-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rpc-price-box h2 {
    font-size: 16px !important;
    margin-top: 0;
    line-height: 1;
}

.rpc-price-box small {
    font-size: 10px;
    margin-bottom: 4px;
}

.rpc-cart-btn,
.rpc-secondary-btn {
    font-size: 13px;
    font-weight: 600;
}
/* EXACT BUILD SUMMARY STYLE */
.rpc-summary-box {
    width: 100%;
}

.rpc-summary-box h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
}

.rpc-summary-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rpc-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #edf0f5;
    border-radius: 10px;
    padding: 10px 12px;
    background: #fff;
}

.rpc-summary-left {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 85px;
}

.rpc-summary-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef4ff;
    font-size: 10px;
}

.rpc-summary-label {
    font-size: 12px;
    font-weight: 700;
    color: #111827;
}

.rpc-summary-value {
    font-size: 11px;
    color: #6b7280;
    font-weight: 600;
    text-align: right;
}

.rpc-specs-btn {
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #edf0f5;
    border-radius: 10px;
    padding: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #2563eb;
    background: #fff;
    text-decoration: none;
}
/* BUILD SUMMARY TOP */
/* EXACT CUSTOMIZE COMPONENTS CARD */
.rpc-components-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.rpc-components-head h3 {
    font-size: 14px;
    font-weight: 700;
}

.rpc-components-head a {
    font-size: 11px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.rpc-component-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.rpc-component-item {
    border: 1px solid #edf0f5;
    border-radius: 10px;
    padding: 10px 14px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
}

.rpc-component-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rpc-component-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.rpc-component-left h5 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #111827;
}

.rpc-component-left p {
    font-size: 11px;
    color: #6b7280;
    margin: 0;
}

.rpc-component-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rpc-component-actions button {
    border: none;
    background: #eef4ff;
    color: #2563eb;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
}

.rpc-component-actions span {
    color: #9ca3af;
    font-size: 16px;
    font-weight: 700;
}

/* EXACT WARNING CARD */
.rpc-warning-box {
    margin-top: 10px;
    border: 1px solid #f7dfac;
    background: #fffaf0;
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
}

.rpc-warning-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff3cd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.rpc-warning-box p {
    margin: 0;
    font-size: 11px;
    font-weight: 600;
    color: #9a6b16;
    line-height: 1.3;
}

/* GLOBAL STICKY FOOTER */
.rpc-fixed-footer {
    position: sticky;
    bottom: 12px;
    z-index: 999;

    max-width: 1300px;

    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;

    padding: 14px 18px;

    display: grid;
    grid-template-columns: 220px 180px 1fr 220px 220px;
    gap: 12px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.rpc-footer-price,
.rpc-footer-save,
.rpc-footer-cart,
.rpc-footer-btn {
    height: 52px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
}

.rpc-footer-price,
.rpc-footer-save {
    padding: 8px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rpc-footer-price span,
.rpc-footer-save span {
    font-size: 10px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 2px;
}

.rpc-footer-price h2 {
    font-size: 18px;
    color: #2563eb;
    line-height: 1;
    font-weight: 800;
}

.rpc-save-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rpc-save-row h3 {
    font-size: 16px;
    color: #16a34a;
    font-weight: 800;
    line-height: 1;
}

.rpc-save-row small {
    background: #dcfce7;
    color: #15803d;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
}

.rpc-footer-cart {
    background: #2563eb;
    color: #fff;
    border: none;

    font-size: 14px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.rpc-footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    font-size: 13px;
    font-weight: 600;
    color: #111827;
}

@media (max-width: 1100px) {
    .rpc-fixed-footer {
        grid-template-columns: 1fr 1fr;
    }

    .rpc-footer-cart {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .rpc-fixed-footer {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .rpc-footer-cart {
        grid-column: auto;
    }
}
/* PRICE BELOW IMAGE */
.rpc-card{
    position: relative;
}

.rpc-price{
    position: absolute;
    left: 22px;
    bottom: 18px;

    font-size: 18px;
    font-weight: 800;
    color: #2563eb;
    z-index: 10;
}

/* give image side some bottom space */
.rpc-card-img{
    padding-bottom: 70px;
}
/* HIDE DETAILS SECTION INITIALLY */
.rpc-customize-section{
    display: none;
}
/* HIDE CHANGE BUTTONS INITIALLY */
.rpc-component-actions{
    display: none;
}
