:root {
  --primary: #C6E600;
  --primary-strong: #D9FF00;
  --secondary: #FFD400;
  --secondary-strong: #FFEA00;
  --dark: #000000;
  --light: #FFFFFF;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f3f4f6;
  color: #111;
  padding-bottom: 30px;
}

button, input, select, textarea {
  font-family: inherit;
}

button {
  cursor: pointer;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  box-shadow: 0 3px 12px rgba(0,0,0,.25);
}

.topbar h1 {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 900;
}

.topbar p {
  font-size: 13px;
  opacity: .9;
}

.menu-btn, .cart-btn {
  border: none;
  background: transparent;
  color: var(--dark);
  font-size: 28px;
}

.cart-btn {
  margin-left: auto;
  position: relative;
}

.cart-btn span {
  background: var(--dark);
  color: var(--light);
  font-size: 13px;
  border-radius: 999px;
  padding: 2px 7px;
}

.back-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 900;
}

.hero {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-strong));
  color: var(--dark);
  padding: 28px 18px 50px;
}

.hero h2 {
  font-size: 28px;
  text-transform: uppercase;
}

.hero p {
  margin-top: 8px;
  max-width: 600px;
  color: #FFFFFF;
}

.status {
  display: inline-block;
  margin-top: 12px;
  background: var(--light);
  color: var(--dark);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 16px;
}

