    .gift-grid-2 {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      margin-top: 20px;
    }

    @media (min-width: 820px) {
      .gift-grid-2 {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .gift-item-2 {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 12px;
    }

    .gift-item-2 img {
      width: 200px;
      height: auto;
      border-radius: 12px;
      object-fit: cover;
      box-shadow: 0 4px 12px rgba(0,0,0,.1);
    }

    .gift-buttons-2 {
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 8px;
    }

    .price-btn-2 {
      appearance: none;
      border: 2px solid var(--accent);
      background: transparent;
      color: var(--accent);
      padding: 10px 16px;
      border-radius: 8px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .price-btn-2:hover {
      background: var(--accent);
      color: #fff;
      transform: translateY(-2px);
    }

    .price-btn-2.active {
      background: var(--accent);
      color: #fff;
    }

    .email-section-2 {
      margin-top: 32px;
      text-align: center;
    }

    .email-btn-2 {
      appearance: none;
      border: 0;
      padding: 16px 28px;
      border-radius: 999px;
      font-weight: 700;
      cursor: pointer;
      background: linear-gradient(135deg, var(--accent), var(--accent-strong));
      color: #fff;
      box-shadow: 0 8px 18px var(--ring);
      font-size: 16px;
      transition: all 0.2s ease;
      text-decoration: none;
      display: inline-block;
    }

    .email-btn-2:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(0,0,0,.15);
    }

    .custom-info-2 {
      background: rgba(201,162,109,.08);
      border: 1px dashed rgba(0,0,0,.12);
      padding: 16px;
      border-radius: 12px;
      margin-top: 24px;
      margin-bottom: 24px;
    }

    .custom-info-2 p {
      margin: 8px 0;
      color: var(--text);
    }

    .gift-content-2 {
      background: rgba(201,162,109,.05);
      border-left: 3px solid var(--accent);
      padding: 12px 16px;
      border-radius: 6px;
      margin-top: 12px;
      font-size: 14px;
    }

    .gift-content-2 ul {
      margin: 8px 0;
      padding-left: 20px;
      list-style: none;
    }

    .gift-content-2 li {
      margin: 6px 0;
      color: var(--text);
    }

    .gift-content-2 li:before {
      content: "✓ ";
      color: var(--accent);
      font-weight: bold;
      margin-right: 6px;
    }

    .gift-price-label {
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 8px;
    }

    /* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .modal-content-2 {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: var(--card);
      padding: 20px;
      border-radius: 12px;
      max-width: 90vw;
      max-height: 90vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-shadow: 0 10px 40px rgba(0,0,0,.3);
    }

    .modal-content-2 img {
      max-width: 100%;
      max-height: 70vh;
      border-radius: 8px;
      object-fit: contain;
    }

    .close-btn {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 32px;
      font-weight: bold;
      color: var(--text);
      cursor: pointer;
      transition: color 0.2s ease;
      background: none;
      border: none;
      padding: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .close-btn:hover {
      color: var(--accent);
    }

    .gift-item-2 img {
      cursor: pointer;
      transition: transform 0.2s ease;
    }

    .gift-item-2 img:hover {
      transform: scale(1.05);
    }