/* Fixed Order Kit Button - Left side sticky tab, matching feedback button style */
.fixed-kit-button {
    position: fixed;
    left: -2px;
    top: 42%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: left center;
    z-index: 9999;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px 8px 0 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    white-space: nowrap;
}

.fixed-kit-button:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-50%) rotate(90deg) translateX(-5px);
    left: 2px;
}

.fixed-kit-button:active {
    transform: translateY(-50%) rotate(90deg) translateX(-2px);
}

.fixed-kit-button .icon {
    font-size: 18px;
    display: inline-block;
}

/* Animation on page load */
@keyframes slideInFromLeft {
    0% {
        left: -120px;
        opacity: 0;
    }
    100% {
        left: -2px;
        opacity: 1;
    }
}

.fixed-kit-button {
    animation: slideInFromLeft 0.5s ease-out 0.7s both;
}

/* Accessibility */
.fixed-kit-button:focus {
    outline: 3px solid #ffd700;
    outline-offset: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .fixed-kit-button {
        padding: 10px 18px;
        font-size: 13px;
    }
    .fixed-kit-button .icon {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .fixed-kit-button {
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* Print */
@media print {
    .fixed-kit-button { display: none !important; }
}
