/*
 * Willkin Coffee Plugin — Public Styles
 * By Hafis
 */

.willkin-product-grid {
  margin: 2rem 0;
}

.willkin-product-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.willkin-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.willkin-product-card a {
  text-decoration: none;
}

.willkin-product-card a:hover {
  color: #2d6a4f !important;
}

/* Price table */
.willkin-price-table-wrapper table {
  font-size: 0.95rem;
}

.willkin-price-table-wrapper tbody tr:hover {
  background: #f8f5f0;
}

/* RFQ Form */
.willkin-rfq-form input:focus,
.willkin-rfq-form textarea:focus,
.willkin-rfq-form select:focus {
  outline: none;
  border-color: #b5854a !important;
  box-shadow: 0 0 0 3px rgba(181, 133, 74, 0.15);
}

.willkin-rfq-form button[type="submit"]:hover {
  background: #a0763a !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(181, 133, 74, 0.4);
}

/* Proof Center */
.willkin-proof-card {
  transition: transform 0.2s ease;
}

.willkin-proof-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* WhatsApp CTA */
.willkin-wa-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .willkin-product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .willkin-rfq-form {
    max-width: 100%;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .willkin-product-grid {
    grid-template-columns: 1fr !important;
  }

  .willkin-rfq-form [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
