/* ===== BUY GOLD BULLION PAGE ===== */

/* ===== PAGE LAYOUT ===== */
.bgb-page-wrapper {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* ===== SIDEBAR ===== */
.bgb-sidebar {
  width: 280px;
  flex-shrink: 0;
}

.bgb-sidebar .sidebar-badge {
  background: var(--gb-white);
  border: 1px solid var(--gb-border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  margin-top: 1.5rem;
}

.bgb-sidebar .royal-mint-logo {
  max-width: 120px;
  margin-bottom: 1rem;
}

.bgb-sidebar .badge-label {
  font-size: 0.9rem;
  color: var(--gb-text);
  margin: 0;
  line-height: 1.4;
}

.bgb-sidebar .sidebar-link-box {
  margin-top: 1.5rem;
}

.bgb-sidebar .sidebar-link-box a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gb-white);
  border: 1px solid var(--gb-border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  color: var(--gb-navy);
  font-weight: 600;
  transition: all 0.2s;
}

.bgb-sidebar .sidebar-link-box a:hover {
  border-color: var(--gb-gold);
  color: var(--gb-gold);
}

.bgb-sidebar .sidebar-link-box svg {
  flex-shrink: 0;
  color: var(--gb-gold);
}

.bgb-sidebar .sidebar-promo {
  background: var(--gb-navy);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
  color: var(--gb-white);
}

.bgb-sidebar .sidebar-promo h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gb-white);
}

.bgb-sidebar .sidebar-promo p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.bgb-sidebar .sidebar-promo .btn-gold {
  display: inline-block;
  background: var(--gb-gold);
  color: var(--gb-navy);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
}

.bgb-sidebar .sidebar-promo .btn-gold:hover {
  background: var(--gb-white);
}

/* ===== MAIN CONTENT ===== */
.bgb-main {
  flex: 1;
  min-width: 0;
}

/* ===== HERO SECTION ===== */
.bgb-hero {
  margin-bottom: 2.5rem;
}

.bgb-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin-bottom: 1rem;
}

.bgb-hero-text {
  color: var(--gb-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.bgb-hero-text p:last-child {
  margin-bottom: 0;
}

/* ===== CONTENT SECTION ===== */
.bgb-content {
  margin-bottom: 2.5rem;
  color: var(--gb-text);
  line-height: 1.7;
}

.bgb-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.bgb-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gb-navy);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

/* ===== CATEGORY CARDS ===== */
.bgb-categories {
  margin-bottom: 2.5rem;
}

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

.bgb-category-card {
  display: block;
  background: var(--gb-white);
  border: 1px solid var(--gb-border);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bgb-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.bgb-category-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.bgb-category-content {
  padding: 1.25rem;
}

.bgb-category-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin-bottom: 0.5rem;
}

.bgb-category-content p {
  font-size: 0.9rem;
  color: var(--gb-text);
  line-height: 1.5;
  margin: 0;
}

/* ===== BENEFIT CARDS ===== */
.bgb-benefits {
  margin-bottom: 2.5rem;
}

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

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

.bgb-benefit-card {
  background: var(--gb-white);
  border: 1px solid var(--gb-border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.bgb-benefit-icon {
  margin-bottom: 1rem;
}

.bgb-benefit-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.bgb-benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin-bottom: 0.5rem;
}

.bgb-benefit-card p {
  font-size: 0.9rem;
  color: var(--gb-text);
  line-height: 1.5;
  margin: 0;
}

/* ===== HOW TO BUY ===== */
.bgb-howto {
  margin-bottom: 2.5rem;
  background: var(--gb-light-bg, #f8f9fa);
  border-radius: 8px;
  padding: 2rem;
}

.bgb-howto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.bgb-howto-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin-bottom: 1rem;
}

.bgb-howto-content p {
  color: var(--gb-text);
  line-height: 1.7;
}

.bgb-howto-image img {
  width: 100%;
  border-radius: 8px;
}

/* ===== STRATEGIC BENEFITS ===== */
.bgb-strategic {
  margin-bottom: 2.5rem;
}

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

.bgb-strategic-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bgb-strategic-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.bgb-strategic-number {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--gb-navy);
  color: var(--gb-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.bgb-strategic-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin-bottom: 0.5rem;
}

.bgb-strategic-content p {
  color: var(--gb-text);
  line-height: 1.6;
  margin: 0;
}

/* ===== BOTTOM CTA ===== */
.bgb-cta {
  margin-bottom: 2rem;
}

.bgb-cta-inner {
  background: var(--gb-navy);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
  color: var(--gb-white);
}

.bgb-cta-inner h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gb-white);
  margin-bottom: 0.75rem;
}

.bgb-cta-inner p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bgb-page-wrapper {
    flex-direction: column;
    padding: 1.5rem;
  }

  .bgb-sidebar {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .bgb-sidebar > * {
    flex: 1;
    min-width: 200px;
    margin-top: 0 !important;
  }
}

@media (max-width: 768px) {
  .bgb-page-wrapper {
    padding: 1rem;
  }

  .bgb-sidebar {
    flex-direction: column;
  }

  .bgb-sidebar > * {
    min-width: 100%;
  }

  .bgb-hero h1 {
    font-size: 1.5rem;
  }

  .bgb-categories-grid {
    grid-template-columns: 1fr;
  }

  .bgb-benefits-grid {
    grid-template-columns: 1fr;
  }

  .bgb-howto-grid {
    grid-template-columns: 1fr;
  }

  .bgb-howto-image {
    order: -1;
  }

  .bgb-cta-inner {
    padding: 1.5rem;
  }
}
