/* =========================================================================
   Sekcja recenzji produktu (productcomments) - design abcweb.
   Markup: themes/abcweb/modules/productcomments/views/templates/hook/*.tpl
   UWAGA na kaskade (ustalone getComputedStyle w selenium):
   - ten plik laduje sie PRZED theme.css hummingbirda, wiec remis specyficznosci
     przegrywa kolejnoscia -> selektory kolidujace z hummingbirdem prefiksujemy
     .page-product (a naglowek sekcji az do 1-2-0);
   - custom.css ustawia h2/.h2 {24px/400} - typografia tytulu musi byc jawna;
   - root font-size sklepu = 14px - wymiary komponentu w px, zeby byly 1:1
     z projektem (16px-owa skala), a nie pochodna roota.
   ========================================================================= */

.abc-reviews {
    margin: 48px 0 32px;
}

/* ---- naglowek sekcji: tytul + podsumowanie oceny + CTA ------------------
   1-2-0: bije theme.css .page-product #product-comments-list-header (1-1-0,
   padding:1rem 0 0; margin-bottom:1rem) i CSS modulu #...-header (1-0-0). */
.page-product .abc-reviews #product-comments-list-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 0 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--alfa-gold, #b3924a);
    scroll-margin-top: 120px; /* kotwica z gwiazdek pod tytulem (sticky header) */
}

/* typografia jawna - custom.css h2/.h2 {font-size:24px;font-weight:400}
   wygrywa z .section-title (600) kolejnoscia; 0-2-0 rozstrzyga na nasze */
.abc-reviews .abc-reviews__title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--bs-gray-800, #343a40);
}

.abc-reviews .abc-reviews__count {
    font-size: 18px;
    font-weight: 500;
    color: var(--bs-gray-600, #6c757d);
}

.abc-reviews__summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

.abc-reviews__average {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    color: var(--alfa-black, #000);
}

.abc-reviews__average-max {
    font-size: 14px;
    font-weight: 500;
    color: var(--bs-gray-600, #6c757d);
    margin-left: 2px;
}

/* CTA: mniejszy wariant przycisku sklepu (#product .btn wymusza 1.25rem/uppercase);
   px, bo --bs-btn-font-size w rem liczyloby sie od 14px roota */
#product .abc-reviews__cta {
    --bs-btn-padding-x: 1.6em;
    --bs-btn-padding-y: 0.7em;
    --bs-btn-font-size: 14px;
    --bs-btn-font-weight: 600;
    letter-spacing: 0.04em;
}

/* ---- gwiazdki: przefarbowanie na zloto sklepu (SVG zamiast sprite PNG) ---
   background-image z !important przebija !important hummingbirda (wyzsza
   specyficznosc); background-position zostaje z modulu/inline (gwiazdki
   czesciowe croppuja tlo przez width + position, background-size musi byc staly) */

.abc-reviews .star-content div.star,
.abc-product-rating .star-content div.star,
.product-comment-modal .star-content div.star {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ded8ca' d='M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E") !important;
    background-size: 20px 20px;
}

.abc-reviews .star-content div.star-on,
.abc-reviews .star-content div.star-hover,
.abc-product-rating .star-content div.star-on,
.abc-product-rating .star-content div.star-hover,
.product-comment-modal .star-content div.star-on,
.product-comment-modal .star-content div.star-hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23b3924a' d='M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E") !important;
    background-size: 20px 20px;
    /* CSS modulu celuje w zloty kafel sprite'a PNG (-24px 0) - pojedynczy SVG
       wypada wtedy poza 20px boks i nic sie nie rysuje. Bez !important, zeby
       nie nadpisac inline background-position croppingu gwiazdek czesciowych
       (plugin ustawia go tylko na div.star, tu bezpiecznie). */
    background-position: 0 0;
}

/* gwiazdki pod tytulem produktu: 16px (0-4-1 - bije modulowe 20px i wspolny
   background-size 20px powyzej niezaleznie od kolejnosci arkuszy);
   starWidth:16 w abc-product-rating.tpl musi sie z tym zgadzac */
.abc-product-rating .grade-stars .star-content div.star,
.abc-product-rating .grade-stars .star-content div.star-on,
.abc-product-rating .grade-stars .star-content div.star-hover {
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
    margin-left: 3px;
}

.abc-product-rating .grade-stars .star-content > div:first-child {
    margin-left: 0;
}

/* normalizacja boxa gwiazdek w sekcji (kasuje min-width:120px i offsety modulu) */
.abc-reviews .grade-stars {
    width: 112px; /* 5 x 20px + 4 x 3px odstepu */
    min-width: 0;
    height: 20px;
    margin: 0;
    flex: 0 0 auto;
}

.abc-reviews .grade-stars .star-content {
    margin: 0;
    top: 0;
}

.abc-reviews .star-content > div:first-child {
    margin-left: 0;
}

/* ---- lista recenzji ----------------------------------------------------- */

.abc-reviews__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* rezerwa wysokosci przed dociagnieciem recenzji AJAX-em (mniejszy skok layoutu) */
#product-comments-list[data-total-pages]:not([data-total-pages="0"]) {
    min-height: 150px;
}

