
        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fff; /* Cor de fundo do site */
        }

        .container {
            max-width: 900px;
            margin: 20px auto;
            padding: 20px;
             background-color: #fff; /* Cor de fundo do site */
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

      header {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alinha tudo para o lado esquerdo */
    margin-bottom: 20px;
    
      background-color: #ffff; /* Cor de fundo do site */
}

.logo-container {
    margin-right: 20px; /* Espaço entre a logo e o restante do conteúdo */
}

.logo-container svg {
    width: 160px;
    height: auto;
}
.gift-section {
            display: flex;
            align-items: center;
            background-color: #eef6ff;
            border: 1px dashed #aaccee;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 20px;
        }

        .gift-section svg {
            width: 32px;
            height: 32px;
            margin-right: 15px;
            fill: #6c63ff;
        }

        .gift-section p {
            margin: 0;
            font-size: 16px;
            color: #333;
        }

        .gift-section strong {
            font-size: 18px;
            color: #4169e1;
        }

        .form-group {
            margin-bottom: 15px;
            position: relative;
        }

        .form-group label {
            font-weight: 600;
            color: #333;
            display: block;
            margin-bottom: 5px;
        }

        .form-group .custom-select {
            display: flex;
            align-items: center;
            border: 1px solid #ccc;
            border-radius: 25px;
            padding: 10px 15px;
            background-color: #fff;
        }

        .form-group .custom-select select {
            appearance: none;
            border: none;
            outline: none;
            background: transparent;
            font-size: 16px;
            flex: 1;
            margin-left: 10px;
        }

        .type-selection {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }

        .type-selection button {
            flex: 1;
            padding: 10px;
            border: 1px solid #aaccee;
            background-color: #eef6ff;
            color: #333;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
        }

        .type-selection button.active {
            background-color: #4169e1;
            color: #fff;
        }

      .quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 2px solid #aaccee;
    border-radius: 25px;
    padding: 5px 20px;
    background-color: #eef6ff;
    width: 100%; /* Ajusta para ocupar toda a largura do container pai */
    max-width: none; /* Remove o limite de largura */
    margin: 0; /* Remove o espaçamento automático */
    box-sizing: border-box; /* Garante que o padding não ultrapasse o tamanho do container */
}


  .quantity button {
    width: 60px; /* Largura maior */
    height: 60px; /* Altura maior */
    font-size: 18px; /* Tamanho de fonte mínimo 16px para evitar zoom */
    font-weight: bold;
    color: #ffffff;
    background-color: #6c63ff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    touch-action: manipulation; /* Remove gestos de zoom */
}

.quantity button:active {
    transform: scale(0.95); /* Feedback visual */
    background-color: #574bd1;
}


        .quantity input {
            width: 80px;
            text-align: center;
            font-size: 22px;
            font-weight: bold;
            border: none;
            background-color: transparent;
            color: #333;
        }

      /* Contêiner para Instagram Login */
.instagram-input-container {
    display: flex;
    flex-direction: column;
    align-items: stretch; /* Alinha os filhos para ocupar toda a largura disponível */
    width: 100%; /* Ocupa toda a largura do container pai */
    max-width: none; /* Remove o limite de largura */
    margin: 0 0 20px; /* Remove centralização automática, deixa alinhado ao container */
    box-sizing: border-box; /* Garante que padding e borda sejam inclusos no tamanho total */
}


.instagram-input-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Adiciona espaçamento uniforme entre os elementos internos */
    background-color: #eef6ff;
    border: 2px solid #aaccee;
    border-radius: 25px; /* Mesma borda do Quantity */
    padding: 10px 20px;
    width: 100%; /* Ocupa toda a largura do container pai */
    box-sizing: border-box; /* Inclui padding e borda no cálculo de largura */
    height: 60px; /* Altura consistente com Quantity */
    max-width: none; /* Remove limite de largura, garantindo a adaptação */
}


.instagram-icon {
    flex-shrink: 0;
    width: 40px; /* Ícone do mesmo tamanho que o botão Quantity */
    height: 40px;
    margin-right: 10px;
    color: #6c63ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 16px;
    color: #333;
}

.instagram-input::placeholder {
    color: #aaa;
    font-style: italic;
}

.instagram-label {
    margin-top: 5px;
    font-size: 14px;
    color: #4169e1;
    text-align: center;
    font-weight: bold;
}


        .submit-btn {
            width: 100%;
            padding: 15px;
            background-color: #ffc107;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: bold;
            color: #333;
            cursor: pointer;
        }

        .price {
            text-align: right;
            font-size: 16px;
            font-weight: bold;
            color: #4169e1;
            margin-bottom: 15px;
        }
        
        .quantity button:active {
    transform: scale(0.95); /* Reduz ligeiramente no clique */
    background-color: #574bd1; /* Muda a cor temporariamente */
}



#order-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}






    .close-icon {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-icon:hover {
    color: #d30e22; /* Cor vermelha ao passar o mouse */
}

/* Botão de Confirmação */
.btn-confirm {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    padding: 15px;
    background-color: #28a745; /* Cor verde para indicar sucesso */
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-confirm:hover {
    background-color: #218838;
    transform: translateY(-3px);
}

.btn-confirm:active {
    background-color: #1e7e34;
    transform: translateY(1px);
}






