/**
 * assets/css/frontend.css
 *
 * Estilos principais para o front-end do plugin Rifas do MetaBoyZ.
 * Inclui o layout da página da rifa, pop-ups, e ecrã do vencedor.
 */

/* --- ESTILO GERAL DO TEMA ESCURO --- */
body.single-rifa {
    background-color: #121212;
    color: #f0f0f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* --- CONTAINER PRINCIPAL DA RIFA --- */
.rifa-modern-container {
    max-width: 500px;
    margin: 40px auto;
    background-color: #1e1e1e;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.rifa-body {
    padding: 24px;
}

/* --- CABEÇALHO COM IMAGEM --- */
.rifa-header {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #333; /* Cor de fallback se a imagem falhar */
}
.rifa-header-overlay {
    background: linear-gradient(to top, rgba(30,30,30,1) 0%, rgba(30,30,30,0) 100%);
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 16px;
}
.badge-participar, .badge-preco {
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}
.badge-participar {
    background-color: #f0b90b;
    color: #1e1e1e;
}
.badge-preco {
    background-color: rgba(0,0,0,0.6);
    color: #fff;
}

/* --- TÍTULOS E INFORMAÇÕES --- */
.rifa-body h1 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 700;
}
.rifa-subtitulo {
    font-size: 16px;
    color: #aaa;
    margin-top: 0;
    line-height: 1.5;
}
.rifa-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #888;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 12px 0;
    margin: 20px 0;
}

/* --- BARRA DE PROGRESSO DA RIFA --- */
.rifa-progress-section {
    margin: 25px 0 20px 0; /* Ajustar margem inferior */
}

.progress-bar-container {
    width: 100%;
    background-color: #333; /* Fundo da barra */
    border-radius: 8px;
    height: 16px; /* Altura da barra */
    overflow: hidden; /* Para que o preenchimento não saia dos cantos */
    border: 1px solid #444;
}

.progress-bar-fill {
    height: 100%;
    background-color: #f0b90b; /* Cor do preenchimento (amarelo) */
    border-radius: 8px 0 0 8px; /* Cantos arredondados só no início */
    transition: width 0.5s ease-in-out; /* Animação suave */
    text-align: center; /* Para texto dentro da barra, se quiser */
    line-height: 16px; /* Centralizar texto verticalmente, se houver */
    color: #1e1e1e; /* Cor do texto dentro da barra */
    font-size: 10px;
    font-weight: bold;
}
/* Arredondar canto direito quando a barra está cheia */
.progress-bar-fill[style*="width: 100%"] {
    border-radius: 8px;
}


.progress-bar-labels {
    display: flex; /* Mantido flex para consistência */
    justify-content: space-between; /* Mantido, mas não fará diferença com um item */
    margin-top: 8px;
    font-size: 13px;
    color: #aaa; /* Cor do texto das etiquetas */
}

/* --- AJUSTE PARA ETIQUETA ÚNICA DA BARRA DE PROGRESSO --- */
.progress-bar-labels.single-label {
    justify-content: center; /* Centraliza o conteúdo horizontalmente */
    text-align: center; /* Garante que o texto dentro do span está centrado */
}
/* Opcional: Remover espaço extra se houver apenas a percentagem */
.rifa-progress-section {
    margin-bottom: 20px; /* Pode ajustar conforme necessário */
}

/* --- LINK PARA MEUS BILHETES --- */
.my-tickets-link-section {
    text-align: center; /* Centraliza o link */
    margin: 25px 0; /* Espaçamento acima e abaixo */
    border-top: 1px solid #333; /* Linha separadora acima */
    padding-top: 25px; /* Espaço entre linha e link */
}

.my-tickets-link {
    color: #f0b90b; /* Cor amarela */
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: inline-flex; /* Para alinhar ícone e texto */
    align-items: center; /* Alinha verticalmente */
    gap: 8px; /* Espaço entre ícone e texto */
    padding: 10px 15px; /* Padding interno para área clicável */
    border-radius: 8px; /* Cantos arredondados */
    transition: background-color 0.2s ease;
}

.my-tickets-link svg {
    width: 18px; /* Tamanho do ícone */
    height: 18px;
}

