body {
  font-family: Arial, sans-serif;
  background-color: wheat;
  margin: 0;
  padding: 20px;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  max-width: 1000px;
  margin: auto;
  flex-wrap: wrap;
}

.description-section {
  flex: 1;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  min-width: 280px;
}

.description-section h2 {
  margin-bottom: 10px;
}

.description-section p {
  color: #555;
  line-height: 1.6;
}

.product-card {
  flex: 1;
  max-width: 400px;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.product-img {
  width: 100%;
  border-radius: 10px;
}

.product-imgs {
  height: 40%;
  width: 40%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.product-description {
  text-align: center;
}

.product-asset {
  height: 60%;
  width: 60%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.product-info h1 {
  margin-top: 15px;
  font-size: 24px;
}

.price {
  color: #333;
  font-size: 20px;
  margin: 10px 0;
}

button {
  padding: 10px 20px;
  background-color: black;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 1s;
}

button:hover {
  background-color: orange;
}

#cart-msg {
  color: green;
  margin-top: 10px;
  font-weight: bold;
}

.logo-container {
  position: fixed;
  top: 15px;
  left: 15px;
  width: 100px;
  height: 100px;
  cursor: pointer;
  z-index: 1000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s ease;
}

.logo-container:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.logo-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 400px) {
  .logo-container {
    width: 50px;
    height: 50px;
    top: 12px;
    left: 12px;
    border-radius: 10px;
  }
}
