/* Side Quote Drawer Styles */

.fqs-side-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 10001;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fqs-side-drawer {
    position: fixed;
    top: 0;
    right: -400px; /* Hidden by default */
    width: 380px;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    z-index: 10002;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.fqs-side-drawer.open {
    right: 0;
}

.fqs-side-drawer-overlay.open {
    display: block;
    opacity: 1;
}

.fqs-drawer-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fqs-drawer-header h2 {
    margin: 0;
    font-size: 18px;
    color: var(--fqs-secondary);
}

.fqs-close-drawer {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.fqs-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.fqs-drawer-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

/* Drawer Items */
.fqs-drawer-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.fqs-drawer-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.fqs-drawer-item-info {
    flex: 1;
}

.fqs-drawer-item-name {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 5px;
}

.fqs-drawer-item-qty {
    font-size: 12px;
    color: #777;
}

.fqs-drawer-btn {
    display: block;
    width: 100%;
    background: var(--fqs-primary);
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s;
}

.fqs-drawer-btn:hover {
    background: #1ba507;
    color: #fff;
}

.fqs-empty-drawer {
    text-align: center;
    padding: 50px 0;
    color: #888;
}
