body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f8f8f8;
  color: #333;
}

/* Showcase */
#showcase {
  background: url('../img/showcase-store.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

#showcase h1 {
  font-size: 45px;
  margin-bottom: 10px;
}

#showcase p {
  font-size: 18px;
}

/* Store section */
#store {
  padding: 50px 0;
}

#store h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #35424a;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 25px;
  width: 100%;
  margin: auto;
}


/*ANDDROID VERSION*/
@media (max-width: 800px) {

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  float: left;
  width: 100%;
  margin: auto;
  }

  .products .product-card h3 {
  color: #222;
  margin:10px;
  font-size: 12px;
}

.products .product-card img {
  height: 100px;
}

.products .product-card p {
  font-size: 10px;
}

.btn {
  background: #9c0003;
  color: white;
  border: none;
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.products .price {
  font-size: 12px;
  font-weight: bold;
  color: #9c0003;
}

}
/*ANDDROID VERSION ends*/

.product-card {
  background: white;
  border-radius: 5px;
  border: 1px solid #9c0003;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  padding: 5px;
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  border-radius: 5px;
  height: 220px;
  object-fit: cover;
}

.product-card h3 {
  color: #222;
  margin: 10px 0;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #9c0003;
}

.btn {
  background: #9c0003;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #cf3f1a;
}

/* Footer */
footer {
  background: #35424a;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  position: relative;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 25px;
  color: #555;
  cursor: pointer;
}

#cart-items {
  margin: 20px 0;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-item-info {
  flex: 1;
  margin-left: 10px;
}

.cart-item h4 {
  margin: 0;
}

.remove-item {
  color: red;
  cursor: pointer;
}

.cart-total {
  text-align: right;
  font-size: 20px;
  margin-top: 20px;
}

#checkout {
  width: 90%;
  max-width: 600px;
  margin: 50px auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#checkout h2 {
  text-align: center;
  color: #35424a;
  margin-bottom: 20px;
}

#checkout label {
  display: block;
  margin-top: 15px;
  color: #333;
}

#checkout input, #checkout textarea {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

#checkout textarea {
  height: 100px;
  resize: none;
}

#checkout .btn {
  width: 100%;
  margin-top: 20px;
  background: #e8491d;
  border: none;
  padding: 12px;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}