/* ===== Product Page ===== */
.single-product .product {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  padding: 50px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  margin-bottom: 60px; /* pushes footer down */
  min-height: 600px;   /* ensures container has height */
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

footer {
  clear: both;
}
.single-product .product:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* Product image area */
.single-product .product .woocommerce-product-gallery {
  flex: 0 0 35%;
  max-width: 35%;
}

.single-product .product .woocommerce-product-gallery img {
  border-radius: 12px;
  object-fit: contain;
  width: 100%;
  height: auto;
}

/* Summary area (right side) */
.single-product .product .summary.entry-summary {
  flex: 1;
  max-width: 60%;
  padding: 10px 20px;
}

/* Title */
.woocommerce div.product .product_title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

/* Price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: #c19844;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 25px;
}

/* Cart form spacing */
.single-product .product .summary.entry-summary form.cart {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 20px;
}

/* Quantity box */
.woocommerce .quantity {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  width: 150px;
  background: #fafafa;
  transition: border-color 0.2s ease;
}

.woocommerce .quantity:focus-within {
  border-color: #c19844;
}

.woocommerce .quantity input.qty {
  width: 70px !important;
  height: 42px;
  border: none;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  background: transparent;
}

.woocommerce .quantity button.plus,
.woocommerce .quantity button.minus {
  background-color: #f7f7f7;
  border: none;
  width: 42px;
  height: 42px;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  transition: background 0.2s ease;
}

.woocommerce .quantity button.plus:hover,
.woocommerce .quantity button.minus:hover {
  background-color: #eaeaea;
}

.woocommerce .quantity button:focus {
  outline: none;
}

/* Add to cart button */
.woocommerce button.single_add_to_cart_button {
  background-color: #c19844 !important;
  color: #fff !important;
  border-radius: 12px;
  padding: 16px 34px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(193, 152, 68, 0.3);
}

.woocommerce button.single_add_to_cart_button:hover {
  background-color: #a67c2f !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193, 152, 68, 0.4);
}

/* Select dropdowns (package & dishes) */
.dish-group label {
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
  color: #000;
  font-size: 15px;
  letter-spacing: -0.2px;
}

.dish-select,
.package-select {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background-color: #fff;
  color: #000;
  appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dish-select:focus,
.package-select:focus {
  border-color: #c19844;
  box-shadow: 0 0 0 3px rgba(193, 152, 68, 0.25);
  outline: none;
}

/* Package tagline */
.catering-radio-cards .package-tagline {
  font-size: 1rem;
  font-style: italic;
  color: #555;
  margin-top: 8px;
  line-height: 1.4;
  letter-spacing: -0.2px;
  transition: color 0.2s ease;
}

.catering-radio-cards:hover .package-tagline {
  color: #333;
}

/* ===== Responsive (Mobile/Tablet) ===== */
@media (max-width: 991px) {
  .single-product .product {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }

  .single-product .product .woocommerce-product-gallery,
  .single-product .product .summary.entry-summary {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .single-product .product .summary.entry-summary {
    padding: 0;
  }
}
