  :root{
    --panel: rgba(255,255,255,0.06);
    --panel2: rgba(255,255,255,0.04);
    --stroke: rgba(255,255,255,0.10);
    --stroke2: rgba(255,255,255,0.16);
    --text-dim: rgba(255,255,255,0.72);
  }

  .shop-page{
    padding: 56px 0 20px;
  }

  .shop-shell{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
  }

  .shop-frame{
    background: linear-gradient(180deg, rgba(17,24,39,0.70), rgba(0,0,0,0.65));
    border: 1px solid var(--stroke);
    border-radius: 22px;
    box-shadow: 0 18px 60px rgba(0,0,0,0.45);
    overflow: hidden;
  }

  .shop-frame__inner{
    padding: 26px;
  }

  .shop-head{
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
  }

  .shop-title{
    margin: 0;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: .4px;
    line-height: 1.1;
  }

  .shop-sub{
    margin-top: 8px;
    color: var(--text-dim);
    font-size: 14px;
  }

  /* Grid of donate cards */
  .donate-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  @media (max-width: 992px){
    .donate-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }

  @media (max-width: 650px){
    .donate-grid{ grid-template-columns: 1fr; }
  }

  .donate-card{
    height: 100%;
    border-radius: 18px;
    border: 1px solid var(--stroke);
    background: rgba(0,0,0,0.25);
    overflow: hidden;
    transition: transform .15s ease, border-color .15s ease, background-color .15s ease;
  }

  .donate-card:hover{
    transform: translateY(-2px);
    border-color: var(--stroke2);
    background: rgba(255,255,255,0.03);
  }

  .donate-card__body{
    padding: 18px;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 12px;
  }

  .donate-name{
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .2px;
  }

  .donate-desc{
    padding: 14px;
    border-radius: 14px;
    border: 1px solid var(--stroke);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.86);
  }

  .donate-desc ul{ margin: 0; padding-left: 18px; }
  .donate-desc li{ margin: 6px 0; }

  .field-label{
    color: rgba(255,255,255,0.82);
    font-size: 13px;
    font-weight: 700;
    margin: 0;
  }

  .donate-select{
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(0,0,0,0.35);
    color: #fff;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
    text-align: center;
  }

  .donate-select:focus{
    border-color: rgba(231,76,60,0.55);
    box-shadow: 0 0 0 4px rgba(231,76,60,0.12);
  }

  .price-line{
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.80);
  }

  .price-val{
    font-weight: 900;
    color: #fff;
  }

  .actions{
    margin-top: auto;
    display: grid;
    gap: 10px;
  }

  .donate-bottom{
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .btn-min{
    width: 100%;
    padding: 11px 14px;
    border-radius: 14px;
    font-weight: 800;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.90);
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease;
    text-align: center;
  }

  .btn-min:hover{
    transform: translateY(-1px);
    border-color: rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.06);
  }

  .btn-buy{
    border: 1px solid rgba(255,255,255,0.14);
    background: var(--red-color);
    color: #fff;
    box-shadow: 0 0 0 rgba(0,0,0,0);
  }

  .btn-buy:hover{
    background: #ff5a4a;
    box-shadow: 0 0 26px rgba(231,76,60,0.35);
  }

  .btn-gift{
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    position: relative;
    overflow: hidden;

    width: 100%;
    padding: 11px 14px;
    border-radius: 14px;

    color: #fff;
    font-weight: 900;

    border: 1px solid rgba(255,182,213,0.45);

    background:
      linear-gradient(
        135deg,
        #ff78b2 0%,
        #ff6fd8 35%,
        #d96dff 100%
      );

    box-shadow:
      0 0 12px rgba(255,105,180,0.18),
      0 0 24px rgba(255,105,180,0.10),
      inset 0 1px 0 rgba(255,255,255,0.22);

    transition:
      transform .18s ease,
      box-shadow .22s ease,
      filter .22s ease,
      border-color .22s ease;
  }

  /* Сердечко */
  .btn-gift::before{

    content: "🩷";

    position: absolute;

    right: -6px;
    bottom: -10px;

    transform: rotate(-30deg);

    font-size: 68px;
    line-height: 1;

    opacity: 0.95;

    pointer-events: none;
    user-select: none;

    filter:
      drop-shadow(0 0 10px rgba(255,105,180,0.38))
      drop-shadow(0 0 22px rgba(255,105,180,0.24));

    animation: floatingHeart 4s ease-in-out infinite;
  }

  /* Постоянный белый блеск */
  .btn-gift::after{
    content: "";

    position: absolute;
    top: -120%;
    left: -40%;

    width: 45%;
    height: 320%;

    background: linear-gradient(
      to right,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.12) 40%,
      rgba(255,255,255,0.45) 50%,
      rgba(255,255,255,0.12) 60%,
      rgba(255,255,255,0) 100%
    );

    transform: rotate(25deg);

    animation: shineMove 3.2s linear infinite;
  }

  /* Hover */
  .btn-gift:hover{
    transform: scale(1.035);

    border-color: rgba(255,220,235,1);

    /* Только аура */
    box-shadow:
      0 0 18px rgba(255,105,180,0.45),
      0 0 34px rgba(255,105,180,0.38),
      0 0 70px rgba(255,105,180,0.26),
      0 0 120px rgba(255,105,180,0.14),
      inset 0 1px 0 rgba(255,255,255,0.22);
  }

  /* Сердечко */
  @keyframes floatingHeart{
    0%{
      transform: rotate(-30deg) translateY(0px) scale(1);
    }

    25%{
      transform: rotate(-28deg) translateY(-2px) scale(1.03);
    }

    50%{
      transform: rotate(-32deg) translateY(1px) scale(0.98);
    }

    75%{
      transform: rotate(-29deg) translateY(-1px) scale(1.02);
    }

    100%{
      transform: rotate(-30deg) translateY(0px) scale(1);
    }
  }

  /* Движение блика */
  @keyframes shineMove{
    0%{
      left: -55%;
    }

    100%{
      left: 140%;
    }
  }

  .btn-disabled{
    opacity: .55;
    pointer-events: none;
  }

  /* Footer FAQ link */
  .faq-link-inline{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease, border-color .2s ease, background-color .2s ease;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid transparent;
  }

  .faq-link-inline:hover{
    color: #fff;
    transform: translateX(3px);
    background: var(--panel2);
    border-color: var(--stroke2);
  }

  .faq-link-icon{
    width: 16px;
    height: 16px;
    opacity: .9;
  }