/**
 * Domain Focused Theme - Custom Styles
 * This CSS completely overrides the default theme styles for the home page
 */

/* Hide default navbar and footer when using domain-focused theme */
.public-navbar,
.public-footer {
    display: none !important;
}

/* Ensure body doesn't have extra padding from default layout */
body {
    padding-top: 0 !important;
    font-family: 'DM Sans', sans-serif !important;
}

/* Apply DM Sans to all text elements */
* {
    font-family: 'DM Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6,
.domain-hero-title,
.domain-hero-subtitle,
.domain-quick-actions-title,
.domain-footer-title,
.domain-footer-heading,
.domain-top-link,
.domain-nav-link,
.domain-btn,
.domain-action-btn span {
    font-family: 'DM Sans', sans-serif;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.domain-footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 1.5rem;
}

.domain-footer-logo {
    max-height: 50px;
    width: auto;
}

.domain-footer-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.domain-footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.domain-footer-heading {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.domain-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.domain-footer-links li {
    margin-bottom: 0.625rem;
}

.domain-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.domain-footer-links a:hover {
    color: white;
    padding-left: 0.25rem;
}

.domain-footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1.5rem;
    opacity: 1;
}

.domain-footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

.domain-footer-copyright a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.domain-footer-copyright a:hover {
    color: white;
}

@media (max-width: 768px) {
    .domain-footer {
        padding: 2rem 0 1rem;
    }
    
    .domain-footer-heading {
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .domain-footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .domain-footer-copyright {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .domain-footer-copyright:last-child {
        margin-bottom: 0;
    }
}

/* ============================================================================
   TOP HEADER BAR
   ============================================================================ */
.domain-top-header {
    background: #1e293b;
    padding: 0.75rem 0;
    border-bottom: 1px solid #334155;
}

.domain-company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.domain-top-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.domain-cart-icon {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.25rem;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    border-radius: 6px;
}

.domain-cart-icon:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.domain-cart-icon.active {
    color: #0ea5e9;
}

.domain-cart-badge {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    background: #10b981;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 1.25rem;
    height: 1.25rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.375rem;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.domain-top-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.domain-top-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.2s;
    position: relative;
}

.domain-top-link:hover {
    color: white;
}

.domain-top-link.active {
    color: white;
    font-weight: 600;
}

.domain-top-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #0ea5e9;
}

/* When domain-top-link is used as a dropdown trigger */
.domain-top-link.domain-dropdown-trigger {
    padding: 0.5rem 0;
}

.domain-dropdown {
    position: relative;
}

.domain-user-dropdown {
    position: relative;
}

.domain-dropdown-trigger {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    transition: color 0.2s;
    font-weight: 500;
}

.domain-account-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.domain-account-fullname {
    display: block;
    font-weight: 500;
    line-height: 1.2;
}

.domain-account-company {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    line-height: 1.2;
    margin-top: 0.125rem;
}

.domain-dropdown-trigger:hover {
    color: white;
}

.domain-dropdown-trigger.active {
    color: white;
    font-weight: 600;
}

.domain-dropdown-trigger.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #0ea5e9;
}

.domain-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 1000;
}

/* Show dropdown on hover for all dropdowns */
.domain-dropdown:hover .domain-dropdown-menu,
.domain-dropdown:focus-within .domain-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* User dropdown aligns to the right */
.domain-user-dropdown .domain-dropdown-menu {
    left: auto;
    right: 0;
}

.domain-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #1e293b;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: background 0.2s;
    border-radius: 0;
}

.domain-dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.domain-dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

.domain-dropdown-item:hover {
    background: #f8f9fa;
    color: #1e293b;
}

.domain-dropdown-item i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.domain-dropdown-item hr {
    margin: 0.5rem 0;
    border: none;
    border-top: 1px solid #e2e8f0;
}

.domain-btn-login {
    background: transparent;
    color: white;
    padding: 0.5rem 1.25rem;
    border: 2px solid #0ea5e9;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.domain-btn-login:hover {
    background: #0ea5e9;
    color: white;
    border-color: #0ea5e9;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(14, 165, 233, 0.3);
}

.domain-btn-logout {
    background: #1e293b;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: background 0.2s;
}

.domain-btn-logout:hover {
    background: #334155;
    color: white;
}

/* ============================================================================
   MAIN NAVIGATION BAR
   ============================================================================ */
.domain-main-nav {
    background: #1e293b;
    padding: 1rem 0;
}

.domain-main-nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.domain-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.domain-nav-link {
    color: white;
    text-decoration: none;
    padding: 0.625rem 1rem;
    font-weight: 500;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s;
    position: relative;
}

