/* ==========================================================
   VELVET MODEL GIFTS — Premium Unified Section
   ========================================================== */

   .model-gifts {
    color: #f5f5f5;
    font-family: "Poppins", sans-serif;
    padding: 60px 40px 80px;
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 16px;
    animation: fadeIn 0.4s ease;
  }
  
  /* ===== Header ===== */
  .gifts-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
  }
  .gifts-header::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,215,0,0.08), transparent 70%);
    z-index: 0;
  }
  
  .gifts-header h2 {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    font-weight: 700;
    color: #f1d27a;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
    margin-bottom: 20px;
  }
  
  .gift-balance {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 215, 0, 0.25);
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.12);
    min-width: 220px;
    margin-bottom: 40px;
  }
  
  .gift-balance i {
    color: #ffd700;
  }
  .gift-balance strong {
    color: #ffd700;
    font-size: 1.4em;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
  }
  .gift-balance span {
    color: #bbb;
    font-size: 0.9em;
    font-weight: 500;
    opacity: 0.85;
  }
  
  /* ===== Gifts Grid ===== */
  .gifts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 26px;
    justify-items: center;
    max-width: 1100px;
    margin: 0 auto 40px;
  }
  
  .gift-card {
    position: relative;
    background: linear-gradient(180deg, rgba(25,25,30,0.9), rgba(10,10,15,0.95));
    border: 1px solid rgba(255,215,0,0.12);
    border-radius: 14px;
    text-align: center;
    padding: 0 0 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
    overflow: hidden;
    width: 220px;
  }
  
  .gift-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 22px rgba(255,215,0,0.2);
    border-color: #f1d27a;
  }
  
  .gift-image {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(255,215,0,0.1);
  }
  
  .gift-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 12px 0 4px;
  }
  
  .gift-cost {
    font-size: 0.9rem;
    color: #f1d27a;
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .btn-send {
    background: linear-gradient(180deg, #3a2c00, #b38b2b);
    color: #fff;
    border: 1px solid #d4b14e;
    border-radius: 8px;
    padding: 8px 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
  }
  .btn-send:hover {
    background: linear-gradient(180deg, #5c4600, #f2d675);
    color: #111;
  }
  
  /* ===== History ===== */
  .gifts-history {
    border-top: 1px solid rgba(255,215,0,0.1);
    padding-top: 25px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .gifts-history h3 {
    color: #f1d27a;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 1rem;
  }
  
  .gift-history-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .gift-history-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,215,0,0.05);
    font-size: 0.9em;
  }
  .gift-history-list i {
    color: #ffd700;
    margin-right: 5px;
  }
  
  .empty {
    text-align: center;
    opacity: 0.7;
    font-size: 0.9em;
    color: #999;
    margin-top: 20px;
  }
  
  /* ===== Animations & Responsive ===== */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @media (max-width: 768px) {
    .model-gifts {
      padding: 40px 20px 60px;
    }
    .gifts-grid {
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 18px;
    }
  }
  