/* ============================================================================
   Cymerit Domain Search & Hosting Services — Modern CSS System
   Matching hosting.cymerit.com UI/UX & MinimalGreen design
   Fully Responsive for Desktop, Tablet & Mobile Devices
   ============================================================================ */

/* Ensure font-display: swap for web fonts */
@font-face {
    font-family: "Font Awesome 6 Free";
    font-display: swap;
}

:root {
    --primary-green: #28a745;
    --primary-green-hover: #218838;
    --primary-green-dark: #1e7e34;
    --dark-bg: #1c2530;
    --dark-header-bg: #151a21;
    --dark-topbar-bg: #10141a;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e9ecef;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    --hover-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: #f4f6f9;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
}

/* ============================================================================
   1. TOP HEADER BAR
   ============================================================================ */
.top-header-bar {
    background-color: var(--dark-topbar-bg);
    color: #b0b7c3;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.top-header-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-header-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.top-header-nav a {
    color: #c2c9d6;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
}

.top-header-nav a:hover {
    color: var(--white);
}

.currency-selector {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.currency-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #c2c9d6;
    padding: 4px 0;
}

.currency-trigger:hover {
    color: var(--white);
}

.currency-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    color: var(--text-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 8px 0;
    z-index: 1005;
    min-width: 130px;
}

.currency-selector.open .currency-dropdown,
.currency-selector:hover .currency-dropdown {
    display: block;
}

.currency-dropdown li {
    padding: 8px 16px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.currency-dropdown li:hover {
    background-color: #f1f3f5;
    color: var(--primary-green);
}

.currency-dropdown li.active {
    background-color: #e8f5e9;
    color: var(--primary-green);
    font-weight: 700;
}

.currency-dropdown li.active::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.75rem;
}

.cart-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    color: var(--white) !important;
    position: relative;
}

.cart-link:hover {
    background: var(--primary-green);
}

.cart-badge {
    background-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    line-height: 1;
    transition: all 0.2s ease;
}

.cart-badge.has-items {
    background-color: #28a745;
    box-shadow: 0 0 6px rgba(40, 167, 69, 0.6);
}

.user-account-dropdown {
    position: relative;
    display: inline-block;
}

.user-account-dropdown .user-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    color: var(--text-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 8px 0;
    z-index: 1005;
    min-width: 180px;
}

.user-account-dropdown:hover .user-dropdown-menu,
.user-account-dropdown.open .user-dropdown-menu {
    display: block;
}

.user-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: var(--text-dark) !important;
    transition: background 0.2s;
}

.user-dropdown-menu li a:hover {
    background-color: #f1f3f5;
    color: var(--primary-green) !important;
}


/* ============================================================================
   2. MAIN HEADER & NAVIGATION (DESKTOP)
   ============================================================================ */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    position: relative;
}

.logo-container img {
    height: 42px;
    width: auto;
    display: block;
}

.primary-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 26px 12px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-item:hover .nav-link,
.nav-item.active .nav-link {
    color: var(--primary-green);
}

.dropdown-caret-btn {
    background: none;
    border: none;
    font-size: 0.75rem;
    color: #666;
    cursor: pointer;
    padding: 26px 4px 26px 0;
    display: inline-flex;
    align-items: center;
}

.nav-item:hover .dropdown-caret-btn {
    color: var(--primary-green);
}

.nav-item .badge-new {
    background-color: #ff4757;
    color: var(--white);
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 4px;
}

.nav-item .badge-highlight {
    background-color: #2e7d32;
    color: var(--white);
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 4px;
}

/* Mega Dropdowns Desktop */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1001;
    min-width: 580px;
    border-top: 3px solid var(--primary-green);
}

.nav-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-col {
    flex: 1;
    min-width: 220px;
}

.dropdown-col h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #8898aa;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
    padding-bottom: 6px;
    border-bottom: 1px solid #edf2f7;
}

.dropdown-menu-list li {
    margin-bottom: 12px;
}

.dropdown-menu-list li a {
    display: block;
}

.menu-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: #2d3748;
    transition: color 0.2s;
}

.dropdown-menu-list li a:hover .menu-title {
    color: var(--primary-green);
}

.menu-desc {
    font-size: 0.78rem;
    color: #718096;
    margin-top: 2px;
    line-height: 1.3;
}

/* Mobile Toggle Hidden on Desktop */
.mobile-toggle {
    display: none;
}

/* ============================================================================
   3. HERO & DOMAIN SEARCH BANNER
   ============================================================================ */
