/* TRUEMED - Apple Glass Slider Buttons */

.trumed-slider-btn {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    width: 190px;
    height: 58px;
    padding: 0 30px !important;

    border-radius: 50px;
    overflow: hidden;

    color: #fff !important;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;

    background: rgba(255,255,255,.14) !important;

    backdrop-filter: blur(3px) saturate(100%);
    -webkit-backdrop-filter: blur(3px) saturate(100%);

    border: 1px solid rgba(255,255,255,.28);

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.35),
        inset 0 -10px 25px rgba(255,255,255,.06),
        0 10px 30px rgba(0,0,0,.12);

    transition: all .45s ease;
}

/* İç cam çizgi */
.trumed-slider-btn::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 45px;
    border: 1px solid rgba(255,255,255,.22);
    opacity: .55;
    transition: all .45s ease;
}

/* Üst parlama */
.trumed-slider-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 12%;
    width: 76%;
    height: 45%;
    border-radius: 50px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,.28),
        rgba(255,255,255,0)
    );
    pointer-events: none;
}

/* Ürünler butonu hafif marka tonu */
.trumed-products-btn {
    background: rgba(108,188,207,.08) !important;
}

/* Bize Ulaşın daha şeffaf */
.trumed-contact-btn {
    background: rgba(255,255,255,.10) !important;
}

/* Yazılar üstte kalsın */
.trumed-slider-btn a,
.trumed-slider-btn p,
.trumed-slider-btn span {
    position: relative;
    z-index: 2;
    color: #fff !important;
    text-decoration: none !important;
}

/* Hover */
.trumed-slider-btn:hover {
    transform: translateY(-2px);

    background: rgba(255,255,255,.20) !important;

    border-color: rgba(255,255,255,.45);

    backdrop-filter: blur(5px) saturate(135%);
    -webkit-backdrop-filter: blur(5px) saturate(135%);

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.45),
        inset 0 -12px 28px rgba(255,255,255,.08),
        0 0 28px rgba(108,188,207,.18),
        0 14px 35px rgba(0,0,0,.16);
}

.trumed-slider-btn:hover::before {
    opacity: 1;
    border-color: rgba(255,255,255,.65);
}


.trumed-slider-btn:hover,
.trumed-slider-btn:hover a,
.trumed-slider-btn:hover p,
.trumed-slider-btn:hover span{
    color:#000 !important;
}

/* TRUEMED - Smart Slider Mobil Buton Düzeltme */
@media (max-width: 767px) {

    .trumed-slider-btn {
        width: 118px !important;
        height: 42px !important;
        padding: 0 14px !important;
        font-size: 13px !important;
        border-radius: 40px !important;
    }

    .trumed-slider-btn::before {
        inset: 4px;
        border-radius: 36px;
    }

    .trumed-slider-btn::after {
        height: 42%;
    }

    .trumed-slider-btn a,
    .trumed-slider-btn p,
    .trumed-slider-btn span {
        font-size: 13px !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }
}