/* ============================================
   Emerald City Sweets — Custom Styles
   Palette: Midnight Blue (#0a1628) + Mint (#5eead4)
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: #0a1628;
    background-color: #fafbfc;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
    color: #0a1628;
}

.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #0d9488;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section-lead {
    font-size: 1.1rem;
    color: #374151;
    max-width: 560px;
    line-height: 1.8;
}

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

.text-center .section-lead {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.02em;
    padding: 14px 28px;
    border-radius: 100px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn--primary {
    background: #0a1628;
    color: #fafbfc;
    border-color: #0a1628;
}

.btn--primary:hover {
    background: #132744;
    border-color: #132744;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.2);
}

.btn--ghost {
    background: transparent;
    color: #0a1628;
    border-color: rgba(10, 22, 40, 0.25);
}

.btn--ghost:hover {
    border-color: #0a1628;
    background: rgba(10, 22, 40, 0.04);
}

.btn--outline {
    background: transparent;
    color: #0a1628;
    border-color: #0a1628;
}

.btn--outline:hover {
    background: #0a1628;
    color: #fafbfc;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ---------- Skip Link ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #0a1628;
    color: #fafbfc;
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    z-index: 1000;
    font-size: 14px;
}

.skip-link:focus {
    top: 0;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 251, 252, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 1px 12px rgba(10, 22, 40, 0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #0a1628;
}

.nav-logo-text {
    font-weight: 400;
}

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

.nav-link {
    font-size: 14px;
    font-weight: 400;
    color: #374151;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #5eead4;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #0a1628;
}

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

.nav-link--cta {
    background: #0a1628;
    color: #fafbfc !important;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 500;
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: #132744;
}

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

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #0a1628;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0a1628;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(94, 234, 212, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(94, 234, 212, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(13, 148, 136, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse 50% 40% at 20% 80%, rgba(94, 234, 212, 0.08) 0%, transparent 50%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 580px;
}

.hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #5eead4;
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-headline {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    color: #fafbfc;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-headline em {
    font-style: italic;
    color: #5eead4;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(250, 251, 252, 0.6);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

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

.hero-actions .btn--primary {
    background: #5eead4;
    color: #0a1628;
    border-color: #5eead4;
    font-weight: 600;
}

.hero-actions .btn--primary:hover {
    background: #3dd4b8;
    border-color: #3dd4b8;
    box-shadow: 0 8px 24px rgba(94, 234, 212, 0.25);
}

.hero-actions .btn--ghost {
    color: #fafbfc;
    border-color: rgba(250, 251, 252, 0.2);
}

.hero-actions .btn--ghost:hover {
    border-color: rgba(250, 251, 252, 0.5);
    background: rgba(250, 251, 252, 0.06);
}

/* Floating Stat Cards */
.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    background: rgba(250, 251, 252, 0.06);
    border: 1px solid rgba(250, 251, 252, 0.1);
    border-radius: 16px;
    padding: 24px 28px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    background: rgba(250, 251, 252, 0.09);
}

.stat-card--1 {
    animation: float-slow 6s ease-in-out infinite;
}

.stat-card--2 {
    animation: float-medium 5s ease-in-out infinite 0.5s;
}

.stat-card--3 {
    animation: float-slow 7s ease-in-out infinite 1s;
}

.stat-card-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #5eead4;
    font-weight: 400;
}

.stat-card-label {
    font-size: 0.85rem;
    color: rgba(250, 251, 252, 0.65);
    font-weight: 400;
    line-height: 1.4;
}

.stat-card svg {
    color: #5eead4;
    flex-shrink: 0;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

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

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(250, 251, 252, 0.3);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(94, 234, 212, 0.5), transparent);
    animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Sections ---------- */
.section {
    padding: 120px 0;
}

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

/* ---------- About ---------- */
.about {
    background: #fafbfc;
}

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

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

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.about-image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    border: 1.5px solid rgba(94, 234, 212, 0.4);
    border-radius: 16px;
    z-index: -1;
}

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

.about-content .section-lead {
    margin-bottom: 20px;
}

.about-content p {
    color: #374151;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(10, 22, 40, 0.08);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: #374151;
}

.about-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(94, 234, 212, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0d9488;
}

/* ---------- Menu ---------- */
.menu {
    background: #f1f5f9;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.menu-card {
    background: #fafbfc;
    border: 1px solid rgba(10, 22, 40, 0.06);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.3s ease;
}

.menu-card:hover {
    border-color: rgba(94, 234, 212, 0.3);
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.06);
    transform: translateY(-2px);
}

