/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* BODY */
body {
  background: #FFF9C4;
  color: #000;
}

/* HEADER */
.header {
  background: #0b3d2e;
  padding: 15px;
  text-align: center;
}

.header h1 {
  color: #FFD700;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 1px;
  cursor: pointer;
}

/* STATUS BADGE */
.status-badge {
  text-align: center;
  padding: 8px;
  font-size: 14px;
}

.status-badge.closed {
  background: red;
  color: yellow;
  font-size:20px;
  font-weight:900;
  letter-spacing:0.5px;
  text-transform:uppercase;
  text-shadow:1px 1px 2px rgba(0,0,0,0.35);
}

.status-badge.open {
  background: #4CAF50;
  color: #000;
}

/* BANNER */
.banner {

  background: #ff4da6;

  padding: 10px;

  font-size: 14px;

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 8px;

  flex-wrap: nowrap;

}

.banner p {

  color: #000;

  margin: 0;

}

.banner .arrow {

  font-size: 20px;

  animation: bounce 1s infinite;

  display: inline-flex;

  align-items: center;

  order: -1;


}

/* ANIMACION */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* GRID PRODUCTOS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px;
}

/* CARD PRODUCTO */
.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s;
}

.product-card:hover {
  transform: scale(1.03);
}

.product-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.product-info {
  text-align: center;
  padding: 8px;
}

.product-name {
  font-size: 14px;
  font-weight: bold;
}

.product-price {
  font-size: 13px;
}

/* CARRITO */
#cartContainer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #FFD700;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  display: none;  /* El carrito estará oculto por defecto */
  z-index: 1000;
  width: 300px;
}

#cartContainer.hidden {
  display: none;
}

.cart-bubble {

  position: relative;

}

/* MODAL */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
.modal.hidden {
  display: none;
}

.modal-content {
  background: #fff;
  width: 90%;
  max-height: 90%;
  overflow-y: auto;
  border-radius: 10px;
  padding: 15px;
}

.close {
  float: right;
  font-size: 20px;
  cursor: pointer;
}

/* UTIL */
.hidden {
  display: none;
}

/* ========================== */
/* FLOATING ACTIONS */
/* ========================== */
.floating-actions {

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 8px;

  flex-wrap: nowrap;

  margin-top: 10px;

  margin-bottom: 10px;

  position: relative;

  z-index: 1;

  transition: 0.2s;

}

/* ========================== */
/* FLOATING ACTIONS BUTTONS */
/* ========================== */
.floating-actions button {

  overflow: visible;

}

/* ========================== */
/* ACTION BUTTON */
/* ========================== */
.action-btn {

  width: 64px;

  height: 64px;

  min-width: 64px;

  min-height: 64px;

  border-radius: 50%;

  border: none;

  background: #FFD700;

  color: #000;

  font-size: 28px;

  font-weight: bold;

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow:
    0 3px 10px rgba(0,0,0,0.25);

  transition: 0.2s;

  flex-shrink: 0;

}

/* ========================== */
/* INFO BUTTON */
/* ========================== */
#businessInfoBtn {

  background: #00B0FF;

  color: white;

}

/* ========================== */
/* INSTALL BUTTON */
/* ========================== */
#installAppBtn {

  background: #00c853;

  color: white;

}

.action-btn:hover {

  transform: scale(1.05);

}

/* ========================== */
/* CART COUNT */
/* ========================== */
#cartCount {

  position: absolute;

  top: -6px;

  right: -6px;

  background: red;

  color: white;

  font-size: 14px;

  font-weight: bold;

  border-radius: 50%;

  min-width: 24px;

  min-height: 24px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 2px;

}

#clubBtn{

    background:#FFD6E7;

    color:white;

}