/* Main container */
.dcashop-details-holder {
    margin: 20px 0;
}
.dcashop-details-holder h3 {
    border-bottom: 2px solid rgba(0, 0, 0, .1);
    padding-bottom: 7px;
    margin-bottom: 15px;
}

/* Final score line */
.dcashop-final-score-line {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
.dcashop-final-score-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
}
.dcashop-score-box {
    background: #494a48;
    border-radius: 4px;
    color: #fff;
    margin-right: 1rem;
    padding: .5rem .5rem .25rem;
}
.dcashop-score-max {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}
.dcashop-score-value {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
}
/* Horizontal container for sub-scores */
.dcashop-circle-scores {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

/* Each circle container */
.circle-score {
    display: inline-block;
    text-align: center;
}

/* Label below each circle */
.circle-label {
    margin-top: 5px;
    font-size: 14px;
}

/* Two-column container for pros/cons */
.dcashop-pros-cons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
@media screen and (max-width: 800px) {
.dcashop-pros-cons {
flex-direction: column;
}
}
/* Strengths & Weaknesses column */
@media screen and (min-width: 800px) {
    .dcashop-strengths, .dcashop-weaknesses {
    width: 50%;
}
}
.dcashop-strengths h4, .dcashop-weaknesses h4 {
    color: #1f1f1e;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

/* Lists */
.dcashop-strengths ul, .dcashop-weaknesses ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.dcashop-pros-cons li {
    display: inline-flex;
    font-size: 14px;
    font-weight: 400;
    margin: 0px !important;
    padding: 8px 0;
}
.dcashop-pros-cons li::before {
    padding-left: 10px;
}
/* Pros (Strengths) check mark */
.dcashop-strengths ul li::before {
    content: "✔";
    color: green;
    margin-right: 6px;
    font-weight: bold;
}

/* Cons (Weaknesses) X mark */
.dcashop-weaknesses ul li::before {
    content: "✖";
    color: red;
    margin-right: 6px;
    font-weight: bold;
}
