@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins_light.ttf") format("truetype");
  font-weight: 300;   /* Light */
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins_bold.ttf") format("truetype");
  font-weight: 700;   /* Bold */
  font-style: normal;
}

.badge-cart {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    font-size: 11px;
    font-weight: bold;
    border-radius: 50%;
    padding: 5px 5px;
    line-height: 1;
    min-width: 20px;
    text-align: center;
}


body {
  font-family: Arial, sans-serif;
}

h5 {
  color: #4A2513;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
}

h9 {
  color: #4A2513;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
}

.categories-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: thin;
}
.categories-scroll::-webkit-scrollbar {
  height: 6px;
}
.categories-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.category-btn {
  border: none;
  background: none;
  text-align: center;
  color: #5a321c;
  flex: 0 0 auto;
  position: relative;
  padding: 5px;
}
.category-btn img {
  width: 55px;
  height: 55px;
  display: block;
  margin: auto;
  transition: transform 0.2s ease-in-out;
  transform-origin: bottom;
}
.category-btn.active img {
  transform: scale(1.15); 
}
.category-btn small {
  display: block;
  margin-top: 1px; 
  font-size: 14px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #4A2513;
}

.product-card {
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 10px;
  text-align: center;
  transition: 0.3s;
  position: relative;
  display: inline-block;
}

.image-container {
  position: relative;
  width: 100%;
}

.product-card img {
  width: 100%;
  border-radius: 10px;
  height: 95px;
  object-fit: cover;
  display: block;
}
.product-card:hover {
  box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
}
.product-card h6 {
  margin-top: 10px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  color: #4A2513;
  text-transform: uppercase;
}
.product-card p {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #FFA04E;
}

/* Botón + mejorado */
.add-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background-color: #FFA04E;
  color: white;
  border: 2px solid #4A2513; 
  border-radius: 6px; 
  width: 24px;   
  height: 24px;  
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  color: #4A2513;
}

.pedido-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.header-fixed {
    flex-shrink: 0;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.pedido-main {
    flex: 1;
    overflow-y: auto;
    background: #fff;
}

.pedido-footer {
    flex-shrink: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    position: sticky;
    bottom: 0;
}

.continue-btn, .continue-btn-checkout {
    background: #FFA04E;
    border: 2px solid #4A2513;
    border-radius: 8px;
    padding: 12px;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 700;
    color: #4A2513;
}

.subtotal {
    background: #fff;
    border-radius: 8px;
}

.lbl-subtotal {
    color: #4A2513;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 700;
}

.order-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.order-title {
    text-transform: uppercase;
    font-size: 14px;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 300;
    color: #4A2513;
}

.order-img {
    width: 80px;
    height: auto;
    border-radius: 8px;
}

.qty-btn {
    background: #fff;
    border: 2px solid #4A2513;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 16px;
    font-weight: bold;
    color: #4A2513;
    cursor: pointer;
}

.lbl-quantity {
    color: #4A2513;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 700;
}

.price {
    color: #4A2513;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 700;
}

.lbl-description-delivery {
    color: #4A2513;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 300;
}

.coverage-link {
    color: #4A2513;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 700;
    text-decoration: none;
}

.form-container input {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 2px solid #5a321c;
    padding: 12px 0;
    margin-bottom: 20px;
    font-size: 15px;
    color: #5a321c;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 300;
}

.form-container input::placeholder {
    color: #999;
    font-weight: 300;
}

.payment-label {
    text-align: center;
    font-size: 14px;
    margin: 20px 0 10px;
    color: #4A2513;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 700;
}

.payment-options {
    display: flex;
    flex-wrap: nowrap;   
    overflow-x: auto;    
    gap: 12px;
    margin-bottom: 30px;
    padding: 8px;        
    scroll-behavior: smooth; 
}

.payment-btn {
    background: #fff;
    border: 2px solid #aaa;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: 15px;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-btn:hover {
    border-color: #4A2513;
    color: #5a321c;
}


