@charset "UTF-8";

/* ==========================================================================
   BARAKAH FOODS — Modern Theme Styles & Utilities
   ========================================================================== */

:root {
    --primary-color: #047857;
    --primary-hover: #065f46;
    --accent-color: #d97706;
}

html {
    -webkit-tap-highlight-color: transparent;
    text-rendering: optimizeLegibility;
}

body {
    background-color: #f8fafc;
    color: #0f172a;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Hero Carousel Transitions */
.carousel-slide {
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

/* Product Card Hover Lift */
.product-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-3px);
}

/* Timeline Stepper for Order Tracking */
.timeline-step {
    position: relative;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #e2e8f0;
    z-index: 1;
}

.timeline-step.completed:not(:last-child)::after {
    background-color: #059669;
}

/* Badges styling */
.badge-save {
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
}

.badge-featured {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.badge-combo {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

/* Print Optimization for Invoices & Orders */
@media print {
    header, footer, #search-overlay, #sidebar-menu, #sidebar-backdrop, .no-print {
        display: none !important;
    }
    body {
        background: #ffffff !important;
        color: #000000 !important;
        padding: 0 !important;
    }
}