/* public_html/vendors/search/assets/css/search.css */

/* ================== ULTRA MINIMAL DESIGN ================== */
:root {
    --primary: #4f46e5;
    --primary-light: #6366f1;
    --primary-dark: #4338ca;
    --primary-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --success: #10b981;
    --success-light: #34d399;
    --success-dark: #059669;
    --success-gradient: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    --warning: #f59e0b;
    --danger: #ef4444;
    --text: #111827;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --background: #ffffff;
    --card-bg: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --radius: 6px;
    --radius-sm: 4px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-2xl: 16px;
    --transition: all 0.15s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #f9fafb;
    color: var(--text);
    line-height: 1.5;
    min-height: 100vh;
}

/* ================== MAIN CONTAINER ================== */
.search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ================== MINIMAL HEADER ================== */
.header {
    text-align: center;
    padding: 24px;
    background: var(--background);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
}

/* ================== LOGO STYLES ================== */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.brand-logo {
    width: 400px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.brand:hover .logo-image {
    transform: scale(1.05);
}

.brand-icon-fallback {
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

/* Logo için responsive düzenlemeler */
@media (max-width: 768px) {
    .brand-logo {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 576px) {
    .brand {
        gap: 8px;
    }
    
    .brand-logo {
        width: 32px;
        height: 32px;
    }
}

.header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.2;
}

.header .tagline {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 24px;
    font-weight: 400;
}

/* Compact Stats Counter */
.stats {
    display: inline-flex;
    gap: 24px;
    background: var(--background);
    padding: 16px 24px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.stat {
    text-align: center;
    position: relative;
    padding: 0 12px;
    min-width: 100px;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: var(--border);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
    font-feature-settings: "tnum";
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Verified stat special color */
.stat.verified .stat-value {
    color: var(--success);
    position: relative;
    display: inline-block;
}

.stat.verified .stat-value::after {
    content: '✓';
    position: absolute;
    top: -4px;
    right: -12px;
    font-size: 0.875rem;
    color: var(--success);
    animation: checkmarkPop 0.5s ease-out;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ================== COMPACT SEARCH CARD ================== */
.search-card {
    background: var(--background);
    border-radius: var(--radius-2xl);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
}

/* Compact Mode Tabs */
.mode-tabs {
    display: inline-flex;
    background: var(--border-light);
    border-radius: var(--radius);
    padding: 4px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.tab {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
}

.tab:hover {
    background: rgba(79, 70, 229, 0.05);
    transform: translateY(-1px);
}

.tab.verified:hover {
    background: rgba(16, 185, 129, 0.05);
}

.tab:not(.active):hover {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(124, 58, 237, 0.08));
    color: var(--primary);
}

.tab.verified:not(.active):hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(34, 197, 94, 0.08));
    color: var(--success);
}

.tab:hover .badge {
    background: rgba(79, 70, 229, 0.2);
    transform: scale(1.05);
}

.tab.verified:hover .badge {
    background: rgba(16, 185, 129, 0.2);
}

.tab.active {
    background: var(--background);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.tab.verified.active {
    color: var(--success);
    background: linear-gradient(135deg, var(--background), rgba(16, 185, 129, 0.02));
    border: 1px solid rgba(16, 185, 129, 0.1);
    animation: verifiedTabGlow 2s infinite;
}

@keyframes verifiedTabGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.2);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    }
}

.tab i {
    font-size: 0.9375rem;
}

.tab .badge {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.6875rem;
    font-weight: 600;
    margin-left: 4px;
    transition: var(--transition);
}

.tab.verified .badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.tab.verified.active .badge {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success-dark);
    transform: scale(1.05);
}

/* Compact Search Form */
.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-label i {
    color: var(--primary);
    font-size: 0.9375rem;
    width: 18px;
    text-align: center;
}

.form-input,
.form-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    transition: var(--transition);
    background: var(--background);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}

.form-input::placeholder {
    color: var(--text-lighter);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 256 256'%3E%3Cpath d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
    padding-right: 32px;
    cursor: pointer;
}

/* Compact Search actions */
.search-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn {
    padding: 10px 24px;
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--background);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Verified Welcome Banner */
.verified-welcome {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02), rgba(34, 197, 94, 0.02));
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: slideInVerified 0.5s ease-out;
}

