/* General Styles */
body {
  font-family: sans-serif, serif;
}

/* Card Styles */
.card {
  height: 650px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #ab131b;
}

.card-text {
  font-size: 0.9rem;
  color: #555;
}

/* Price Buttons */
.price-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.price-buttons .btn {
  flex: 1;
  font-size: 0.9rem;
  padding: 0.5rem;
  background-color: #ab131b;
  color: white;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.price-buttons .btn:hover {
  background-color: #880f15;
}

/* Order Now Button */
.order-now-button {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #ffc107;
  color: #000;
  padding: 0.5rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.order-now-button:hover {
  background-color: #e0a800;
  color: #000;
  text-decoration: none;
}

/* Order Now and Add to Cart Container */
.order-now-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* Order Now Button */
.order-now-button {
  flex: 1;
  text-align: center;
  background-color: #ffc107; /* Papa John's yellow color */
  color: #000;
  padding: 0.5rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.order-now-button:hover {
  background-color: #e0a800; /* Darker yellow on hover */
  color: #000;
  text-decoration: none;
}

/* Add to Cart Button */
.add-to-cart-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ab131b; /* Papa John's red color */
  color: white;
  padding: 0.5rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.add-to-cart-button:hover {
  background-color: #880f15; /* Darker red on hover */
}

.add-to-cart-button i {
  font-size: 1.2rem;
}
