/**
 * Kaheel Quick RFQ Basket - Styles
 * Design matched to provided Kaheel RFQ modal specification
 */

/* ==========================================
   CSS CUSTOM PROPERTIES (Variables)
   ========================================== */
:root {
    /* Kaheel Brand Colors */
    --kaheel-gold: #c79a45;
    --kaheel-gold-dark: #b08738;
    --kaheel-gold-light: #d4ad6b;
    --kaheel-gold-bg: #fdf6ec;
    
    /* Dark Green Overlay */
    --kaheel-overlay: #0e2620;
    --kaheel-overlay-alpha: #0e26208c;
    
    /* Neutrals */
    --kaheel-white: #ffffff;
    --kaheel-bg: #ffffff;
    --kaheel-bg-alt: #fafafa;
    --kaheel-border: #e5e5e5;
    --kaheel-border-strong: #d0d0d0;
    --kaheel-text: #1a1a1a;
    --kaheel-text-secondary: #4a4a4a;
    --kaheel-text-muted: #888888;
    --kaheel-text-light: #aaa;
    
    /* Semantic */
    --kaheel-error: #c0392b;
    --kaheel-error-bg: #fdf0f0;
    --kaheel-error-border: #f5c6c6;
    --kaheel-success: #27ae60;
    --kaheel-success-bg: #e8f8f0;
    --kaheel-success-border: #b8e8d0;
    
    /* WhatsApp */
    --kaheel-whatsapp: #25D366;
    --kaheel-whatsapp-dark: #1ebd5a;
    
    /* Shadows & Effects */
    --kaheel-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --kaheel-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --kaheel-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --kaheel-blur: blur(2px);
    
    /* Radius */
    --kaheel-radius: 10px;
    --kaheel-radius-sm: 6px;
    --kaheel-radius-lg: 16px;
    
    /* Transitions */
    --kaheel-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --kaheel-transition-fast: all 0.15s ease;
    
    /* Layout */
    --kaheel-drawer-width: 440px;
    --kaheel-modal-width: 520px;
    --kaheel-z-launcher: 99999;
    --kaheel-z-overlay: 99997;
    --kaheel-z-drawer: 99998;
    --kaheel-z-modal: 100000;
    
    /* Typography */
    --kaheel-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --kaheel-font-mono: "SF Mono", "Fira Code", monospace;
}

/* ==========================================
   RESET & BASE
   ========================================== */
.kaheel-rfq *,
.kaheel-rfq *::before,
.kaheel-rfq *::after {
    box-sizing: border-box;
}

.kaheel-rfq {
    font-family: var(--kaheel-font);
    font-size: 14px;
    line-height: 1.5;
    color: var(--kaheel-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================
   FLOATING LAUNCHER BUTTON
   ========================================== */
#kaheel-basket-launcher {
    position: fixed;
    bottom: 90px; /* Above Blocksy scroll-to-top (bottom: 20px) */
    right: 20px;
    z-index: var(--kaheel-z-launcher);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--kaheel-gold);
    color: var(--kaheel-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--kaheel-shadow-lg);
    transition: var(--kaheel-transition);
    outline: none;
}

#kaheel-basket-launcher:hover,
#kaheel-basket-launcher:focus {
    background: var(--kaheel-gold-dark);
    transform: scale(1.08);
    box-shadow: var(--kaheel-shadow-xl);
}

#kaheel-basket-launcher:active {
    transform: scale(0.95);
}

#kaheel-basket-launcher svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

/* Badge */
.kaheel-basket-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    background: var(--kaheel-white);
    color: var(--kaheel-gold);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    line-height: 1;
}

/* Alternate Position: Bottom-Left */
body.basket-position-left #kaheel-basket-launcher {
    bottom: 20px;
    right: auto;
    left: 20px;
}

/* RTL Support */
body.rtl #kaheel-basket-launcher {
    right: auto;
    left: 20px;
}

body.rtl.basket-position-left #kaheel-basket-launcher {
    left: auto;
    right: 20px;
}

/* ==========================================
   DRAWER OVERLAY (Backdrop Blur)
   ========================================== */
