.resumo-conta {
  border: 2px solid #0d6efd;   /* azul da borda */
  background-color: #e7f1ff;   /* azul clarinho no fundo */
  border-radius: 6px;          /* cantos arredondados */
}
.product-card {
    display: flex;
    align-items: flex-start; /* alinha pelo topo */
    gap: 20px;               /* espaço entre imagem e textos */
}

.product-image img {
    max-width: 100px;        /* controla largura da imagem */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.product-info {
    flex: 1;                 /* ocupa o restante do espaço */
}

.produto-titulo {
    font-size: 1.2rem;
    font-weight: bold;
    /* text-align: center;  /* centraliza dentro do card */
    color: #0c0c0e;      /* azul mais forte */
}

.product-description {
    margin-top: 10px;
    font-size: 0.95rem;   /* um pouco menor que o título */
    color: #555;          /* cinza suave para não competir com o preço */
    line-height: 1.4;     /* melhora a leitura */
    font-style: italic;   /* opcional, dá um ar de subtítulo */
    text-align: center;
}
:root {
    --primary-color: #ff7e00;
    --primary-dark: #e66a00;
    --primary-light: #ff9e40;
    --secondary-color: #2d3436;
    --gray-light: #f8f9fa;
    --gray-border: #e9ecef;
}

body {
    background: #fff;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    padding: 1rem 0;
    min-height: 100vh;
}

.product-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.product-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Header */
.product-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 1.5rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Corpo */
.product-body {
    padding: 1.25rem;
}

/* Grupo */
.grupo-card {
    background: var(--gray-light);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--gray-border);
}

.grupo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.grupo-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.grupo-info {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

/* Itens compactos */
.itens-list {
    display: flex;
    flex-direction: column;
}

.item-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--gray-border);
    font-size: 0.9rem;
}

.item-card:last-child { border-bottom: none; }

.item-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.item-name {
    font-weight: 500;
    color: var(--secondary-color);
}

.item-price {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Quantidade super compacta */
.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.qty-btn {
    width: 22px;
    height: 22px;
    border: none;
    border-radius: 4px;
    background: var(--gray-light);
    color: var(--secondary-color);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: var(--primary-color);
    color: white;
}

.qty-input {
    width: 28px;
    text-align: center;
    border: none;
    font-weight: 600;
    font-size: 0.85rem;
    background: transparent;
}

/* Botão de Submit */
.submit-section {
    margin-top: 1rem;
    text-align: right;
}

.btn-add-cart {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: var(--primary-dark);
}
#agendamentoCampos .form-control {
    font-size: 0.9rem;
    padding: 0.3rem 0.5rem;
}
#agendamentoCampos label {
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}
@media (max-width: 576px) {
    .btn-add-cart {
        width: 100%;
        margin-top: 0.5rem;
    }
    #totalPedidoBottom {
        width: 100%;
        text-align: center;
    }
}
/* Garantir que o footer não sobreponha o conteúdo */
body {
    padding-bottom: 80px;
}

/* Ajuste para dispositivos móveis */
@media (max-width: 768px) {
    .modal-footer .d-flex {
        justify-content: center !important;
        flex-direction: column !important;
        text-align: center;
    }
}
.modal-header {
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.modal-title {
    margin: 0 auto;
    font-size: 1.3rem;
    font-weight: 600;
}

.modal-body {
    font-size: 0.95rem;
    color: #444;
}

.form-label {
    font-weight: 500;
    color: #333;
}

.form-msg.invalid {
    text-align: center;
    color: #d9534f; /* vermelho para alerta */
    font-weight: bold;
}

.modal-footer {
    justify-content: center;
}
.btn {
    border-radius: 6px;
    font-weight: 500;
    padding: 6px 14px;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-success {
    background-color: #4786ca;
    border: none;
}

.btn-danger {
    background-color: #dc3545;
    border: none;
}
.bg-azul {
    background-color: #007bff; /* azul Bootstrap */
    color: #fff;
}