@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    padding-top: 40px; /* Space for sticky promo banner */
}

/* Promo Banner */
.bg-gradient-to-r.from-red-600.to-green-600 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
/* Avatar Initials */
.w-12.h-12,
.w-10.h-10 {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fef3c7;
    color: #92400e;
    font-weight: 600;
}
/* Custom Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Gallery Modal */
#gallery-modal {
    animation: fadeIn 0.3s ease-out;
}

.gallery-item img {
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-out;
}

/* Counters Animation */
.counter {
    transition: all 0.5s ease-out;
}
/* FAQ Animation */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.faq-answer:not(.hidden) {
    max-height: 500px;
    opacity: 1;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.faq-question i {
    transition: transform 0.3s ease-out;
}

.faq-question i.rotate-180 {
    transform: rotate(180deg);
}
/* Recent Order Popup */
#recent-order-popup.active {
    transform: translateY(0);
}

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

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

::-webkit-scrollbar-thumb {
    background: #d97706;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b45309;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-text {
        font-size: 2.5rem;
    }
    
    .counter {
        font-size: 2rem;
    }
}
