/*
Theme Name: শখের বাগান (Shokher Bagan)
Theme URI: https://shokherbagan.com
Author: Expert Developer
Description: একটি হাই-এন্ড গার্ডেনিং ই-কমার্স থিম। এতে আছে রিয়্যাক্ট ফ্রেমওয়ার্ক এবং জেমিয়াই এআই চ্যাটবট।
Version: 2.3.0
License: GNU General Public License v2 or later
Text Domain: shokher-bagan
*/

body {
    font-family: 'Hind Siliguri', sans-serif;
    scroll-behavior: smooth;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #14532d;
}

/* Utility */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Animations */
@keyframes slide-in-right {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes slide-up {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes pop {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.animate-slide-in-right {
    animation: slide-in-right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-slide-up {
    animation: slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-pop {
    animation: pop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Safe Area */
.pb-safe {
    padding-bottom: env(safe-area-inset-bottom);
}
