/* --------------------------------------------------------------------------
   MODERN DRAWER (OFFCANVAS) STYLES
   -------------------------------------------------------------------------- */
.offcanvas {
    background-color: #f8fafc !important;
}

.offcanvas-header {
    background: #ffffff !important;
    padding: 20px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.offcanvas-title {
    font-weight: 800 !important;
    color: #1e293b !important;
    font-size: 1.1rem !important;
}

.drawer-item-card {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 12px !important;
    margin-bottom: 12px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid #f1f5f9 !important;
    transition: var(--transition-base) !important;
    display: block !important;
}

.drawer-item-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.drawer-item-img {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    object-fit: cover;
    background: #f8fafc;
}

.drawer-item-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    line-height: 1.4;
}

.drawer-item-sku {
    font-size: 12px;
    color: #94a3b8;
    display: block;
    margin-bottom: 8px;
}

.drawer-totals-section {
    background: #ffffff;
    padding: 20px;
    border-top: 1px solid #f1f5f9;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.03);
}

.drawer-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.drawer-total-label {
    font-weight: 600;
    color: #64748b;
}

.drawer-total-value {
    font-weight: 800;
    font-size: 1.2rem;
    color: #667eea;
}