/* ---- karta recenzji ------------------------------------------------------
   Prefiks .page-product (0-3-0): hummingbird theme.css laduje sie PO tym pliku
   i jego .page-product .product-comment-list-item {padding:0; background:transparent}
   wygrywalby remis 0-2-0 kolejnoscia w dokumencie. */

.page-product .abc-reviews .abc-review {
    background: var(--alfa-white, #fff);
    border: 1px solid var(--alfa-grey, #f3f3f3);
    padding: 24px 28px 18px;
    margin: 0;
    transition: border-color 0.2s ease;
}

.page-product .abc-reviews .abc-review:hover {
    border-color: #e2d8c2;
}

.abc-review__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 16px;
    margin-bottom: 14px;
}

.abc-review__who {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.abc-review__avatar {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f7f3ea;
    border: 1px solid #e7dfcc;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23b3924a' d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
}

.abc-review__author {
    font-size: 15px;
    font-weight: 600;
    color: var(--alfa-black, #000);
    overflow-wrap: anywhere;
}

.abc-review__date {
    flex: 0 0 auto;
    font-size: 13px;
    color: var(--bs-gray-600, #6c757d);
}

.abc-review__rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 12px;
    margin-bottom: 10px;
}

.abc-reviews .abc-review__title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--alfa-black, #000);
}

.abc-reviews .abc-review__text {
    margin: 0 0 16px;
    max-width: 75ch;
    font-size: 15px;
    line-height: 1.6;
    color: #3a3a3a;
    white-space: pre-wrap;
    word-break: break-word;
}

/* stopka karty: glosowanie przydatnosci + zgloszenie naduzycia */

.abc-review__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;
    border-top: 1px solid var(--alfa-grey, #f3f3f3);
    padding-top: 14px;
}

.abc-review__votes {
    display: flex;
    align-items: center;
    gap: 8px;
}

.abc-reviews .abc-review__vote {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border: 1px solid #e4e4e4;
    border-radius: 999px;
    font-size: 13px;
    line-height: 1;
    color: var(--bs-gray-600, #6c757d);
    cursor: pointer;
    text-decoration: none;
    transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.abc-reviews .abc-review__vote:hover {
    color: var(--alfa-gold, #b3924a);
    border-color: var(--alfa-gold, #b3924a);
    background-color: #faf7f0;
}

.abc-reviews .abc-review__vote .material-icons {
    font-size: 16px;
}

.abc-reviews .abc-review__report {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    padding: 5px 0; /* wiekszy cel dotykowy bez zmiany wygladu */
    font-size: 13px;
    line-height: 1;
    color: #adadad;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.15s ease;
}

.abc-reviews .abc-review__report:hover {
    color: var(--alfa-black, #000);
}

.abc-reviews .abc-review__report .material-icons {
    font-size: 15px;
}

/* ---- empty state ---------------------------------------------------------
   Jak wyzej: prefiks .page-product przebija reset hummingbirda; text-align
   osobno z id (1-3-0), bo hummingbird ma .page-product #empty-product-comment
   {text-align:left} (1-1-0), ktore bije kazdy selektor klasowy. */

.page-product .abc-reviews .abc-reviews__empty {
    padding: 44px 24px;
    margin: 0;
    background: #fcfbf9;
    border: 1px solid var(--alfa-grey, #f3f3f3);
}

.page-product .abc-reviews #empty-product-comment.abc-reviews__empty {
    text-align: center;
}

.abc-reviews__empty-icon {
    display: inline-block;
    width: 34px;
    height: 34px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23b3924a' d='M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.abc-reviews__empty-text {
    margin: 12px 0 20px;
    font-size: 15px;
    color: var(--bs-gray-600, #6c757d);
}

.abc-reviews .abc-reviews__empty .abc-reviews__cta {
    margin: 0 auto;
}

/* ---- paginacja ----------------------------------------------------------- */

.abc-reviews__list-footer {
    margin-top: 20px;
}

.abc-reviews__list-footer--hidden {
    display: none;
}

.abc-reviews .pagination {
    margin: 0;
    gap: 6px;
}

.abc-reviews .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #e3e3e3;
    border-radius: 0;
    background: var(--alfa-white, #fff);
    color: var(--bs-gray-600, #6c757d);
    font-size: 14px;
    box-shadow: none;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.abc-reviews .page-link:hover {
    color: var(--alfa-gold, #b3924a);
    border-color: var(--alfa-gold, #b3924a);
    background: var(--alfa-white, #fff);
}

.abc-reviews .page-item.active .page-link {
    color: var(--alfa-gold, #b3924a);
    border-color: var(--alfa-gold, #b3924a);
    font-weight: 600;
}

.abc-reviews .page-item.disabled .page-link {
    opacity: 0.35;
    pointer-events: none;
}

.abc-reviews .page-link .material-icons {
    font-size: 18px;
}

/* ---- modale (post-comment / alert / confirm) -----------------------------
   Prefiks #product (id body strony produktu) przebija: CSS modulu
   (.product-comment-modal ... 0-x-x), hummingbird .modal.product-comment-modal
   .form-control (0-3-1) i #product .btn (1-1-0). Dla kryteriow ocen hummingbird
   ma .page-product #post-product-comment-modal #criterions_list ... (2-2-0),
   stad selektory z dwoma id (3-1-0). */

#product .product-comment-modal .modal-content {
    border: 1px solid #e8e4da;
    border-radius: 0;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

/* naglowek ze zlota linia - sygnatura sekcji recenzji */
#product .product-comment-modal .modal-header {
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    border-bottom: 1px solid var(--alfa-gold, #b3924a);
}

#product .product-comment-modal .abc-pc-modal__title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--alfa-black, #000);
    float: none; /* kasuje float:left z CSS modulu (.modal-header .h2) */
    flex: 1;
    text-align: left;
}

#product .product-comment-modal .modal-body {
    padding: 24px 28px;
}

#product .product-comment-modal .modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px 16px;
    padding: 16px 28px 22px;
    border-top: 1px solid var(--alfa-grey, #f3f3f3);
}

/* przyciski w modalach: skala CTA sekcji zamiast #product .btn (1.25rem) */
#product .product-comment-modal .btn {
    --bs-btn-padding-x: 1.6em;
    --bs-btn-padding-y: 0.7em;
    --bs-btn-font-size: 14px;
    --bs-btn-font-weight: 600;
    --bs-btn-border-radius: 0;
    letter-spacing: 0.04em;
}

#product .product-comment-modal .abc-pc-modal__actions {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

/* "Odoslat": bialy tekst na zlocie (theme'owy _partials/bootstrap.css ustawia
   body .btn-primary z czarnym tekstem i laduje sie PO tym pliku - 1-3-0 wygrywa) */
#product .product-comment-modal .btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--alfa-gold, #b3924a);
    --bs-btn-border-color: var(--alfa-gold, #b3924a);
    --bs-btn-hover-color: #fff;
    --bs-btn-active-color: #fff;
    --bs-btn-disabled-color: #fff;
}

/* pasek produktu: miniatura + nazwa */
.abc-pc-modal__product {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

#product #post-product-comment-modal .abc-pc-modal__cover {
    flex: 0 0 auto;
    width: 64px;
}

#product #post-product-comment-modal .abc-pc-modal__cover img {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: cover;
    border: 1px solid var(--alfa-grey, #f3f3f3);
}

#product #post-product-comment-modal .abc-pc-modal__product-name {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--alfa-black, #000);
}

/* kryteria oceny: zwykle pole formularza (label nad gwiazdkami, bez boxu) -
   spojne z pozostalymi polami i bez problemow z pionowym wyrownaniem
   trzech roznych line-boxow w jednym rzedzie */
#product #post-product-comment-modal #criterions_list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

#product #post-product-comment-modal #criterions_list li + li {
    margin-top: 14px;
}

#product #post-product-comment-modal #criterions_list .criterion-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0 12px;
}

#product #post-product-comment-modal #criterions_list .criterion-rating label {
    flex: 0 0 100%;
    margin: 0 0 0.8rem;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}

#product #post-product-comment-modal #criterions_list #ratingNotChosen {
    margin-top: 8px;
}

/* picker ocen: duze cele dotykowe (36px, mobile 42px); tryb interaktywny pluginu
   to czyste przelaczanie klas star-on/star-hover, wiec skalowanie CSS jest bezpieczne */
#product #post-product-comment-modal #criterions_list .criterion-rating {
    flex-wrap: wrap;
}

#product #post-product-comment-modal #criterions_list .grade-stars {
    width: 159px; /* 5 x 27px + 4 x 6px */
    height: 27px;
}

#product #post-product-comment-modal #criterions_list .star-content div.star,
#product #post-product-comment-modal #criterions_list .star-content div.star-on,
#product #post-product-comment-modal #criterions_list .star-content div.star-hover {
    width: 27px;
    height: 27px;
    background-size: 27px 27px;
    margin-left: 6px;
    cursor: pointer;
    touch-action: manipulation;
    transition: transform 0.1s ease;
}

#product #post-product-comment-modal #criterions_list .star-content > div:first-child {
    margin-left: 0;
}

#product #post-product-comment-modal #criterions_list .star-content div.star-hover {
    transform: scale(1.1);
}

#product #post-product-comment-modal #criterions_list .abc-pc-modal__grade-value {
    font-size: 14px;
    font-weight: 600;
    line-height: 1; /* rowna linia z boxem gwiazdek (flex align center) */
    color: var(--alfa-gold, #b3924a);
    min-width: 34px;
    font-variant-numeric: tabular-nums;
}

/* gwiazdki w modalu: normalizacja jak w sekcji */
#product .product-comment-modal .grade-stars {
    width: 112px;
    min-width: 0;
    height: 20px;
    margin: 0;
    flex: 0 0 auto;
}

#product .product-comment-modal .grade-stars .star-content {
    margin: 0;
    top: 0;
}

/* pola formularza */
#product .product-comment-modal .form-label {
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}

