/* Jungfraujoch Tickets - Main Stylesheet */
/* Modern, mobile-first responsive design */

:root {
    --primary-color: #1e3a5f;
    --secondary-color: #2c5282;
    --accent-color: #e53e3e;
    --accent-hover: #c53030;
    --snow-white: #ffffff;
    --ice-blue: #e6f2ff;
    --alpine-gray: #718096;
    --dark-text: #2d3748;
    --light-bg: #f7fafc;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --header-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--snow-white);
    position: relative;
}

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--snow-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--alpine-gray);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--dark-text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

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

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

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: var(--snow-white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.header-cta:hover {
    background: var(--accent-hover);
    color: var(--snow-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Language Selector */
.lang-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--dark-text);
    transition: var(--transition);
}

.lang-btn:hover {
    border-color: var(--secondary-color);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--snow-white);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    max-height: 400px;
    overflow-y: auto;
}

.lang-selector:hover .lang-dropdown,
.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--dark-text);
    font-size: 0.9rem;
}

.lang-dropdown a:hover {
    background: var(--light-bg);
}

.lang-dropdown a.active {
    background: var(--ice-blue);
    color: var(--primary-color);
    font-weight: 600;
}

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

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark-text);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    /* Fill viewport under fixed header but keep content at the top (no vertical centering) */
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    display: flex;
    align-items: flex-start;
    padding-top: calc(var(--header-height) + 12px);
    padding-bottom: 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
}

/* Breadcrumb already clears the fixed header — avoid double top offset on inner pages */
nav.breadcrumb + main .hero {
    padding-top: 16px;
    min-height: calc(100vh - var(--header-height) - 52px);
    min-height: calc(100dvh - var(--header-height) - 52px);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30,58,95,0.7) 0%, rgba(30,58,95,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: start;
    padding: 12px 0 24px;
    width: 100%;
}

.hero-text {
    color: var(--snow-white);
}

.hero-disclaimer {
    display: inline-block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
    padding: 4px 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    cursor: help;
}

.hero-disclaimer:hover {
    background: rgba(255,255,255,0.2);
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #fbd38d;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.hero-feature svg {
    width: 20px;
    height: 20px;
    fill: #68d391;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--snow-white);
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}

.hero-cta:hover {
    background: var(--accent-hover);
    color: var(--snow-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(229,62,62,0.3);
}

/* Booking Widget Box */
.booking-widget-box {
    background: var(--snow-white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow-lg);
}

.booking-widget-box h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

/* Quick Summary Table */
.quick-summary {
    background: var(--light-bg);
    padding: 60px 0;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.summary-card {
    background: var(--snow-white);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.summary-card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: var(--ice-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-card-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary-color);
}

.summary-card h4 {
    font-size: 0.9rem;
    color: var(--alpine-gray);
    margin-bottom: 8px;
    font-weight: 500;
}

.summary-card .value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.summary-card .note {
    font-size: 0.8rem;
    color: var(--alpine-gray);
    margin-top: 5px;
}

/* Discovery Widget Section */
.discovery-section {
    padding: 60px 0;
    background: var(--snow-white);
}

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

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--alpine-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 70px 0;
}

.content-section:nth-child(even) {
    background: var(--light-bg);
}

.content-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.content-section h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin: 30px 0 15px;
}

.content-section p {
    margin-bottom: 18px;
    color: var(--dark-text);
}

.content-section ul,
.content-section ol {
    margin: 20px 0;
    padding-left: 25px;
}

.content-section li {
    margin-bottom: 10px;
}

/* Expert Tip Box */
.expert-tip {
    background: linear-gradient(135deg, var(--ice-blue) 0%, #ebf8ff 100%);
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 10px 10px 0;
    padding: 25px 30px;
    margin: 30px 0;
}

.expert-tip-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.expert-tip-header svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary-color);
}

.expert-tip-header span {
    font-weight: 700;
    color: var(--primary-color);
}

.expert-tip p {
    margin: 0;
    font-style: italic;
}

