/* ===== VENDORS PAGE ===== */

/* Hero Section */
.vendors-hero-section {
    background: linear-gradient(135deg, #050508 0%, #0e0e16 50%, #050508 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    padding: 160px 0 100px;
    position: relative;
    text-align: center;
}

.vendors-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 60%,
        rgba(65, 105, 225, 0.12) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.vendors-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.vendors-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.vendors-hero-content p {
    font-size: 17px;
    color: var(--text);
    line-height: 1.8;
    margin: 0;
}

/* Vendors Grid Section - DARK THEME */
.vendors-grid-section {
    background: var(--bg);
    padding: 100px 0;
    position: relative;
}

.vendors-grid-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 30%,
        rgba(65, 105, 225, 0.07) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.vendors-grid-section .container {
    position: relative;
    z-index: 1;
}

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

/* Vendor Card - DARK THEME */
.vendor-card {
    background: linear-gradient(
        135deg,
        rgba(12, 12, 20, 0.95) 0%,
        rgba(16, 16, 28, 0.85) 100%
    );
    border: 1px solid rgba(91, 127, 255, 0.15);
    border-radius: 16px;
    padding: 50px 40px;
    text-decoration: none;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vendor-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(91, 127, 255, 0.08) 0%,
        rgba(65, 105, 225, 0.04) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vendor-card:hover::before {
    opacity: 1;
}

.vendor-card:hover {
    border-color: rgba(91, 127, 255, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(65, 105, 225, 0.25);
}

/* Vendor Logo Container */
.vendor-logo-container {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.vendor-logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: brightness(1) drop-shadow(0 0 0 transparent);
}

/* GLOWING EFFECT ON HOVER */
.vendor-card:hover .vendor-logo-container img {
    transform: scale(1.08);
    filter: brightness(1.1) drop-shadow(0 0 20px rgba(91, 127, 255, 0.5))
        drop-shadow(0 0 40px rgba(91, 127, 255, 0.3));
}

.vendor-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(91, 127, 255, 0.1);
    border: 1px solid rgba(91, 127, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(91, 127, 255, 0.4);
}

.vendor-placeholder i {
    font-size: 36px;
}

/* Vendor Description */
.vendor-description {
    position: relative;
    z-index: 1;
}

.vendor-description p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .vendors-hero-content h1 {
        font-size: 42px;
    }

    .vendors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .vendors-hero-section {
        padding: 130px 0 70px;
    }

    .vendors-hero-content h1 {
        font-size: 36px;
    }

    .vendors-hero-content p {
        font-size: 15px;
    }

    .vendors-grid-section {
        padding: 80px 0;
    }

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

    .vendor-card {
        padding: 40px 30px;
    }

    .vendor-logo-container {
        height: 100px;
    }
}
