/* Dynamic Housekeeping Products - Ultra Modern Theme & Animation Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --brand-primary: #1e3a8a;
    --brand-teal: #0d9488;
    --brand-accent: #0284c7;
    --brand-emerald: #10b981;
}

html, body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

*, *::before, *::after {
    box-sizing: border-box;
}

[x-cloak] {
    display: none !important;
}

/* Animations & Keyframes */
@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(10px) rotate(-1deg); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(13, 148, 136, 0.3); }
    50% { box-shadow: 0 0 30px rgba(13, 148, 136, 0.6); }
}

@keyframes pulseSale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    100% { transform: translateX(100%); }
}

@keyframes rippleWave {
    0% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

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

.animate-float-reverse {
    animation: floatReverse 7s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulseGlow 3s infinite;
}

.animate-pulse-sale {
    animation: pulseSale 2s infinite ease-in-out;
}

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

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

/* Glassmorphism & Cards */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-hover-effect {
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-hover-effect:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.12);
}

/* Category 3D Hover Pill */
.category-card {
    transition: all 0.3s ease;
}
.category-card:hover {
    transform: translateY(-4px) scale(1.02);
}

/* Product Image Zoom */
.product-card-zoom {
    overflow: hidden;
    position: relative;
}
.product-card-zoom img {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card-zoom:hover img {
    transform: scale(1.08);
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Countdown Box Neon */
.countdown-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 14px;
    padding: 8px 12px;
    text-align: center;
    min-width: 58px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Floating WhatsApp Button with Ripple Effect (Bottom Left) */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: auto;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}
.whatsapp-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: rippleWave 2s infinite ease-out;
}
