/* =========================================================
   ÜRÜN YORUMLARI - TEKİL CSS
   Açıklama:
   - Yorum sayfası
   - Ürün detay sayfasındaki yorum özeti / son yorumlar
   - Ortak yorum kartı, oy verme, mini cevap, yıldız puan
========================================================= */

:root{
    --yorum-accent:#f97316;
    --yorum-accent-dark:#ea580c;
    --yorum-accent-soft:#fff4ec;
    --yorum-accent-soft-2:#fff8f3;

    --yorum-text:#111827;
    --yorum-text-soft:#344054;

    --yorum-muted:#667085;
    --yorum-muted-2:#98a2b3;
    --yorum-muted-3:#9ca3af;

    --yorum-border:#e8edf2;
    --yorum-border-soft:#edf1f5;
    --yorum-border-soft-2:#eef2f6;
    --yorum-border-strong:#d9e0e7;

    --yorum-bg:#ffffff;
    --yorum-bg-soft:#fcfcfd;
    --yorum-bg-soft-2:#fbfcfd;
    --yorum-bg-soft-3:#f8fafc;

    --yorum-shadow-sm:0 8px 20px rgba(16,24,40,.04);
    --yorum-shadow-md:0 10px 24px rgba(16,24,40,.04);
    --yorum-shadow-lg:0 10px 28px rgba(16,24,40,.045);
    --yorum-shadow-xl:0 10px 30px rgba(17,24,39,.05);
}

/* =========================================================
   ORTAK - YILDIZLI OYLAMA
========================================================= */
.star-rating{
    display:inline-flex;
    flex-direction:row-reverse;
    font-size:2rem;
}

.star-rating input{
    display:none;
}

.star-rating label{
    cursor:pointer;
    color:#ddd;
    transition:color .2s;
}

.star-rating:not(:hover) input:checked ~ label,
.star-rating:hover label:hover,
.star-rating:hover label:hover ~ label{
    color:#ffc107;
}

/* =========================================================
   ORTAK - YORUM WRAP
========================================================= */
.yys-comments-wrap{
    position:relative;
}

/* =========================================================
   YORUM SAYFASI - SOL ÜRÜN ÖZET KARTI
========================================================= */
.yys-side-card{
    position:sticky;
    top:110px;
    border:1px solid #e8ebef;
    border-radius:18px;
    background:var(--yorum-bg);
    box-shadow:0 10px 28px rgba(16,24,40,.05);
    overflow:hidden;
}

