/* =========================
   Cookie Footer
========================= */

.cookie-footer {
    width: 100%;
    background: #111;
    padding: 12px 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    text-align: center;
}

.cookie-content span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.accept-btn {
    white-space: nowrap;
}

/* =========================
   Mobile Responsive
========================= */

@media (max-width: 576px) {

    .cookie-footer {
        padding: 10px 12px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 8px;
    }

    .cookie-content span {
        font-size: 12px;
        line-height: 1.5;
    }

    .accept-btn {
        font-size: 13px;
    }
}

/* =========================
   Brand Directory Section
========================= */

.brand-directory-section {
    background: #efefef;
    padding: 80px;
}

/* =========================
   Logo Grid
========================= */

.brand-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 35px;
}

.logo-card {
    background: #fff;
    border-radius: 4px;
    padding: 18px;
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-card img {
    max-width: 100%;
    max-height: 45px;
    object-fit: contain;
}

/* =========================
   Blocks
========================= */

.directory-block {
    margin-bottom: 35px;
}

.directory-block h3 {
    font-size: 28px;
    font-weight: 700;
    color: #444;
    margin-bottom: 18px;
}

/* =========================
   Links
========================= */

.directory-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
}

.directory-links a {
    position: relative;
    color: #222;
    text-decoration: none;
    font-size: 15px;
    padding: 0 10px;
    line-height: 1.8;
}

.directory-links a::after {
    content: "|";
    position: absolute;
    right: -2px;
    color: #555;
}

.directory-links a:last-child::after {
    display: none;
}

/* =========================
   Mobile Responsive
========================= */

@media (max-width: 992px) {

    .brand-logos {
        grid-template-columns: repeat(3, 1fr);
    }

    .directory-block h3 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {

    .brand-directory-section {
        padding: 14px;
    }

    .brand-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .logo-card {
        height: 70px;
        padding: 12px;
    }

    .directory-block {
        margin-bottom: 28px;
    }

    .directory-block h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .directory-links a {
        font-size: 13px;
        padding: 0 7px;
        line-height: 1.6;
    }
}

/* =========================
  End Brand Directory Section
========================= */