.donations-block {
  width: 100%; }
  .donations-block .donations-container {
    display: flex;
    gap: 16px; }
  .donations-block .donations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 55%; }
  .donations-block .donations-sidebar {
    display: flex;
    flex-direction: column;
    width: 45%;
    gap: 32px; }
  .donations-block .donation-item {
    display: grid;
    grid-template-rows: auto 1fr auto;
    width: 200px;
    border: solid 1px;
    position: relative; }
    .donations-block .donation-item .donation-image {
      width: 100%;
      height: 150px; }
      .donations-block .donation-item .donation-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block; }
    .donations-block .donation-item .donation-hover {
      padding: 10px;
      position: absolute;
      height: 150px;
      width: 100%;
      color: #fff;
      background: rgba(0, 0, 0, 0.85);
      display: none;
      overflow: hidden;
      font-size: 14px;
      line-height: 1.3; }
    .donations-block .donation-item .donation-text-area {
      display: flex;
      flex-direction: column;
      row-gap: 5px;
      padding: 10px; }
      .donations-block .donation-item .donation-text-area .donation-title {
        padding: 0;
        margin: 0;
        color: #005caf;
        font-weight: bold;
        font-size: 26px;
        line-height: 1; }
      .donations-block .donation-item .donation-text-area .donation-subtitle {
        margin: 0;
        font-size: 16px;
        line-height: 1.2; }
    .donations-block .donation-item .donation-actions .donations-add-to-cart {
      display: flex;
      justify-content: center;
      width: 100%;
      padding: 10px;
      margin-top: 10px;
      background: #B0C802;
      cursor: pointer;
      font-size: 14px;
      color: #fff;
      white-space: nowrap; }
  .donations-block .donation-item:hover .donation-hover {
    display: block; }
  .donations-block .jsCart-items {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 4px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 14px; }
    .donations-block .jsCart-items .headerRow,
    .donations-block .jsCart-items .itemRow {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 60px;
      gap: 8px;
      align-items: center;
      padding: 6px 8px; }
    .donations-block .jsCart-items .headerRow {
      font-weight: bold;
      background: #B0C802;
      color: #fff;
      border-radius: 6px 6px 0 0; }
    .donations-block .jsCart-items .itemRow {
      border-bottom: 1px solid #ddd; }
      .donations-block .jsCart-items .itemRow:nth-child(even) {
        background: #f2f2f2; }
    .donations-block .jsCart-items .jsCart-col-name {
      overflow: hidden;
      text-overflow: ellipsis;
      word-break: break-word; }
    .donations-block .jsCart-items .jsCart-col-price,
    .donations-block .jsCart-items .jsCart-col-total {
      text-align: right;
      white-space: nowrap; }
    .donations-block .jsCart-items .jsCart-col-quantity {
      text-align: center; }
    .donations-block .jsCart-items .jsCart-col-remove {
      text-align: center;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center; }
      .donations-block .jsCart-items .jsCart-col-remove svg {
        width: 21px;
        height: 21px; }
  .donations-block .jsCart-checkout {
    display: block;
    text-align: center;
    padding: 10px;
    background: #B0C802;
    color: #fff;
    font-weight: bold;
    border-radius: 6px; }
    .donations-block .jsCart-checkout:hover {
      background: #9AB000; }
  .donations-block .empty {
    margin: 21px; }
  @media (max-width: 1024px) {
    .donations-block .donations-container {
      flex-direction: column; }
    .donations-block .donations-list,
    .donations-block .donations-sidebar {
      width: 100%; }
    .donations-block .donations-list {
      justify-content: center; } }
  @media (max-width: 768px) {
    .donations-block .jsCart-items .headerRow,
    .donations-block .jsCart-items .itemRow {
      grid-template-columns: 3fr 1fr 1fr 1fr 40px;
      gap: 4px;
      padding: 4px 6px;
      font-size: 12px; }
    .donations-block .jsCart-items .jsCart-col-remove svg {
      width: 18px;
      height: 18px; } }
  @media (max-width: 425px) {
    .donations-block .donations-list {
      gap: 8px; }
    .donations-block .donation-item {
      width: 100%;
      max-width: 300px; }
    .donations-block .jsCart-items .headerRow,
    .donations-block .jsCart-items .itemRow {
      grid-template-columns: 3fr 1fr 1fr 40px;
      font-size: 12px; } }
