/* Seven Bio - Enterprise Design Standard (SDS) v3.0 */

:root {
    --primary: #004218;
    --primary-soft: #F0F4F0;
    --bg-app: #F7F8FA;
    --surface: #FFFFFF;
    --divider: #ECECEC;
    --text-main: #1A1C1E;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;

    --radius-sds: 20px;
    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

/* Custom Scroll Behavior */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Animations */
.animate-slide-up {
    animation: slideUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade {
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Component Enhancements */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.shadow-soft {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.06);
}

/* Interactive States */
.active-press:active {
    transform: scale(0.95);
}

/* Fav Menu Card */
.fav-card {
    min-width: 180px;
    scroll-snap-align: start;
    transition: var(--transition);
}

.fav-card:active {
    transform: scale(0.98);
}

/* Outlet Card */
.outlet-card {
    transition: var(--transition);
}
.outlet-card:active {
    transform: translateX(4px);
}

/* FAQ Accordion */
.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 16px;
}

.faq-item .material-symbols-rounded {
    transition: transform 0.3s ease;
}

.faq-item.active .material-symbols-rounded {
    transform: rotate(180deg);
}

/* Review Card */
.review-card {
    min-width: 280px;
    scroll-snap-align: center;
}

/* Floating Effects */
.float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Button Ripple (Simplified) */
.ripple {
    position: relative;
    overflow: hidden;
}
.ripple::after {
    content: "";
    background: rgba(255, 255, 255, 0.3);
    display: block;
    position: absolute;
    border-radius: 50%;
    padding-top: 240%;
    padding-left: 240%;
    margin-top: -120%;
    margin-left: -120%;
    opacity: 0;
    transition: all 0.8s;
}
.ripple:active::after {
    padding: 0;
    margin: 0;
    opacity: 1;
    transition: 0s;
}
