/* Sona Remedies - Main Stylesheet */

:root {
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #ccfbf1;
    --secondary: #0f172a;
    --accent: #10b981;
    --warning: #f59e0b;
    --surface: #ffffff;
    --background: #f8fafc;
    --border: #e2e8f0;
    --text-main: #1e293b;
    --text-muted: #64748b;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-main);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
}

/* Glassmorphism Navbar */
.nav-glass {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* Product Cards */
.product-card {
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -8px rgba(13, 148, 136, 0.12), 0 4px 12px -2px rgba(15, 23, 42, 0.06);
}

/* Hover-to-Zoom Viewer Component */
.zoom-wrapper {
    position: relative;
    user-select: none;
}

.zoom-image-container {
    position: relative;
    overflow: hidden;
    cursor: crosshair;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-lens {
    position: absolute;
    border: 2px solid #0d9488;
    background-color: rgba(13, 148, 136, 0.2);
    cursor: crosshair;
    width: 140px;
    height: 140px;
    display: none;
    border-radius: 8px;
    pointer-events: none;
    box-shadow: 0 0 12px rgba(13, 148, 136, 0.35);
    z-index: 10;
}

.zoom-result-window {
    position: absolute;
    top: 0;
    left: calc(100% + 24px);
    width: 480px;
    height: 480px;
    border: 2px solid var(--border);
    border-radius: 1rem;
    box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.2);
    background-color: #ffffff;
    background-repeat: no-repeat;
    display: none;
    z-index: 50;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .zoom-result-window {
        left: 0;
        top: calc(100% + 16px);
        width: 100%;
        height: 360px;
    }
}

/* Category Badge Pills */
.category-pill {
    transition: all 0.2s ease;
}
.category-pill:hover,
.category-pill.active {
    background-color: #0d9488;
    color: #ffffff;
    border-color: #0d9488;
}

/* Subtle Gradient Accents */
.hero-gradient {
    background: radial-gradient(circle at top right, rgba(204, 251, 241, 0.5), transparent 45%),
                radial-gradient(circle at bottom left, rgba(240, 253, 244, 0.7), transparent 50%),
                #ffffff;
}

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