.product {
	width:100%;
	}

.product img {
	max-width:90%;
}

.product h4, .product p {
	line-height:0.8em;
	margin: 1px;
}

.product button {
    width: 30px;
    height: 30px;
}

.product input {
    width: 40px;
    text-align: center;
}

#view-order-btn {
    margin-top: 20px;
}

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

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.tab-container {
    display: flex;
    margin-bottom: 10px;
}

.tab {
	cursor: pointer;
	padding: 10px;
	background-color: #FFFFCC;
	border: 1px solid #ccc;
	margin-right: 10px;
	color: #000;
}

.tab.active {
	background-color: #FC0;
}

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.floating-button {
  display: block;
  width: 150px;
  padding: 12px;
  background-color: #007bff;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  margin-bottom: 10px;
  text-align: center;
  cursor: pointer;
  border-radius:10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
button:disabled,
button[disabled]{
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
}
.floating-button:hover {
  background-color: #0056b3;
}

.floating-button:focus {
  outline: none;
}