/* Price Table */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: var(--snow-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.price-table th,
.price-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.price-table th {
    background: var(--primary-color);
    color: var(--snow-white);
    font-weight: 600;
}

.price-table tr:hover {
    background: var(--light-bg);
}

.price-table .price {
    font-weight: 700;
    color: var(--accent-color);
}

/* Comparison Cards */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.comparison-card {
    background: var(--snow-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.comparison-card.featured {
    border: 2px solid var(--accent-color);
}

.comparison-card-header {
    background: var(--primary-color);
    color: var(--snow-white);
    padding: 20px;
    text-align: center;
}

.comparison-card.featured .comparison-card-header {
    background: var(--accent-color);
}

.comparison-card-header h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.comparison-card-header .price {
    font-size: 1.8rem;
    font-weight: 700;
}

.comparison-card-header .price span {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
}

.comparison-card-body {
    padding: 25px;
}

.comparison-card-body ul {
    list-style: none;
    padding: 0;
}

.comparison-card-body li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.comparison-card-body li:last-child {
    border: none;
}

.comparison-card-body li svg {
    width: 18px;
    height: 18px;
    fill: #68d391;
    flex-shrink: 0;
    margin-top: 3px;
}

.comparison-card .cta-btn {
    display: block;
    text-align: center;
    background: var(--secondary-color);
    color: var(--snow-white);
    padding: 12px 20px;
    margin: 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.comparison-card .cta-btn:hover {
    background: var(--accent-color);
    color: var(--snow-white);
}

/* Timing Section */
.timing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.timing-card {
    background: var(--snow-white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.timing-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.timing-card .crowd-level {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.crowd-level.low {
    background: #c6f6d5;
    color: #22543d;
}

.crowd-level.medium {
    background: #fef3c7;
    color: #92400e;
}

.crowd-level.high {
    background: #fed7d7;
    color: #9b2c2c;
}

/* FAQ Section */
.faq-section {
    padding: 70px 0;
    background: var(--light-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--snow-white);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

/* Internal Links Section */
.internal-links {
    padding: 60px 0;
    background: var(--primary-color);
    color: var(--snow-white);
}

.internal-links h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--snow-white);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.link-card {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

.link-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.link-card h4 {
    color: var(--snow-white);
    margin-bottom: 10px;
}

.link-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.link-card a {
    color: #fbd38d;
    font-weight: 600;
}

.link-card a:hover {
    color: var(--snow-white);
}

/* Footer */
.footer {
    background: #1a202c;
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text {
    color: var(--snow-white);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.8;
}

.footer h5 {
    color: var(--snow-white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--snow-white);
}

.footer-disclaimer {
    background: rgba(229,62,62,0.1);
    border: 1px solid rgba(229,62,62,0.3);
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    font-size: 0.85rem;
}

.footer-disclaimer strong {
    color: #fc8181;
    display: block;
    margin-bottom: 8px;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Schema/Structured Data Styling (for visible microdata) */
[itemscope] {
    display: contents;
}

/* CTA Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    color: var(--snow-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--snow-white);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--snow-white);
}

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

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

/* Image with Caption */
.content-image {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.content-image img {
    width: 100%;
}

.content-image figcaption {
    padding: 12px 15px;
    background: var(--light-bg);
    font-size: 0.9rem;
    color: var(--alpine-gray);
    text-align: center;
}

/* Data Source Note */
.data-source {
    font-size: 0.8rem;
    color: var(--alpine-gray);
    font-style: italic;
    margin-top: 10px;
}

.data-source a {
    color: var(--secondary-color);
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    margin-top: var(--header-height);
    background: var(--light-bg);
    font-size: 0.9rem;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 10px;
}

.breadcrumb-list li::after {
    content: '›';
    margin-left: 10px;
    color: var(--alpine-gray);
}

.breadcrumb-list li:last-child::after {
    display: none;
}

.breadcrumb-list a {
    color: var(--alpine-gray);
}

.breadcrumb-list a:hover {
    color: var(--secondary-color);
}

.breadcrumb-list li:last-child {
    color: var(--primary-color);
    font-weight: 500;
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.sidebar {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.sidebar-widget {
    background: var(--snow-white);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-widget-box {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .two-col {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav.active .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--snow-white);
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 0;
    }
    
    .nav.active .nav-links li {
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav.active .nav-links a {
        display: block;
        padding: 15px 0;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 10px) 0 36px;
    }

    nav.breadcrumb + main .hero {
        padding-top: 8px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .summary-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .summary-card {
        padding: 20px 15px;
    }
    
    .timing-grid {
        grid-template-columns: 1fr;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .price-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-cta {
        width: 100%;
        justify-content: center;
    }
    
    .btn {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .header,
    .hero-cta,
    .booking-widget-box,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Skip link — fully hidden until keyboard focus (avoids blue strip peeking under fixed header) */
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    background: var(--primary-color);
    color: var(--snow-white);
    z-index: 10001;
}

.skip-link:focus,
.skip-link:focus-visible {
    position: fixed;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    margin: 0;
    padding: 12px 20px;
    overflow: visible;
    clip: auto;
    white-space: normal;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    outline: 2px solid var(--snow-white);
    outline-offset: 2px;
}
