/**
 * Lemongrass Thai Cuisine - Stylesheet
 * Dark Luxury Theme with Golden Primary
 * Converted from TailwindCSS - same design
 */

/* ============================================================================
   CSS VARIABLES
   ============================================================================ */
:root {
    /* Colors - Dark Theme */
    --background: hsl(0, 0%, 8%);
    --foreground: hsl(0, 0%, 95%);
    --card: hsl(0, 0%, 10%);
    --card-foreground: hsl(0, 0%, 95%);
    --primary: hsl(51, 100%, 50%);
    --primary-foreground: hsl(0, 0%, 8%);
    --secondary: hsl(0, 0%, 14%);
    --secondary-foreground: hsl(0, 0%, 95%);
    --muted: hsl(0, 0%, 18%);
    --muted-foreground: hsl(0, 0%, 65%);
    --border: hsl(0, 0%, 20%);
    --destructive: hsl(0, 72%, 50%);

    /* Typography */
    --font-sans: 'Source Sans Pro', ui-sans-serif, system-ui, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --radius: 0.5rem;
    --container-max: 1400px;
    --header-height: 80px;

    /* Shadows */
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 0 20px hsla(51, 100%, 50%, 0.2);
}

/* ============================================================================
   BASE STYLES
   ============================================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================================================
   UTILITIES
   ============================================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

.text-primary {
    color: var(--primary);
}

/* ============================================================================
   BUTTONS
   ============================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: hsl(51, 100%, 45%);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn .icon-small {
    width: 18px;
    height: 18px;
}

/* ============================================================================
   HEADER
   ============================================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo-image {
    height: 56px;
    width: auto;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--foreground);
    transition: all 0.3s;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.nav-mobile.active {
    display: block;
}

@media (min-width: 768px) {
    .nav-mobile {
        display: none !important;
    }
}

.nav-mobile .container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-mobile .nav-link {
    padding: 0.5rem 0;
}

/* ============================================================================
   HERO
   ============================================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(20, 20, 20, 0.8);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(20, 20, 20, 0.6) 0%,
            transparent 50%,
            rgba(20, 20, 20, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 64rem;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 1.1;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
}

.hero-title span {
    display: block;
    margin-top: 0.5rem;
}

.hero-desc {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
}

@media (min-width: 768px) {
    .hero-desc {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, var(--background), transparent);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: rgba(255, 215, 0, 0.5);
    border-radius: 2px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ============================================================================
   SECTIONS
   ============================================================================ */
.section {
    padding: 6rem 0;
}

@media (min-width: 1024px) {
    .section {
        padding: 8rem 0;
    }
}

.section-secondary {
    background-color: var(--secondary);
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.75rem;
    }
}

.section-title span {
    display: block;
}

.section-desc {
    color: var(--muted-foreground);
    font-size: 1.125rem;
}

.section-cta {
    text-align: center;
    margin-top: 4rem;
}

/* ============================================================================
   ABOUT
   ============================================================================ */
.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.about-content {
    order: 2;
}

@media (min-width: 1024px) {
    .about-content {
        order: 1;
    }
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    color: var(--muted-foreground);
    font-size: 1.125rem;
    line-height: 1.8;
}

.about-established {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.established-line {
    width: 4rem;
    height: 1px;
    background-color: var(--primary);
}

.established-text {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
}

.about-image-wrapper {
    position: relative;
    order: 1;
}

@media (min-width: 1024px) {
    .about-image-wrapper {
        order: 2;
    }
}

.about-image-frame {
    position: absolute;
    inset: -1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius);
    z-index: -1;
}

.about-image-frame.frame-1 {
    transform: rotate(3deg);
}

.about-image-frame.frame-2 {
    transform: rotate(-2deg);
    border-color: rgba(255, 215, 0, 0.2);
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 20, 20, 0.4), transparent);
    border-radius: var(--radius);
}

/* ============================================================================
   DISHES / MENU HIGHLIGHTS
   ============================================================================ */
.dishes-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .dishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dishes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dish-card {
    background-color: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.5s ease;
}

.dish-card:hover {
    transform: translateY(-8px);
}