.hero-banner {
    background: linear-gradient(135deg, #18222d 0%, #10161f 100%);
    color: var(--white);
    padding: 50px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(circle at 80% 20%, rgba(40, 167, 69, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* Top Combo Blurb */
.combo-blurb {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.combo-blurb h2 {
    font-size: 1.25rem;
    font-weight: 600;
}

.combo-blurb h2 .price-green {
    color: #2ecc71;
    font-weight: 700;
}

.combo-items {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #d1d8e0;
    flex-wrap: wrap;
}

.combo-item-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 500;
}

.combo-btn {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.combo-btn:hover {
    background-color: var(--primary-green-hover);
    transform: translateY(-2px);
}

/* Hero Content Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.hero-main h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.hero-main p.subtitle {
    font-size: 1.1rem;
    color: #a0aec0;
    margin-bottom: 24px;
}

/* Search Form */
.domain-search-form {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    background: var(--white);
    padding: 6px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.domain-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 18px;
    font-size: 1.05rem;
    color: #2d3748;
    border-radius: 6px 0 0 6px;
}

.domain-search-btn {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 14px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.domain-search-btn:hover {
    background-color: var(--primary-green-hover);
}

.tld-pricing-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tld-pill {
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tld-pill .tld-name {
    font-weight: 700;
    color: var(--white);
}

.tld-pill .tld-price {
    color: #2ecc71;
    font-weight: 600;
}

.view-pricing-link {
    color: #64b5f6;
    font-size: 0.9rem;
    margin-left: auto;
}

.view-pricing-link:hover {
    text-decoration: underline;
}

/* Sidebar Whats New Widget */
.whats-new-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 24px;
}

.whats-new-card h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2ecc71;
    margin-bottom: 12px;
}

.whats-new-card p {
    font-size: 0.92rem;
    color: #cbd5e0;
    margin-bottom: 18px;
    line-height: 1.5;
}

.whats-new-card .btn-light {
    display: inline-block;
    background: var(--white);
    color: #1a202c;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.88rem;
}

.whats-new-card .btn-light:hover {
    background: #e2e8f0;
}

/* Error Badge */
.search-error-msg {
    background-color: #fff5f5;
    color: #e53e3e;
    border-left: 4px solid #e53e3e;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

/* Auto Submit Loading Card */
.redirect-card {
    background: var(--white);
    max-width: 550px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    color: var(--text-dark);
}

.redirect-card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1a202c;
}

.redirect-card p {
    color: #718096;
    margin-bottom: 24px;
}

.spinner {
    width: 44px;
    height: 44px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================================================
   4. PROMINENT WEBSITE DESIGN & DEVELOPMENT SECTION
   ============================================================================ */
.section-web-dev {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.section-tag {
    display: inline-block;
    background-color: rgba(40, 167, 69, 0.12);
    color: var(--primary-green-dark);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 14px;
    line-height: 1.25;
}

.section-header p {
    font-size: 1.05rem;
    color: #718096;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-green);
    background: #ffffff;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(40, 167, 69, 0.1);
    color: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card .service-features {
    margin-bottom: 24px;
}

.service-card .service-features li {
    font-size: 0.88rem;
    color: #4a5568;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card .service-features li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: 700;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--primary-green-dark);
    font-size: 0.92rem;
}

.service-link:hover {
    color: var(--primary-green-hover);
    gap: 10px;
}

.dev-cta-banner {
    background: linear-gradient(135deg, #10161f 0%, #1e2a38 100%);
    color: var(--white);
    border-radius: 16px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.dev-cta-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.dev-cta-text p {
    color: #cbd5e0;
    font-size: 1rem;
}

.dev-cta-btn {
    background-color: var(--primary-green);
    color: var(--white);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.dev-cta-btn:hover {
    background-color: var(--primary-green-hover);
    transform: translateY(-2px);
}

/* ============================================================================
   5. HOSTING & PRODUCTS GRID
   ============================================================================ */
.section-products {
    padding: 80px 0;
    background: #f8fafc;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid #edf2f7;
    text-align: left;
}

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

.product-card-header {
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 4px;
}

.product-tagline {
    font-size: 0.85rem;
    color: #718096;
    display: block;
}

.product-features {
    margin-bottom: 24px;
    flex-grow: 1;
}

.product-features li {
    font-size: 0.9rem;
    color: #4a5568;
    padding: 6px 0;
    border-bottom: 1px dashed #edf2f7;
}

.product-pricing {
    margin-bottom: 20px;
}

.price-start-at {
    font-size: 0.78rem;
    color: #a0aec0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-main {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a202c;
}

.price-main .currency {
    font-size: 1.2rem;
    font-weight: 600;
}

.price-main .per {
    font-size: 0.85rem;
    font-weight: 400;
    color: #718096;
}

.btn-card {
    background-color: var(--primary-green);
    color: var(--white);
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    display: block;
}

.btn-card:hover {
    background-color: var(--primary-green-hover);
}

/* ============================================================================
   6. FOOTER STYLING
   ============================================================================ */
.site-footer {
    background-color: var(--dark-header-bg);
    color: #a0aec0;
    padding: 70px 0 0;
    font-size: 0.9rem;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255,255,255,0.08);
}

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

.footer-links a {
    color: #cbd5e0;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 4px;
}

.copyright-bar {
    background-color: var(--dark-topbar-bg);
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #a0aec0;
}

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

/* ============================================================================
   7. RESPONSIVE MEDIA QUERIES (MOBILE & TABLET NAVIGATION FIX)
   ============================================================================ */
@media (max-width: 992px) {
    .header-inner {
        height: 70px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Toggle Hamburger Button */
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: #f1f5f9;
        border: 1px solid #cbd5e1;
        border-radius: 8px;
        font-size: 1.3rem;
        color: #1e293b;
        cursor: pointer;
        transition: all 0.2s ease;
        padding: 0;
        z-index: 1002;
    }

    .mobile-toggle:hover,
    .mobile-toggle:active,
    .mobile-toggle.active {
        background: var(--primary-green);
        color: var(--white);
        border-color: var(--primary-green);
    }

    /* Primary Nav Mobile Drawer */
    .primary-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        border-top: 2px solid var(--primary-green);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 10px 16px 30px;
        z-index: 1001;
    }

    .primary-nav.active {
        display: block;
        animation: navSlideDown 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    @keyframes navSlideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #edf2f7;
    }

    .nav-link-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .nav-link {
        padding: 14px 0;
        font-size: 1rem;
        font-weight: 700;
        color: #2d3748;
        width: 100%;
    }

    /* Dropdown Caret Button on Mobile */
    .dropdown-caret-btn {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 6px;
        font-size: 0.9rem;
        color: #64748b;
        cursor: pointer;
        transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
        padding: 0;
        flex-shrink: 0;
    }

    .nav-item.open .dropdown-caret-btn {
        transform: rotate(180deg);
        background: var(--primary-green);
        color: var(--white);
        border-color: var(--primary-green);
    }

    /* Mega Dropdown Accordion on Mobile */
    .mega-dropdown {
        display: none;
        position: static;
        transform: none !important;
        box-shadow: none;
        padding: 12px;
        background: #f8fafc;
        border-radius: 8px;
        margin: 0 0 14px;
        min-width: 100%;
        opacity: 1;
        visibility: visible;
        border-top: 2px solid var(--primary-green);
        flex-direction: column;
        gap: 16px;
    }

    .nav-item.open .mega-dropdown {
        display: flex;
        animation: accordionExpand 0.2s ease-out;
    }

    @keyframes accordionExpand {
        from {
            opacity: 0;
            transform: translateY(-5px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .dropdown-col {
        min-width: 100%;
    }

    .dropdown-col h3 {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--primary-green-dark);
        margin-bottom: 10px;
    }

    .dropdown-menu-list li {
        margin-bottom: 8px;
    }

    .dropdown-menu-list li a {
        padding: 10px 12px;
        background: var(--white);
        border: 1px solid #e2e8f0;
        border-radius: 6px;
    }

    .dropdown-menu-list li a:active {
        background: #f0fdf4;
        border-color: var(--primary-green);
    }

    .menu-title {
        font-size: 0.9rem;
    }

    .menu-desc {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .top-header-nav {
        justify-content: center;
        width: 100%;
        gap: 12px;
    }

    .top-header-nav a,
    .currency-trigger {
        font-size: 0.8rem;
    }

    .domain-search-form {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        gap: 10px;
        padding: 0;
    }
    
    .domain-search-input {
        border-radius: 8px;
        width: 100%;
    }

    .domain-search-btn {
        border-radius: 8px;
        width: 100%;
    }

    .combo-blurb {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .combo-items {
        gap: 8px;
    }

    .combo-item-badge {
        font-size: 0.8rem;
        padding: 4px 10px;
    }

    .dev-cta-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .dev-cta-text h3 {
        font-size: 1.3rem;
    }
}