.kaheel-basket-overlay {
    position: fixed;
    inset: 0;
    background: var(--kaheel-overlay-alpha);
    -webkit-backdrop-filter: var(--kaheel-blur);
    backdrop-filter: var(--kaheel-blur);
    z-index: var(--kaheel-z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: var(--kaheel-transition);
}

.kaheel-basket-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ==========================================
   SLIDE-OVER DRAWER (Basket)
   ========================================== */
.kaheel-basket-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: var(--kaheel-drawer-width);
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    background: var(--kaheel-bg);
    z-index: var(--kaheel-z-drawer);
    display: flex;
    flex-direction: column;
    box-shadow: var(--kaheel-shadow-xl);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.kaheel-basket-drawer.open {
    right: 0;
}

/* Drawer Header */
.kaheel-basket-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--kaheel-border);
    background: var(--kaheel-bg);
    flex-shrink: 0;
}

.kaheel-basket-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--kaheel-text);
    letter-spacing: -0.02em;
}

.kaheel-basket-close {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--kaheel-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--kaheel-radius-sm);
    transition: var(--kaheel-transition-fast);
    padding: 0;
}

.kaheel-basket-close:hover,
.kaheel-basket-close:focus {
    background: var(--kaheel-bg-alt);
    color: var(--kaheel-text);
    outline: none;
}

.kaheel-basket-close svg {
    width: 20px;
    height: 20px;
}

/* Drawer Body */
.kaheel-basket-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

/* RFQ Items Section (matches design) */
.rfq-items-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.rfq-items-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.rfq-items-header > span {
    font-size: 14px;
    font-weight: 500;
    color: var(--kaheel-text-secondary);
}

.rfq-items-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rfq-clear {
    background: none;
    border: none;
    color: var(--kaheel-text-muted);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--kaheel-radius-sm);
    transition: var(--kaheel-transition-fast);
}

.rfq-clear:hover,
.rfq-clear:focus {
    color: var(--kaheel-error);
    background: var(--kaheel-error-bg);
    outline: none;
}

.rfq-add-more {
    color: var(--kaheel-gold);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: var(--kaheel-radius-sm);
    transition: var(--kaheel-transition-fast);
}

.rfq-add-more:hover {
    background: var(--kaheel-gold-bg);
    text-decoration: none;
}

/* Items List */
#rfqItems {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Empty State */
.rfq-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    text-align: center;
    color: var(--kaheel-text-muted);
}

.rfq-empty svg {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.rfq-empty p {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--kaheel-text-secondary);
}

.rfq-empty a {
    color: var(--kaheel-gold);
    font-weight: 500;
    text-decoration: none;
}

.rfq-empty a:hover {
    text-decoration: underline;
}

/* Basket Item (matches design) */
.rfq-item {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: var(--kaheel-bg-alt);
    border: 1px solid var(--kaheel-border);
    border-radius: var(--kaheel-radius);
    transition: var(--kaheel-transition-fast);
}

.rfq-item:hover {
    border-color: var(--kaheel-gold-light);
    box-shadow: 0 2px 12px rgba(186, 134, 50, 0.08);
}

.rfq-item-image {
    width: 56px;
    height: 56px;
    border-radius: var(--kaheel-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--kaheel-border);
}

.rfq-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rfq-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kaheel-text-light);
}

.rfq-item-placeholder svg {
    width: 24px;
    height: 24px;
}

.rfq-item-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rfq-item-title {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--kaheel-text);
    line-height: 1.3;
}

.rfq-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 12px;
    color: var(--kaheel-text-muted);
}

.rfq-item-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rfq-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--kaheel-border);
}

.rfq-qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--kaheel-border);
    background: var(--kaheel-white);
    color: var(--kaheel-text);
    border-radius: var(--kaheel-radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    transition: var(--kaheel-transition-fast);
}

.rfq-qty-btn:hover,
.rfq-qty-btn:focus {
    border-color: var(--kaheel-gold);
    color: var(--kaheel-gold);
    background: var(--kaheel-gold-bg);
    outline: none;
}

.rfq-qty-btn:active {
    transform: scale(0.95);
}

.rfq-qty-value {
    min-width: 28px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--kaheel-text);
}

.rfq-item-remove {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--kaheel-text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--kaheel-radius-sm);
    transition: var(--kaheel-transition-fast);
    flex-shrink: 0;
    padding: 0;
    margin-left: auto;
}

.rfq-item-remove:hover,
.rfq-item-remove:focus {
    background: var(--kaheel-error-bg);
    color: var(--kaheel-error);
    outline: none;
}

.rfq-item-remove svg {
    width: 18px;
    height: 18px;
}

/* Drawer Footer - Channel Picker & Actions */
.kaheel-basket-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--kaheel-border);
    background: var(--kaheel-bg);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Channel Picker (WhatsApp / Email) */