#product .product-comment-modal sup.required {
    color: #a94442;
    margin-left: 2px;
}

#product .product-comment-modal .form-control {
    height: auto;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--alfa-black, #000);
    background: var(--alfa-white, #fff);
    border: 1px solid #ddd8cc;
    border-radius: 0;
    box-shadow: none;
}

#product .product-comment-modal .form-control:focus {
    border-color: var(--alfa-gold, #b3924a);
    box-shadow: 0 0 0 3px rgba(179, 146, 74, 0.16);
    outline: 0;
}

#product .product-comment-modal textarea.form-control {
    min-height: 120px;
    margin-bottom: 0;
    resize: vertical;
}

/* walidacja post-comment.js (klasy .error/.valid) */
#product #post-product-comment-form .form-control.error {
    border-color: #a94442;
    background: #fdf7f7;
}

#product #post-product-comment-form .form-control.valid {
    border-color: #cfc7b4;
    background: var(--alfa-white, #fff);
}

/* CSS modulu ustawia .product-comment-modal input {width:100%;height:44px} -
   nie moze dotykac checkboxow/radio (np. zgoda RODO) */
#product .product-comment-modal input[type="checkbox"],
#product .product-comment-modal input[type="radio"] {
    width: auto;
    height: auto;
    padding: 0;
}

