/* ===== PRICING TABLE PAGE ===== */
/* Shared styles for sell pricing pages (scrap, coins, bars) */

/* Remove default padding */
body.page-template-pricing-table .site-main {
  padding: 0 !important;
  max-width: none !important;
}

/* ===== TWO-COLUMN LAYOUT ===== */
.pricing-two-column {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
}

.pricing-column-left {
  background: var(--gb-white);
  padding: 2rem;
  border-radius: 8px;
}

.pricing-column-right {
  background: var(--gb-white);
  padding: 2rem;
  border-radius: 8px;
  position: sticky;
  top: 2rem;
  align-self: start;
}

.pricing-column-right h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--gb-navy);
}

.pricing-column-right .prices-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--gb-text-light);
  line-height: 1.5;
}

/* ===== HERO SECTION ===== */
.pricing-hero {
  background: var(--gb-navy);
  color: var(--gb-white);
  padding: 3rem 2rem;
  text-align: center;
}

.pricing-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gb-white);
}

.pricing-hero .hero-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

.pricing-hero .hero-intro p {
  margin-bottom: 1rem;
}

.pricing-hero .hero-intro p:last-child {
  margin-bottom: 0;
}

/* ===== CALCULATOR SECTION ===== */
.pricing-calculator {
  background: var(--gb-white);
  padding: 3rem 2rem;
}

.calculator-explanation {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--gb-gray);
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gb-text);
}

.calculator-explanation p {
  margin-bottom: 0.75rem;
}

.calculator-explanation p:last-child {
  margin-bottom: 0;
}

/* ===== VISIT CTA ===== */
.pricing-visit-cta {
  background: var(--gb-gray);
  padding: 2.5rem 2rem;
  text-align: center;
}

.pricing-visit-cta p {
  font-size: 1.1rem;
  color: var(--gb-text);
  margin-bottom: 1.5rem;
}

.pricing-visit-cta .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
}

.pricing-visit-cta .btn-outline {
  border: 2px solid var(--gb-navy);
  color: var(--gb-navy);
  background: transparent;
}

.pricing-visit-cta .btn-outline:hover {
  background: var(--gb-navy);
  color: var(--gb-white);
}

/* ===== WHAT WE BUY ===== */
.pricing-what-we-buy {
  background: var(--gb-white);
  padding: 4rem 2rem;
}

.pricing-what-we-buy h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gb-navy);
  text-align: center;
  margin-bottom: 1.5rem;
}

.what-we-buy-content {
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gb-text);
  text-align: center;
}

/* Item Types Grid */
.item-types-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.item-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.item-type-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  border: 2px solid var(--gb-border);
}

.item-type-card .item-caption {
  font-size: 0.85rem;
  color: var(--gb-text);
  font-weight: 500;
}

/* Cross-sell links */
.cross-sell-links {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--gb-gray);
  border-radius: 8px;
  text-align: center;
}

.cross-sell-links a {
  color: var(--gb-navy);
  font-weight: 600;
}

.cross-sell-links a:hover {
  color: var(--gb-gold);
}

/* ===== HOW TO SELL ===== */
.pricing-how-to-sell {
  background: var(--gb-navy);
  color: var(--gb-white);
  padding: 4rem 2rem;
}

.pricing-how-to-sell h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gb-white);
  text-align: center;
  margin-bottom: 2rem;
}

.how-to-intro {
  margin-bottom: 3rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

.how-to-intro a {
  color: var(--gb-gold);
}

.pricing-how-to-sell .sell-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pricing-how-to-sell .sell-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.pricing-how-to-sell .step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gb-gold);
  color: var(--gb-navy);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
}

.pricing-how-to-sell .step-content {
  flex: 1;
}

.pricing-how-to-sell .step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gb-white);
  margin-bottom: 0.75rem;
}

.pricing-how-to-sell .step-content p,
.pricing-how-to-sell .step-content ul,
.pricing-how-to-sell .step-content li {
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.pricing-how-to-sell .step-content ul {
  margin-left: 1.5rem;
}

.pricing-how-to-sell .step-content a:not(.btn) {
  color: var(--gb-gold);
}

.pricing-how-to-sell .step-content .btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  margin-right: 0.75rem;
  margin-top: 0.5rem;
  transition: all 0.2s;
}

.pricing-how-to-sell .step-content .btn-primary {
  background: var(--gb-gold);
  color: var(--gb-navy);
}

.pricing-how-to-sell .step-content .btn-primary:hover {
  background: #dbb873;
}

.pricing-how-to-sell .step-content .btn-outline {
  border: 2px solid var(--gb-white);
  color: var(--gb-white);
  background: transparent;
}

.pricing-how-to-sell .step-content .btn-outline:hover {
  background: var(--gb-white);
  color: var(--gb-navy);
}

/* ===== RELATED LINKS ===== */
.pricing-related {
  background: var(--gb-gray);
  padding: 4rem 2rem;
}

.pricing-related h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gb-navy);
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-related .related-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pricing-related .related-link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--gb-white);
  border-radius: 8px;
  text-decoration: none;
  color: var(--gb-navy);
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  border: 1px solid var(--gb-border);
  min-height: 80px;
}

.pricing-related .related-link-card:hover {
  background: var(--gb-navy);
  color: var(--gb-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pricing-two-column {
    grid-template-columns: 1fr;
  }

  .pricing-column-right {
    position: static;
  }

  .item-types-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (max-width: 768px) {
  .pricing-hero {
    padding: 2.5rem 1.5rem;
  }

  .pricing-hero h1 {
    font-size: 1.75rem;
  }

  .pricing-calculator {
    padding: 2rem 1.5rem;
  }

  .pricing-visit-cta {
    padding: 2rem 1.5rem;
  }

  .pricing-what-we-buy {
    padding: 3rem 1.5rem;
  }

  .pricing-what-we-buy h2 {
    font-size: 1.5rem;
  }

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

  .item-type-card img {
    width: 60px;
    height: 60px;
  }

  .item-type-card .item-caption {
    font-size: 0.75rem;
  }

  .pricing-how-to-sell {
    padding: 3rem 1.5rem;
  }

  .pricing-how-to-sell h2 {
    font-size: 1.5rem;
  }

  .pricing-how-to-sell .sell-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pricing-how-to-sell .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .pricing-related {
    padding: 3rem 1.5rem;
  }

  .pricing-related .related-links-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pricing-related .related-link-card {
    min-height: 60px;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .item-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
