/* assets/css/style.css */

:root {
    --brand-mango: #FF8A00;
    --brand-sunset: #FF6B00;
    --brand-amber: #FFB703;
    --brand-light: #FFFDF8;
    --brand-peach: #FFF3E8;
    --rich-charcoal: #1E1E1E;
}

/* Base Styles */
body {
    overflow-x: hidden;
}

/* Custom Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: var(--brand-light);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-mango);
}

/* Glassmorphism Overrides (Subtle) */
.glass-premium {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Category Pill Custom */
.category-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item:hover .icon-box {
    background: var(--brand-mango);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(255, 138, 0, 0.4);
}

/* Product Card Custom */
.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

/* Hide scrollbar but keep functionality */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
/* Masking Utility for Banner Images */
.mask-gradient-left {
    mask-image: linear-gradient(to right, transparent 0%, black 40%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%);
}

.mask-gradient-bottom {
    mask-image: linear-gradient(to top, transparent 0%, black 40%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 40%);
}
