
/* ========================================
   WooCommerce - PhotoFlow Unified Styles
=========================================== */

/* Global button style (Add to Cart, Checkout, etc.) */
.woocommerce .button,
.woocommerce-page .button,
.woocommerce button.button,
.woocommerce-page button.button,
.woocommerce input.button,
.woocommerce-page input.button,
.woocommerce a.button,
.woocommerce-page a.button,
.woocommerce input[type=submit],
.woocommerce-page input[type=submit],
.woocommerce .single_add_to_cart_button,
.woocommerce .checkout-button,
.woocommerce .button.alt,
.woocommerce .button.alt.checkout-button,
.woocommerce .add_to_cart_button,
.woocommerce .product_type_simple,
.photoflow-view-cart-button {
  background-color: #FFD700 !important;
  color: #000 !important;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s ease;
  cursor: pointer;
  display: inline-block;
  margin-top: 1rem;
}

/* Hover state */
.woocommerce .button:hover,
.woocommerce-page .button:hover,
.woocommerce button.button:hover,
.woocommerce-page button.button:hover,
.woocommerce input.button:hover,
.woocommerce-page input.button:hover,
.woocommerce a.button:hover,
.woocommerce-page a.button:hover,
.woocommerce .single_add_to_cart_button:hover,
.woocommerce .checkout-button:hover,
.woocommerce .button.alt:hover,
.woocommerce .button.alt.checkout-button:hover,
.woocommerce .add_to_cart_button:hover,
.woocommerce .product_type_simple:hover,
.photoflow-view-cart-button:hover {
  background-color: #ffcc00 !important;
  color: #000 !important;
}

/* Cart and Checkout layout */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

/* Product list item */
.photoflow-product-item {
  list-style: none;
  margin: 1rem;
  text-align: center;
}

.photoflow-product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.photoflow-product-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.photoflow-product-image img:hover {
  transform: scale(1.03);
}

.photoflow-product-title {
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.photoflow-product-price {
  font-weight: bold;
  color: #FFD700;
  font-size: 1.1rem;
}

/* Cart table */
.woocommerce-cart table.shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.woocommerce-cart table th,
.woocommerce-cart table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.woocommerce-cart .cart_totals {
  text-align: right;
}

/* Checkout form */
.photoflow-checkout form.checkout {
  display: grid;
  gap: 2rem;
}

.woocommerce-checkout .woocommerce form .form-row {
  margin-bottom: 1.5rem;
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Headings and breadcrumbs */
.woocommerce .woocommerce-breadcrumb,
.woocommerce h1,
.woocommerce h2,
.woocommerce h3 {
  font-family: 'Montserrat', sans-serif;
}
.photoflow-price-badge {
  display: inline-block;
  background-color: #000;
  color: #FFD700;
  font-weight: bold;
  font-size: 1.25rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 480px) {
  .photoflow-price-badge {
    font-size: 1rem;
    padding: 0.4rem 0.75rem;
  }
}
