/* ===== SELL METAL PAGE ===== */
/* Shared styles for sell gold/silver/platinum/palladium pages */

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

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

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

.sell-hero .hero-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  max-width: 800px;
  margin: 0 auto;
}

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

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

/* ===== QUICK LINKS ===== */
.sell-quick-links {
  background: var(--gb-white);
  padding: 3rem 2rem;
}

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

.quick-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  background: var(--gb-gray);
  border-radius: 8px;
  text-decoration: none;
  color: var(--gb-navy);
  transition: all 0.2s;
  text-align: center;
}

.quick-link-card:hover {
  background: var(--gb-navy);
  color: var(--gb-white);
  transform: translateY(-2px);
}

.quick-link-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gb-navy);
  color: var(--gb-gold);
  border-radius: 50%;
  margin-bottom: 0.75rem;
  transition: all 0.2s;
}

.quick-link-card:hover .quick-link-icon {
  background: var(--gb-gold);
  color: var(--gb-navy);
}

.quick-link-icon svg {
  width: 24px;
  height: 24px;
}

.quick-link-text {
  font-size: 0.9rem;
  font-weight: 600;
}

.phone-message {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gb-text);
  margin: 0;
}

/* ===== PRICES WIDGET ===== */
.sell-prices-widget {
  background: var(--gb-gray);
  padding: 4rem 2rem;
}

.sell-prices-widget h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gb-navy);
  text-align: center;
  margin-bottom: 2rem;
}

.prices-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  margin-top: 1.5rem;
  font-style: italic;
}

/* ===== WHAT WE BUY + PRICES (2-COLUMN LAYOUT) ===== */
.sell-what-we-buy {
  background: var(--gb-gray);
  padding: 4rem 2rem;
}

/* Two-column grid */
.sell-two-column {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}

/* Left column: What we buy */
.sell-column-left {
  background: var(--gb-white);
  padding: 2rem;
  border-radius: 8px;
}

/* Right column: Prices */
.sell-column-right {
  background: var(--gb-white);
  padding: 2rem;
  border-radius: 8px;
  position: sticky;
  top: 2rem;
}

.sell-column-right h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.sell-column-right .prices-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  margin-top: 1.5rem;
  font-style: italic;
}

/* Override single-column grid max-width in right column */
.sell-column-right .gbpm-sell-grid--single {
  max-width: none;
}

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

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

/* Buy types stack vertically in left column */
.buy-types-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Horizontal card layout */
.buy-type-card {
  display: flex;
  flex-direction: row;
  background: var(--gb-gray);
  border: 1px solid var(--gb-border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.buy-type-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.buy-type-image {
  flex: 0 0 120px;
  height: auto;
  min-height: 120px;
  overflow: hidden;
}

.buy-type-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buy-type-content {
  flex: 1;
  padding: 1.25rem;
}

.buy-type-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin-bottom: 1rem;
}

.buy-type-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gb-text);
  margin-bottom: 1rem;
}

.buy-type-content .btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
}

.buy-type-content .btn-outline {
  border: 2px solid var(--gb-navy);
  color: var(--gb-navy);
  background: transparent;
}

.buy-type-content .btn-outline:hover {
  background: var(--gb-navy);
  color: var(--gb-white);
}

.additional-buy-content {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--gb-gray);
  border-radius: 8px;
}

.additional-buy-content h2,
.additional-buy-content h3 {
  color: var(--gb-navy);
  margin-bottom: 1rem;
}

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

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

.documents-required {
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
}

.documents-required h3 {
  color: var(--gb-gold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.documents-required p,
.documents-required ul,
.documents-required li {
  color: rgba(255,255,255,0.9);
}

.documents-required ul {
  margin-left: 1.5rem;
}

.documents-required li {
  margin-bottom: 0.5rem;
}

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

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

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

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gb-white);
  margin-bottom: 0.75rem;
}

.step-content p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.step-content .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  margin-right: 0.75rem;
  margin-top: 0.5rem;
  transition: all 0.2s;
}

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

.step-content .btn-primary:hover {
  background: #dbb873;
}

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

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

/* ===== SELL OPTIONS ===== */
.sell-options {
  background: var(--gb-white);
  padding: 4rem 2rem;
}

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

.sell-option {
  padding: 2rem;
  background: var(--gb-gray);
  border-radius: 8px;
}

.sell-option h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin-bottom: 1.5rem;
}

.sell-option p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gb-text);
  margin-bottom: 1rem;
}

.sell-option ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.sell-option li {
  margin-bottom: 0.5rem;
  color: var(--gb-text);
}

.sell-option .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;
}

.sell-option .btn-primary {
  background: var(--gb-navy);
  color: var(--gb-white);
}

.sell-option .btn-primary:hover {
  background: var(--gb-gold);
  color: var(--gb-navy);
}

/* ===== DISCLAIMER ===== */
.sh-disclaimer {
  background: var(--gb-white);
  padding: 3rem 2rem;
}

.sh-disclaimer-inner {
  border: 1px solid var(--gb-border);
  border-radius: 6px;
  padding: 2rem;
}

.sh-disclaimer h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gb-navy);
  text-align: center;
  margin-bottom: 1.25rem;
}

.sh-disclaimer .disclaimer-body {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--gb-text);
}

.sh-disclaimer .disclaimer-body p {
  margin-bottom: 0.75rem;
}

.sh-disclaimer .disclaimer-body ul,
.sh-disclaimer .disclaimer-body ol {
  margin: 0.5rem 0 0.75rem 1.5rem;
}

.sh-disclaimer .disclaimer-body li {
  margin-bottom: 0.35rem;
}

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

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

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

.related-link-card {
  display: block;
  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);
}

.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) {
  .quick-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Stack 2-column layout */
  .sell-two-column {
    grid-template-columns: 1fr;
  }

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

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

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

  .sell-hero .hero-intro {
    font-size: 1rem;
  }

  .sell-quick-links {
    padding: 2rem 1.5rem;
  }

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

  .quick-link-card {
    flex-direction: row;
    padding: 1rem;
    gap: 1rem;
    justify-content: flex-start;
  }

  .quick-link-icon {
    margin-bottom: 0;
    width: 40px;
    height: 40px;
  }

  .sell-prices-widget {
    padding: 3rem 1.5rem;
  }

  .sell-prices-widget h2 {
    font-size: 1.5rem;
  }

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

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

  .buy-types-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .sell-options {
    padding: 3rem 1.5rem;
  }

  .sell-options-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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