.yys-side-card__top{
    padding:14px 16px 10px;
    border-bottom:1px solid #f1f3f5;
    background:
        radial-gradient(circle at top right, rgba(249,115,22,.08), transparent 28%),
        linear-gradient(180deg,#fff 0%,#fcfcfd 100%);
}

.yys-side-card__kicker{
    margin-bottom:6px;
    color:var(--yorum-muted-2);
    font-size:.72rem;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.yys-side-card__sku{
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:var(--yorum-text-soft);
    font-size:.9rem;
    font-weight:700;
}

.yys-side-card__body{
    padding:16px;
}

.yys-side-card__media{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:260px;
    margin-bottom:14px;
    padding:18px;
    border:1px solid var(--yorum-border-soft);
    border-radius:16px;
    background:linear-gradient(180deg,#ffffff 0%,#fafbfc 100%);
}

.yys-side-card__media img{
    display:block;
    max-width:100%;
    max-height:240px;
    object-fit:contain;
}

.yys-side-card__title{
    margin:0 0 10px;
    color:#101828;
    font-size:1.05rem;
    font-weight:800;
    line-height:1.35;
}

.yys-side-card__meta{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:12px;
}

.yys-side-card__badge{
    display:inline-flex;
    align-items:center;
    gap:6px;
    min-height:30px;
    padding:0 10px;
    border:1px solid #e6ebf1;
    border-radius:999px;
    background:var(--yorum-bg-soft-3);
    color:#475467;
    font-size:.8rem;
    font-weight:700;
    line-height:1;
}

.yys-side-card__badge--accent{
    background:var(--yorum-accent-soft);
    border-color:#ffd8c2;
    color:var(--yorum-accent-dark);
}

.yys-side-card__rating{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:14px;
    color:#475467;
    font-size:.88rem;
    font-weight:700;
}

.yys-side-card__rating-stars{
    color:var(--yorum-accent);
    letter-spacing:1px;
    line-height:1;
}

.yys-side-card__actions{
    display:grid;
    gap:8px;
}

.yys-side-card__btn{
    min-height:44px;
    border-radius:12px;
    font-weight:800;
}

.yys-side-card__btn-outline{
    border:1px solid #d6dde5;
    background:#fff;
    color:var(--yorum-text);
}

.yys-side-card__btn-outline:hover{
    border-color:#bec8d2;
    background:var(--yorum-bg-soft-3);
    color:var(--yorum-text);
}

/* =========================================================
   YORUM SAYFASI - ÜST BAŞLIK
========================================================= */
.yys-head{
    padding:16px 18px;
    border:1px solid var(--yorum-border);
    border-radius:18px;
    background:
        radial-gradient(circle at top right, rgba(249,115,22,.08), transparent 26%),
        linear-gradient(180deg,#fff 0%,#fcfcfd 100%);
    box-shadow:var(--yorum-shadow-md);
}

.yys-head__kicker{
    margin-bottom:6px;
    color:var(--yorum-muted-2);
    font-size:.74rem;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.yys-head__title{
    margin:0;
    color:var(--yorum-text);
    font-size:1.55rem;
    font-weight:900;
    line-height:1.18;
    letter-spacing:-.02em;
}

.yys-head__meta{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:8px 14px;
    margin-top:10px;
}

.yys-head__badge{
    display:inline-flex;
    align-items:center;
    gap:6px;
    min-height:32px;
    padding:0 12px;
    border:1px solid #e6ebf1;
    border-radius:999px;
    background:var(--yorum-bg-soft-3);
    color:#475467;
    font-size:.84rem;
    font-weight:800;
    line-height:1;
}

.yys-head__badge--accent{
    background:var(--yorum-accent-soft);
    border-color:#ffd8c2;
    color:var(--yorum-accent-dark);
}

.yys-head__text{
    color:var(--yorum-muted);
    font-size:.9rem;
    font-weight:700;
}

/* =========================================================
   YORUM SAYFASI - SIRALAMA KUTUSU
========================================================= */
.yys-sort-box{
    padding:14px;
    border:1px solid var(--yorum-border);
    border-radius:16px;
    background:#fff;
    box-shadow:0 8px 22px rgba(16,24,40,.035);
}

.yys-sort-box__label{
    display:block;
    margin-bottom:8px;
    color:var(--yorum-muted);
    font-size:.82rem;
    font-weight:800;
}

.yys-sort-box__field{
    position:relative;
}

.yys-sort-box__icon{
    position:absolute;
    top:50%;
    left:12px;
    transform:translateY(-50%);
    color:var(--yorum-muted-2);
    font-size:1rem;
    pointer-events:none;
}

.yys-sort-box__chevron{
    position:absolute;
    top:50%;
    right:12px;
    transform:translateY(-50%);
    color:var(--yorum-muted-2);
    font-size:1rem;
    pointer-events:none;
}

.yys-sort-select{
    min-height:48px;
    padding-left:13px;
    padding-right:38px;
    border:1px solid #d9e0e7;
    border-radius:14px;
    background:#fff;
    box-shadow:none !important;
    color:var(--yorum-text);
    font-weight:700;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
}

/* =========================================================
   YORUM SAYFASI - MOBİL ÜRÜN BAR
========================================================= */
.yys-mobile-bar{
    display:grid;
    grid-template-columns:72px 1fr 18px;
    align-items:center;
    gap:12px;
    padding:10px;
    border:1px solid var(--yorum-border);
    border-radius:16px;
    background:#fff;
    box-shadow:var(--yorum-shadow-sm);
    color:inherit;
    text-decoration:none;
}

.yys-mobile-bar__media{
    display:flex;
    align-items:center;
    justify-content:center;
    width:72px;
    height:72px;
    overflow:hidden;
    border:1px solid var(--yorum-border-soft);
    border-radius:14px;
    background:linear-gradient(180deg,#fff 0%,#fafbfc 100%);
}

.yys-mobile-bar__media img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}

.yys-mobile-bar__noimg{
    color:var(--yorum-muted-2);
    font-size:1.4rem;
}

.yys-mobile-bar__title{
    margin-bottom:6px;
    color:var(--yorum-text);
    font-size:.96rem;
    font-weight:800;
    line-height:1.3;
}

.yys-mobile-bar__meta{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:6px;
}

.yys-mobile-bar__badge,
.yys-mobile-bar__score,
.yys-mobile-bar__text{
    display:inline-flex;
    align-items:center;
    gap:5px;
    min-height:26px;
    padding:0 8px;
    border-radius:999px;
    font-size:.76rem;
    font-weight:800;
    line-height:1;
}

.yys-mobile-bar__badge{
    background:var(--yorum-bg-soft-3);
    border:1px solid #e6ebf1;
    color:#475467;
}

.yys-mobile-bar__score{
    background:var(--yorum-accent-soft);
    border:1px solid #ffd8c2;
    color:var(--yorum-accent-dark);
}

.yys-mobile-bar__text{
    background:#f9fafb;
    border:1px solid #eceff3;
    color:var(--yorum-muted);
}

.yys-mobile-bar__arrow{
    color:var(--yorum-muted-2);
    font-size:1rem;
    text-align:right;
}

/* =========================================================
   ORTAK - YORUM KARTLARI
========================================================= */
.yorum-card{
    margin-bottom:16px;
}

.yorum-card__inner{
    overflow:hidden;
    border:1px solid var(--yorum-border);
    border-radius:18px;
    background:#fff;
    box-shadow:var(--yorum-shadow-lg);
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.yorum-card__inner:hover{
    transform:translateY(-1px);
    border-color:#dfe5eb;
    box-shadow:0 14px 32px rgba(16,24,40,.06);
}

.yorum-card--reply .yorum-card__inner{
    margin-left:22px;
    border-left:4px solid var(--yorum-accent);
    background:linear-gradient(180deg,#fff 0%,#fffaf6 100%);
}

.yorum-card__head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:14px;
    padding:16px 18px 12px;
    border-bottom:1px solid #f1f3f6;
}

.yorum-card__author{
    display:flex;
    align-items:flex-start;
    gap:12px;
    min-width:0;
}

.yorum-card__avatar{
    display:flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    flex:0 0 auto;
    border-radius:50%;
    background:var(--yorum-accent-soft);
    color:var(--yorum-accent-dark);
    font-size:1.1rem;
}

.yorum-card__author-meta{
    min-width:0;
}

.yorum-card__name{
    margin-bottom:4px;
    color:var(--yorum-text);
    font-size:.95rem;
    font-weight:900;
    line-height:1.2;
}

.yorum-card__stars{
    color:var(--yorum-accent);
    font-size:.88rem;
    line-height:1;
}

.yorum-card__stars strong{
    font-weight:inherit;
}

.yorum-card__reply-label{
    color:var(--yorum-muted);
    font-size:.8rem;
    font-weight:800;
    letter-spacing:.05em;
    text-transform:uppercase;
}

.yorum-card__date{
    flex:0 0 auto;
    white-space:nowrap;
    color:var(--yorum-muted-2);
    font-size:.8rem;
    font-weight:700;
}

.yorum-card__body{
    padding:16px 18px 8px;
}

.yorum-card__text{
    color:var(--yorum-text-soft);
    font-size:.97rem;
    line-height:1.7;
    word-break:break-word;
}

.yorum-card__footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:12px;
    padding:12px 18px 16px;
}

.yorum-card__vote{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
}

.yorum-card__vote-label{
    color:var(--yorum-muted);
    font-size:.82rem;
    font-weight:800;
}

.yorum-card__vote-btn{
    display:inline-flex;
    align-items:center;
    gap:6px;
    min-height:34px;
    padding:0 11px;
    border:1px solid #e7ecf2;
    border-radius:999px;
    background:#fff;
    color:var(--yorum-accent-dark);
    cursor:pointer;
    font-size:.84rem;
    font-weight:800;
    transition:all .18s ease;
}

.yorum-card__vote-btn--down{
    color:var(--yorum-muted);
}

.yorum-card__vote-btn:hover{
    transform:translateY(-1px);
    border-color:#d6dee7;
    background:#f9fafb;
}

.yorum-card__share{
    display:flex;
    align-items:center;
}

.yorum-card__permalink{
    display:inline-flex;
    align-items:center;
    gap:6px;
    min-height:34px;
    padding:0 12px;
    border-radius:999px;
    background:#fff;
    color:var(--yorum-text);
    text-decoration:none;
    font-size:.82rem;
    font-weight:800;
}

.yorum-card__reply-form-wrap{
    padding:0 18px 18px;
}

.yorum-reply-form{
    padding:14px;
    border:1px solid var(--yorum-border-soft);
    border-radius:14px;
    background:var(--yorum-bg-soft-2);
}

.yorum-reply-form textarea{
    min-height:96px;
    resize:vertical;
    border-color:#dbe2ea;
    border-radius:12px;
    box-shadow:none !important;
}

.yorum-reply-form__actions{
    display:flex;
    justify-content:flex-end;
    margin-top:10px;
}

.yorum-reply-form__actions .btn{
    min-height:42px;
    padding:0 16px;
    border-radius:12px;
    font-weight:800;
}

.yorum-card__login-note{
    margin:0 18px 18px;
    padding:12px 14px;
    border:1px dashed var(--yorum-border-strong);
    border-radius:14px;
    background:var(--yorum-bg-soft);
    color:var(--yorum-muted);
    font-size:.84rem;
    line-height:1.6;
}

.yorum-card__login-note a{
    font-weight:800;
    text-decoration:none;
}

.yorum-card__children{
    padding:0 0 16px;
}

/* =========================================================
   ORTAK - YENİ YORUM FORMU
========================================================= */
.yorum-new-form__textarea{
    min-height:130px;
    resize:vertical;
    border-color:#d8e0e7;
    border-radius:14px;
    box-shadow:none !important;
}

.yorum-new-form__btn{
    min-height:52px;
    border-radius:14px;
    font-weight:900;
}

/* =========================================================
   ORTAK - MİNİ CEVAP ÖNİZLEMESİ
========================================================= */
.mini-yorum-cevap{
    margin:0 18px 18px;
    padding:12px 14px;
    border-left:4px solid var(--yorum-accent);
    border-radius:14px;
    background:var(--yorum-accent-soft-2);
}

.mini-yorum-cevap__meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-bottom:6px;
    color:#6b7280;
    font-size:.78rem;
}

.mini-yorum-cevap__date{
    white-space:nowrap;
    color:var(--yorum-muted-3);
    font-size:.74rem;
}

.mini-yorum-cevap__text{
    display:-webkit-box;
    overflow:hidden;
    color:#374151;
    font-size:.88rem;
    line-height:1.55;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
}

.mini-yorum-cevap__count{
    margin-top:7px;
    color:var(--yorum-accent-dark);
    font-size:.76rem;
    font-weight:800;
}

/* =========================================================
   PDP - YORUM ÖZET KARTI / SON YORUMLAR
========================================================= */
.pdp-mini-link{
    color:var(--yorum-accent-dark);
    font-weight:900;
    text-decoration:none;
}

.pdp-mini-link:hover{
    text-decoration:underline;
}

.pdp-reviews-card{
    border-color:var(--yorum-border);
    box-shadow:var(--yorum-shadow-xl);
}

.pdp-reviews-head{
    padding:14px 14px 12px;
    background:
        radial-gradient(circle at top right, rgba(249,115,22,.08), transparent 26%),
        linear-gradient(180deg,#fff 0%,#fcfcfd 100%);
}

.pdp-reviews-head__top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
}

.pdp-reviews-title-wrap{
    min-width:0;
}

.pdp-reviews-kicker{
    margin-bottom:4px;
    color:#9aa3af;
    font-size:.74rem;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.pdp-reviews-title{
    color:var(--yorum-text);
    font-size:1.02rem;
    font-weight:900;
    line-height:1.15;
}

.pdp-mini-link--strong{
    white-space:nowrap;
    font-size:.82rem;
}

.pdp-reviews-proof{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
    margin-top:10px;
    color:var(--yorum-muted);
    font-size:.83rem;
    font-weight:700;
}

.pdp-reviews-proof__badge{
    display:inline-flex;
    align-items:center;
    gap:6px;
    min-height:30px;
    padding:0 10px;
    border:1px solid #ffd9c4;
    border-radius:999px;
    background:var(--yorum-accent-soft);
    color:var(--yorum-accent-dark);
    font-weight:900;
    line-height:1;
}

.pdp-reviews-proof__badge i{
    font-size:.92rem;
}

.pdp-reviews-proof__text{
    color:var(--yorum-muted);
}

.pdp-reviews-proof__sep{
    color:#c0c7d1;
}

.pdp-reviews-proof--empty{
    color:#6b7280;
    font-size:.85rem;
}

.pdp-recent-wrap{
    position:relative;
    overflow:hidden;
}

.pdp-recent-wrap.is-loaded::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:64px;
    background:linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 70%);
    pointer-events:none;
}

.pdp-recent-wrap--sales{
    position:relative;
    min-height:120px;
}

.pdp-recent-wrap--sales .card{
    border:1px solid var(--yorum-border-soft);
    border-radius:14px;
    box-shadow:none;
    background:#fff;
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.pdp-recent-wrap--sales .card:hover{
    transform:translateY(-1px);
    border-color:#e3e8ee;
    box-shadow:0 8px 18px rgba(15,23,42,.04);
}

.pdp-recent-wrap--sales .card-body{
    padding:14px;
}

.pdp-recent-wrap--sales blockquote{
    margin-bottom:20px;
}

.pdp-recent-wrap--sales blockquote p{
    margin:0;
    color:#1f2937;
    font-size:.93rem;
    line-height:1.55;
}

.pdp-recent-wrap--sales .blockquote-footer{
    margin-bottom:8px !important;
    color:#7b8494;
    font-size:.75rem !important;
}

.pdp-recent-wrap--sales .yorum-oylama{
    padding-top:8px;
    border-top:1px solid #f1f3f6;
}

.pdp-recent-wrap--sales .yorum-oylama small{
    color:#7b8494;
    font-weight:700;
}

.pdp-recent-wrap--sales .share-bar-yorumlar a{
    color:#6b7280;
}

.pdp-recent-wrap--sales .share-bar-yorumlar a:hover{
    color:var(--yorum-accent-dark);
}

.pdp-reviews-footer{
    margin-top:14px;
    padding-top:12px;
    border-top:1px solid var(--yorum-border-soft-2);
}

.pdp-reviews-footer__btn{
    width:100%;
    min-height:44px;
    border-radius:12px;
    font-weight:800;
}

.pdp-loading--reviews{
    display:flex;
    align-items:center;
    gap:10px;
    min-height:84px;
    padding:14px;
    border:1px dashed #e4e7ec;
    border-radius:14px;
    background:var(--yorum-bg-soft);
    color:var(--yorum-muted);
}

.pdp-loading-dot{
    width:10px;
    height:10px;
    flex:0 0 auto;
    border-radius:50%;
    background:var(--yorum-accent);
    box-shadow:0 0 0 6px rgba(249,115,22,.12);
}

.pdp-empty--soft{
    padding:18px 14px;
    border:1px dashed #e4e7ec;
    border-radius:14px;
    background:var(--yorum-bg-soft);
    text-align:center;
}

.pdp-empty__icon{
    margin-bottom:8px;
    color:#c0c7d1;
    font-size:1.6rem;
}

.pdp-empty__title{
    margin-bottom:4px;
    color:var(--yorum-text);
    font-size:.96rem;
    font-weight:900;
}

.pdp-empty__text{
    color:#6b7280;
    font-size:.88rem;
    line-height:1.5;
}

/* PDP içindeki mini cevap önizleme biraz daha kompakt */
.pdp-recent-wrap--sales .mini-yorum-cevap{
    margin:10px 0 0;
    padding:10px 12px;
    border-left-width:3px;
    border-radius:10px;
}

.pdp-recent-wrap--sales .mini-yorum-cevap__meta{
    margin-bottom:4px;
    color:#6b7280;
}

.pdp-recent-wrap--sales .mini-yorum-cevap__text{
    line-height:1.45;
}

.pdp-recent-wrap--sales .mini-yorum-cevap__count{
    margin-top:6px;
    font-weight:700;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 991.98px){
    .yys-head__title{
        font-size:1.28rem;
    }

    .yys-sort-box{
        padding:12px;
    }

    .yorum-card__head,
    .yorum-card__body,
    .yorum-card__footer{
        padding-left:14px;
        padding-right:14px;
    }

    .yorum-card__reply-form-wrap{
        padding:0 14px 14px;
    }

    .mini-yorum-cevap{
        margin:0 14px 14px;
    }
}

@media (max-width: 767.98px){
    .yys-side-card{
        position:relative;
        top:auto;
    }

    .yys-side-card__media{
        min-height:220px;
    }

    .yys-side-card__media img{
        max-height:200px;
    }

    .yys-head{
        padding:14px;
        border-radius:16px;
    }

    .yys-head__meta{
        gap:8px;
    }

    .yorum-card__head{
        flex-direction:row;
        align-items:flex-start;
        justify-content:space-between;
        gap:10px;
    }

    .yorum-card__author{
        flex:1 1 auto;
        min-width:0;
    }

    .yorum-card__author-meta{
        min-width:0;
    }

    .yorum-card__name{
        line-height:1.2;
    }

    .yorum-card__date{
        margin-left:auto;
        padding-top:2px;
        white-space:nowrap;
        text-align:right;
        font-size:.76rem;
        line-height:1.2;
        flex:0 0 auto;
    }

    .yorum-card__footer{
        flex-direction:row;
        align-items:center;
        justify-content:space-between;
        gap:10px;
    }

    .yorum-card__vote{
        flex:1 1 auto;
        width:auto;
    }

    .yorum-card__share{
        width:auto;
        margin-left:auto;
        flex:0 0 auto;
    }

    .yorum-card__permalink{
        width:38px;
        min-width:38px;
        height:38px;
        min-height:38px;
        padding:0;
        justify-content:center;
        border:1px solid #e5e7eb;
        border-radius:999px;
        background:#fff;
        color:var(--yorum-text);
    }

    .yorum-card__permalink:hover{
        border-color:#d7dde5;
        background:var(--yorum-bg-soft-3);
        color:var(--yorum-text);
    }

    .yorum-card--reply .yorum-card__inner{
        margin-left:10px;
    }

    .mini-yorum-cevap__meta{
        flex-direction:column;
        align-items:flex-start;
    }

    .mini-yorum-cevap__date{
        white-space:normal;
    }

    .pdp-reviews-head__top{
        flex-direction:column;
        align-items:flex-start;
    }

    .pdp-mini-link--strong{
        white-space:normal;
    }

    .pdp-reviews-proof{
        gap:6px;
        font-size:.8rem;
    }

    .pdp-recent-wrap--sales .card-body{
        padding:12px;
    }
}

@media (max-width: 420px){
    .yorum-card__head{
        flex-direction:column;
        align-items:flex-start;
    }

    .yorum-card__date{
        margin-left:0;
        white-space:normal;
        text-align:left;
    }
}