@keyframes slideInVerified {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.verified-welcome-icon {
    width: 48px;
    height: 48px;
    background: var(--success-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
    animation: verifiedIconPulse 2s infinite;
}

@keyframes verifiedIconPulse {
    0%, 100% {
        box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
    }
    50% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    }
}

.verified-welcome-content {
    flex: 1;
}

.verified-welcome-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--success-dark);
    margin-bottom: 4px;
}

.verified-welcome-text {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ================== PROFESSIONAL RESULTS SECTION ================== */
.results-section {
    flex: 1;
    background: var(--background);
    border-radius: var(--radius-2xl);
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.results-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.results-title i {
    color: var(--primary);
    font-size: 1rem;
}

.results-title.verified i {
    color: var(--success);
    animation: verifiedIconSpin 8s linear infinite;
}

@keyframes verifiedIconSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.results-count {
    font-size: 0.8125rem;
    color: var(--primary);
    background: rgba(79, 70, 229, 0.08);
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 500;
    border: 1px solid rgba(79, 70, 229, 0.15);
}

.results-count.verified {
    color: var(--success);
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.15);
    animation: countPulse 2s infinite;
}

@keyframes countPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.results-container {
    min-height: 200px;
    position: relative;
}

/* Initial State */
.initial-state {
    padding: 60px 20px;
    text-align: center;
    color: var(--text-light);
}

.initial-state i {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--border);
}

.initial-state h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 600;
}

.initial-state p {
    font-size: 0.9375rem;
    opacity: 0.8;
    max-width: 300px;
    margin: 0 auto;
}

/* Loading State */
.loading-state {
    padding: 60px 20px;
    text-align: center;
}

.loader {
    width: 32px;
    height: 32px;
    margin: 0 auto 16px;
    position: relative;
}

.loader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--border-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-state p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* Empty State */
.empty-state {
    padding: 60px 20px;
    text-align: center;
    color: var(--text-light);
}

.empty-state i {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--border);
}

.empty-state h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 600;
}

.empty-state p {
    font-size: 0.9375rem;
    opacity: 0.8;
}

/* ================== VENDOR TABLE (VENDOR SEARCH) ================== */
.results-table-container {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--background);
    margin-top: 8px;
    width: 100%;
    box-shadow: var(--shadow-sm);
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
    font-size: 0.875rem;
}

.results-table thead {
    background: var(--border-light);
    border-bottom: 2px solid var(--border);
}

.results-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 1px solid var(--border);
}

.results-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text);
}

.results-table tbody tr {
    transition: var(--transition);
}

.results-table tbody tr:hover {
    background: rgba(79, 70, 229, 0.02);
}

.results-table tbody tr:last-child td {
    border-bottom: none;
}

/* Vendor logo in table */
.vendor-logo-table {
    width: 100px;
    height: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    border: 1px solid var(--border);
    margin: 0 auto;
}

.vendor-logo-table img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    color: var(--primary);
}

/* Vendor name cell */
.vendor-name {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.vendor-name a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.vendor-name a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-person {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.contact-person i {
    color: var(--primary);
    font-size: 0.6875rem;
}

/* Badge styles */
.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.badge-active {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-inactive {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge-risky {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge-verified {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
    animation: verifiedBadgeGlow 2s infinite;
}

@keyframes verifiedBadgeGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    }
}

.badge-category {
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    padding: 3px 8px;
    font-size: 0.6875rem;
    margin: 2px;
    display: inline-block;
    border-radius: 6px;
    border: 1px solid rgba(79, 70, 229, 0.15);
    font-weight: 500;
    white-space: nowrap;
}

/* Contact links */
.contact-link {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.8125rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.website-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 10px;
    background: rgba(79, 70, 229, 0.08);
    border-radius: 6px;
    transition: var(--transition);
    font-size: 0.75rem;
    border: 1px solid rgba(79, 70, 229, 0.15);
}

.website-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-1px);
}

.website-link i {
    font-size: 0.6875rem;
}

/* Category container */
.category-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    max-width: 200px;
}