.domain-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #0ea5e9;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.domain-nav-link:hover::after,
.domain-nav-link.active::after {
    width: 80%;
}

.domain-nav-link:hover {
    color: white;
}

.domain-nav-link.active {
    color: white;
}

.domain-nav-link i {
    font-size: 0.75rem;
}

/* Navigation Dropdowns */
.domain-nav-dropdown {
    position: relative;
}

.domain-nav-dropdown-trigger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.625rem 1rem;
}

.domain-nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.2s;
    z-index: 1000;
}

.domain-nav-dropdown:hover .domain-nav-dropdown-menu,
.domain-nav-dropdown:focus-within .domain-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.domain-nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #1e293b;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: background 0.2s;
    border-radius: 0;
}

.domain-nav-dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.domain-nav-dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

.domain-nav-dropdown-item:hover {
    background: #f8f9fa;
    color: #1e293b;
}

.domain-nav-dropdown-item i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    color: #0ea5e9;
}

/* ============================================================================
   HERO SECTION WITH DOMAIN SEARCH
   ============================================================================ */
.domain-hero {
    background: #1e293b;
    padding: 4rem 0;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.domain-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.domain-hero-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.domain-hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.domain-search-wrapper {
    margin-top: 2rem;
}

.domain-search-form {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.domain-search-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 0;
}

.domain-search-input {
    width: 100%;
    padding: 1.5rem 1.75rem;
    font-size: 1.5rem;
    border: 2px solid #334155;
    border-radius: 12px;
    background: white;
    color: #1e293b;
    outline: none;
    transition: all 0.3s;
    font-weight: 500;
    box-sizing: border-box;
}

.domain-search-input:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}

.domain-search-placeholder {
    position: absolute;
    left: 1.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.5rem;
    pointer-events: none;
    font-weight: 500;
    transition: opacity 0.3s;
    z-index: 1;
    white-space: nowrap;
}

.domain-search-input:focus ~ .domain-search-placeholder,
.domain-search-input:not(:placeholder-shown) ~ .domain-search-placeholder {
    opacity: 0;
}

.domain-search-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.domain-btn-search {
    background: #10b981;
    color: white;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    white-space: nowrap;
}

.domain-btn-search:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.domain-btn-search:active {
    transform: translateY(0);
}

.domain-btn-transfer {
    background: #64748b;
    color: white;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(100, 116, 139, 0.2);
    white-space: nowrap;
}

.domain-btn-transfer:hover {
    background: #475569;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(100, 116, 139, 0.3);
}

/* ============================================================================
   QUICK ACTIONS SECTION
   ============================================================================ */
.domain-quick-actions {
    background: #0ea5e9;
    padding: 4rem 0;
}

.domain-quick-actions-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.domain-quick-actions-title {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.domain-quick-actions-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.domain-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    padding: 1.5rem 1.25rem;
    border-radius: 8px;
    transition: background 0.2s;
    min-width: 140px;
}

.domain-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.domain-action-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.domain-action-btn span {
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
}

/* ============================================================================
   DOMAIN RESULTS SECTION
   ============================================================================ */
.domain-results-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.domain-result-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

.domain-result-available {
    border: 3px solid #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
}

.domain-result-unavailable {
    border: 3px solid #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(239, 68, 68, 0.02) 100%);
}

.domain-result-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.domain-result-icon.available {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 4px solid rgba(16, 185, 129, 0.3);
}

.domain-result-icon.unavailable {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 4px solid rgba(239, 68, 68, 0.3);
}

.domain-result-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    word-break: break-all;
}

.domain-result-status {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.domain-result-status.available {
    color: #10b981;
}

.domain-result-status.unavailable {
    color: #ef4444;
}

.domain-result-price {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    display: inline-block;
}

.domain-price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0ea5e9;
}

.domain-price-period {
    font-size: 1.125rem;
    color: #64748b;
    margin-left: 0.5rem;
}

.domain-result-suggestion {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.domain-result-form {
    margin-top: 2rem;
}

.domain-btn-primary {
    background: #0ea5e9;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.domain-btn-primary:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.4);
    color: white;
}

.domain-btn-secondary {
    background: #64748b;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(100, 116, 139, 0.2);
}

.domain-btn-secondary:hover {
    background: #475569;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(100, 116, 139, 0.3);
    color: white;
}

.domain-btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.domain-alert {
    max-width: 700px;
    margin: 0 auto 2rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    animation: fadeInDown 0.4s ease-out;
}

.domain-alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
    color: #dc2626;
}

