.prp-outer-container {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    background: #fff;
    max-width: 900px;
    margin: 40px auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}



.prp-badge {
    display: inline-block; color: #fff; padding: 6px 15px; font-size: 13px;
    font-weight: 700; text-transform: uppercase; border-radius: 4px;
    margin-bottom: 15px; letter-spacing: 0.5px; box-shadow: 2px 2px 0 rgba(0,0,0,0.1); 
}

.prp-main-title { font-size: 32px; font-weight: 800; margin: 0 0 25px 0; line-height: 1.2; color: #000; }
.prp-section-title { font-size: 18px; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; margin: 0 0 15px 0; color: #000; }

.prp-main-box { background: #fff; }
.prp-box-content { display: flex; gap: 40px; align-items: flex-start; }
.prp-box-left { flex: 1; }
.prp-box-right { flex: 0 0 300px; text-align: center; }

.prp-check-list { list-style: none !important; padding: 0; margin: 0; }
.prp-check-list li {
    position: relative; padding-left: 20px; margin-bottom: 10px;
    font-size: 16px; line-height: 1.5; color: #444; list-style-type: none !important;
}
.prp-check-list li::before {
    content: var(--prp-list-icon, "•"); position: absolute; left: 0;
    font-size: 1.2em; color: #888; line-height: 1;
}

.prp-image-container img { max-width: 100%; height: auto; max-height: 250px; object-fit: contain; margin-bottom: 15px; }
.prp-price { font-weight: 700; font-size: 18px; margin-bottom: 12px; color: #222; }

.prp-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: #000; color: #fff !important; text-decoration: none !important;
    padding: 12px 20px; border-radius: 4px; font-weight: 600; font-size: 15px;
    width: 100%; box-sizing: border-box; transition: background 0.2s;
}
.prp-btn:hover { background: #333; }
.prp-icon { width: 16px; height: 16px; }

.prp-desc-section { margin-top: 30px; margin-bottom: 30px; }
.prp-desc-heading { font-size: 26px; font-weight: 700; margin-bottom: 15px; color: #000; }
.prp-desc-text { font-size: 16px; line-height: 1.6; color: #333; }

.prp-hidden { display: none; }
.prp-toggle-btn {
    background: none; border: 2px solid #000; color: #000;
    padding: 10px 20px; font-weight: 700; cursor: pointer;
    border-radius: 4px; display: inline-flex; align-items: center; gap: 8px;
    margin-bottom: 15px; text-transform: uppercase; font-size: 13px; transition: 0.2s;
}
.prp-toggle-btn:hover { background: #000; color: #fff; }
.prp-arrow { transition: transform 0.3s; font-size: 10px; }
.prp-toggle-btn.active .prp-arrow { transform: rotate(180deg); }

.prp-procons-grid { display: flex; border-radius: 4px; overflow: hidden; margin-top: 30px; border: 1px solid #f0f0f0; }
.prp-pc-col { flex: 1; padding: 30px; }
.prp-pros { background-color: #f6fbf7; border-right: 1px solid #f0f0f0; }
.prp-cons { background-color: #fdf5f5; }
.prp-pc-head { margin: 0 0 15px 0; text-transform: uppercase; font-size: 14px; font-weight: 700; letter-spacing: 0.5px; }
.prp-pros .prp-pc-head { color: #2e7d32; }
.prp-cons .prp-pc-head { color: #c62828; }

.prp-pc-col ul { list-style: none !important; padding: 0; margin: 0; }
.prp-pc-col li {
    list-style-type: none !important; position: relative;
    padding-left: 24px; margin-bottom: 10px; font-size: 15px; color: #444;
}
.prp-pros li::before {
    content: ""; position: absolute; left: 0; top: 5px; width: 5px; height: 9px;
    border: solid #2e7d32; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.prp-cons li::before {
    content: "×"; position: absolute; left: 0; top: -2px; font-size: 20px; color: #c62828; line-height: 1;
}

@media (max-width: 768px) {
    .prp-outer-container { padding: 20px; }
    .prp-box-content { flex-direction: column-reverse; gap: 20px; }
    .prp-box-right { flex: auto; width: 100%; border-bottom: 1px solid #eee; padding-bottom: 20px; margin-bottom: 20px; }
    .prp-procons-grid { flex-direction: column; }
    .prp-pros { border-right: none; border-bottom: 1px solid #f0f0f0; }
    .prp-main-title { font-size: 26px; }
}