.menu-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.menu-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(94, 234, 212, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.menu-card-title {
    font-size: 1.3rem;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
}

.menu-item-name {
    font-weight: 500;
    font-size: 0.95rem;
    color: #0a1628;
}

.menu-item-desc {
    font-size: 0.85rem;
    color: #6b7280;
    text-align: right;
    flex-shrink: 0;
}

.menu-note {
    font-size: 0.85rem;
    color: #6b7280;
    font-style: italic;
}

/* ---------- Gallery ---------- */
.gallery {
    background: #fafbfc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* ---------- Visit ---------- */
.visit {
    background: #f1f5f9;
}

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

.visit-info .section-lead {
    margin-bottom: 40px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

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

.visit-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(94, 234, 212, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0d9488;
}

.visit-detail-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 4px;
    font-weight: 500;
}

.visit-detail p {
    font-size: 0.95rem;
    color: #0a1628;
    line-height: 1.6;
}

.visit-detail a {
    color: #0d9488;
    transition: color 0.2s ease;
}

.visit-detail a:hover {
    color: #0a1628;
}

.visit-map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.visit-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.visit-map-overlay {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.15), transparent 40%);
    pointer-events: none;
}

.map-pin {
    position: absolute;
    top: 45%;
    left: 55%;
    transform: translate(-50%, -100%);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    animation: pin-bounce 2s ease-in-out infinite;
}

@keyframes pin-bounce {
    0%, 100% { transform: translate(-50%, -100%); }
    50% { transform: translate(-50%, -110%); }
}

/* ---------- Contact ---------- */
.contact {
    background: #0a1628;
    color: #fafbfc;
}

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

.contact .section-eyebrow {
    color: #5eead4;
}

.contact .section-title {
    color: #fafbfc;
}

.contact .section-lead {
    color: rgba(250, 251, 252, 0.6);
}

.contact-info-mini {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(250, 251, 252, 0.08);
}

.contact-info-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(250, 251, 252, 0.6);
    transition: color 0.2s ease;
}

.contact-info-item:hover {
    color: #5eead4;
}

/* Form */
.contact-form-wrap {
    background: rgba(250, 251, 252, 0.04);
    border: 1px solid rgba(250, 251, 252, 0.08);
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(250, 251, 252, 0.5);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background: rgba(250, 251, 252, 0.06);
    border: 1px solid rgba(250, 251, 252, 0.12);
    border-radius: 12px;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #fafbfc;
    transition: all 0.2s ease;
    outline: none;
}

.form-input::placeholder {
    color: rgba(250, 251, 252, 0.25);
}

.form-input:focus {
    border-color: rgba(94, 234, 212, 0.5);
    background: rgba(250, 251, 252, 0.08);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(250,251,252,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: #0a1628;
    color: #fafbfc;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 16px 20px;
    background: rgba(94, 234, 212, 0.1);
    border: 1px solid rgba(94, 234, 212, 0.2);
    border-radius: 12px;
    color: #5eead4;
    font-size: 14px;
}

.form-success svg {
    flex-shrink: 0;
}

/* ---------- Footer ---------- */
.footer {
    background: #070f1c;
    color: rgba(250, 251, 252, 0.5);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(250, 251, 252, 0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #fafbfc;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(250, 251, 252, 0.35);
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(250, 251, 252, 0.35);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(250, 251, 252, 0.5);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #5eead4;
}

.footer-address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-address a {
    color: rgba(250, 251, 252, 0.5);
    transition: color 0.2s ease;
}

.footer-address a:hover {
    color: #5eead4;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(250, 251, 252, 0.25);
}

.footer-credit {
    font-style: italic;
}

/* ---------- Scroll Reveal (progressive enhancement) ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-cards {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 500px;
    }
    
    .stat-card {
        flex: 1;
        min-width: 140px;
    }
    
    .about-grid {
        gap: 48px;
    }
    
    .contact-grid {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 251, 252, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 24px;
        border-bottom: 1px solid rgba(10, 22, 40, 0.06);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link {
        padding: 14px 0;
        border-bottom: 1px solid rgba(10, 22, 40, 0.06);
        display: block;
        width: 100%;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link--cta {
        margin-top: 16px;
        text-align: center;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-headline {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }
    
    .hero-cards {
        flex-direction: column;
    }
    
    .stat-card {
        animation: none !important;
    }
    
    .hero-scroll-hint {
        display: none;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .about-grid,
    .visit-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrap {
        order: -1;
    }
    
    .about-image-accent {
        display: none;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item--large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--large {
        grid-column: span 1;
    }
    
    .contact-form-wrap {
        padding: 24px;
    }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .reveal {
        opacity: 1;
        transform: none;
    }
}