.my-tickets-link:hover {
    background-color: rgba(240, 185, 11, 0.1); /* Fundo amarelo suave no hover */
    text-decoration: underline;
}

/* Ajustar margem superior se a barra de progresso não for mostrada */
.rifa-progress-section + .my-tickets-link-section {
    margin-top: 25px; /* Mantém a margem */
    padding-top: 25px;
    border-top: 1px solid #333;
}
/* Se a barra NÃO existe, a margem vem do .rifa-info */
.rifa-info + .my-tickets-link-section {
     margin-top: 25px;
     padding-top: 25px;
     border-top: 1px solid #333;
}
/* Ajustar margem inferior antes da promoção */
.my-tickets-link-section + .promo-section {
    margin-top: 0; /* Remover margem superior da promoção */
}


/* --- SEÇÕES (PROMOÇÃO, QUANTIDADE, ETC) --- */
.rifa-section {
    margin-top: 24px;
}
.promo-header {
    display: flex;
    justify-content: space-between;
    color: #aaa;
    margin-bottom: 12px;
    font-size: 14px;
}
.promo-button {
    width: 100%;
    padding: 16px;
    background-color: transparent;
    color: #f0b90b;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.promo-button:hover {
    background-color: #333;
}
.quantity-section h4 {
    font-size: 16px;
    color: #fff;
    margin-top: 0;
    margin-bottom: 12px;
}
.quantity-presets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.quantity-btn {
    padding: 12px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%; /* Garantir que o botão dentro do wrapper ocupa 100% */
}
.quantity-btn:hover:not(:disabled) { /* Não mudar cor se desativado */
    background-color: #444;
}
.quantity-btn:disabled { /* Estilo para botões desativados */
     background-color: #2a2a2a;
     color: #666;
     cursor: not-allowed;
}

.quantity-input-wrapper {
    display: flex;
    margin-top: 16px;
    gap: 10px;
    /* NOVO: Adiciona largura máxima no desktop para centralização */
    max-width: 460px; 
    margin-left: auto; 
    margin-right: auto;
}
#quantity-minus, #quantity-plus {
    width: 50px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}
#quantity-minus:disabled, #quantity-plus:disabled { /* Estilo para botões desativados */
     background-color: #2a2a2a;
     color: #666;
     cursor: not-allowed;
}

#quantity-input {
    flex-grow: 1;
    text-align: center;
    background-color: #1e1e1e;
    color: #fff;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    padding: 0 10px;
    box-sizing: border-box; /* Para padding não aumentar tamanho */
}
#quantity-input:disabled { /* Estilo para input desativado */
     background-color: #2a2a2a;
     color: #666;
     cursor: not-allowed;
     border-color: #444;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
#submit-button {
    flex-grow: 3;
    padding: 16px;
    background-color: #f0b90b;
    color: #1e1e1e;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.2s ease;
}
#submit-button:hover:not(:disabled) {
    opacity: 0.9;
}
#submit-button:disabled { /* Estilo para botão principal desativado */
     background-color: #555;
     color: #999;
     cursor: not-allowed;
     opacity: 0.7;
}


/* --- SEÇÃO DE REGULAMENTO --- */
.rules-section {
    margin-top: 24px;
}
.rules-toggle {
    width: 100%;
    padding: 16px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}
.rules-toggle:hover {
    background-color: #444;
}
.rules-toggle span {
    display: flex;
    align-items: center;
    gap: 10px;
}
.rules-toggle .arrow {
    transition: transform 0.3s ease;
}
.rules-toggle.rules-open .arrow {
    transform: rotate(180deg);
}
.rules-content {
    padding: 20px 10px 0 10px;
    color: #aaa;
    line-height: 1.6;
    border-top: 1px solid #333;
    margin-top: -1px; /* Para sobrepor a borda do botão */
}
.rules-content p {
    margin-top: 0;
}

/* --- MENSAGENS DE ESTADO --- */
.rifa-esgotada, .rifa-login {
    text-align: center;
    padding: 20px;
    background-color: #333;
    border-radius: 8px;
    margin-top: 20px;
}
.rifa-login a {
    color: #f0b90b;
    font-weight: bold;
}
/* Mensagem de erro do form-handler */
.rifa-error.notice {
    background-color: #dc3232 !important; /* Forçar sobreposição */
    color: #fff !important;
    padding: 15px !important;
    border-radius: 8px !important;
    margin: 20px auto !important;
    max-width: 500px !important;
    box-sizing: border-box !important;
    border-left: none !important; /* Remover borda padrão do WP */
}


