/* Container geral */
.package {
    align-items: flex-start !important;
    display: flex !important;
    flex-direction: column !important;
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
    overflow: initial !important;
    background-color: #0d0d13; /* fundo escuro gamer */
    color: #e0e0f0;
    font-family: 'Poppins', sans-serif;
}

/* Título principal */
.text-2xl {
    padding: 4px 8px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4a70ff;
    box-shadow: 0 0 10px #4a70ff80;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
    color: #ffffff;
}

/* Botões padrão */
.btn-info {
    background: transparent !important;
    border: 1px solid #4a70ff !important;
    border-radius: 4px;
    color: #e0e0f0 !important;
    font-weight: 500;
    margin-right: 4px;
    text-transform: uppercase;
    transition: 0.5s;
}
.btn-info:hover {
    transform: scale(1.05);
    box-shadow: -1px 3px 2px 2px #4a70ff;
    cursor: pointer;
}

.btn-danger {
    background-color: #4a70ff !important;
    box-shadow: 0 0 10px #4a70ffb0;
    border-radius: 4px;
    color: whitesmoke !important;
    font-family: 'Poppins';
    font-size: 15px;
    font-weight: 600;
    margin-left: 4px;
    transition: 0.5s;
}

.btn-success {
    background-color: #ffffff !important;
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
    border-radius: 4px;
    color: #111 !important;
    font-family: 'Poppins';
    font-size: 15px;
    font-weight: 600;
    margin-left: 4px;
    transition: 0.5s;
}
.btn-success:hover {
    transform: scale(1.05);
    box-shadow: 2px 2px 2px 2px #4a70ff;
    cursor: pointer;
}

.btn-primary {
    background-color: #4a70ff !important;
    box-shadow: 0 0 12px #4a70ffb0;
    border: 0;
    color: #fff !important;
    max-height: 60px;
    font-size: 18px;
    padding: 8px 16px;
    margin-top: 2em;
    transition: 0.5s;
}

/* Logo do carrinho */
.logo-carrinho {
    width: 54px;
    height: 54px;
    padding: 4px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Número do carrinho em vermelho */
.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ff3c3c !important;
    color: white;
    font-size: 12px;
    font-weight: 600;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 6px #ff3c3c80;
    border: 2px solid #0d0d13;
    padding: 0;
    cursor: default;
}

/* Valor do item em círculo */
.valor-item {
    background-color: #4a70ff;
    color: white;
    font-weight: bold;
    font-size: 13px;
    border-radius: 50%;
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 6px #4a70ff80;
}

/* Wrapper da imagem sem fundo */
.item-img-wrapper {
    position: relative;
    padding: 0; /* remove o espaçamento */
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none !important; /* REMOVE QUALQUER FUNDO */
}

/* Imagem do item */
.item-img-wrapper img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

/* Área de categorias */
.categories {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Área principal ajustada */
#store-body {
    height: calc(100vh - 400px) !important;
}