 * {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}


 .ProductPrice{
    text-align:left;
  }



.container {
  max-width: 2100px;
  margin: 0 auto;
  padding: 8px;
}

h1 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 24px;
}

/* ===== PRODUCT GRID CONTAINER ===== */
.products-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 12px;
  margin: 0 auto;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: black;
  border: 1px solid #eee;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease;
  margin-bottom: 20px;
}

.product-card:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.product-title {
  padding: 1px;
  font-size: 16px;
  font-weight: 580;
  color: #010509;
  line-height: 1.4;
  text-align: left;
  background: #fff;
  border-top: 1px solid #eee;
  margin-top: auto;
  transition: text-decoration 0.2s ease;
}

.product-card:hover .product-title {
  text-decoration: underline;
}

/* ===== IMAGE WRAPPER & IMAGE ===== */
.product-image-wrapper {
  aspect-ratio: 300 / 220;
  width: 100%;
  height: 248px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7f7f7;
  overflow: hidden;
}

.product-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  margin: auto;
  background-color: #f3f3f3;
  border-radius: 5px;
}

/* ===== BUTTONS ===== */
.btn {
  padding: 8px 16px;
  background-color: #1e40af;
  color: white;
  border: none;
  border-radius: 5px;
  margin: 5px;
}

.btn:disabled {
  background-color: gray;
}

/* ===== TABLET VIEW ===== */
@media (min-width: 768px) {
  .products-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 20px;
  }

  .product-image {
    max-height: 230px;
  }
}

/* ===== DESKTOP VIEW ===== */
@media (min-width: 1024px) {
  .products-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 2px;
  }

  .product-image {
    max-height: 250px;
  }

  .ProductPrice{
    text-align:left;
  }


}

/* ===== MOBILE-SPECIFIC IMAGE TWEAK ===== */
@media (max-width: 767px) {
  .product-image-wrapper {
    aspect-ratio: 300 / 204;
    height: 204px;
  }

  .product-title {
   padding: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
} 






}
