body { 
    font-family: 'Outfit', sans-serif; 
    background-color: #F0F4F8; /* soft neutral/light gray */
    color: #1A3F5C; /* deep teal for primary text */
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Narrative/Storytelling Animations */
.story-reveal { opacity: 0; transform: translateX(-30px); transition: all 0.8s ease-out; }
.story-reveal.active { opacity: 1; transform: translateX(0); }

.section-long { min-height: 80vh; display: flex; flex-direction: column; justify-content: center; padding: 100px 0; }

/* Custom UI Elements */
.glass-teal {
    background: rgba(26, 63, 92, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(26, 63, 92, 0.2);
}

.btn-action {
    background-color: #FF6B6B; /* coral accent */
    color: #F0F4F8; /* light text */
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-action:hover {
    background-color: #FF4C4C; /* deeper coral on hover */
    color: #E0F7FA; /* soft teal text */
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
}

.teal-gradient {
    background: linear-gradient(135deg, #1A3F5C 0%, #3FB7C4 100%);
}

/* Scrollbar Styling */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #E0F7FA; }
::-webkit-scrollbar-thumb { background: #3FB7C4; border-radius: 10px; }

.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 63, 92, 0.9);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #E0F7FA;
}

.product-card {
    background: #E0F7FA; /* soft teal */
    border: 2px solid #3FB7C4; /* teal accent */
    transition: all 0.5s ease;
}
.product-card:hover { border-color: #1A3F5C; }

/* Navigation Links */
.nav-link {
    @apply text-sm font-extrabold uppercase tracking-widest hover:text-teal-400 transition;
}
.mobile-link {
    @apply block text-lg font-extrabold uppercase tracking-widest text-teal-800 hover:text-teal-400 transition;
}