/* =============================== */
/*   Velvet Common Styles (Model)  */
/* =============================== */

/* Caixa base das seções */
.model-section-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
  }
  .model-section-box:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 18px rgba(212,175,55,0.25);
  }
  
  /* Títulos */
  .model-dash-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 14px;
    font-family: 'Playfair Display', serif;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    padding-bottom: 6px;
  }
  
  /* Inputs premium */
  .model-input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--background);
    color: var(--text);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.25s ease;
  }
  .model-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 8px rgba(212,175,55,0.35);
    outline: none;
  }
  
  /* Botões */
  .model-btn-gold {
    background: var(--gold);
    color: var(--background);
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    margin-top: 15px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.25s ease;
  }
  .model-btn-gold:hover {
    filter: brightness(1.08);
    box-shadow: 0 0 12px rgba(212,175,55,0.4);
    transform: translateY(-1px);
  }
  .model-btn-gold:active { transform: scale(0.98); }
  
  .model-btn-secondary {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(212,175,55,0.35);
    color: var(--text);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
  }
  .model-btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255,215,0,0.1);
  }
  
  /* Select premium */
  .model-select {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    cursor: pointer;
    color: var(--text);
    transition: all 0.25s ease;
  }
  .model-select:hover {
    border-color: var(--gold);
    box-shadow: 0 0 8px rgba(212,175,55,0.3);
  }
  
  /* Upload box */
  .model-upload {
    border: 2px dashed var(--border);
    border-radius: 14px;
    padding: 30px;
    text-align: center;
    color: var(--text);
    cursor: pointer;
    transition: all 0.25s ease;
    background: var(--surface);
  }
  .model-upload:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 14px rgba(212,175,55,0.3);
  }
  
  /* ============================================================
   Velvet Client Gifts — Premium History Styling
   ============================================================ */

/* ---------- Base Section ---------- */
.client-gifts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--background);
}

.client-gifts h2 {
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
}

/* ---------- List ---------- */
.gift-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.gift-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gift-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* ---------- Left Side ---------- */
.gift-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

.gift-left i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ---------- Right Side ---------- */
.gift-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-size: 0.8rem;
}

.gift-to {
  font-weight: 600;
  color: var(--text);
}

.gift-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

.gift-right time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---------- Empty State ---------- */
.client-gifts p {
  text-align: center;
  color: var(--text-muted);
  padding: 20px 0;
  font-style: italic;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .gift-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .gift-right {
    align-items: flex-start;
  }
}
