.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    line-height: 1;
}

.editorial-text {
    letter-spacing: -0.02em;
}

.glass-nav {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.ambient-shadow {
    box-shadow: 0 24px 40px -12px rgba(25, 28, 29, 0.05);
}

.ambient-shadow:hover {
    box-shadow: 0 32px 48px -10px rgba(25, 28, 29, 0.15); /* More prominent shadow */
}

/* Animations and Transitions */
.reveal-hidden {
    opacity: 0;
    transform: translateY(40px) scale(0.98); /* slight scale to make it feel organic */
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.btn-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hover:active {
    transform: scale(0.95);
}

/* Product Card Interactions */
.product-card {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-img-wrapper {
    overflow: hidden;
}

.product-img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-img {
    transform: scale(1.04);
}

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

/* Smooth Navigation Transform */
nav {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

nav.nav-scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Nav Pill Links */
.nav-pill {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #52525b; /* zinc-600 */
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.nav-pill:hover {
    background: rgba(47, 108, 11, 0.08);
    color: #2f6c0b; /* primary */
}

.nav-pill-active {
    background: #2f6c0b !important; /* primary */
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(47, 108, 11, 0.25);
}

/* Secondary Nav Links */
.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #52525b; /* zinc-600 */
    transition: all 0.25s ease;
    padding: 0.5rem 0.25rem;
    position: relative;
    opacity: 0.8;
}

.nav-link:hover {
    color: #2f6c0b;
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #2f6c0b;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

/* Nav Icon Buttons */
.nav-icon-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    color: #52525b;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-icon-btn:hover {
    background: rgba(47, 108, 11, 0.08);
    color: #2f6c0b;
}

.nav-icon-btn:active {
    transform: scale(0.9);
}

/* Mobile Nav Links */
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: #52525b;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover {
    background: rgba(47, 108, 11, 0.06);
    color: #2f6c0b;
}

.mobile-nav-link-active {
    background: rgba(47, 108, 11, 0.1) !important;
    color: #2f6c0b !important;
    font-weight: 700;
}

/* Better Input Focus */
input:focus {
    box-shadow: 0 0 0 4px rgba(118, 184, 82, 0.2) !important;
    border-color: #76b852 !important;
    outline: none !important;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

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

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

::-webkit-scrollbar-thumb {
    background: #c1c9b7;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #717a69;
}

/* Shimmer Button Effect */
.shimmer-btn {
    position: relative;
    overflow: hidden;
    background-color: #2f6c0b;
}

.shimmer-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    animation: shimmer 3s infinite;
}

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

/* Scroll Utilities */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;    /* Firefox */
}

