/* ====== 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;
}