/* ====== DROPDOWN STYLE ====== */
.summary select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  font-size: 15px;
  color: #333;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='%230077b6' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  transition: all 0.3s ease;
}

.summary select:hover,
.summary select:focus {
  border-color: #00b4d8;
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
  outline: none;
}

/* ====== COMPARE & WISHLIST BUTTONS ====== */
.woosc-btn,
.woosw-btn {
  display: inline-block;
  background: #f8f9fa;
  border: 1px solid #ccc;
  color: #333;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  margin-right: 6px;
}

.woosc-btn:hover,
.woosw-btn:hover {
  background: #0077b6;
  border-color: #0077b6;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 119, 182, 0.25);
}

/* Add subtle animation */
.woosc-btn:active,
.woosw-btn:active {
  transform: translateY(0);
  box-shadow: none;
}
.woocommerce div.product form.cart .variations select {
    height: 55px !important;
}
/* Keep all product boxes the same visual height without breaking layout */
.single-product-box {
  min-height: 100%; /* ensures they stretch naturally */
}

/* Balance titles only so they don’t push cards unevenly */
.single-product-box h4 {
  min-height: 8px; /* fits 1–2 lines of title text */
}
/* Make Out-of-Stock products match normal product height */
.single-product-box .custom-stock-status.out-of-stock {
  min-height: 45px; /* adds space where Add to Cart would normally be */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Optional: center and style the text consistently */
.custom-stock-status.out-of-stock {
  color: #b22222;
  font-weight: 600;
  text-align: center;
}
/* Keep all product boxes the same visual height without breaking layout */
.single-product-box {
  min-height: 100%; /* ensures they stretch naturally */
}

/* Balance titles only so they don’t push cards unevenly */
.single-product-box h4 {
  min-height: 58px; /* fits 1–2 lines of title text */
}