.dk-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.dk-list-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 12px 20px;
    margin-bottom: 8px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.2s;
}

.dk-list-domain {
    flex: 0 0 260px;
    font-weight: 600;
    font-size: var(--font-size-lg);
    color: var(--dark);
    word-break: break-all;
    line-height: 1.4;
}

.dk-list-domain .dk-list-tld {
    color: var(--primary);
}

.dk-list-content {
    flex: 1;
    display: flex;
    gap: 30px;
    padding: 0 10px;
    font-weight: 500;
    color: var(--gray);
    font-size: var(--font-size-base);
    align-items: center;
    justify-content: center;

}

.dk-list-actions {
    flex: 0 0 210px;
    display: flex;
    gap: 8px;
    font-weight: 600;
    justify-content: flex-end;
    font-size: var(--font-size-lg);
}

@media (max-width: 768px) {
    .dk-list-card {
        padding: 10px;
    }
    
    .dk-list-domain {
        flex: 0 0 150px;
        font-size: 14px;
    }
    
    .dk-list-content {
        display: none;
    }
    
    .dk-list-actions {
        flex: 1;
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .dk-list-card {
        padding: 8px;
        margin-bottom: 6px;
    }
    
    .dk-list-domain {
        flex: 1;
        font-size: 13px;
    }
    
    .dk-list-actions {
        flex: 0 0 150px;
        gap: 4px;
    }
    
    .dk-list-actions .btn-lookup,
    .dk-list-actions .btn-action {
        font-size: 11px;
        padding: 5px 8px;
    }
}

.stats-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}

.stat-sep {
    margin: 0 15px;
    opacity: .5;
}

.stat-highlight {
    color: #fff;
    font-weight: 700;
}

.filters-bar {
    background: #fff;
    padding: 10px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: sticky;
    top: 60px;
    z-index: 100;
}

.filters-bar-2 {
    background: #fff;
    padding: 10px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: sticky;
    top: 115px;
    z-index: 99;
}

.filters-sort-bar {
    background: transparent;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.filter-label {
    color: var(--gray);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.filter-btn {
    padding: 5px 14px;
    background: transparent;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: .2s;
}

.filter-btn.active {
    background: var(--gradient-main);
    color: #fff;
}

.filter-btn:hover:not(.active) {
    border-color: var(--primary);
}


.filtered-summary {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.control-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.reset-filters-btn {
    background: var(--accent);
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.reset-filters-btn:hover {
    background: var(--accent-hover);
}

.export-btn {
    background: var(--accent-special);
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.export-btn:hover {
    background: var(--accent-hover);
}

.results-container {
    width: 100%;
    padding: 20px;
}

.results-header {
    text-align: center;
    padding: 25px 0 15px;
    border-bottom: 2px solid var(--primary);
    margin-bottom: 20px;
}

.results-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.domain-card {
    background: #fff;
    border-radius: 8px;
    padding: 14px;
    border: 1px solid #e5e7eb;
    transition: .3s;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.domain-card:has(.dropdown-menu.show) {
    z-index: 1000;
    position: relative;
}

.domain-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.domain-age {
    font-weight: 700;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}
.age-vintage {
    background: linear-gradient(135deg, #059669, #10b981);
}

.age-premium {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.age-legendary {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.age-junior {
    background: linear-gradient(135deg, #94a3b8, #64748b);
}

.age-fresh {
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
}

.domain-name {
    font-weight: 600;
    font-size: var(--font-size-base);
    color: var(--dark);
    word-break: break-all;
}

.domain-tld {
    color: var(--primary);
    font-weight: 700;
    font-size: var(--font-size-base);
}

.domain-actions {
    display: flex;
    gap: 6px;
    justify-content: space-between;
    width: 100%;
}

.lookup-dropdown {
    position: relative;
    display: inline-block;
    flex: 1;
    z-index: 1;
}

.lookup-dropdown.dropdown-active {
    z-index: 10000;
}

.btn-lookup {
    background: var(--global-btn-dropdown);
    color: #374151;
    border: none;
    border-radius: 4px;
    width: 100%;
    padding: 6px 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: .2s;
    text-align: center;
    position: relative;
    line-height: 1.5;
}

.btn-lookup::after {
    content: '▼';
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.2s;
}

.btn-lookup:hover {
    background: #d1d5db;
    color: #1f2937;
}

.btn-action {
    background: var(--gradient-main);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    flex: 1;
    padding: 6px 10px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: .2s;
    text-align: center;
    line-height: 1.5;
}

.btn-action.price {
    background: var(--global-btn-price);
}

.btn-action.offer {
    background: var(--global-btn-offer);
}

.btn-action.check {
    background: var(--global-btn-check);
}

.btn-action.register {
    background: var(--global-btn-register);
}

.btn-action.expired {
    background: var(--global-btn-expired);
}

.btn-action.whois {
    background: var(--global-btn-dropdown);
}

.btn-action.verify {
    background: var(--global-btn-verify);
}
.btn-action:hover {
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    z-index: 10001;
    display: none;
    min-width: 140px;
}

.dropdown-menu.show {
    display: block;
    animation: slideDown 0.15s ease-out;
    z-index: 10001;
}

.dropdown-item {
    display: block;
    padding: 8px 12px;
    color: #374151;
    text-decoration: none;
    font-size: 12px;
    transition: background-color 0.2s;
    border-bottom: 1px solid #f3f4f6;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f9fafb;
    color: var(--primary);
}

.load-more-container {
    text-align: center;
    margin: 40px 0;
}

.load-more-btn {
    background: var(--gradient-main);
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.load-more-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
}

.load-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    background: var(--gradient-main);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    transition: .3s;
    z-index: 999;
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
}

.no-results-message {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 600;
    grid-column: 1/-1;
}

.no-results-suggestion {
    margin-top: 20px;
    font-size: 16px;
    color: var(--accent);
    font-weight: 400;
    line-height: 1.5;
}

.keyword-colored {
    color: var(--primary);
    font-weight: 600;
}

.loading-initial {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    grid-column: 1/-1;
}

@media (max-width: 1200px) {
    .results-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .filters-bar,
    .filters-bar-2  
    {
        gap: 15px;
        padding: 10px;
    }
    .filters-sort-bar {
        padding: 8px 15px;
        gap: 15px;
        flex-direction: column;
    }
    .filter-group {
        justify-content: center;
    }
    .domain-name {
        font-size: var(--font-size-sm);
    }
    .domain-tld {
        font-size: var(--font-size-sm);
    }
    .btn-lookup,
    .btn-action {
        font-size: 11px;
        padding: 6px 8px;
    }
    .dropdown-menu {
        min-width: 120px;
    }
    .dropdown-item {
        padding: 6px 10px;
        font-size: 11px;
    }
}
@media (max-width: 768px) {
    .filters-bar,
    .filters-bar-2,
    .filters-sort-bar {
        flex-direction: column;
        align-items: center;
    }


@media (max-width: 480px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}