/* Ultra-Professional Mobile-First UI Styles for Agro Tech Hub */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    padding-bottom: 70px; /* Space for sticky bottom mobile nav */
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0px;
    }
}

/* Glassmorphism elements */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Custom Scrollbar for horizontal chips */
.scroll-chips::-webkit-scrollbar {
    display: none;
}
.scroll-chips {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Product Card Premium Styling */
.product-card {
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:active {
    transform: scale(0.98);
}

@media (min-width: 640px) {
    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 32px -8px rgba(22, 163, 74, 0.12);
    }
}

/* Bottom Navigation Bar active indicator */
.mobile-nav-item.active {
    color: #16a34a;
    font-weight: 700;
}

.mobile-nav-item.active i {
    transform: translateY(-2px);
    color: #16a34a;
}

/* Custom button active state */
.company-btn.active {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
    border-color: transparent !important;
}

.pay-method-btn.active {
    background-color: #16a34a !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(22, 163, 74, 0.25);
}

/* Touch friendly minimum heights */
.touch-target {
    min-height: 44px;
    min-width: 44px;
}
