/* Menu Grid Layout */
.ordro-menu {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 24px;
  justify-content: center;
  padding: 20px;
}

/* Product Card */
.ordro-menu-item {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 20px;
  position: relative;
  border: 1px solid #eee;
}

/* Product Image LEFT */
.ordro-menu-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 20px;
}

/* Text RIGHT */
.ordro-menu-content {
  flex: 1;
}

.ordro-menu-content h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.ordro-menu-content p {
  margin: 4px 0;
  font-size: 14px;
  color: #555;
}

.ordro-menu-price {
  font-size: 16px;
  font-weight: bold;
  color: #111;
}

/* Add to Cart Button */
.ordro-add-to-cart {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #eee;
  color: #000;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ordro-add-to-cart::before {
  content: "+";
  font-size: 16px;
  font-weight: bold;
}

.ordro-add-to-cart:hover {
  background: #333;
  color: #fff;
}

/* Filter Buttons */
.ordro-filter {
  text-align: center;
  margin-bottom: 20px;
}

.ordro-filter button {
  margin: 0 6px;
  padding: 8px 14px;
  border: none;
  background: #eee;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.ordro-filter button.active,
.ordro-filter button:hover {
  background-color: #000;
  color: #fff;
}



/* Floating Cart Icon */
.ordro-cart-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #000;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 999;
  font-size: 16px;
}

.woocommerce-cart-count {
  font-weight: bold;
  margin-left: 6px;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .ordro-menu-item img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    margin: 0 0 10px 0;
  }
}
  .ordro-menu-item img {
    margin: 0 0 10px;
    width: 100%;
    height: auto;
  }

.ordro-menu-item img {
  width: 80px !important;
  height: 80px !important;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 20px;
}
  .ordro-menu-content {
    padding-right: 0;
  }

  .ordro-add-to-cart {
    bottom: 16px;
    right: 16px;
  }
}