/* --- POP-UP (MODAL) DE COMPRA --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Mais escuro */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px; /* Espaçamento para não colar nas bordas */
    box-sizing: border-box;
}
.modal-content {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    width: 100%; /* Ocupar largura disponível no mobile */
    max-width: 400px; /* Limite máximo */
    position: relative;
    text-align: left;
    max-height: 90vh; /* Limitar altura e ativar scroll */
    overflow-y: auto; /* Scroll vertical se necessário */
}
.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #888;
    font-size: 28px;
    cursor: pointer;
    line-height: 1; /* Alinhar o X */
}
.modal-content h3 {
    margin-top: 0;
    color: #fff;
    margin-bottom: 20px; /* Mais espaço */
}
.modal-content p {
    color: #aaa;
    line-height: 1.5; /* Melhorar leitura */
}
.modal-content label {
    display: block;
    margin-top: 15px;
    margin-bottom: 8px;
    color: #ccc;
    font-size: 14px;
    font-weight: 500; /* Leve negrito */
}
.modal-content input[type="tel"],
.modal-content input[type="text"],
.modal-content input[type="password"], /* Estilo para PIN */
.modal-content input[type="email"], /* Estilo para email */
.modal-content select {
    width: 100%;
    padding: 12px;
    background-color: #333;
    border: 1px solid #555;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    box-sizing: border-box;
}
.modal-content input:focus, .modal-content select:focus {
    border-color: #f0b90b; /* Destaque no foco */
    outline: none;
}


/* Estilos para campos readonly/disabled */
.modal-content input[readonly],
.modal-content input.readonly-field,
.modal-content select:disabled {
    background-color: #2a2a2a;
    color: #999;
    cursor: not-allowed;
    border-color: #444;
}

#modal-confirm-btn, .button-primary, .button-secondary {
    width: 100%;
    margin-top: 25px;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.2s;
}
#modal-confirm-btn:disabled, .button-primary:disabled, .button-secondary:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

#modal-confirm-btn, .button-primary {
    background-color: #f0b90b;
    color: #1e1e1e;
}
.button-secondary {
    background-color: #555;
    color: #fff;
    margin-top: 10px;
}
.phone-input-group {
    display: flex;
    align-items: center;
    background-color: #333;
    border: 1px solid #555;
    border-radius: 8px;
    padding: 0 12px;
}
.phone-input-group:focus-within {
    border-color: #f0b90b;
}
.phone-input-group .country-code {
    padding-right: 10px;
    font-weight: bold;
    color: #aaa;
    border-right: 1px solid #555;
    margin-right: 10px;
}
.phone-input-group input[type="tel"] {
    /* Herda estilos, mas remove borda e fundo próprios */
    padding: 12px 0;
    background: none;
    border: none;
    flex-grow: 1; /* Ocupar espaço restante */
}
.phone-input-group input[type="tel"]:focus {
    outline: none;
}
.payment-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap; /* Para caber botão da carteira */
}
.payment-options button {
    flex: 1 1 auto; /* Permite quebrar linha se necessário */
    padding: 12px;
    background-color: #333;
    color: #fff;
    border: 1px solid #555;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px; /* Ajustar se necessário */
}
.payment-options button.active {
    border-color: #f0b90b;
    background-color: #444;
}
.payment-details {
    background-color: #2a2a2a; /* Fundo ligeiramente diferente */
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #444; /* Borda subtil */
    margin-top: 15px; /* Espaço acima */
}
.payment-details h4 {
    margin-top: 0;
    color: #f0b90b;
    font-size: 16px;
}
.payment-details p {
    margin-bottom: 5px;
    color: #ccc;
}
.payment-details strong {
    color: #fff;
}

