.flexnet-add-to-quote {
    width: 100%;
    padding: 12px 20px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.flexnet-add-to-quote:hover {
    background: #333;
}

.flexnet-add-to-quote .dashicons {
    font-size: 18px;
}

.flexnet-quote-counter {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #000;
    color: #fff;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.flexnet-quote-counter:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

.flexnet-quote-counter.pulse {
    animation: pulse 0.6s ease-in-out;
}

.quote-count {
    background: #fff;
    color: #000;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.quote-label {
    font-weight: 600;
    font-size: 14px;
}

.flexnet-quote-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flexnet-quote-overlay.active {
    display: block;
    opacity: 1;
}

.flexnet-quote-panel {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.flexnet-quote-panel.active {
    right: 0;
}

.quote-panel-header {
    padding: 24px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quote-panel-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #212529;
}

.quote-panel-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #6c757d;
    transition: color 0.2s ease;
}

.quote-panel-close:hover {
    color: #212529;
}

.quote-panel-close .dashicons {
    font-size: 24px;
}

.quote-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.quote-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quote-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 5px;
    display: flex;
    gap: 12px;
}

.quote-item-image {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
}

.quote-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-item-details {
    flex: 1;
    min-width: 0;
}

.quote-item-title {
    font-size: 15px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 6px 0;
}

.quote-item-excerpt {
    font-size: 12px;
    color: #666;
    margin: 4px 0 8px 0;
    line-height: 1.4;
}

.quote-item-variation {
    font-size: 13px;
    color: #666;
    margin: 4px 0;
}

.quote-item-quantity {
    font-size: 13px;
    font-weight: 600;
    color: #495057;
    margin: 6px 0;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

.quote-item-price {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-top: 8px;
}

.quote-item-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
}

.quote-item-remove:hover {
    color: #c82333;
}

.quote-item-remove .dashicons {
    font-size: 20px;
}

.quote-empty {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.quote-empty .dashicons {
    font-size: 64px;
    color: #dee2e6;
    margin-bottom: 16px;
}

.quote-empty p {
    margin: 0;
    font-size: 16px;
}

.quote-panel-footer {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.quote-form-fields {
    margin-bottom: 16px;
}

.quote-field {
    margin-bottom: 12px;
}

.quote-field:last-child {
    margin-bottom: 0;
}

.quote-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 6px;
}

.quote-title-input,
.quote-message-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.quote-title-input:focus,
.quote-message-input:focus {
    outline: none;
    border-color: #000;
}

.coupon-input-wrapper {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.quote-coupon-select,
.quote-coupon-input {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.quote-coupon-select:focus,
.quote-coupon-input:focus {
    outline: none;
    border-color: #000;
}

.coupon-discount-info {
    margin-top: 8px;
    padding: 8px 12px;
    background: #d5f4dd;
    border-radius: 6px;
}

.discount-badge {
    color: #00a32a;
    font-weight: 600;
    font-size: 13px;
}

.quote-message-input {
    resize: vertical;
    min-height: 60px;
}

.quote-actions {
    display: flex;
    gap: 12px;
}

.quote-panel-footer.hidden {
    display: none;
}

.flexnet-clear-quote {
    flex: 1;
    padding: 12px 20px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    color: #495057;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.flexnet-clear-quote:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.flexnet-submit-quote {
    flex: 2;
    padding: 12px 20px;
    background: #000;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.flexnet-submit-quote:hover {
    background: #333;
}

@media (max-width: 768px) {
    .flexnet-quote-panel {
        width: 100%;
        right: -100%;
    }
    
    .flexnet-quote-counter {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
    }
}
