:root {
    --gold: #c7921e;
    --dark: #111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}



/* ================= INFO SECTION ================= */

.info {
  height: 220px;
  margin: 0 10px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

/* background */
.info-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* dark overlay */
.info-img .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* content */
.info-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 0 20px;
}

.info-content h1 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* underline */
.underline {
  width: 120px;
  height: 5px;
  background: var(--gold);
  border-radius: 20px;
  margin: 14px auto 0;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .info {
    height: 200px;
  }

  .info-content h1 {
    font-size: 24px;
  }

  .underline {
    width: 100px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .info {
    height: 180px;
    margin: 0 6px;
    border-radius: 12px;
  }

  .info-content h1 {
    font-size: 22px;
  }

  .underline {
    height: 4px;
    width: 90px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .info {
    height: 160px;
  }

  .info-content h1 {
    font-size: 20px;
  }

  .underline {
    width: 80px;
  }
}





/* ================= GOLD TREND ================= */
.gold-trend-section {
    padding: 60px 40px;
    background: #fff;
  }
  
  .trend-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 24px;
  }
  
  .trend-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .gold-trend-section {
      padding: 40px 16px;
    }
  
    .trend-title {
      font-size: 20px;
    }
  }
  







  /* ================= GOLD BAR PRICES ================= */
.gold-bars-section {
    padding: 80px 40px;
    text-align: center;
    background: #fff;
  }
  
  .gold-bars-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .gold-bars-subtitle {
    font-size: 18px;
    color: #444;
    margin-bottom: 50px;
  }
  
  .gold-bars-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
  }
  
  /* CARD */
  .gold-bar-card {
    background: #fff;
    border-radius: 14px;
    padding: 26px 20px 0;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .gold-bar-card h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 18px;
  }
  
  .gold-bar-card img {
    height: 140px;
    object-fit: contain;
    margin-bottom: 30px;
  }
  
  .gold-bar-card .label {
    color: #777;
    margin-bottom: 6px;
  }
  
  .gold-bar-card .price {
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 22px;
  }
  
  /* BUY BUTTON */
  .buy-btn {
    width: 100%;
    background: linear-gradient(90deg, #b8860b, #d4a017);
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0 0 14px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .buy-btn i {
    font-size: 18px;
  }
  
  /* ================= RESPONSIVE ================= */
  @media (max-width: 1200px) {
    .gold-bars-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .gold-bars-grid {
      grid-template-columns: 1fr;
    }
  
    .gold-bars-title {
      font-size: 24px;
    }
  
    .gold-bars-subtitle {
      font-size: 16px;
    }
  }
  