/**
Theme Name: Avada Child
Author: InfiWebs
Author URI: https://www.infiwebs.com/about-us
Description: Child theme for the #1 selling theme of all time that allows you to build virtually any design style.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: avada-child
Template: Avada
*/
/* Máscara preta + centralização */
.gift-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Conteúdo interno */
.gift-modal-inner {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  max-width: 400px;
  width: 100%;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
}

/* Botão fechar */
.gift-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #333333;
  cursor: pointer;
}

/* Título */
#gift-modal-title {
  font-size: 1.75rem;
  color: var(--awb-color6);
  margin-bottom: 16px;
  font-weight: 600;
}

/* Mensagem */
#gift-modal-message {
  font-size: 1rem;
  color: #444444;
  margin-bottom: 24px;
  line-height: 1.4;
}

/* Botões de compartilhamento */
.gift-modal-share {
  margin-bottom: 24px;
}
.gift-modal-share .modal-share-link {
  margin: 0 8px;
  font-size: 1.5rem;
  color: #444444;
  transition: color 0.2s ease;
}
.gift-modal-share .modal-share-link:hover {
  color: var(--awb-color6);
}

/* Botão “Abrir Lista” */
.gift-modal-open {
  background: var(--awb-color6);
  color: #ffffff;
  border: none;
  padding: 12px 32px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.gift-modal-open:hover {
  background: var(--awb-custom17);
}

/* Responsivo (um pouquinho menor em telas muito estreitas) */
@media (max-width: 400px) {
  .gift-modal-inner {
    padding: 20px;
  }
  .gift-modal-close {
    font-size: 1.25rem;
  }
  .gift-modal-open {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}
