@import url("../form/colors.css");

#sticky-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    box-sizing: border-box;
}

#sticky-panel.show {
    transform: translateY(0);
}

.sticky-content {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #333;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-size: 16px;
    color: var(--woox-primary-color);
    margin-top: 5px;
    margin: 0 !important;
}

#sticky-order-button {
    background: var(--woox-primary-color);
    color: #fff;
    padding: 8px 30px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 12px;
    font-family: inherit;
    white-space: nowrap;

}