/* =========================================
   MEGA MENU
========================================= */

.navbar .dropdown-mega {
    position: static;
}

.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    top: 100%;

    border: none;
    border-radius: 0;

    padding: 36px;

    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    background: #fff;
}

/* ROW */
.mega-menu .row {
    align-items: stretch;
}

/* =========================================
   BAŞLIKLAR
========================================= */

.mega-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
}

.mega-title-line {
    position: relative;
    padding-bottom: 10px;
}

.mega-title-line::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;

    width: 42px;
    height: 2px;

    background: #d4af84;
}

/* =========================================
   LİSTELER
========================================= */

.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-list li {
    margin-bottom: 14px;
}

/* =========================================
   SOL KATEGORİLER
========================================= */

.mega-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 16px;
    font-weight: 500;

    color: #2d2d2d;
    text-decoration: none;

    transition: .25s ease;
}

.mega-category-link:hover {
    color: #c8a97e;
    padding-left: 6px;
}

.mega-category-link.active {
    color: #c8a97e;
    font-weight: 700;
}

/* =========================================
   ORTA SÜTUN
========================================= */

.mega-middle-column {
    border-left: 1px solid #ececec;
    padding-left: 32px;
}

/* ALT KATEGORİLER */

.mega-products li {
    margin-bottom: 14px;
}

.mega-products a {
    font-size: 16px;
    color: #444;
    text-decoration: none;

    transition: .25s ease;
}

.mega-products a:hover {
    color: #c8a97e;
    padding-left: 4px;
}

/* =========================================
   SAĞ PROMO ALANI
========================================= */

.mega-promo-box {
    display: flex;
    align-items: stretch;

    background: #f8f5f1;

    border-radius: 18px;

    overflow: hidden;

    min-height: 340px;
}

/* SOL YAZI */

.mega-promo-content {
    /* width: 50%; */

    padding: 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mega-badge {
    display: inline-block;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;

    color: #9f815f;

    margin-bottom: 16px;
}

.mega-promo-content h4 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;

    color: #222;

    margin-bottom: 18px;
}

.mega-promo-content p {
    font-size: 15px;
    color: #555;

    line-height: 1.7;

    margin-bottom: 24px;
}

/* BUTTON */

.mega-fashion-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: fit-content;

    padding: 10px 20px;

    border-radius: 7px;

    background: #bf8748;
    color: #fff;

    text-decoration: none;
    font-weight: 600;

    transition: .25s ease;
}

.mega-fashion-btn:hover {
    background: #c49b70;
    color: white;
}

/* =========================================
   SAĞ RESİM
========================================= */

.mega-promo-image {
    width: 50%;
    height: 340px;
}

.mega-promo-image img {
    /* width: 100%; */
    height: 100%;

    object-fit: cover;
    display: block;
}

/* =========================================
   MOBİL
========================================= */

@media (max-width: 991px) {

    .mega-menu {
        padding: 20px;
        box-shadow: none;
    }

    .mega-middle-column {
        border-left: none;
        padding-left: 0;
        margin-top: 20px;
    }

    .mega-promo-box {
        flex-direction: column;
    }

    .mega-promo-content,
    .mega-promo-image {
        width: 100%;
    }

    .mega-promo-image {
        height: 240px;
    }

    .mega-promo-content h4 {
        font-size: 28px;
    }
}