.rfq-channel-picker-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rfq-channel-picker-wrap > label {
    font-size: 13px;
    font-weight: 500;
    color: var(--kaheel-text-secondary);
}

.channel-picker {
    display: flex;
    gap: 8px;
    background: var(--kaheel-bg-alt);
    border: 1px solid var(--kaheel-border);
    border-radius: var(--kaheel-radius);
    padding: 4px;
}

.channel-opt {
    flex: 1;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--kaheel-text-secondary);
    background: transparent;
    border: none;
    border-radius: var(--kaheel-radius-sm);
    cursor: pointer;
    transition: var(--kaheel-transition-fast);
    text-align: center;
}

.channel-opt:hover {
    color: var(--kaheel-text);
    background: var(--kaheel-white);
}

.channel-opt.selected {
    background: var(--kaheel-white);
    color: var(--kaheel-gold);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    font-weight: 600;
}

.channel-opt[data-channel="whatsapp"].selected {
    color: var(--kaheel-whatsapp);
}

/* Primary Actions */
.rfq-primary-actions {
    display: flex;
    gap: 10px;
}

/* ==========================================
   BUTTONS (btn--gold, btn--block)
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--kaheel-radius);
    border: none;
    cursor: pointer;
    transition: var(--kaheel-transition);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    font-family: inherit;
}

.btn:focus-visible {
    outline: 2px solid var(--kaheel-gold);
    outline-offset: 2px;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn--block {
    width: 100%;
}

.btn--gold {
    background: var(--kaheel-gold) !important;
    color: var(--kaheel-white) !important;
    border: 1px solid var(--kaheel-gold) !important;
}

.btn--gold:hover:not(:disabled) {
    background: var(--kaheel-gold-dark) !important;
    border-color: var(--kaheel-gold-dark) !important;
}

.btn--gold:active:not(:disabled) {
    background: #8a6826 !important;
}

.btn--outline {
    background: transparent;
    color: var(--kaheel-text);
    border: 1px solid var(--kaheel-border);
}

.btn--outline:hover:not(:disabled) {
    background: var(--kaheel-bg-alt);
    border-color: var(--kaheel-border-strong);
}

.btn--whatsapp {
    background: var(--kaheel-whatsapp);
    color: var(--kaheel-white);
    border: 1px solid var(--kaheel-whatsapp);
}

.btn--whatsapp:hover:not(:disabled) {
    background: var(--kaheel-whatsapp-dark);
    border-color: var(--kaheel-whatsapp-dark);
}

/* Spinner */
.btn .spinner {
    width: 18px;
    height: 18px;
    animation: kaheel-spin 1s linear infinite;
}

@keyframes kaheel-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==========================================
   QUOTE MODAL (Centered Modal)
   ========================================== */
.kaheel-quote-modal {
    position: fixed;
    inset: 0;
    z-index: var(--kaheel-z-modal);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 16px;
    opacity: 0;
    visibility: hidden;
    transition: var(--kaheel-transition);
    overflow-y: auto;
}

.kaheel-quote-modal.open {
    opacity: 1;
    visibility: visible;
}

.kaheel-quote-overlay {
    position: absolute;
    inset: 0;
    background: var(--kaheel-overlay-alpha);
    -webkit-backdrop-filter: var(--kaheel-blur);
    backdrop-filter: var(--kaheel-blur);
}

.kaheel-quote-container {
    position: relative;
    width: 100%;
    max-width: var(--kaheel-modal-width);
    background: var(--kaheel-white);
    border-radius: var(--kaheel-radius-lg);
    box-shadow: var(--kaheel-shadow-xl);
    overflow: hidden;
    transform: scale(0.96) translateY(16px);
    transition: var(--kaheel-transition);
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 80px);
}

.kaheel-quote-modal.open .kaheel-quote-container {
    transform: scale(1) translateY(0);
}

.kaheel-quote-header {
    position: relative;
    padding: 24px;
    border-bottom: 1px solid var(--kaheel-border);
    flex-shrink: 0;
}

.kaheel-quote-header h3 {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 600;
    color: var(--kaheel-text);
    letter-spacing: -0.02em;
}

.rfq-sub {
    margin: 0;
    font-size: 14px;
    color: var(--kaheel-text-muted);
    line-height: 1.5;
}

.kaheel-quote-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--kaheel-bg-alt);
    color: var(--kaheel-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--kaheel-transition-fast);
    padding: 0;
}