/* Phone/Email container */
.contact-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--text);
}

.contact-item i {
    color: var(--primary);
    font-size: 0.6875rem;
    width: 14px;
}

/* ================== VERIFIED VENDORS GRID ================== */
.verified-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 16px;
}

/* Verified Vendor Card */
.verified-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: cardFadeIn 0.5s ease-out;
    animation-fill-mode: both;
    box-shadow: var(--shadow-sm);
}

.verified-card:nth-child(1) { animation-delay: 0.05s; }
.verified-card:nth-child(2) { animation-delay: 0.1s; }
.verified-card:nth-child(3) { animation-delay: 0.15s; }
.verified-card:nth-child(4) { animation-delay: 0.2s; }
.verified-card:nth-child(5) { animation-delay: 0.25s; }
.verified-card:nth-child(6) { animation-delay: 0.3s; }
.verified-card:nth-child(7) { animation-delay: 0.35s; }
.verified-card:nth-child(8) { animation-delay: 0.4s; }
.verified-card:nth-child(9) { animation-delay: 0.45s; }
.verified-card:nth-child(10) { animation-delay: 0.5s; }

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.verified-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
    border-color: var(--success);
}

.verified-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--success-gradient);
    border-radius: 3px 3px 0 0;
}

.verified-card::after {
    content: '✓';
    position: absolute;
    top: -6px;
    right: 12px;
    background: var(--success);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    z-index: 1;
    animation: verifiedBadgePulse 2s infinite;
}

@keyframes verifiedBadgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    }
}

/* Verified Card Header */
.verified-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 20px;
}

.verified-logo {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(34, 197, 94, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    font-size: 1.25rem;
    border: 2px solid rgba(16, 185, 129, 0.2);
    transition: var(--transition);
}

.verified-card:hover .verified-logo {
    border-color: var(--success);
    transform: scale(1.02);
}

.verified-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verified-logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(34, 197, 94, 0.1));
}

.verified-info {
    flex: 1;
    min-width: 0;
}

.verified-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 6px;
}

.verified-name i {
    color: var(--success);
    font-size: 0.875rem;
}

.verified-country {
    font-size: 0.8125rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.verified-country i {
    color: var(--success);
    font-size: 0.75rem;
}

/* Verified Card Details */
.verified-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
}

.verified-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    color: var(--text);
    padding: 6px 10px;
    background: rgba(16, 185, 129, 0.02);
    border-radius: var(--radius);
    transition: var(--transition);
}

.verified-contact-item:hover {
    background: rgba(16, 185, 129, 0.05);
    transform: translateX(2px);
}

.verified-contact-item i {
    width: 16px;
    color: var(--success);
    font-size: 0.75rem;
}

.verified-contact-item a {
    color: var(--text);
    text-decoration: none;
    flex: 1;
    transition: var(--transition);
}

.verified-contact-item a:hover {
    color: var(--success);
}

.verified-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.verified-category-badge {
    background: rgba(16, 185, 129, 0.08);
    color: var(--success);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 500;
    border: 1px solid rgba(16, 185, 129, 0.15);
    transition: var(--transition);
}

.verified-category-badge:hover {
    background: rgba(16, 185, 129, 0.15);
    transform: scale(1.02);
}

.verified-payment-terms {
    display: inline-block;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(34, 197, 94, 0.05));
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--success-dark);
    border: 1px solid rgba(16, 185, 129, 0.2);
    font-weight: 500;
    margin-top: 4px;
    animation: termsGlow 2s infinite;
}

@keyframes termsGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.2);
    }
    50% {
        box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.1);
    }
}

/* Verified Card Actions */
.verified-actions {
    display: flex;
    gap: 10px;
    margin-top: 4px;
    padding-top: 16px;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
}

.verified-action-btn {
    flex: 1;
    padding: 10px 12px;
    border-radius: var(--radius);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border: 1px solid transparent;
}

.verified-action-btn.primary {
    background: var(--success);
    color: white;
}

.verified-action-btn.primary:hover {
    background: var(--success-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.2);
}

.verified-action-btn.secondary {
    background: rgba(16, 185, 129, 0.08);
    color: var(--success);
    border-color: rgba(16, 185, 129, 0.15);
}

