.wq-add-to-quote,
.wq-add-to-quote-loop {
    cursor: pointer;
}
.wq-float-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #0073aa;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 9998;
    transition: transform 0.2s;
}
.wq-float-icon:hover {
    transform: scale(1.1);
}
.wq-float-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #b32d2e;
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wq-offcanvas {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 90vw;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 12px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}
.wq-offcanvas.active {
    right: 0;
}
.wq-offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    display: none;
}
.wq-offcanvas-overlay.active {
    display: block;
}
.wq-offcanvas-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wq-offcanvas-header h3 {
    margin: 0;
    font-size: 18px;
}
.wq-close-offcanvas {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}
.wq-offcanvas-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.wq-quote-items {
    list-style: none;
    margin: 0;
    padding: 0;
}
.wq-quote-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}
.wq-item-image {
    width: 70px;
    flex-shrink: 0;
}
.wq-item-image img {
    max-width: 100%;
    height: auto;
}
.wq-item-details {
    flex: 1;
}
.wq-item-name {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    color: #333;
    text-decoration: none;
}
.wq-item-variation {
    font-size: 12px;
    color: #666;
}
.wq-item-sku {
    font-size: 12px;
    color: #888;
}
.wq-item-price {
    margin-top: 5px;
    font-weight: 500;
}
.wq-item-moq {
    font-size: 12px;
    color: #b32d2e;
}
.wq-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    min-width: 90px;
}
.wq-item-qty {
    width: 70px;
    text-align: center;
}
.wq-update-item,
.wq-remove-item {
    background: none;
    border: none;
    color: #0073aa;
    cursor: pointer;
    font-size: 12px;
    padding: 2px 0;
}
.wq-remove-item {
    color: #b32d2e;
}
.wq-offcanvas-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}
.wq-submit-quote {
    width: 100%;
    text-align: center;
}
.wq-empty {
    text-align: center;
    color: #888;
    padding: 30px;
}
.wq-moq-info,
.wq-moq-notice {
    margin: 5px 0;
    font-weight: 600;
    color: #b32d2e;
}
.wq-price-hidden {
    font-style: italic;
    color: #777;
}