.screenshot-option {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.screenshot-option label { /* Estilo para o label do checkbox */
    margin: 0; /* Remover margens padrão */
    font-weight: normal; /* Não negrito */
    color: #ccc;
    cursor: pointer;
}
#screenshot-upload-field label { /* Label do input file */
     margin-top: 10px;
}
#screenshot-upload-field input[type="file"] {
    width: 100%;
    margin-top: 5px;
    color: #ccc; /* Cor do texto "Nenhum ficheiro selecionado" */
    background-color: #333;
    border: 1px solid #555;
    border-radius: 8px;
    padding: 8px 12px;
}
/* Estilo do botão de seleção de ficheiro (varia entre navegadores) */
#screenshot-upload-field input[type="file"]::file-selector-button {
    background-color: #555;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}


/* --- REVELAÇÃO DO VENCEDOR --- */
#winner-reveal-container {
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}
#reveal-animation .spinner {
    border: 8px solid #333;
    border-top: 8px solid #f0b90b;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1.5s linear infinite;
    margin: 0 auto 20px auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#reveal-message {
    font-size: 18px;
    color: #aaa;
    font-style: italic;
}
#reveal-button {
    padding: 20px 40px;
    font-size: 22px;
    font-weight: bold;
    color: #1e1e1e;
    background-color: #f0b90b;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease;
}
#reveal-button:hover {
    transform: scale(1.05);
}
#reveal-results h2 {
    color: #f0b90b;
    font-size: 32px;
    text-transform: uppercase;
}
.winner-name-container {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin: 20px 0 5px 0; /* Menos margem inferior */
    min-height: 40px; /* Para efeito de digitação */
}
.message-others {
    margin-top: 30px;
    color: #888;
    font-size: 14px;
}
.winner-box { /* Usado no resultado final estático */
    text-align: center;
}
.winner-details { /* Usado no resultado final estático */
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #444;
}
.winner-name { /* Usado no resultado final estático */
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #f0b90b;
}
.winner-ticket { /* Usado no resultado final estático */
    display: block;
    margin-top: 10px;
    font-size: 16px;
    color: #ccc;
}
.winner-ticket strong {
     color: #fff;
     font-family: monospace;
}
.winner-location { /* Usado no resultado final estático e na animação */
    font-size: 20px;
    color: #ccc;
    margin-top: 5px; /* Ajustar espaço */
    margin-bottom: 20px;
}
.final-result .winner-details {
    margin-top: 10px;
}

/* --- POP-UP DO SORTEIO AO VIVO --- */
#live-draw-title {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase; /* Garante o texto em maiúsculas */
}
#live-draw-title::before {
    content: 'LIVE';
    background-color: #FF6347; /* Vermelho vibrante */
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    display: none;
}
#live-draw-modal.is-live #live-draw-title::before {
    display: inline-block;
}
.live-draw-button {
    display: block;
    width: 100%;
    margin-top: 25px;
    padding: 16px;
    background-color: #FF6347; /* Vermelho vibrante */
    color: white;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.2s ease;
}
.live-draw-button:hover {
    opacity: 0.9;
}

