/* Host-Med - Modern Hosting Website CSS */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
    /* Colors - Dark Tech Theme */
    --primary: #00D4FF;
    --primary-dark: #00A8CC;
    --secondary: #7C3AED;
    --accent: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    
    /* Backgrounds */
    --bg-dark: #0A0F1C;
    --bg-card: #111827;
    --bg-card-hover: #1F2937;
    --bg-gradient: linear-gradient(135deg, #0A0F1C 0%, #1A1F35 100%);
    
    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    
    /* Borders */
    --border-color: rgba(255,255,255,0.1);
    --border-glow: rgba(0, 212, 255, 0.3);
    
    /* Spacing */
    --container-width: 1280px;
    --section-padding: 100px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 15, 28, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 15, 28, 0.98);
    box-shadow: var(--shadow-lg);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

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

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: var(--bg-card);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
}

.lang-switch a {
    padding: 4px 8px;
    border-radius: 4px;
    color: var(--text-muted);
}

.lang-switch a.active,
.lang-switch a:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--primary);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 8px 16px;
}

.btn-ghost:hover {
    color: var(--primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 12px;
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 10px;
}

/* ========== HERO ========== */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 110px 0 50px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFFFFF 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Domain Search */
.domain-search {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 32px;
    padding: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.domain-search input {
    flex: 1;
    padding: 16px 20px;
    background: transparent;
    border: none;
    font-size: 16px;
    color: var(--text-primary);
    outline: none;
}

.domain-search input::placeholder {
    color: var(--text-muted);
}

.domain-search .btn {
    padding: 16px 32px;
}

.domain-tlds {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.domain-tld {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.domain-tld:hover {
    border-color: var(--primary);
    background: var(--bg-card-hover);
}

.domain-tld .tld {
    font-weight: 700;
    color: var(--primary);
}

.domain-tld .price {
    color: var(--text-muted);
    font-size: 13px;
}

/* ========== FEATURES ========== */
.features {
    background: #ffffff;
    padding: var(--section-padding) 0;
    position: relative;
}

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

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

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

.feature-card {
    padding: 32px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 14px;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* ========== PRICING ========== */
.pricing {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.02) 50%, transparent 100%);
}

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

.pricing-card {
    position: relative;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    transition: var(--transition);
    overflow: hidden;
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.pricing-card.popular::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: var(--primary);
    color: var(--bg-dark);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 100px;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}

.pricing-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.pricing-period {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    flex-shrink: 0;
}

.pricing-features li.disabled svg {
    stroke: var(--text-muted);
}

.pricing-features li.disabled {
    color: var(--text-muted);
}

.pricing-card .btn {
    width: 100%;
}

/* ========== DOMAINS SECTION ========== */
.domains-section {
    padding: var(--section-padding) 0;
}

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

.tld-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.tld-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.tld-card.popular {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
}

.tld-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.tld-price {
    font-size: 18px;
    font-weight: 600;
}

.tld-period {
    font-size: 13px;
    color: var(--text-muted);
}

/* ========== FOOTER ========== */
.footer {
    padding: 80px 0 32px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

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

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 16px;
    max-width: 300px;
}

.footer h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

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

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tld-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .header-inner {
        padding: 12px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .domain-search {
        flex-direction: column;
    }
    
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .tld-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========== MOBILE MENU ========== */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-primary);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
}

/* ========== DASHBOARD ========== */
.dashboard-layout {
    display: flex;
    min-height: 75vh;
    padding-top: 80px;
}

.dashboard-sidebar {
    width: 260px;
    background: var(--bg-card);
    border-right: 1px solid var(--border-color);
    padding: 24px;
    position: fixed;
    top: 80px;
    bottom: 0;
    left: 0;
    overflow-y: auto;
}

.dashboard-sidebar-nav {
    list-style: none;
}

.dashboard-sidebar-nav li {
    margin-bottom: 4px;
}

.dashboard-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.dashboard-sidebar-nav a:hover,
.dashboard-sidebar-nav a.active {
    background: var(--bg-card-hover);
    color: var(--primary);
}

.dashboard-sidebar-nav a svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.dashboard-main {
    flex: 1;
    margin-left: 260px;
    padding: 32px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.dashboard-title {
    font-size: 28px;
    font-weight: 700;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
}

.stat-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 12px;
    margin-bottom: 16px;
}

.stat-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.stat-card-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-card-label {
    color: var(--text-muted);
    font-size: 14px;
}

.dashboard-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.dashboard-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-card-title {
    font-size: 18px;
    font-weight: 600;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table tr:hover {
    background: var(--bg-card-hover);
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 6px;
}

.badge-success { background: rgba(16, 185, 129, 0.15); color: #10B981; }
.badge-warning { background: rgba(245, 158, 11, 0.15); color: #F59E0B; }
.badge-danger { background: rgba(239, 68, 68, 0.15); color: #EF4444; }
.badge-info { background: rgba(0, 212, 255, 0.15); color: #00D4FF; }

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
}

.form-textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    resize: vertical;
}

.alert {
    position: fixed;
    top: 100px;
    right: 24px;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    z-index: 1001;
    animation: slideIn 0.3s ease;
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10B981;
}

.alert-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #EF4444;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 1200px) {
    .dashboard-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .dashboard-sidebar { display: none; }
    .dashboard-main { margin-left: 0; }
    .dashboard-stats { grid-template-columns: 1fr; }
}

/* Features Section - Light Theme */
.features {
    background: #f8fafc !important;
    color: #1a202c;
}

.features .section-label {
    color: #0ea5e9;
}

.features .section-title {
    color: #0f172a;
}

.features .feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.features .feature-card:hover {
    border-color: #0ea5e9;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.features .feature-card h3 {
    color: #1e293b;
}

.features .feature-card p {
    color: #64748b;
}

.features .feature-icon {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}

.features .feature-icon svg {
    stroke: #0284c7;
}

/* Domains Section - Light Theme */
.domains-section {
    background: #f8fafc !important;
    color: #1a202c;
}

.domains-section .section-label {
    color: #0ea5e9;
}

.domains-section .section-title {
    color: #0f172a;
}

.domains-section .domain-search {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.domains-section .domain-search input {
    color: #1e293b;
    background: transparent;
}

.domains-section .domain-search input::placeholder {
    color: #94a3b8;
}

.domains-section .domain-tld {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.domains-section .domain-tld:hover {
    border-color: #0ea5e9;
    background: #f0f9ff;
}

.domains-section .domain-tld .tld {
    color: #0f172a;
}

.domains-section .domain-tld .price {
    color: #0ea5e9;
}

/* Hero Title Gradient */
.hero h1 {
    font-size: clamp(40px, 6vw, 42px) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin-bottom: 24px !important;
    background: linear-gradient(135deg, #FFFFFF 0%, #94A3B8 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* All Domain TLD Boxes - Same Light Style */
.domains-section .domain-tld,
.domain-tlds .domain-tld,
.domain-tld {
    background: linear-gradient(180deg, #f0fdfa 0%, #e0f2fe 100%) !important;
    border: 2px solid #67e8f9 !important;
    border-radius: 16px !important;
    color: #0f172a !important;
}

.domains-section .domain-tld:hover,
.domain-tlds .domain-tld:hover,
.domain-tld:hover {
    background: linear-gradient(180deg, #e0f2fe 0%, #cffafe 100%) !important;
    border-color: #22d3ee !important;
    transform: translateY(-4px);
}

.domains-section .domain-tld .tld,
.domain-tlds .domain-tld .tld,
.domain-tld .tld {
    color: #0891b2 !important;
    font-weight: 700 !important;
}

.domains-section .domain-tld .price,
.domain-tlds .domain-tld .price,
.domain-tld .price {
    color: #0f172a !important;
    font-weight: 600 !important;
}

.domains-section .domain-tld span:last-child,
.domain-tlds .domain-tld span:last-child {
    color: #64748b !important;
}

/* All Domain TLD Boxes - Same Light Style */
.domains-section .domain-tld,
.domain-tlds .domain-tld {
    background: linear-gradient(180deg, #f0fdfa 0%, #ecfeff 100%) !important;
    border: 2px solid #22d3ee !important;
    border-radius: 16px !important;
    color: #0f172a !important;
}

.domains-section .domain-tld:hover,
.domain-tlds .domain-tld:hover {
    background: linear-gradient(180deg, #e0f7fa 0%, #d0f4f7 100%) !important;
    border-color: #06b6d4 !important;
    transform: translateY(-2px);
}

.domains-section .domain-tld .tld,
.domain-tlds .domain-tld .tld {
    color: #0891b2 !important;
    font-weight: 700 !important;
}

.domains-section .domain-tld .price,
.domain-tlds .domain-tld .price {
    color: #0f172a !important;
    font-weight: 600 !important;
}

.domains-section .domain-tld span,
.domain-tlds .domain-tld span {
    color: #64748b !important;
}

/* All TLD Cards - Same Light Style */
.tld-card,
.tld-card.popular,
.domains-section .tld-card,
.domains-section .tld-card.popular {
    background: linear-gradient(180deg, #f0fdfa 0%, #ecfeff 100%) !important;
    border: 2px solid #22d3ee !important;
    border-radius: 16px !important;
}

.tld-card:hover,
.tld-card.popular:hover,
.domains-section .tld-card:hover {
    background: linear-gradient(180deg, #e0f7fa 0%, #cffafe 100%) !important;
    border-color: #06b6d4 !important;
    transform: translateY(-4px);
}

.tld-card .tld-name,
.tld-card.popular .tld-name,
.domains-section .tld-card .tld-name {
    color: #0891b2 !important;
    font-weight: 800 !important;
}

.tld-card .tld-price,
.tld-card.popular .tld-price,
.domains-section .tld-card .tld-price {
    color: #0f172a !important;
    font-weight: 600 !important;
}

.tld-card .tld-period,
.tld-card.popular .tld-period,
.domains-section .tld-card .tld-period {
    color: #64748b !important;
}

/* Domain Search Results */
.domain-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.domain-result-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.domain-result-card.available {
    border-color: var(--accent);
}

.domain-result-card.available:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.15);
}

.domain-result-card.unavailable {
    opacity: 0.7;
}

.domain-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.domain-result-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.domain-result-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.domain-result-badge.badge-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.domain-result-badge.badge-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.domain-result-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.domain-result-footer.unavailable {
    justify-content: center;
}

.domain-result-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
}

.btn-accent {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-accent:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.btn-success {
    background: #10b981;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
}

/* Loading Spinner */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Notification */
.notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.notification-success .notification-content {
    border-left: 4px solid #10b981;
}

.notification-success svg {
    color: #10b981;
}

.notification-error .notification-content {
    border-left: 4px solid #ef4444;
}

.notification-error svg {
    color: #ef4444;
}

/* ========== MOBILE FIXES ========== */
@media (max-width: 768px) {
    /* Header */
    .header {
        padding: 12px 16px;
    }
    
    .nav-links {
        gap: 8px;
    }
    
    .nav-links a {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .btn-register {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    /* Hero Section */
    .hero {
        padding: 80px 16px 60px;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 28px !important;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero p {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 8px;
    }
    
    /* Domain Search */
    .domain-search {
        padding: 16px;
        margin: 0 8px;
    }
    
    .domain-search input {
        font-size: 14px;
        padding: 14px 16px;
    }
    
    .domain-search button {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    /* TLD Boxes */
    .tld-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }
    
    .tld-card, .domain-tld {
        padding: 8px 14px;
        font-size: 13px;
        min-width: auto;
    }
    
    .tld-card span:first-child,
    .domain-tld span:first-child {
        font-size: 14px;
    }
    
    .tld-card span:last-child,
    .domain-tld span:last-child {
        font-size: 12px;
    }
    
    /* Features Section */
    .features {
        padding: 60px 16px;
    }
    
    .section-title {
        font-size: 24px !important;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    /* Packages Section */
    .packages {
        padding: 60px 16px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-card {
        padding: 24px;
    }
    
    /* Domains Section */
    .domains-section {
        padding: 60px 16px;
    }
    
    .domains-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 16px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px !important;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .domain-search {
        padding: 12px;
    }
    
    .tld-list {
        gap: 6px;
    }
    
    .tld-card, .domain-tld {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .domains-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .nav-links a:not(.btn-register) {
        display: none;
    }
    
    .language-switch {
        display: none;
    }
}

/* ========== HAMBURGER MENU ========== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

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

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

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
        flex-direction: column;
        padding: 80px 24px 24px;
        transition: left 0.3s ease;
        z-index: 1000;
        gap: 8px;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-link {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 8px;
        background: rgba(255,255,255,0.05);
    }
    
    .nav-link:hover {
        background: rgba(255,255,255,0.1);
    }
    
    .nav-buttons {
        gap: 8px;
    }
    
    .btn-login {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .btn-register {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .language-switch {
        padding: 4px;
        gap: 2px;
    }
    
    .language-switch a {
        padding: 4px 8px;
        font-size: 12px;
    }
    
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .overlay.active {
        display: block;
    }
    
    .header-inner {
        justify-content: space-between;
    }
}

/* ========== MOBILE HEADER FIX ========== */
@media (max-width: 768px) {
    .header {
        padding: 10px 12px;
    }
    
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 8px;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .logo span {
        font-size: 16px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .nav-buttons {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
    }
    
    .language-switch {
        display: flex;
        padding: 2px;
        gap: 1px;
    }
    
    .language-switch a {
        padding: 4px 6px;
        font-size: 11px;
    }
    
    .btn-login {
        padding: 6px 10px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .btn-register {
        padding: 6px 10px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .hamburger {
        display: flex;
        padding: 6px;
        margin-left: 4px;
    }
    
    .hamburger span {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 8px 10px;
    }
    
    .logo span {
        font-size: 14px;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .nav-buttons {
        gap: 4px;
    }
    
    .language-switch a {
        padding: 3px 5px;
        font-size: 10px;
    }
    
    .btn-login {
        padding: 5px 8px;
        font-size: 11px;
    }
    
    .btn-register {
        padding: 5px 8px;
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .btn-login {
        display: none;
    }
    
    .language-switch {
        display: none;
    }
    
    .btn-register {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* ========== CENTER EVERYTHING ON MOBILE ========== */
@media (max-width: 768px) {
    /* Header centered */
    .header-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .logo {
        justify-content: center;
    }
    
    .nav-buttons {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .hamburger {
        position: absolute;
        top: 12px;
        right: 12px;
    }
    
    /* Hero centered */
    .hero {
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero h1,
    .hero p {
        text-align: center;
    }
    
    /* Domain search centered */
    .domain-search {
        text-align: center;
        margin: 0 auto;
    }
    
    .domain-search form {
        flex-direction: column;
        gap: 12px;
    }
    
    .domain-search input {
        width: 100%;
        text-align: center;
    }
    
    .domain-search button {
        width: 100%;
    }
    
    .tld-list {
        justify-content: center;
        text-align: center;
    }
    
    /* Features centered */
    .features {
        text-align: center;
    }
    
    .features-grid {
        justify-items: center;
    }
    
    .feature-card {
        text-align: center;
        align-items: center;
    }
    
    .feature-icon {
        margin: 0 auto 16px;
    }
    
    /* Packages centered */
    .packages {
        text-align: center;
    }
    
    .packages-grid {
        justify-items: center;
    }
    
    .package-card {
        text-align: center;
        width: 100%;
        max-width: 350px;
    }
    
    /* Domains section centered */
    .domains-section {
        text-align: center;
    }
    
    .domains-grid {
        justify-content: center;
    }
    
    /* Section titles centered */
    .section-title,
    .section-subtitle {
        text-align: center;
    }
    
    /* Footer centered */
    .footer {
        text-align: center;
    }
    
    .footer-grid {
        justify-items: center;
    }
    
    .footer-section {
        text-align: center;
        align-items: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    /* CTA centered */
    .cta {
        text-align: center;
    }
    
    .cta-content {
        align-items: center;
    }
    
    /* Container padding */
    .container {
        padding: 0 16px;
    }
}

/* ========== NEW MOBILE MENU SYSTEM ========== */
.mobile-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: linear-gradient(180deg, #0a1628 0%, #1a2744 100%);
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.mobile-menu-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #94a3b8;
    transition: color 0.2s;
}

.mobile-menu-close:hover {
    color: #fff;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.mobile-nav a {
    display: block;
    padding: 14px 16px;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 16px;
    border-radius: 8px;
    transition: background 0.2s;
}

.mobile-nav a:hover {
    background: rgba(255,255,255,0.1);
}

.mobile-nav hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 12px 0;
}

.mobile-nav .mobile-register {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    text-align: center;
    margin-top: 8px;
}

.mobile-lang {
    display: flex;
    gap: 8px;
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-lang a {
    flex: 1;
    padding: 10px;
    text-align: center;
    color: #94a3b8;
    text-decoration: none;
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    font-size: 14px;
}

.mobile-lang a.active {
    background: rgba(6, 182, 212, 0.2);
    color: #06b6d4;
}

/* Mobile styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }
    
    .nav {
        display: none !important;
    }
    
    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row !important;
    }
    
    .nav-buttons {
        display: flex;
        gap: 8px;
    }
    
    .nav-buttons .language-switch,
    .nav-buttons .btn-login {
        display: none;
    }
    
    .nav-buttons .btn-register {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .logo span {
        font-size: 16px;
    }
    
    .logo-icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .nav-buttons .btn-register {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .logo span {
        font-size: 14px;
    }
    
    .logo-icon {
        width: 26px;
        height: 26px;
    }
}

/* ========== MOBILE HEADER STACKED LAYOUT ========== */
.mobile-header {
    display: none;
}

.desktop-header {
    display: flex;
}

@media (max-width: 768px) {
    .desktop-header {
        display: none !important;
    }
    
    .mobile-header {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
    }
    
    .mobile-header-top {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        width: 100%;
    }
    
    .mobile-header-top .logo {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .mobile-header-top .logo span {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
    }
    
    .mobile-header-top .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .mobile-header-top .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 36px;
        height: 36px;
        cursor: pointer;
        background: rgba(255,255,255,0.1);
        border-radius: 8px;
        padding: 8px;
    }
    
    .mobile-header-top .hamburger span {
        display: block;
        width: 20px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .mobile-header-top .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-header-top .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-header-top .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .mobile-header-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    
    .mobile-header-buttons .language-switch {
        display: flex;
        gap: 4px;
        padding: 4px;
        background: rgba(255,255,255,0.1);
        border-radius: 8px;
    }
    
    .mobile-header-buttons .language-switch a {
        padding: 6px 16px;
        font-size: 13px;
        color: #94a3b8;
        text-decoration: none;
        border-radius: 6px;
        transition: all 0.2s;
    }
    
    .mobile-header-buttons .language-switch a.active {
        background: #06b6d4;
        color: #fff;
    }
    
    .mobile-header-buttons .btn-login {
        padding: 10px 32px;
        font-size: 14px;
        color: #fff;
        text-decoration: none;
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 8px;
        transition: all 0.2s;
    }
    
    .mobile-header-buttons .btn-login:hover {
        background: rgba(255,255,255,0.1);
    }
    
    .mobile-header-buttons .btn-register {
        padding: 10px 32px;
        font-size: 14px;
        background: linear-gradient(135deg, #06b6d4, #0891b2);
        color: #fff;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.2s;
    }
    
    .mobile-header-buttons .btn-register:hover {
        transform: translateY(-1px);
    }
}

/* ========== SIMPLE MOBILE FIX ========== */
@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .nav {
        display: none;
    }
    
    .nav-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .logo {
        margin-bottom: 8px;
    }
    
    .btn-login, .btn-register {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .hero {
        padding-top: 120px;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 28px !important;
    }
    
    .domain-search {
        flex-direction: column;
    }
    
    .domain-search input,
    .domain-search button {
        width: 100%;
    }
    
    .features-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== MOBILE: Logo üstte, NL EN Inloggen altta ========== */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
    }
    
    .nav {
        display: none !important;
    }
    
    .logo {
        order: 1;
    }
    
    .nav-buttons {
        order: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .nav-buttons .btn-register {
        display: none !important;
    }
    
    .nav-buttons .language-switch {
        display: flex;
    }
    
    .nav-buttons .btn-login {
        display: flex;
    }
}

/* Show Registreren on mobile */
@media (max-width: 768px) {
    .nav-buttons .btn-register {
        display: flex !important;
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .nav-buttons .btn-login {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .nav-buttons .language-switch a {
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* Cart Icon */
.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    margin-right: 1rem;
    transition: color 0.2s;
}
.cart-icon:hover { color: var(--primary); }
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Checkout Steps */
.checkout-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 0;
}
.checkout-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    color: var(--text-light);
    position: relative;
}
.checkout-step.active { color: var(--primary); font-weight: 600; }
.checkout-step.completed { color: var(--success); }
.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.checkout-step.active .step-number { background: var(--primary); color: white; border-color: var(--primary); }
.checkout-step.completed .step-number { background: var(--success); color: white; border-color: var(--success); }
.step-line {
    width: 60px;
    height: 2px;
    background: var(--border);
}
.checkout-step.completed + .step-line { background: var(--success); }

/* Admin Table White Text */
.dashboard-layout .data-table td,
.dashboard-layout .data-table th,
.dashboard-layout .data-table tbody td {
    color: #ffffff !important;
}
.dashboard-layout .data-table thead th {
    color: #adb5bd !important;
    font-weight: 600;
}
.dashboard-layout .data-table tbody tr:hover td {
    color: #fff !important;
}