.verified-action-btn.secondary:hover {
    background: rgba(16, 185, 129, 0.15);
    transform: translateY(-1px);
}

/* Status Badge */
.verified-status {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% {
        background: rgba(16, 185, 129, 0.1);
    }
    50% {
        background: rgba(16, 185, 129, 0.2);
    }
}

.verified-status i {
    font-size: 0.5rem;
}

/* ================== PROFESSIONAL PRODUCT CARD ================== */
.product-card-professional {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.product-card-professional:hover {
    box-shadow: var(--shadow-md);
}

.product-card-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 2px 2px 0 0;
}

/* Product Header Professional */
.product-header-professional {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.product-image-professional {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    border: 1px solid var(--border);
}

.product-image-professional img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-image-professional:hover img {
    transform: scale(1.03);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    color: var(--primary);
    font-size: 1.5rem;
}

.product-info-professional {
    flex: 1;
}

.product-name-professional {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.3;
}

.product-local-name-professional {
    font-size: 0.9375rem;
    color: var(--primary);
    font-style: italic;
    margin-bottom: 12px;
    opacity: 0.9;
    font-weight: 400;
}

.product-specs-professional {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.product-spec-professional {
    background: var(--border-light);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    color: var(--text);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-spec-professional i {
    color: var(--primary);
    font-size: 0.75rem;
    width: 14px;
    text-align: center;
}

/* ================== VENDORS SECTION PROFESSIONAL ================== */
.vendors-section-professional {
    margin-top: 16px;
}

.vendors-header-professional {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.vendors-title-professional {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.vendors-title-professional i {
    color: var(--primary);
    font-size: 0.9375rem;
}

.vendors-count-professional {
    font-size: 0.75rem;
    color: var(--primary);
    background: rgba(79, 70, 229, 0.08);
    padding: 4px 10px;
    border-radius: 10px;
    font-weight: 500;
    border: 1px solid rgba(79, 70, 229, 0.15);
}

/* Vendors Grid Professional */
.vendors-grid-professional {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

/* Vendor Card Professional */
.vendor-card-professional {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 16px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vendor-card-professional:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

/* Verified Vendor Card */
.vendor-card-professional.verified {
    border-left: 3px solid var(--success);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02), rgba(34, 197, 94, 0.02));
}

.vendor-card-professional.verified:hover {
    border-color: var(--success);
}

.vendor-card-professional.verified::after {
    content: '✓';
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--success);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
    z-index: 1;
    animation: verifiedBadgePop 0.3s ease-out;
}

@keyframes verifiedBadgePop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Best Price Vendor Highlight */
.vendor-card-professional.best-price {
    border: 1px solid var(--success);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02), rgba(34, 197, 94, 0.02));
}

.vendor-card-professional.best-price::before {
    content: '💰';
    position: absolute;
    top: -8px;
    left: 12px;
    background: var(--success);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
    z-index: 1;
}

/* Vendor Header Professional */
.vendor-header-professional {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vendor-logo-professional {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.875rem;
    border: 1px solid var(--border);
}

.vendor-logo-professional img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vendor-logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.vendor-info-professional {
    flex: 1;
    min-width: 0;
}

.vendor-name-professional {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vendor-country-professional {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Vendor Details Professional */
.vendor-details-professional {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.vendor-price-professional {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount-professional {
    font-size: 1.125rem;
    font-weight: 600;
}

.price-currency-professional {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Best Price Styling */
.vendor-card-professional.best-price .price-amount-professional {
    color: var(--success-dark);
}

.vendor-card-professional:not(.best-price) .price-amount-professional {
    color: var(--text);
}

/* Vendor Actions Professional - ICON ONLY */
.vendor-actions-professional {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.vendor-action-btn-professional {
    width: 32px;
    height: 32px;
    border-radius: var(--radius);
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    border: 1px solid rgba(79, 70, 229, 0.15);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.vendor-action-btn-professional:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-1px);
}

.vendor-card-professional.verified .vendor-action-btn-professional {
    background: rgba(16, 185, 129, 0.08);
    color: var(--success);
    border-color: rgba(16, 185, 129, 0.15);
}

.vendor-card-professional.verified .vendor-action-btn-professional:hover {
    background: var(--success);
    color: white;
}

.vendor-action-btn-professional.view-profile {
    background: rgba(16, 185, 129, 0.08);
    color: var(--success-dark);
    border-color: rgba(16, 185, 129, 0.15);
}

.vendor-action-btn-professional.view-profile:hover {
    background: var(--success-dark);
    color: white;
}

/* Contact dropdown professional */
.contact-dropdown-professional {
    position: relative;
}

.contact-dropdown-content-professional {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 12px;
    z-index: 100;
    margin-bottom: 8px;
    border: 1px solid var(--border);
    min-width: 160px;
}

.contact-dropdown-content-professional.show {
    display: block;
    animation: fadeInUp 0.15s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-item-professional {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.contact-item-professional:last-child {
    border-bottom: none;
}

.contact-item-professional i {
    color: var(--primary);
    font-size: 0.8125rem;
    width: 14px;
    text-align: center;
}

.contact-info-professional {
    flex: 1;
}

.contact-label-professional {
    font-size: 0.625rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 1px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.contact-value-professional {
    font-size: 0.75rem;
    color: var(--text);
    font-weight: 400;
    word-break: break-all;
}

.contact-value-professional a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.contact-value-professional a:hover {
    color: var(--primary);
}

/* Show More/Less Button */
.show-more-btn-professional {
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.btn-more-professional {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    border: 1px solid rgba(79, 70, 229, 0.15);
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.8125rem;
}

.btn-more-professional:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-1px);
}

/* No vendors message */
.no-vendors-professional {
    text-align: center;
    padding: 32px 20px;
    color: var(--text-light);
    background: var(--border-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.no-vendors-professional i {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--border);
}

.no-vendors-professional h4 {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 6px;
    font-weight: 500;
}

/* Payment Terms Tag */
.payment-terms {
    display: inline-block;
    padding: 2px 6px;
    background: rgba(79, 70, 229, 0.05);
    border-radius: 4px;
    font-size: 0.6875rem;
    color: var(--text-light);
    border: 1px solid var(--border);
    margin-top: 4px;
}

/* ================== IMAGE MODAL ================== */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.image-modal.active {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    animation: zoomIn 0.2s ease-out;
}

@keyframes zoomIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius);
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ================== FOOTER ================== */
.footer {
    margin-top: 24px;
    text-align: center;
    padding: 16px;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.75rem;
    background: var(--background);
    border-radius: var(--radius-lg);
}

.footer p {
    margin: 6px 0;
    opacity: 0.8;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 992px) {
    .search-form {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stats {
        gap: 16px;
        padding: 12px 20px;
    }
    
    .stat {
        min-width: 80px;
        padding: 0 8px;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .product-header-professional {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .product-image-professional {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .vendors-grid-professional {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .verified-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .search-container {
        padding: 16px;
        gap: 16px;
    }
    
    .header {
        padding: 20px;
    }
    
    .header h1 {
        font-size: 1.75rem;
    }
    
    .header .tagline {
        font-size: 0.9375rem;
        margin-bottom: 20px;
    }
    
    .search-card {
        padding: 20px;
    }
    
    .mode-tabs {
        width: 100%;
        justify-content: stretch;
    }
    
    .tab {
        flex: 1;
        justify-content: center;
        padding: 8px 12px;
        font-size: 0.875rem;
    }
    
    .stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding: 12px;
    }
    
    .stat {
        min-width: calc(50% - 12px);
    }
    
    .stat:not(:last-child)::after {
        display: none;
    }
    
    .results-section {
        padding: 16px;
    }
    
    .vendors-grid-professional {
        grid-template-columns: 1fr;
    }
    
    .verified-grid {
        grid-template-columns: 1fr;
    }
    
    .verified-welcome {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
    
    .search-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .header h1 {
        font-size: 1.5rem;
    }
    
    .header .tagline {
        font-size: 0.875rem;
    }
    
    .search-card {
        padding: 16px;
    }
    
    .stats {
        padding: 10px;
        gap: 10px;
    }
    
    .stat {
        min-width: 100%;
    }
    
    .stat-value {
        font-size: 1.125rem;
    }
    
    .stat-label {
        font-size: 0.6875rem;
    }
    
    .results-title {
        font-size: 1rem;
    }
    
    .results-count {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    
    .contact-dropdown-content-professional {
        position: fixed;
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 260px;
    }
    
    .close-modal {
        top: 12px;
        right: 12px;
        width: 28px;
        height: 28px;
        font-size: 0.875rem;
    }
    
    .verified-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .verified-actions {
        flex-direction: column;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--border-light);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

::selection {
    background: rgba(79, 70, 229, 0.2);
    color: var(--text);
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 1px;
}
/* public_html/vendors/search/assets/css/search.css */

/* ================== GRADIENT KART ÖRNEKLERİ ================== */

/* ÖRNEK 1 - Modern Mavi Gradient */
.header {
    text-align: center;
    padding: 24px;
    background: linear-gradient(145deg, #6a11cb 0%, #2575fc 100%);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 30px rgba(37, 117, 252, 0.2);
    border: none;
    position: relative;
}

.results-section {
    flex: 1;
    background: linear-gradient(145deg, #ffffff 0%, #f0f4ff 100%);
    border-radius: var(--radius-2xl);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(106, 17, 203, 0.1);
}

/* ÖRNEK 2 - Gün Batımı */
.header {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #ffd93d 100%);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
    border: none;
}

.results-section {
    flex: 1;
    background: linear-gradient(135deg, #fff9f0 0%, #fff0e0 100%);
    border-radius: var(--radius-2xl);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.1);
}

/* ÖRNEK 3 - Orman ve Doğa */
.header {
    text-align: center;
    padding: 24px;
    background: linear-gradient(145deg, #11998e 0%, #38ef7d 100%);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 30px rgba(17, 153, 142, 0.2);
    border: none;
}

.results-section {
    flex: 1;
    background: linear-gradient(145deg, #f0fff4 0%, #e0ffe8 100%);
    border-radius: var(--radius-2xl);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(17, 153, 142, 0.05);
    border: 1px solid rgba(56, 239, 125, 0.1);
}

/* ÖRNEK 4 - Gece Mavisi */
.header {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #141e30 0%, #243b55 50%, #2c5364 100%);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 30px rgba(20, 30, 48, 0.3);
    border: none;
}

.results-section {
    flex: 1;
    background: linear-gradient(135deg, #f0f4fa 0%, #e4eef5 100%);
    border-radius: var(--radius-2xl);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(20, 30, 48, 0.05);
    border: 1px solid rgba(44, 83, 100, 0.1);
}

/* ÖRNEK 5 - Mor ve Pembe */
.header {
    text-align: center;
    padding: 24px;
    background: linear-gradient(145deg, #c33764 0%, #1d2671 100%);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 30px rgba(195, 55, 100, 0.2);
    border: none;
}

.results-section {
    flex: 1;
    background: linear-gradient(145deg, #faf0ff 0%, #f5e5ff 100%);
    border-radius: var(--radius-2xl);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(195, 55, 100, 0.05);
    border: 1px solid rgba(29, 38, 113, 0.1);
}

/* ÖRNEK 6 - Sıcak Yaz */
.header {
    text-align: center;
    padding: 24px;
    background: linear-gradient(145deg, #f7971e 0%, #ffd200 100%);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 30px rgba(247, 151, 30, 0.2);
    border: none;
}

.results-section {
    flex: 1;
    background: linear-gradient(145deg, #fff9e6 0%, #fff2d6 100%);
    border-radius: var(--radius-2xl);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(247, 151, 30, 0.05);
    border: 1px solid rgba(255, 210, 0, 0.1);
}

/* ÖRNEK 7 - Okyanus */
.header {
    text-align: center;
    padding: 24px;
    background: linear-gradient(145deg, #2193b0 0%, #6dd5ed 100%);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 30px rgba(33, 147, 176, 0.2);
    border: none;
}

.results-section {
    flex: 1;
    background: linear-gradient(145deg, #e6f7ff 0%, #d6f0fa 100%);
    border-radius: var(--radius-2xl);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(33, 147, 176, 0.05);
    border: 1px solid rgba(109, 213, 237, 0.1);
}

/* ÖRNEK 8 - Şarap Rengi */
.header {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #5d4157 0%, #a8caba 100%);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 30px rgba(93, 65, 87, 0.2);
    border: none;
}

.results-section {
    flex: 1;
    background: linear-gradient(135deg, #f7f3f0 0%, #f0eae5 100%);
    border-radius: var(--radius-2xl);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(93, 65, 87, 0.05);
    border: 1px solid rgba(168, 202, 186, 0.2);
}

/* ÖRNEK 9 - Neon */
.header {
    text-align: center;
    padding: 24px;
    background: linear-gradient(145deg, #00f5a0 0%, #00d9f5 100%);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 30px rgba(0, 245, 160, 0.3);
    border: none;
}

.results-section {
    flex: 1;
    background: linear-gradient(145deg, #f0fffc 0%, #e6fffd 100%);
    border-radius: var(--radius-2xl);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 245, 160, 0.05);
    border: 1px solid rgba(0, 217, 245, 0.1);
}

/* ÖRNEK 10 - Kırmızı ve Altın */
.header {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #cb2d3e 0%, #ef473a 100%);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 30px rgba(203, 45, 62, 0.2);
    border: none;
}

.results-section {
    flex: 1;
    background: linear-gradient(135deg, #fff2f0 0%, #ffeae5 100%);
    border-radius: var(--radius-2xl);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(203, 45, 62, 0.05);
    border: 1px solid rgba(239, 71, 58, 0.1);
}

/* ÖRNEK 11 - Çok Renkli */
.header {
    text-align: center;
    padding: 24px;
    background: linear-gradient(45deg, #ff0844 0%, #ffb199 33%, #00d4ff 66%, #090979 100%);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 30px rgba(255, 8, 68, 0.2);
    border: none;
}

.results-section {
    flex: 1;
    background: linear-gradient(45deg, #f0f0ff 0%, #ffe6f0 50%, #e6f7ff 100%);
    border-radius: var(--radius-2xl);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(255, 8, 68, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
}

/* ÖRNEK 12 - Metalik */
.header {
    text-align: center;
    padding: 24px;
    background: linear-gradient(145deg, #757f9a 0%, #d7dde8 100%);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 30px rgba(117, 127, 154, 0.2);
    border: none;
}

.results-section {
    flex: 1;
    background: linear-gradient(145deg, #f5f7fc 0%, #eceff8 100%);
    border-radius: var(--radius-2xl);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(117, 127, 154, 0.05);
    border: 1px solid rgba(215, 221, 232, 0.3);
}

/* ================== STATS KUTULARI İÇİN GRADIENT ================== */

/* Stats kutularını gradient yapmak isterseniz */
.stats {
    display: inline-flex;
    gap: 24px;
    background: transparent;  /* Şeffaf yapıyoruz ki alt gradient görünsün */
    padding: 16px 24px;
    border-radius: var(--radius-xl);
    box-shadow: none;
    border: none;
}

.stat {
    text-align: center;
    position: relative;
    padding: 15px 25px;
    min-width: 100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

/* ================== YAZI RENKLERİNİ AYARLAMA ================== */

/* Üst karttaki yazı renkleri (koyu arka planlar için) */
.header h1,
.header .tagline,
.stat .stat-value,
.stat .stat-label {
    color: white;
}

/* Alt karttaki yazı renkleri */
.results-title,
.results-count,
.initial-state h3,
.initial-state p {
    color: #2c3e50;
}
/* ================== BASIT VERIFIED VENDORS TASARIMI ================== */

.verified-vendors-section {
    padding: 15px 0;
}

/* Basit Filtreler */
.verified-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    background: #f9fafb;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.verified-search-box {
    flex: 2;
    min-width: 250px;
    position: relative;
}

.verified-search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 0.9rem;
}

.verified-search-box input {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
}

.verified-search-box input:focus {
    outline: none;
    border-color: #10b981;
}

.verified-filter-select {
    flex: 1;
    min-width: 160px;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.9rem;
    background: white;
    cursor: pointer;
}

.verified-filter-select:focus {
    outline: none;
    border-color: #10b981;
}

/* Basit Welcome Banner */
.verified-welcome {
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.verified-welcome-icon {
    width: 40px;
    height: 40px;
    background: #10b981;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.verified-welcome-content {
    flex: 1;
}

.verified-welcome-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #065f46;
    margin-bottom: 3px;
}

.verified-welcome-text {
    font-size: 0.85rem;
    color: #047857;
}

/* Basit Grid - 4 Kolon */
.verified-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Basit Kart Tasarımı */
.verified-card-new {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.verified-card-new:hover {
    border-color: #10b981;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Verified Badge */
.verified-card-new::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #10b981;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 1;
}

/* Logo Alanı */
.verified-card-logo {
    height: 120px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.verified-card-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.verified-card-logo-fallback {
    width: 60px;
    height: 60px;
    background: #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 1.5rem;
}

/* Kart İçeriği */
.verified-card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.verified-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified-card-title i {
    color: #10b981;
    font-size: 0.85rem;
}

.verified-card-country {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #6b7280;
}

.verified-card-country i {
    color: #10b981;
    font-size: 0.7rem;
}

/* İletişim Bilgileri */
.verified-card-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 5px;
}

.verified-contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #4b5563;
}

.verified-contact-row i {
    width: 16px;
    color: #9ca3af;
    font-size: 0.75rem;
}

.verified-contact-row a {
    color: #4b5563;
    text-decoration: none;
}

.verified-contact-row a:hover {
    color: #10b981;
}

/* Kategoriler */
.verified-card-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 5px 0;
}

.verified-cat-badge {
    background: #f3f4f6;
    color: #4b5563;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    border: 1px solid #e5e7eb;
}

/* Ödeme Koşulları */
.verified-payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fef3c7;
    color: #92400e;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    border: 1px solid #fde68a;
    width: fit-content;
}

.verified-payment-badge i {
    color: #d97706;
    font-size: 0.65rem;
}

/* Aksiyon Butonları */
.verified-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
}

.verified-card-btn {
    flex: 1;
    padding: 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.verified-card-btn.primary {
    background: #10b981;
    color: white;
}

.verified-card-btn.primary:hover {
    background: #059669;
}

.verified-card-btn.secondary {
    background: #f3f4f6;
    color: #4b5563;
    border: 1px solid #e5e7eb;
}

.verified-card-btn.secondary:hover {
    background: #e5e7eb;
}

/* Sonuç Bulunamadı */
.verified-no-results {
    text-align: center;
    padding: 50px 20px;
    background: #f9fafb;
    border: 1px dashed #e5e7eb;
    border-radius: 8px;
    grid-column: 1/-1;
}

.verified-no-results i {
    font-size: 2.5rem;
    color: #d1d5db;
    margin-bottom: 10px;
}

.verified-no-results h3 {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 5px;
}

.verified-no-results p {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 992px) {
    .verified-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .verified-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .verified-filters {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .verified-grid-new {
        grid-template-columns: 1fr;
    }
    
    .verified-welcome {
        flex-direction: column;
        text-align: center;
    }
}
.partner-section {
    background: #fff;
    padding: 40px 0;
    overflow: hidden;
}

.partner-container {
    width: 90%;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.partner-track {
    display: flex;
    width: calc(250px * 10);
    animation: scroll 25s linear infinite;
}

.partner-logo {
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: 0.3s ease;
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    transition: 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner-container:hover .partner-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1250px); }
}

/* Responsive */
@media(max-width: 768px) {
    .partner-logo {
        width: 180px;
    }
    .partner-track {
        width: calc(180px * 10);
    }
}
/* HEADER AUTH BUTTONS */
.header-auth-buttons {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.auth-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.login-btn {
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    border-color: rgba(79, 70, 229, 0.15);
}

.login-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.register-btn {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-sm);
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* MOBILE */
@media (max-width: 768px) {

    .header-auth-buttons {
        position: static;
        justify-content: center;
        margin-bottom: 18px;
        margin-top: -8px;
        flex-wrap: wrap;
    }

    .auth-btn {
        padding: 9px 16px;
        font-size: 0.85rem;
    }
}