/* WRAPPER */
.pcb-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* MAIN BOX (ARABIC STYLE) */
.pcb-shair {
    background: #fdfaf6;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid #e6d3a3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
}

/* TOP DECOR LINE */
.pcb-shair::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(to right, #c9a646, #e8d9a8, #c9a646);
    border-radius: 10px;
}

/* POETRY TEXT */
.pcb-shair p {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 18px;
    color: #2c2c2c;
    text-align: center;
    font-family: "Noto Nastaliq Urdu", serif;
}

/* ACTION BAR */
.pcb-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px dashed #e6d3a3;
}

/* BUTTON STYLE */
.pcb-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fffaf0;
    border: 1px solid #e6d3a3;
    padding: 6px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    color: #5a4632;
    font-weight: 500;
    transition: all 0.25s ease;
}

/* REMOVE ICON DUPLICATION */
.pcb-btn::before {
    content: none !important;
}

/* HOVER (GOLDISH EFFECT) */
.pcb-btn:hover {
    background: #f3e6c4;
    border-color: #c9a646;
    color: #3d2f1f;
}

/* COUNT BADGE */
.pcb-count {
    background: #ffffff;
    border: 1px solid #e6d3a3;
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #5a4632;
}

/* CLICK EFFECT */
.pcb-btn:active {
    transform: scale(0.95);
}