/* ===== Pricing Page ===== */

.pricing-section {
  padding: 40px 0;
}

.pricing-section.alt {
  background: #faf8f5;
}

.pricing-block {
  margin-bottom: 0;
}

.pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.pricing-header h2 {
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.header-note {
  font-size: 0.82rem;
  font-weight: 300;
  color: #888;
  margin-left: 12px;
}

.pricing-badges {
  display: flex;
  gap: 8px;
}

.badge {
  font-size: 0.75rem;
  padding: 5px 14px;
  background: #f0f0f0;
  color: #555;
  border-radius: 20px;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.badge.accent {
  background: #9B4E20;
  color: #fff;
}

/* Table */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 600px;
}

.pricing-table thead {
  background: #333;
  color: #fff;
}

.pricing-table th {
  padding: 12px 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: left;
  font-size: 0.82rem;
}

.pricing-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #eee;
  color: #444;
}

.pricing-table tbody tr:hover {
  background: rgba(155, 78, 32, 0.04);
}

.pricing-table .price {
  font-weight: 500;
  color: #9B4E20;
}

.pricing-table .sub {
  font-size: 0.72rem;
  color: #999;
  margin-left: 4px;
}

.highlight-row {
  background: #faf8f5;
}

.pricing-section.alt .highlight-row {
  background: #f0ece6;
}

/* Rare Metals */
.rare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 16px;
}

.rare-metals-list h4,
.rare-pricing h4 {
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: #555;
}

.rare-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rare-tags span {
  font-size: 0.78rem;
  padding: 5px 12px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  color: #555;
}

.rare-pricing {
  display: flex;
  gap: 16px;
}

.rare-price-card {
  flex: 1;
  background: #faf8f5;
  border: 1px solid #e8e0d8;
  border-radius: 4px;
  padding: 20px;
  text-align: center;
}

.rare-price {
  font-size: 1.3rem;
  font-weight: 500;
  color: #9B4E20;
  margin-top: 4px;
}

.rare-note {
  font-size: 0.78rem;
  color: #999;
}

/* Other Services */
.other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.other-card {
  background: #fff;
  border: 1px solid #e8e0d8;
  border-radius: 4px;
  padding: 20px;
  text-align: center;
}

.other-card h4 {
  font-weight: 400;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 8px;
}

.other-price {
  font-size: 1.1rem;
  font-weight: 500;
  color: #9B4E20;
}

/* Notes */
.pricing-notes {
  padding: 40px 0;
}

.notes-box {
  background: #fff8f0;
  border: 1px solid #e8d8c8;
  border-left: 4px solid #9B4E20;
  border-radius: 0 4px 4px 0;
  padding: 24px 28px;
}

.notes-box h3 {
  font-weight: 500;
  font-size: 0.92rem;
  margin-bottom: 12px;
  color: #9B4E20;
}

.notes-box ul {
  list-style: none;
}

.notes-box li {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.8;
  padding-left: 16px;
  position: relative;
}

.notes-box li::before {
  content: '※';
  position: absolute;
  left: 0;
  color: #9B4E20;
}

/* CTA */
.pricing-cta {
  padding: 0 0 60px;
}

.pricing-cta-content {
  text-align: center;
  padding: 50px 20px;
}

.pricing-cta-content h2 {
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.pricing-cta-content p {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 28px;
}

.pricing-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-block;
  padding: 14px 40px;
  border: 1.5px solid #9B4E20;
  color: #9B4E20;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
  background: #9B4E20;
  color: #fff;
}

/* Responsive */
@media (max-width: 860px) {
  .rare-grid {
    grid-template-columns: 1fr;
  }

  .other-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .other-grid {
    grid-template-columns: 1fr;
  }

  .rare-pricing {
    flex-direction: column;
  }

  .pricing-table {
    font-size: 0.8rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 8px 10px;
  }
}
