.callBtn {
    z-index: 99;
    position: fixed;
    right: -98px; /* Yarım buton görünür */
    top: 280px;
    transition: right 0.3s ease;
}

.module .trigger {
    position: relative;
}

/* Buton hover olduğunda tamamı içeri gelir */
.module .trigger:hover .callBtn {
    right: 0;
}

.module .trigger span {
    letter-spacing: 1px;
    position: relative;
    background: white;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 44px;
    padding: 0 16px;
    z-index: 1;
    cursor: pointer;
    border-radius: 22px;
    min-width: 100px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12); /* Yumuşak gölge */
    transition:
        border-radius 350ms ease,
        color 700ms ease,
        min-width 350ms ease;
}

.module .trigger span em {
    font-style: normal;
    pointer-events: none;
    margin-right: 10px;
    transform-origin: bottom;
}

.module .trigger ul.locations {
    position: absolute;
    list-style: none;
    margin: 0;
    padding: 0;
    background: white;
    border-radius: 0 0 22px 22px;
    font-size: 14px;
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: top;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12); /* Estetik dropdown gölgesi */
    transition: transform 350ms ease;
}

.module .trigger ul.locations a {
    opacity: 0;
    transition: opacity 300ms ease;
}

.module .trigger ul.locations li {
    list-style-type: none;
    width: 220px;
    height: 44px;
    padding: 0 20px;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-left: 0 solid #eee;
    transition: border-left 200ms ease;
}

.module .trigger ul.locations li:before {
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #eee, #fcfcfc);
    position: absolute;
    top: 0;
    left: 0;
}

.module .trigger ul.locations li:last-of-type {
    border-radius: 0 0 22px 22px;
}

.module .trigger ul.locations li a {
    text-decoration: none;
    color: #000000;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.module .trigger ul.locations li:hover {
    border-left: 10px solid #eee;
}

.module .trigger:hover span {
    min-width: 240px;
    border-radius: 22px 22px 0 0;
    transition:
        border-radius 350ms ease,
        color 700ms ease,
        min-width 350ms ease;
}

.module .trigger:hover ul.locations {
    transform: scaleY(1);
    transition: transform 350ms ease;
}

.module .trigger:hover ul.locations a {
    opacity: 1;
    transition: opacity 300ms ease;
}
.module .trigger ul.locations img {
    pointer-events: none;
}