.hifi-comments-shortcode-wrap {
    width: 100%;
    max-width: 100%;
    margin: 45px 0;
    padding: 34px;
    background: #f8f7f4;
    border: 1px solid #e6e1d8;
    border-radius: 22px;
}

.hifi-comments-header {
    margin-bottom: 28px;
    text-align: center;
}

.hifi-comments-header h3 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 800;
    color: #151515;
}

.hifi-comments-header p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

.hifi-comment {
    list-style: none;
    margin: 0 0 18px;
}

.hifi-comment-card {
    display: flex;
    gap: 20px;
    padding: 22px;
    background: #fff;
    border: 1px solid #e9e4dc;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.045);
}

.hifi-comment-votes {
    min-width: 54px;
    text-align: center;
    background: #111;
    border-radius: 16px;
    padding: 10px 6px;
    align-self: flex-start;
}

.hifi-vote-btn {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    color: #c49b54;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    transition: transform .15s ease, color .15s ease;
}

.hifi-vote-btn:hover {
    transform: scale(1.2);
    color: #e0b96f;
}

.hifi-vote-score {
    display: block;
    margin: 8px 0;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
}

.hifi-comment-body {
    flex: 1;
}

.hifi-comment-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.hifi-comment-meta strong {
    font-size: 16px;
    color: #111;
}

.hifi-comment-meta span {
    font-size: 13px;
    color: #888;
}

.hifi-comment-text {
    color: #333;
    font-size: 16px;
    line-height: 1.65;
}

.hifi-comment-text p {
    margin: 0 0 12px;
}

.hifi-comment-actions {
    margin-top: 12px;
}

.hifi-comment-actions a {
    color: #c49b54;
    font-weight: 700;
    text-decoration: none;
}

.hifi-comment-actions a:hover {
    text-decoration: underline;
}

.hifi-comment-awaiting {
    padding: 10px 12px;
    background: #fff4dc;
    border-radius: 10px;
    font-size: 14px;
    color: #7a5a1d;
}

.comment-list,
.comments-area ol,
.comments-area ul {
    padding-left: 0;
}

.comment-reply-title,
.comments-title {
    font-size: 24px;
    font-weight: 800;
    color: #111;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    border: 1px solid #ded8ce;
    border-radius: 12px;
    padding: 13px 15px;
    font-size: 15px;
    background: #fff;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #c49b54;
    box-shadow: 0 0 0 3px rgba(196,155,84,.14);
}

.comment-form .submit {
    width: auto;
    padding: 13px 26px;
    border: 0;
    border-radius: 999px;
    background: #c49b54;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: all .18s ease;
}

.comment-form .submit:hover {
    background: #b48942;
    transform: translateY(-2px);
}

.hifi-vote-btn.hifi-voted {
    color: #fff;
}

@media (max-width: 700px) {
    .hifi-comments-shortcode-wrap {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .hifi-comment-card {
        gap: 14px;
        padding: 16px;
    }

    .hifi-comment-votes {
        min-width: 46px;
    }

    .hifi-comments-header h3 {
        font-size: 23px;
    }
}