
:root {
  --brand-primary:  #ff5722;
  --brand-secondary:#ff8a00;
  --header-bg:      #ffffff;
  --header-text:    #212529;
}

/* RESET BÁSICO */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f5f5f7;
}

/* HEADER ESTILO SHOPEE */
.header-main {
  background: linear-gradient(90deg, #ff5722 0%, #ff8a00 100%);
  color: #fff !important;
}
.header-main .navbar-brand,
.header-main .navbar-brand .store-name {
  color: #fff !important;
}
.header-main .search-input {
  border-radius: 999px;
  border: none;
}
.header-main .search-input:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .6);
}

/* Botão carrinho */
.cart-toggle-btn {
  color: #fff;
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background: #ffeb3b;
  color: #c62828;
  border-radius: 999px;
  padding: 1px 6px;
  font-size: 11px;
  font-weight: 700;
}

/* HERO / BANNERS */
.hero-banner {
  border-radius: 16px;
  overflow: hidden;
}

/* CARDS DE PRODUTO */
.product-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}
.product-card img {
  object-fit: cover;
}

/* BOTÕES PRINCIPAIS */
.btn-primary {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
}
.btn-primary:hover {
  background-color: #e64a19;
  border-color: #e64a19;
}
.btn-outline-primary {
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}
.btn-outline-primary:hover {
  background-color: var(--brand-primary);
  color: #fff;
}

/* PÁGINA ADMIN */
.admin-tabs .nav-link.active {
  background-color: var(--brand-primary);
  color: #fff;
}

/* Ajuda visual */
.brand-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff22;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
