/* Garage Drawer Styles - Right Slide-in */
.wf-gd-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    visibility: hidden;
    transition: visibility 0.3s;
}

.wf-gd-drawer.active {
    visibility: visible;
}

/* Glassmorphism Overlay */
.wf-gd-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wf-gd-drawer.active .wf-gd-overlay {
    opacity: 1;
}

/* Panel Sliding */
.wf-gd-panel {
    position: absolute;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    color: #111827;
}

.wf-gd-drawer.active .wf-gd-panel {
    right: 0;
}

/* Header */
.wf-gd-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
}

.wf-gd-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.wf-gd-close {
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s;
}

.wf-gd-close:hover {
    background: #e2e8f0;
    color: #1e293b;
    transform: rotate(90deg);
}

/* Multi-step Navigation (Breadcrumbs) */
.wf-gd-steps {
    padding: 16px 24px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    border-bottom: 1px solid #f1f5f9;
}

.wf-gd-step {
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.wf-gd-step.active {
    color: #1e293b;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.wf-gd-step-sep {
    width: 12px;
    height: 12px;
    color: #cbd5e1;
}

/* Search Area */
.wf-gd-search-wrap {
    padding: 24px;
    position: relative;
}

.wf-gd-search-input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    background: #f1f5f9;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.2s;
}

.wf-gd-search-input:focus {
    background: #fff;
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.wf-gd-search-wrap .wf-gd-search-icon {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    width: 18px;
    height: 18px;
}

/* List Area */
.wf-gd-list-container {
    flex: 1;
    overflow-y: auto;
    padding: 0 12px 24px;
}

.wf-gd-list {
    display: flex;
    flex-direction: column;
}

.wf-gd-list-item {
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.2s;
    margin-bottom: 2px;
}

.wf-gd-list-item:hover {
    background: #f8fafc;
}

.wf-gd-list-item span {
    font-size: 15px;
    font-weight: 500;
}

.wf-gd-list-item .wf-gd-chevron {
    width: 16px;
    height: 16px;
    color: #cbd5e1;
    opacity: 0;
    transition: all 0.2s;
}

.wf-gd-list-item:hover .wf-gd-chevron {
    opacity: 1;
    transform: translateX(4px);
}

/* Loading Spinner */
.wf-gd-loading {
    display: flex;
    justify-content: center;
    padding: 40px;
}

.wf-gd-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid #f1f5f9;
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    animation: wfGDSpin 0.8s linear infinite;
}

@keyframes wfGDSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* No results */
.wf-gd-no-results {
    text-align: center;
    padding: 40px 20px;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 480px) {
    .wf-gd-panel {
        max-width: 100%;
    }
}