.domain-alert i {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.domain-alert div {
    flex: 1;
}

.domain-alert p {
    margin: 0;
    font-weight: 500;
}

/* ============================================================================
   FEATURED TLDS SECTION
   ============================================================================ */
.domain-tlds-section {
    padding: 4rem 0;
    background: white;
}

.domain-tlds-header {
    text-align: center;
    margin-bottom: 3rem;
}

.domain-tlds-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.domain-tlds-subtitle {
    font-size: 1.125rem;
    color: #64748b;
}

.domain-tlds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.domain-tld-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.domain-tld-card:hover {
    border-color: #0ea5e9;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
}

.domain-tld-header {
    margin-bottom: 1.5rem;
}

.domain-tld-name {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.domain-tld-description {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.domain-tld-price {
    margin: 1.5rem 0;
}

.domain-tld-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #0ea5e9;
}

.domain-tld-period {
    font-size: 1rem;
    color: #64748b;
    margin-left: 0.25rem;
}

.domain-tld-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #10b981;
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */
@media (max-width: 991px) {
    .domain-hero-title {
        font-size: 2rem;
    }
    
    .domain-search-form {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .domain-search-input {
        min-width: 250px;
    }
    
    .domain-search-buttons {
        flex: 1 1 100%;
        justify-content: center;
    }
    
    .domain-btn-search,
    .domain-btn-transfer {
        flex: 1;
        max-width: 200px;
    }
    
    .domain-quick-actions-content {
        padding: 0 1rem;
    }
    
    .domain-quick-actions-title {
        font-size: 1.5rem;
    }
    
    .domain-quick-actions-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .domain-results-section {
        padding: 2rem 0;
    }
    
    .domain-result-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .domain-result-title {
        font-size: 1.75rem;
    }
    
    .domain-result-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .domain-price-amount {
        font-size: 2rem;
    }
    
    .domain-tlds-title {
        font-size: 2rem;
    }
    
    .domain-tlds-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .domain-tld-card {
        padding: 1.5rem 1rem;
    }
    
    .domain-tld-name {
        font-size: 1.5rem;
    }
    
    .domain-top-actions {
        gap: 1rem;
    }
    
    .domain-cart-icon {
        font-size: 1.125rem;
    }
    
    .domain-top-links {
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .domain-top-link {
        font-size: 0.875rem;
    }
    
    /* On mobile, dropdowns can be tapped to show */
    .domain-dropdown-menu {
        position: absolute;
        left: 0;
        right: auto;
    }
    
    .domain-nav-links {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .domain-nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    /* Navigation dropdowns on mobile */
    .domain-nav-dropdown-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .domain-btn-login {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .domain-hero {
        padding: 2.5rem 0;
    }
    
    .domain-hero-title {
        font-size: 2rem;
    }
    
    .domain-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .domain-search-input {
        padding: 1.25rem 1.5rem;
        font-size: 1.25rem;
    }
    
    .domain-search-placeholder {
        font-size: 1.25rem;
        left: 1.5rem;
    }
    
    .domain-search-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .domain-btn-search,
    .domain-btn-transfer {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .domain-quick-actions {
        padding: 3rem 0;
    }
    
    .domain-quick-actions-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .domain-quick-actions-buttons {
        gap: 1rem;
    }
    
    .domain-action-btn {
        min-width: 120px;
        padding: 1.25rem 1rem;
    }
    
    .domain-action-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .domain-company-name {
        font-size: 1.25rem;
    }
    
    .domain-top-actions {
        gap: 0.75rem;
    }
    
    .domain-cart-icon {
        font-size: 1rem;
        padding: 0.375rem;
    }
    
    .domain-cart-badge {
        font-size: 0.6875rem;
        min-width: 1.125rem;
        height: 1.125rem;
        padding: 0 0.25rem;
    }
    
    .domain-top-links {
        gap: 0.75rem;
    }
    
    .domain-top-link {
        font-size: 0.8125rem;
    }
    
    .domain-nav-link span {
        display: none;
    }
    
    .domain-nav-link {
        padding: 0.5rem;
        min-width: 44px;
        justify-content: center;
    }
    
    .domain-hero-title {
        font-size: 1.5rem;
    }
    
    .domain-quick-actions-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .domain-action-btn {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
}

/* ============================================================================
   CORE BRANDING (Required - cannot be removed)
   ============================================================================ */
.whmdc-branding {
    background: #1e293b !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 1rem 0 !important;
}

.whmdc-branding p {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.875rem !important;
}

.whmdc-branding a {
    color: #0ea5e9 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: color 0.2s !important;
}

.whmdc-branding a:hover {
    color: #38bdf8 !important;
}

