.cafe-category-title {
  font-size: 21px;
}

.cafe-product {
  background: #fbe6b5;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 15px;
}

.cafe-title {
  font-size: 18px;
  margin-bottom: 0px;
}

.cafe-desc {
  margin-bottom: 0px;
  font-size: 13px;
}

.cafe-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.cafe-price {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 15px;
  color: #ff6600;
}

.cafe-product-image img {
  max-width: 80px;
  height: auto;
  border-radius: 8px;
}

.cafe-add-to-cart .button {
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0px 20px;
  cursor: pointer;
}

.cafe-add-to-cart p {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.cafe-product-details {
  flex: 1;
}

.cafe-variations {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cafe-variation-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.cafe-variation-option input[type="radio"] {
  accent-color: #ff6600;
  width: 18px;
  height: 18px;
}

/* === Product Card Block === */
.product-card {
  background: #fbe6b5;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  position: relative;
}

/* === Add to Cart Button === */
.btn-add-to-cart {
  background-color: #ff0000;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 6px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-add-to-cart:hover {
  background-color: #cc0000;
}

/* === Quantity Selector === */
.qty-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 6px;
  width: 28px;
  height: 28px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qty-input {
  font-size: 16px;
  font-weight: 600;
  width: 24px;
  text-align: center;
}

/* === Sticky Cart Bar === */
.cafe-sticky-cart {
  position: sticky;
  bottom: 59px;
  left: 0;
  right: 0;
  background: #f44336;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  z-index: 999;
  font-size: 15px;
  font-weight: 500;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.cafe-sticky-cart .go-to-cart-btn {
  background: white;
  color: #f44336;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.cafe-sticky-cart .cart-info {
  display: flex;
  gap: 4px;
  align-items: center;
}

.cafe-checkout-wrapper {
  padding: 16px;
  font-family: sans-serif;
}

.cafe-cart-item {
  background: #fff8e1;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cafe-loyalty {
  margin-top: 16px;
  background: #fff3e0;
  padding: 12px;
  border-radius: 8px;
}
