/* ========================================
   THAI POT — Bold Editorial Restaurant Site
   Palette: Plum (#6B2F5B) + Amber (#D4A017)
   Fonts: Playfair Display + Inter
======================================== */

/* ─── Reset & Base ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --plum: #6B2F5B;
    --plum-deep: #4A1F3F;
    --plum-light: #8B4575;
    --plum-muted: #F3E8F0;
    --amber: #D4A017;
    --amber-light: #E8C050;
    --amber-dark: #B8860F;
    --cream: #FDF8F4;
    --cream-dark: #F5EDE6;
    --charcoal: #1A1A1A;
    --text: #2D2D2D;
    --text-muted: #6B6B6B;
    --white: #FFFFFF;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(107, 47, 91, 0.08);
    --shadow-md: 0 8px 30px rgba(107, 47, 91, 0.12);
    --shadow-lg: 0 20px 60px rgba(107, 47, 91, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.15;
    color: var(--plum-deep);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 244, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 47, 91, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(253, 248, 244, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--plum-deep);
}

.nav-logo-icon {
    color: var(--plum);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--plum);
}

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

.nav-cta {
    background: var(--plum) !important;
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all var(--transition) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--plum-deep) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--plum-deep);
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253, 248, 244, 0.98);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid rgba(107, 47, 91, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--plum-deep);
    padding: 8px 0;
    border-bottom: 1px solid rgba(107, 47, 91, 0.08);
    transition: color var(--transition);
}

.mobile-menu-link:hover {
    color: var(--amber-dark);
}

.mobile-cta {
    border-bottom: none;
    color: var(--amber-dark) !important;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(107, 47, 91, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 160, 23, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(107, 47, 91, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Main Hero Card */
.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 56px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(107, 47, 91, 0.06);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--plum), var(--amber));
}

.hero-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--plum-muted);
    color: var(--plum);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--plum-deep);
}

.text-accent {
    color: var(--amber-dark);
    font-style: italic;
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--plum);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--plum-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--plum);
    border: 1.5px solid var(--plum);
}

.btn-secondary:hover {
    background: var(--plum);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--plum);
    border: 1.5px solid var(--plum);
}

.btn-outline:hover {
    background: var(--plum);
    color: var(--white);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

/* Floating Stat Cards */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(107, 47, 91, 0.06);
    transition: all var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-card-1 {
    order: 2;
    margin-top: 40px;
}

.stat-card-2 {
    order: 1;
}

.stat-card-3 {
    order: 3;
    margin-top: -20px;
}

.stat-card-img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.stat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stat-card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--plum-deep);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stat-card-accent {
    width: 4px;
    height: 48px;
    background: linear-gradient(180deg, var(--amber), var(--plum));
    border-radius: 2px;
    margin-left: auto;
    flex-shrink: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--plum);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.6;
    transition: opacity var(--transition);
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator:hover {
    opacity: 1;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── Section Divider ─── */
.section-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 24px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--plum-muted), transparent);
}

.divider-icon {
    color: var(--amber);
    flex-shrink: 0;
}

/* ─── Section Shared ─── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-dark);
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--amber);
}

.section-headline {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 24px;
}

/* ─── Menu Section ─── */
.menu-section {
    padding: 100px 24px;
    background: var(--white);
}

.menu-section .container {
    max-width: 1200px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 64px;
}

.menu-card {
    background: var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid rgba(107, 47, 91, 0.05);
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.menu-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.08);
}

.menu-card-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
}

.menu-card-category {
    background: var(--plum);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-card-body {
    padding: 24px;
}

.menu-card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--plum-deep);
}

.menu-card-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.menu-cta {
    text-align: center;
}

.menu-cta p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ─── About Section ─── */
.about-section {
    padding: 100px 24px;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-group {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}

.about-img-float img {
    width: 280px;
    height: 200px;
    object-fit: cover;
}

.about-pattern {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background-image: 
        radial-gradient(circle, var(--amber) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.3;
    z-index: -1;
}

.about-content {
    max-width: 500px;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: var(--plum-muted);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    flex-shrink: 0;
}

.value-item strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--plum-deep);
    margin-bottom: 4px;
}

.value-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ─── Quote Section ─── */
.quote-section {
    padding: 80px 24px;
    background: var(--plum-deep);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 160, 23, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(139, 69, 117, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.quote-section .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.quote-card {
    text-align: center;
}

.quote-mark {
    color: var(--amber);
    margin-bottom: 24px;
    opacity: 0.6;
}

.quote-card blockquote p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-style: italic;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 28px;
}

.quote-source {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

/* ─── Visit Section ─── */
.visit-section {
    padding: 100px 24px;
    background: var(--white);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.visit-info {
    max-width: 480px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 40px 0;
}

.visit-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.visit-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--plum-muted);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    flex-shrink: 0;
}

.visit-detail strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--plum-deep);
    margin-bottom: 4px;
}

.visit-detail span,
.visit-detail a {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.visit-detail a:hover {
    color: var(--plum);
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 480px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
}

/* ─── CTA Section ─── */
.cta-section {
    padding: 80px 24px;
    background: var(--cream);
}

.cta-card {
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 100%);
    border-radius: var(--radius-lg);
    padding: 72px 60px;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 160, 23, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.cta-content .section-tag {
    color: var(--amber-light);
}

.cta-content .section-tag::before {
    background: var(--amber-light);
}

.cta-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.cta-actions .btn-primary {
    background: var(--amber);
    color: var(--charcoal);
}

.cta-actions .btn-primary:hover {
    background: var(--amber-light);
}

.cta-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.cta-actions .btn-outline:hover {
    background: var(--white);
    color: var(--plum-deep);
    border-color: var(--white);
}

/* ─── Footer ─── */
.footer {
    background: var(--charcoal);
    padding: 72px 24px 32px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo-icon {
    color: var(--amber);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links strong,
.footer-contact strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links a,
.footer-contact a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 0;
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--amber);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
}

/* ─── Animations ─── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        order: -1;
    }
    
    .stat-card {
        flex: 1;
        min-width: 200px;
    }
    
    .stat-card-1, .stat-card-3 {
        order: unset;
        margin-top: 0;
    }
    
    .stat-card-2 {
        order: unset;
    }
    
    .about-grid {
        gap: 48px;
    }
    
    .about-img-float {
        right: -20px;
        bottom: -20px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }
    
    .hero-card {
        padding: 36px;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .stat-card {
        min-width: auto;
    }
    
    .stat-card-accent {
        display: none;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-group {
        order: -1;
    }
    
    .about-img-main img {
        height: 350px;
    }
    
    .about-img-float {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -60px;
        margin-left: 20px;
    }
    
    .about-img-float img {
        width: 100%;
        height: 200px;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .visit-map {
        height: 320px;
    }
    
    .cta-card {
        padding: 48px 28px;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-card {
        padding: 28px;
    }
    
    .hero-headline {
        font-size: 1.85rem;
    }
    
    .section-headline {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 16px 28px;
        font-size: 0.9rem;
    }
}