.kaheel-quote-close:hover,
.kaheel-quote-close:focus {
    background: var(--kaheel-border);
    color: var(--kaheel-text);
    outline: none;
}

.kaheel-quote-close svg {
    width: 18px;
    height: 18px;
}

.kaheel-quote-form {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

/* Form Styles */
.rfq-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-row {
    display: flex;
    gap: 16px;
}

.field-row .field {
    flex: 1;
}

.field label {
    font-size: 13px;
    font-weight: 500;
    color: var(--kaheel-text-secondary);
}

.field label .req {
    color: var(--kaheel-error);
    margin-left: 2px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    font-size: 14px;
    font-family: inherit;
    color: var(--kaheel-text);
    background: var(--kaheel-white);
    border: 1px solid var(--kaheel-border);
    border-radius: var(--kaheel-radius);
    transition: var(--kaheel-transition-fast);
    box-sizing: border-box;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--kaheel-gold);
    box-shadow: 0 0 0 3px rgba(186, 134, 50, 0.12);
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--kaheel-text-light);
}

.field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.field textarea {
    resize: vertical;
    min-height: 90px;
}

.field input:invalid:not(:placeholder-shown),
.field select:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
    border-color: var(--kaheel-error);
}

/* Modal Note */
.modal-note {
    margin: 0;
    font-size: 12px;
    color: var(--kaheel-text-muted);
    text-align: center;
    line-height: 1.5;
}

/* Quote Message */
.kaheel-quote-message {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: var(--kaheel-radius);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.kaheel-quote-message.success {
    background: var(--kaheel-success-bg);
    color: var(--kaheel-success);
    border: 1px solid var(--kaheel-success-border);
    display: block;
}

.kaheel-quote-message.error {
    background: var(--kaheel-error-bg);
    color: var(--kaheel-error);
    border: 1px solid var(--kaheel-error-border);
    display: block;
}

/* ==========================================
   INLINE ADD BUTTONS (Elementor Icon Lists)
   ========================================== */
.rfq-inline-add {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    padding: 2px 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--kaheel-gold);
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: var(--kaheel-radius-sm);
    transition: var(--kaheel-transition-fast);
    line-height: 1;
}

.rfq-inline-add:hover,
.rfq-inline-add:focus {
    background: var(--kaheel-gold-bg);
    color: var(--kaheel-gold-dark);
    outline: none;
}

.rfq-inline-add:active {
    transform: scale(0.95);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 560px) {
    :root {
        --kaheel-drawer-width: 100vw;
        --kaheel-modal-width: 100vw;
    }
    
    #kaheel-basket-launcher {
        bottom: 80px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
    
    body.basket-position-left #kaheel-basket-launcher {
        bottom: 16px;
        left: 16px;
    }
    
    .kaheel-basket-header,
    .kaheel-basket-body,
    .kaheel-basket-footer {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .kaheel-quote-header,
    .kaheel-quote-form {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .kaheel-quote-container {
        max-height: 100vh;
        border-radius: 0;
    }
    
    .kaheel-quote-modal.open .kaheel-quote-container {
        transform: none;
    }
    
    .field-row {
        flex-direction: column;
        gap: 0;
    }
    
    .rfq-primary-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .channel-picker {
        flex-direction: column;
    }
}

@media (max-width: 768px) and (min-width: 561px) {
    :root {
        --kaheel-drawer-width: 400px;
        --kaheel-modal-width: 480px;
    }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible for keyboard navigation */
.btn:focus-visible,
.kaheel-basket-close:focus-visible,
.kaheel-quote-close:focus-visible,
.rfq-qty-btn:focus-visible,
.rfq-item-remove:focus-visible,
.rfq-clear:focus-visible,
#kaheel-basket-launcher:focus-visible,
.rfq-inline-add:focus-visible,
.channel-opt:focus-visible {
    outline: 2px solid var(--kaheel-gold);
    outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --kaheel-border: #000;
        --kaheel-border-strong: #000;
        --kaheel-text-muted: #333;
    }
    
    .rfq-item,
    .channel-picker,
    .field input,
    .field select,
    .field textarea {
        border-width: 2px;
    }
    
    .rfq-qty-btn {
        border-width: 2px;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
    #kaheel-basket-launcher,
    .kaheel-basket-overlay,
    .kaheel-basket-drawer,
    .kaheel-quote-modal {
        display: none !important;
    }
}