/* Sole & Satchel - Custom Brand Styles */
:root {
    --quagga-teal: #5bc2d0;
    --quagga-grey: #8a8d8f;
    --quagga-black: #1a1a1a;
    --quagga-white: #ffffff;
}

/* Product Card Hover Effects */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0 !important;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* Form Styling */
.form-control:focus, .form-select:focus {
    border-color: var(--quagga-teal);
    box-shadow: 0 0 0 0.25rem rgba(91, 194, 208, 0.25);
}

/* Navigation Overrides */
.navbar-quagga .nav-link.active {
    border-bottom: 2px solid var(--quagga-teal);
}

/* Custom Scrollbar for Brand Identity */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--quagga-black);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--quagga-teal);
}

/* Invoice Printing Optimization */
@media print {
    .no-print { display: none !important; }
    body { background: white !important; }
    .invoice-box { border: none !important; }
}