/* --- RESPONSIVIDADE --- */
@media screen and (max-width: 480px) {
    .rifa-modern-container {
        margin: 20px 10px; /* Menos margem lateral */
        border-radius: 12px; /* Ligeiramente menos arredondado */
    }
    .rifa-body {
        padding: 20px; /* Menos padding */
    }
    .rifa-header {
        height: 200px; /* Header mais baixo */
    }
    .badge-participar, .badge-preco {
        font-size: 12px;
        padding: 6px 10px;
    }
    .rifa-body h1 {
        font-size: 20px;
    }
    .rifa-subtitulo {
        font-size: 14px;
    }
    .rifa-info {
        font-size: 12px;
    }
    
    .quantity-presets {
        grid-template-columns: repeat(2, 1fr); /* FORÇAR 2 colunas em mobile */
        /* Novo: Adicionar uma margem maior na parte superior para compensar o limite e a checkbox */
        margin-top: 15px;
    }
    
    /* --- INÍCIO: Sticky Footer para Mobile --- */
    .mobile-sticky-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        background-color: #1e1e1e; /* Cor do container principal */
        padding: 10px 20px 20px 20px; /* Padding extra para não colar no fundo e nas laterais */
        z-index: 99; /* Garantir que fica por cima de outros elementos */
        box-shadow: 0 -5px 15px rgba(0,0,0,0.5); /* Sombra para destacar */
        /* NOVO: Usar Flexbox para centralizar o wrapper interno */
        display: flex;
        justify-content: center;
    }

    /* O wrapper dentro do footer fixo precisa ser limitado e não quebrar. */
    .mobile-sticky-footer .quantity-input-wrapper {
        flex-wrap: nowrap; /* Impede que quebre (o botão COMPRAR tem 100% de width) */
        width: 100%; /* Ocupar o espaço dentro do padding */
        max-width: 460px; /* Limitar o tamanho máximo do bloco para evitar excesso em tablets */
        margin: 0; /* Remover margem automática que o centraliza no desktop */
    }

    /* Ajuste na margem do último elemento antes do footer fixo para não ficar escondido */
    .rifa-section.quantity-section {
        padding-bottom: 120px; /* Adicionar espaço para o footer fixo */
    }
    /* --- FIM: Sticky Footer para Mobile --- */
    
    .quantity-input-wrapper {
        flex-wrap: wrap; /* Quebrar linha se necessário */
    }
    #quantity-input {
        flex-grow: 2; /* Dar mais espaço ao input */
        min-width: 80px; /* Garantir largura mínima */
    }
    #submit-button {
        flex-basis: 100%; /* Ocupar linha inteira */
        margin-top: 10px; /* Espaço acima */
    }
    .modal-content {
        padding: 20px; /* Menos padding no modal */
    }
    .modal-content input[type="file"] {
        /* Ajustar estilo do input file em mobile */
        font-size: 14px;
    }
    #modal-confirm-btn, .button-primary, .button-secondary {
        padding: 14px;
        font-size: 15px;
    }
    #reveal-button {
        padding: 15px 30px;
        font-size: 18px;
    }
    #reveal-results h2 {
         font-size: 26px;
    }
    .winner-name-container {
         font-size: 22px;
    }
    .winner-location {
         font-size: 16px;
    }
    .progress-bar-labels {
         font-size: 12px; /* Texto menor no mobile */
    }
    .my-tickets-link {
        font-size: 14px; /* Link "Meus Bilhetes" menor */
    }
}

/* ========================================= */
/* --- NOVO: ESTILOS DE VALIDAÇÃO DE CONVITE --- */
/* ========================================= */
.referral-validation-message {
    font-size: 13px;
    font-weight: bold;
    margin-top: 8px;
    margin-bottom: 0;
    padding: 8px 12px;
    border-radius: 5px;
    display: none; /* Começa escondido */
}

.referral-validation-message.loading {
    display: block;
    color: #f0b90b;
    background-color: rgba(240, 185, 11, 0.1);
    border: 1px solid #f0b90b;
}

.referral-validation-message.valid {
    display: block;
    color: #2ecc71;
    background-color: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
}

.referral-validation-message.invalid {
    display: block;
    color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.1);
    border: 1px solid #e74c3c;
}

/* --- Destaque MAIS POPULAR --- */
.popular-wrapper {
    position: relative; /* Contém o balão */
    display: flex;
    flex-direction: column;
    align-items: stretch; /* Esticar para preencher a coluna da grelha */
}

.popular-label {
    position: absolute;
    top: -10px; /* Ajustar a altura do balão */
    background-color: #f0b90b; /* Amarelo de destaque */
    color: #1e1e1e;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 4px;
    z-index: 5;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    /* Setinha para baixo */
    clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 50% 100%, 0% 70%);
    padding-bottom: 5px; /* Compensar a forma de seta */
    /* NOVO: Centralizar Horizontalmente */
    left: 50%;
    transform: translateX(-50%); 
    min-width: 80px; /* Garantir que a label não seja muito estreita */
    text-align: center;
}

.quantity-btn.is-popular {
    /* Estilos para o botão popular (ex: mudar cor, borda) */
    background-color: #444; /* Fundo mais escuro */
    border: 2px solid #f0b90b; /* Borda amarela */
    box-shadow: 0 0 10px rgba(240, 185, 11, 0.5); /* Brilho */
}

.quantity-btn.is-popular:hover:not(:disabled) {
    background-color: #555;
}

/* Ajuste a margem superior do botão para dar espaço ao balão */
.popular-wrapper .quantity-btn {
    margin-top: 15px; 
}