/* ------- Small Price Widgets ------- */
.small-widget {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 12px;
  width: 240px;
  text-align: center;
  font-family: Arial, sans-serif;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  margin: 12px;
}

.small-widget .widget-title {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  margin-bottom: 6px;
}

.small-widget .widget-price {
  font-size: 26px;
  font-weight: bold;
  color: #222;
  margin-bottom: 6px;
}

.small-widget .widget-info div {
  font-size: 14px;
  margin: 4px 0;
}

.small-widget .widget-chart {
  display: block;
  width: 100%;
  height: 30px;
  margin-top: 6px;
}

.price-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

p {
  margin-bottom: 30px;
  margin-top: 30px;
}

@media (max-width: 768px) {
    .price-card {
        grid-template-columns: repeat(2, 1fr);
    }
    .nav-links-header {
        display: none;
    }
    .ad-left {
        display: none;
    }
    .ad-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .price-card {
        grid-template-columns: 1fr;
    }
    .nav-links-header {
        display: none;
    }
    .ad-left {
        display: none;
    }
    .ad-right {
        display: none;
    }
}