/* 拼豆作品集 — 維持原卡片與 7-11 按鈕 */

.works-section {
  padding: 4rem 0 5rem;
  border-top: 1px solid rgba(44, 42, 40, 0.12);
}

.works-section .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.works-section .section-sub {
  font-size: 0.82rem;
  color: #6E6860;
  margin-bottom: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: #FDFCFA;
  border-radius: 0;
  padding: 1rem 1rem 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: none;
  border: 1px solid rgba(44, 42, 40, 0.1);
  text-align: center;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 42, 40, 0.06);
}

.product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
  background: #EFEBE6;
  margin-bottom: 0.85rem;
}

.product-name {
  font-weight: 500;
  font-size: 0.92rem;
  margin: 0.4rem 0 0.15rem;
  color: #2C2A28;
}

.product-price {
  font-weight: 400;
  color: #6E6860;
  margin-bottom: 0.85rem;
  font-size: 0.82rem;
}

.btn-order {
  background: transparent;
  border: 1px solid #8B7355;
  border-radius: 0;
  padding: 0.5rem 1rem;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #8B7355;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-order:hover {
  background: #8B7355;
  color: #FDFCFA;
}

@media (max-width: 720px) {
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
