/* General Styles */
body {
  font-family: 'Noto Serif Oriya', serif;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.display_product {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.check_out {
  width: 100%;
  max-width: 300px;
  background-color: #f4f4f4;
  padding: 1rem;
  border-radius: 8px;
}

.image {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}

.price {
  color: brown;
}

.btn1 {
  background-color: brown;
  color: white;
  padding: 1rem;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  display: block;
  width: 100%;
}

.icon {
  display: flex;
  gap: 1rem;
}

p {
  font-size: 1rem;
}

/* Flexbox for cart items */
.cart .checkout-item {
  margin-bottom: 1rem;
}

/* Media Queries for responsiveness */

/* For small screens (mobile devices) */
@media (max-width: 1000px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .sd{
    display: flex;
    flex-direction: column;
  }

  .display_product {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .check_out {
    max-width: 100%;
    margin-top: 2rem;
  }

  .btn1 {
    font-size: 1rem;
    padding: 1rem;
  }
}

