:root {
    --aj-orange: #FF6200;
    --aj-blue: #1A3C5E;
    --aj-white: #FFFFFF;
    --aj-light-gray: #F8F9FA;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--aj-light-gray);
}

/* Botões */
.btn-primary {
    background-color: var(--aj-orange);
    border-color: var(--aj-orange);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #e55a00;
    border-color: #e55a00;
}

.btn-secondary {
    background-color: var(--aj-blue);
    border-color: var(--aj-blue);
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: #14304d;
    border-color: #14304d;
}

.bg-primary {
    background-color: var(--aj-orange) !important;
}

.bg-secondary {
    background-color: var(--aj-blue) !important;
}

.text-primary {
    color: var(--aj-orange) !important;
}

.text-secondary {
    color: var(--aj-blue) !important;
}

.border-primary {
    border-color: var(--aj-orange) !important;
}

.border-secondary {
    border-color: var(--aj-blue) !important;
}

/* Estilo do Logo */
.aj-logo {
    font-weight: 700;
    font-size: 1.5rem;
}

.aj-logo span:first-child {
    color: var(--aj-orange);
}

.aj-logo span:last-child {
    color: var(--aj-blue);
}

/* Navegação inferior para aplicativo móvel */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    background-color: var(--aj-white);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-bottom-nav .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0;
    color: #6c757d;
}

.mobile-bottom-nav .nav-link.active {
    color: var(--aj-orange);
}

.mobile-bottom-nav .nav-link i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.mobile-content {
    padding-bottom: 70px; /* Espaço para a navegação inferior */
}

/* Cabeçalho padrão */
.app-header {
    background-color: white;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Cartões */
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Barra de pesquisa */
.search-bar {
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Badges */
.category-badge {
    background-color: var(--aj-blue);
    color: white;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
}

.distance-badge {
    background-color: var(--aj-orange);
    color: white;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
}

/* Cartões de loja e produto */
.store-card, .product-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-card:hover, .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.store-img {
    height: 120px;
    object-fit: cover;
}

.product-img {
    height: 120px;
    object-fit: cover;
}

/* Seletor de quantidade */
.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #dee2e6;
    border-radius: 50px;
    overflow: hidden;
    width: fit-content;
}

.quantity-btn {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--aj-blue);
}

.quantity-input {
    width: 40px;
    border: none;
    text-align: center;
    font-weight: bold;
}

.quantity-input:focus {
    outline: none;
}

/* Cartões de resumo */
.summary-card {
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Botões de ação */
.action-btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

/* Acessibilidade */
.btn, .nav-link, a {
    transition: all 0.2s ease;
}

/* Botões amigáveis para toque em dispositivos móveis */
@media (max-width: 768px) {
    .btn {
        padding: 0.75rem 1rem;
        min-height: 48px;
    }
}