.toolbar {
  margin-top: -42px;
  background: white;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.toolbar input {
  width: 100%;
  border: 1px solid #e5e7eb;
  padding: 14px;
  border-radius: 12px;
  font-size: 16px;
}

.categories {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
}

.cat {
  border: 1px solid #e5e7eb;
  background: white;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.cat.active {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.product-card {
  background: white;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 140px;
}

.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-info h3 {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 19px;
}

.product-info p {
  color: #6b7280;
  line-height: 1.35;
}

.product-info small {
  color: #6b7280;
  font-weight: 700;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 10px;
}

.product-footer strong {
  font-size: 19px;
}

.product-footer button, .checkout-btn, .location-box button {
  border: none;
  background: var(--primary);
  color: var(--dark);
  padding: 11px 12px;
  border-radius: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-footer button:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

.product-card img {
  width: 140px;
  height: 100%;
  object-fit: cover;
  background: #ddd;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: none;
  z-index: 20;
}

.overlay.show {
  display: block;
}

.cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(430px, 92vw);
  background: white;
  z-index: 30;
  transform: translateX(105%);
  transition: .2s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.show {
  transform: translateX(0);
}

.drawer-head {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}

.drawer-head h2 {
  text-transform: uppercase;
}

.drawer-head button {
  border: none;
  background: transparent;
  color: var(--dark);
  font-size: 32px;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 16px;
}

.cart-line {
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty button {
  width: 30px;
  height: 30px;
  border: none;
  background: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  font-weight: 900;
}

.summary {
  border-top: 1px solid #e5e7eb;
  padding: 16px;
}

.summary div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.summary .total {
  font-size: 20px;
  font-weight: 900;
  border-top: 1px solid #e5e7eb;
  padding-top: 10px;
}

.checkout-btn {
  width: calc(100% - 32px);
  margin: 0 16px 16px;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.form-card {
  background: white;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.form-card h2 {
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  font-size: 15px;
}

.form-card textarea {
  margin-top: 12px;
  min-height: 90px;
}

.location-box {
  margin-top: 12px;
  background: #fffbea;
  border: 1px solid var(--secondary);
  color: var(--dark);
  padding: 12px;
  border-radius: 12px;
}

.location-box button {
  display: block;
  margin-top: 10px;
}

@media (max-width: 760px) {
  .products {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: 1fr 115px;
  }

  .product-card img {
    width: 115px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-site {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #FFFFFF;
  border-radius: 50%;
  padding: 4px;
}
.cart-btn {
  margin-left: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cart-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.cart-btn span {
  background: var(--dark);
  color: var(--light);
  font-size: 13px;
  border-radius: 999px;
  padding: 2px 7px;
}  
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 40;
  display: none;
}

.menu-overlay.show {
  display: block;
}

.menu-lateral {
  position: fixed;
  top: 0;
  left: 0;
  width: min(320px, 88vw);
  height: 100vh;
  background: #FFFFFF;
  z-index: 50;
  transform: translateX(-105%);
  transition: .25s ease;
  box-shadow: 8px 0 24px rgba(0,0,0,.2);
}

.menu-lateral.show {
  transform: translateX(0);
}

.menu-head {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #000;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-head strong {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 900;
}

.menu-head button {
  border: none;
  background: transparent;
  color: #000;
  font-size: 34px;
  font-weight: 900;
}

.menu-content {
  padding: 16px;
  display: grid;
  gap: 12px;
}

.menu-hello {
  background: #f3f4f6;
  padding: 12px;
  border-radius: 12px;
  font-weight: 900;
  color: #000;
}

.menu-link {
  display: block;
  text-decoration: none;
  background: #f3f4f6;
  color: #000;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-link.destaque {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #000;
}
.telefone-box {
    display: flex;
    align-items: center;
    gap: 0;
}

.telefone-box span {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-right: none;
    border-radius: 12px 0 0 12px;
    padding: 12px;
    font-size: 15px;
    font-weight: 900;
    color: #000;
}

.telefone-box input {
    border-radius: 0 12px 12px 0;
}


.hero {
  background: linear-gradient(135deg, #FFD400, #FFEA00);
  padding: 42px 20px 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: #C6E600;
  border-radius: 50%;
  right: -90px;
  top: -80px;
  opacity: .75;
}

.hero::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 18px solid #000;
  border-radius: 50%;
  left: -80px;
  bottom: -90px;
  opacity: .08;
}

.hero-content {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.hero-text h2 {
  font-size: 52px;
  line-height: 1;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-text p {
  font-size: 21px;
  color: #fff;
  max-width: 620px;
  margin-bottom: 18px;
  font-weight: 700;
}

.hero-tag {
  display: inline-block;
  background: #000;
  color: #C6E600;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 13px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.badge-status,
.badge-info {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 15px;
}

.badge-status {
  background: #fff;
  color: #000;
}

.badge-info {
  background: #000;
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-btn {
  text-decoration: none;
  padding: 13px 16px;
  border-radius: 14px;
  font-weight: 900;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  border: 2px solid #000;
  box-shadow: 0 6px 0 rgba(0,0,0,.9);
  transition: .15s ease;
}

.hero-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 rgba(0,0,0,.9);
}

.hero-btn.primary {
  background: #C6E600;
}

.hero-btn.whatsapp {
  background: #25D366;
  color: #000;
}

.hero-btn.instagram {
  background: #fff;
  color: #000;
}

.hero-btn.tiktok {
  background: #000;
  color: #fff;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 390px;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.25));
}

@media (max-width: 860px) {
  .hero {
    padding: 32px 18px 55px;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text h2 {
    font-size: 38px;
  }

  .hero-text p {
    font-size: 17px;
    color: #000;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-btn {
    width: 100%;
    font-size: 13px;
    padding: 12px 10px;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 270px;
  }
}

.cart-produto-info {
  width: 100%;
}

.adicionais-box {
  margin-top: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px;
}

.adicionais-box p {
  font-weight: 900;
  color: #000;
  margin-bottom: 8px;
  font-size: 14px;
}

.adicional-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  font-size: 14px;
  color: #111;
}

.adicional-option input {
  width: 16px;
  height: 16px;
}

.adicional-option strong {
  color: #000;
  font-size: 13px;
}

.adicionais-selecionados {
  margin-top: 5px;
  color: #374151;
}

.menu-link.admin-link {
  background: #000;
  color: #C6E600;
}

.produto-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0;
}

.produto-badge {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.produto-badge.destaque {
  background: #C6E600;
  color: #000;
}

.produto-badge.promo {
  background: #FFD400;
  color: #000;
}

.produto-badge.esgotado {
  background: #000;
  color: #fff;
}

.preco-antigo {
  color: #6b7280;
  text-decoration: line-through;
  font-size: 14px;
  margin-right: 6px;
}

.price strong {
  color: #000;
  font-size: 20px;
  font-weight: 900;
}

.add-btn.esgotado {
  background: #9ca3af !important;
  color: #fff !important;
  cursor: not-allowed;
  box-shadow: none !important;
}

.products {
  display: grid;
  gap: 16px;
}

.product-card {
  background: #FFFFFF;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  display: grid;
  grid-template-columns: 1fr 150px;
  min-height: 190px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-card h3 {
  color: #000;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-card p {
  color: #64748b;
  font-size: 17px;
  margin-bottom: 12px;
}

.product-card .price {
  margin-bottom: 16px;
}

.product-card .price strong {
  color: #000;
  font-size: 28px;
  font-weight: 900;
}

.product-card img {
  width: 150px;
  height: 100%;
  object-fit: cover;
}

.add-btn {
  width: fit-content;
  border: none;
  background: linear-gradient(135deg, #C6E600, #D9FF00);
  color: #000;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 0 #000;
}

.add-btn.esgotado {
  background: #9ca3af !important;
  color: #fff !important;
  cursor: not-allowed;
  box-shadow: none !important;
}


