/* Floating button styles (top-right or middle) */
.floating-inquire-button {
    position: fixed;
    top: 20px; /* For top-right */
    right: 20px; /* For top-right */
    background-color: #ff6f61;
    color: white;
    padding: 15px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 20px;
    z-index: 9999;
}

/* Floating panel styles */
.inquire-basket-panel {
    display: none;
    position: fixed;
    top: 70px;
    right: 20px;
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    z-index: 9999;
    border: 2px solid #ff6f61;
}

.inquire-basket-panel h3 {
    margin-top: 0;
}

.inquire-basket-panel ul {
    list-style: none;
    padding: 0;
}

.inquire-basket-panel ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.inquire-basket-panel img {
    max-width: 50px;
    margin-right: 10px;
}

.inquire-basket-panel .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}