#product .product-comment-modal .abc-pc-modal__required {
    margin: 0;
    font-size: 12px;
    color: var(--bs-gray-600, #6c757d);
}

/* alerty i confirm: wariant "inline light" - jedna przestrzen bez stref,
   glyph przy tytule (bez kola), akcje jako przyciski tekstowe */
#product .product-comment-modal .abc-pc-modal__dialog--narrow {
    width: calc(100% - 30px);
    max-width: 400px;
}

#product .abc-pc-modal--alert .modal-content {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
}

#product .product-comment-modal .abc-pc-lite__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 22px 26px 0;
}

#product .product-comment-modal .abc-pc-lite__glyph {
    flex: 0 0 auto;
    font-size: 18px;
    line-height: 1;
    color: var(--alfa-gold, #b3924a);
}

#product .product-comment-modal .abc-pc-lite__glyph.error {
    color: #a94442;
}

#product .product-comment-modal .abc-pc-lite__title {
    flex: 1;
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--alfa-black, #000);
    text-align: left;
}

#product .product-comment-modal .abc-pc-lite__message {
    padding: 10px 26px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

#product .product-comment-modal .abc-pc-lite__message ul {
    margin: 0;
    padding-left: 18px;
}

#product .product-comment-modal .abc-pc-lite__actions {
    display: flex;
    justify-content: flex-end;
    gap: 22px;
    padding: 16px 26px 18px;
}

