.gas-container {
  min-height: 100vh;
  padding: 0 20px;
}

.hero-section {
  background: white;
  padding: 30px 10px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.hero-section h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #1e3a8a;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #64748b;
}

.info-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.info-badges .badge {
  background: white;
  border: 2px solid #1e3a8a;
  color: #1e3a8a;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  gap: 6px;
}

.info-badges .badge i {
  font-size: 1.2rem;
}

.badge.highlight {
  background: #fbbf24;
  color: #1e3a8a;
  border-color: #fbbf24;
  font-weight: 600;
}

/* Products Section Styling */
.products-section {
  padding: 15px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  margin-bottom: 10px;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 2px solid transparent;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.product-image-container {
  width: 100%;
  padding-top: 100%;
  position: relative;
  background: #f8f8f8;
  overflow: hidden;
}

.product-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.popular-badge,
.new-badge,
.bundle-badge,
.safety-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 1;
}

.popular-badge {
  background: #10b981;
  color: white;
}

.new-badge {
  background: #1e3a8a;
  color: white;
}

.bundle-badge {
  background: #fbbf24;
  color: #1e3a8a;
}

.safety-badge {
  background: #0ea5e9;
  color: white;
}


.product-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-name {
  font-size: 14px;
  color: #1e3a8a;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 38px;
}

.product-description {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.view-btn-container {
  margin-top: auto;
}

.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #10b981;
  font-weight: 600;
  font-size: 0.95rem;
}

.view-btn i {
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 380px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .gas-container {
    min-height: 100vh;
    padding: 0;
  }
}

@media (max-width: 400px) {
  .hero-section {
    padding: 30px 0;
    border-radius: 0;
    margin-bottom: 5px;
  }

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

  .subtitle {
    font-size: 1rem;
  }

  .info-badges {
    gap: 8px;
    padding: 0 15px;
  }

  .badge {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .products-section {
    padding: 10px 15px;
  }

  .gas-container {
    min-height: 100vh;
    padding: 0;
  }
}

@media (min-width: 401px) and (max-width: 768px) {
  .products-section {
    padding: 10px 15px;
  }

  .products-grid {
    margin-bottom: 5px;
  }

  .info-badges {
    min-height: 48px;
    align-items: center;
  }

  .gas-container {
    min-height: 100vh;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .gas-container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
  }

  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .product-name {
    font-size: 15px;
  }

  .product-description {
    font-size: 13px;
  }

  .product-info {
    padding: 16px;
    gap: 10px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}