#mc-gallery {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

#mc-gallery * {
    box-sizing: border-box;
}


/* BAŞLIK */

.mc-gallery-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 40px;
}

.mc-gallery-header > span {
    display: block;
    margin-bottom: 10px;
    color: #a47a43;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.mc-gallery-header h2 {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1.15;
    color: #171717;
}

.mc-gallery-header p {
    margin: 0;
    color: #777;
    font-size: 16px;
    line-height: 1.6;
}


/* ÜRÜN GRID */

.mc-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* ÜRÜN */

.mc-product {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(0,0,0,.06);
    transition: .3s ease;
}

.mc-product:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}


/* GÖRSEL */

.mc-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #eee;
}

.mc-product-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: transform .5s ease;
}

.mc-product:hover .mc-product-image img {
    transform: scale(1.05);
}


/* OVERLAY */

.mc-product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.35);
    opacity: 0;
    transition: .3s ease;
}

.mc-product:hover .mc-product-overlay {
    opacity: 1;
}

.mc-product-overlay span {
    padding: 12px 20px;
    border-radius: 50px;
    background: #fff;
    color: #111;
    font-size: 13px;
    font-weight: 700;
}


/* BİLGİ */

.mc-product-info {
    padding: 18px;
}

.mc-product-info h3 {
    margin: 0;
    color: #171717;
    font-size: 19px;
}


/* 6'DAN SONRAKİLER */

.mc-product.mc-hidden {
    display: none;
}


/* DEVAMINI GÖSTER */

.mc-load-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

#mc-load-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border: 0;
    border-radius: 50px;
    background: #171717;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s ease;
}

#mc-load-more:hover {
    background: #a47a43;
    transform: translateY(-2px);
}


/* LIGHTBOX */

#mc-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#mc-lightbox.active {
    display: flex;
}

.mc-lightbox-bg {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.93);
}


/* LIGHTBOX İÇ */

.mc-lightbox-content {
    position: relative;
    z-index: 2;
    width: min(850px, 90vw);
    text-align: center;
}

#mc-big-image {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 70vh;
    margin: 0 auto;
    border-radius: 12px;
    object-fit: contain;
}


/* ÜRÜN BAŞLIĞI */

.mc-lightbox-info {
    margin-top: 18px;
}

#mc-big-title {
    margin: 0 0 16px;
    color: #fff;
    font-size: 23px;
}


/* WHATSAPP */

#mc-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 190px;
    padding: 14px 25px;
    border-radius: 50px;
    background: #25d366;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(37,211,102,.3);
    transition: .25s ease;
}

#mc-whatsapp:hover {
    transform: translateY(-3px);
    background: #20bd5b;
}


/* KAPAT */

.mc-close {
    position: fixed;
    top: 20px;
    right: 25px;
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}


/* OKLAR */

.mc-prev,
.mc-next {
    position: fixed;
    top: 50%;
    z-index: 5;
    width: 55px;
    height: 55px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.mc-prev {
    left: 25px;
}

.mc-next {
    right: 25px;
}


/* MOBİL */

@media (max-width: 900px) {

    .mc-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

}


@media (max-width: 600px) {

    #mc-gallery {
        padding: 40px 12px;
    }

    .mc-gallery-header h2 {
        font-size: 30px;
    }

    .mc-gallery-header p {
        font-size: 14px;
    }

    .mc-products {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .mc-prev,
    .mc-next {
        width: 42px;
        height: 42px;
        font-size: 30px;
    }

    .mc-prev {
        left: 8px;
    }

    .mc-next {
        right: 8px;
    }

    #mc-big-image {
        max-height: 58vh;
    }

}