.product-card {
  display: flex;
  align-items: center;
  gap: 18px;
}

.product-image {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 12px;
  background: #fcf5ea;
}

.product-info {
  flex: 1;
}

.product-detail {
  color: #766057;
}

@media (max-width: 480px) {
  .product-card {
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
  }

  .product-image {
    width: 90px;
    height: 90px;
  }

  .product-card h3 {
    font-size: 17px;
  }
}
.logo {
  display: block;
  width: auto;
  height: 54px;
  max-width: 150px;
  margin: 0 auto;
  object-fit: contain;
}
.quantity-control {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

.quantity-button {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid #d8c2ae;
  border-radius: 50%;
  background: #fcf5ea;
  color: #493126;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.quantity-button:active {
  transform: scale(0.96);
}

.quantity-number {
  min-width: 28px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.order-summary {
  position: sticky;
  bottom: 0;
  margin-top: 24px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #eadccf;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -8px 24px rgba(73, 49, 38, 0.08);
}

.order-summary h2 {
  margin: 0 0 16px;
  font-size: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.grand-total {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #eadccf;
  font-size: 20px;
}

.minimum-message {
  margin: 14px 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff1e8;
  color: #9a4e27;
  text-align: center;
  font-size: 14px;
}

.minimum-message.minimum-complete {
  background: #edf6e9;
  color: #446b35;
}

.continue-button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  background: #6b4a37;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

.continue-button:disabled {
  background: #c9bdb5;
  cursor: not-allowed;
}