#product .product-comment-modal .abc-pc-lite__btn {
    background: none;
    border: 0;
    padding: 6px 2px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    cursor: pointer;
    transition: color 0.15s ease;
}

#product .product-comment-modal .abc-pc-lite__btn:focus-visible {
    outline: 2px solid var(--alfa-gold, #b3924a);
    outline-offset: 2px;
}

#product .product-comment-modal .abc-pc-lite__btn--gold {
    color: var(--alfa-gold, #b3924a);
}

#product .product-comment-modal .abc-pc-lite__btn--gold:hover {
    color: var(--alfa-gold-dark, #8f6830);
}

#product .product-comment-modal .abc-pc-lite__btn--grey {
    color: #8a8a8a;
}

#product .product-comment-modal .abc-pc-lite__btn--grey:hover {
    color: var(--alfa-black, #000);
}

@media screen and (max-width: 575.98px) {
    #product .product-comment-modal .modal-header,
    #product .product-comment-modal .modal-body,
    #product .product-comment-modal .modal-footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* mobile: nieco wieksze cele dotykowe, ale bez rozpychania waskiego modala */
    #product #post-product-comment-modal #criterions_list .grade-stars {
        width: 180px; /* 5 x 32px + 4 x 5px */
        height: 32px;
    }

    #product #post-product-comment-modal #criterions_list .star-content div.star,
    #product #post-product-comment-modal #criterions_list .star-content div.star-on,
    #product #post-product-comment-modal #criterions_list .star-content div.star-hover {
        width: 32px;
        height: 32px;
        background-size: 32px 32px;
        margin-left: 5px;
    }

    #product .product-comment-modal .abc-pc-modal__alert-body {
        padding-left: 16px;
    }

    #product .product-comment-modal .abc-pc-modal__actions {
        width: 100%;
    }

    #product .product-comment-modal .abc-pc-modal__actions .btn {
        flex: 1;
    }
}

/* ---- responsive ----------------------------------------------------------- */

@media screen and (max-width: 767.98px) {
    .page-product .abc-reviews .abc-review {
        padding: 18px 16px 14px;
    }

    /* dotyk: wieksze cele i odstep, gdy zgloszenie zawija sie pod lapki */
    .abc-review__footer {
        gap: 12px 16px;
    }

    .abc-reviews .abc-review__vote {
        padding: 8px 14px;
    }

    .abc-reviews .abc-review__report {
        padding: 10px 0;
    }

    .page-product .abc-reviews #product-comments-list-header {
        margin-bottom: 20px;
    }

    #product .abc-reviews__cta {
        width: 100%;
    }

    .abc-review__head {
        margin-bottom: 12px;
    }

    .abc-review__avatar {
        width: 32px;
        height: 32px;
        background-size: 17px 17px;
    }
}
