.bl-store, .bl-store * { box-sizing: border-box; }
  .bl-store {
    font-family: 'EuclidCircularAVN', 'Manrope', sans-serif;
    color: #232734;
    background: #fff;
    padding: clamp(48px, 3vw + 32px, 96px) 0;
  }
  .bl-store img { display: block; max-width: 100%; }

  .bl-store__title {
    font-weight: 600; color: #232734; text-align: center; line-height: 1.2;
    margin: 0 0 .5em; font-size: clamp(1.375rem, .87rem + 1.88vw, 3.125rem); /* 22 -> 50 */
  }
  .bl-store__subtitle {
    text-align: center; color: #939598; font-weight: 300; line-height: 1.4;
    margin: 0 auto clamp(28px, 2vw + 16px, 48px); max-width: 46ch; padding: 0 clamp(12px, 3vw, 24px);
    font-size: clamp(.75rem, .68rem + .3vw, 1.0625rem); /* 12 -> 17 */
  }
  @media (min-width: 769px) {
    .bl-store__subtitle { max-width: 75vw; }
  }

  /* Lưới thẻ review: 4 cột desktop -> 3 cột tablet -> 2 cột mobile */
  .bl-store__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(14px, 1.6vw, 28px);
  }
  @media (max-width: 1024px) {
    .bl-store__grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 768px) {
    .bl-store__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  }

  /* Thẻ review — nhân bản thiết kế .bl-review ở trang chủ */
  .bl-store__card {
    display: flex; flex-direction: column; height: 100%;
    background: #fff; border-radius: 8px; overflow: hidden;
    box-shadow: 5px 5px 4px rgba(0, 0, 0, .15);
    transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  .bl-store__card:hover { transform: translateY(-3px); box-shadow: 7px 9px 10px rgba(0, 0, 0, .18); }

  .bl-store__media { position: relative; aspect-ratio: 1 / 1; width: 100%; overflow: hidden; background: #f5f5f5; }
  .bl-store__media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

  .bl-store__panel { display: flex; flex-direction: column; gap: 6px; padding: clamp(12px, 1vw, 18px); flex: 1; }
  .bl-store__product { font-weight: 500; color: #000; margin: 0; font-size: clamp(.75rem, .72rem + .1vw, .84rem); } /* 12 -> 13.46 */
  .bl-store__text {
    font-weight: 300; color: #000; line-height: 1.35; margin: 0;
    font-size: clamp(.625rem, .55rem + .18vw, .84rem); /* 10 -> 13.46 */
    display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; /* tối đa 4 dòng + ... */
  }
  .bl-store__author { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 10px; }
  .bl-store__avatar {
    flex: none; width: clamp(28px, 2vw, 38px); height: clamp(28px, 2vw, 38px); border-radius: 50%;
    background: #D8CDC7; box-shadow: inset 0 0 0 3px #fff;
    display: inline-flex; align-items: center; justify-content: center; overflow: hidden;
  }
  .bl-store__avatar > img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
  .bl-store__avatar-icon { width: 54%; height: 54%; }
  .bl-store__name { display: block; font-weight: 400; color: #3D271A; font-size: clamp(.75rem, .66rem + .22vw, 1.01rem); } /* 12 -> 16.16 */
  .bl-store__stars { color: #D8CDC7; font-size: 12px; letter-spacing: 2px; line-height: 1; }