.dish-card.gold-border {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-gold);
}

.dish-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.dish-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.dish-card:hover .dish-image {
    transform: scale(1.1);
}

.dish-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 20, 20, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.dish-card:hover .dish-image-overlay {
    opacity: 1;
}

.chef-pick-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.icon-sparkle {
    width: 12px;
    height: 12px;
}

.dish-content {
    padding: 1.5rem;
}

.dish-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.dish-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--foreground);
    transition: color 0.3s;
}

@media (min-width: 768px) {
    .dish-name {
        font-size: 1.875rem;
    }
}

.dish-card:hover .dish-name {
    color: var(--primary);
}

.dish-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
    white-space: nowrap;
}

.dish-desc {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ============================================================================
   TESTIMONIALS
   ============================================================================ */
.testimonials-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: border-color 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(255, 215, 0, 0.5);
}

.quote-icon {
    width: 40px;
    height: 40px;
    color: rgba(255, 215, 0, 0.2);
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.testimonial-card:hover .quote-icon {
    color: rgba(255, 215, 0, 0.4);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-icon {
    width: 18px;
    height: 18px;
    stroke: var(--muted);
    fill: none;
}

.star-icon.filled {
    fill: var(--primary);
    stroke: var(--primary);
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-name {
    font-weight: 600;
    color: var(--foreground);
}

.author-date {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
}

/* Overall Rating */
.overall-rating {
    margin-top: 4rem;
    text-align: center;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--card);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    padding: 1rem 2rem;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.rating-stars .star-icon {
    width: 24px;
    height: 24px;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.rating-count {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* ============================================================================
   CONTACT FORM
   ============================================================================ */
.contact-wrapper {
    max-width: 64rem;
    margin: 0 auto;
}

.contact-form {
    margin-top: 2rem;
}

.form-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--foreground);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-label .icon-small {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.form-input,
.form-textarea {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--foreground);
    font-family: var(--font-sans);
    transition: border-color 0.2s;
}

.form-input {
    height: 48px;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--muted-foreground);
}

.form-textarea {
    resize: none;
    min-height: 120px;
}

.form-captcha {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.form-submit {
    margin-top: 2rem;
    text-align: center;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
}

.form-message.success {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.contact-alternative {
    margin-top: 3rem;
    text-align: center;
    color: var(--muted-foreground);
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.footer {
    background-color: var(--card);
    border-top: 1px solid var(--border);
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr repeat(3, 1fr);
    }
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.footer-title .icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.footer-address {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
    font-style: normal;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-link .icon-small {
    width: 14px;
    height: 14px;
}

.footer-hours {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.footer-hours p {
    margin-bottom: 0.25rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-nav-link {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s;
}

.footer-nav-link:hover {
    color: var(--primary);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* ============================================================================
   MENU PAGE
   ============================================================================ */
.menu-page {
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 5rem;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .page-title {
        font-size: 4.5rem;
    }
}

.page-desc {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
}

.menu-section {
    margin-bottom: 4rem;
}

.menu-section-title {
    font-family: var(--font-serif);
    font-size: 1.875rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .menu-section-title {
        font-size: 2.25rem;
    }
}

.menu-items-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .menu-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu-item-card {
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

.menu-item-card:hover {
    background-color: var(--card);
}

.menu-item-card.gold-border {
    border: 2px solid var(--primary);
    background-color: var(--card);
    box-shadow: var(--shadow-gold);
}

.menu-item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--foreground);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-item-name .icon-sparkle {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.menu-item-prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

.menu-item-price {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
}

.menu-item-desc {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ============================================================================
   ERROR PAGE
   ============================================================================ */
.error-page {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.error-content {
    max-width: 32rem;
}

.error-code {
    font-family: var(--font-serif);
    font-size: 8rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.error-desc {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.error-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .error-buttons {
        flex-direction: row;
    }
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */
.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.animate-scale-in {
    opacity: 0;
    animation: scaleIn 0.4s ease-out 0.4s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================================================
   ICONS (inline SVG helpers)
   ============================================================================ */
.icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.icon-small {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}