/*
Theme Name: Astra SushiLoko
Template: astra
Version: 1.0
Author: Jader
*/

:root{
  --red: #E30025;          /* vermelho principal */
  --gray: #F7F7F7;         /* fundo de seções */
  --radius: 12px;
  --shadow: 0 2px 6px rgba(0,0,0,.05);
}
/* Reset de botão “Adicionar” */
.woofs_add_to_cart_button,
.woocommerce button.single_add_to_cart_button{
  background: var(--red);
  border-radius: var(--radius);
  color:#fff!important;
  font-weight:600;
  transition:.2s;
}
.woofs_add_to_cart_button:hover{filter:brightness(1.1);}

/* Cards do Food Store */
.foodstore-product,
.foodonline_product{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:1rem;
}
.foodstore-product img{
  border-radius:var(--radius);
  object-fit:cover;
}

.foodstore-cat-nav li a{
  font-weight:600;
  padding:.4rem .9rem;
  border-radius:var(--radius);
}
.foodstore-cat-nav li.is-active a,
.foodstore-cat-nav li a:hover{
  background:var(--red);
  color:#fff;
}

/* Barra do carrinho (Fast Cart) */
.fee-cart__bar{
  background:var(--red)!important;
  border-radius:var(--radius) var(--radius) 0 0;
}
.fee-cart__bar button{background:#fff;color:var(--red);}
