﻿#contactUsBtn {
    position: fixed;
    top: 75%;
    right: 0;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background-color: #dc3131;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    z-index: 999;
    width: 150px;
    text-align: center;
}

    #contactUsBtn:hover {
        background-color: #b62828;
        transform: translateY(-50%) rotate(-90deg) scale(1.05);
    }

#contactPopup {
    position: fixed;
    top: 75%;
    right: -320px;
    width: 280px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: translateY(-50%);
    z-index: 1000;
}

    #contactPopup.active {
        right: 55px;
        opacity: 1;
    }

    #contactPopup ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        #contactPopup ul li {
            background: #f9f9f9;
            border-radius: 10px;
            padding: 6px 7px;
            margin-bottom: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #333;
        }

.action-btns {
    display: flex;
    gap: 8px;
}

.icon-btn {
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon-btn:hover {
        background-color: #ffffff;
    }

    .icon-btn img {
        width: 30px;
        height: 30px;
    }

@media screen and (max-width: 768px) {
    #contactUsBtn {
        width: 120px;
        font-size: 14px;
    }

    #contactPopup {
        top: 70%;
    }
}

.error {
    color: red !important;
    font-weight: bold;
}


.alert {
    padding-left: 0px !important;
}

.img-loader {
    width: 20px !important;
}

.custom-dropdown {
    appearance: none; /* Varsayılan dropdown stilini kaldır */
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 10px 15px;
    padding-right: 40px; /* Sağda ok için yer bırak */
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}



.dropdown-icon {
    position: absolute;
    top: 50%;
    right: 15px; /* Sağ tarafa hizala */
    transform: translateY(-50%);
    pointer-events: none; /* Kullanıcının tıklamasını engelle */
    font-size: 18px;
    color: #333;
}

.map-container {
    width: 100%;
    height: 500px; /* İhtiyaca göre yüksekliği ayarla */
    border-radius: 10px; /* Köşeleri yuvarlat */
    overflow: hidden; /* Taşmaları önle */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Hafif bir gölge efekti */
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }


.disabled-button {
    pointer-events: none !important;
    opacity: 50% !important,
}


.btnUnlock span:hover{
    color:white !important;
}

.vlogo {
    position: absolute;
    left: 50%; /* Sayfanın tam ortasına hizala */
    /*  top: 50%;  /* Sayfanın ortasına hizala */
    transform: translate(-50%, -50%); /* Tam merkezde olacak şekilde düzelt */
    width: 525px; /* Varsayılan genişlik */
    height: auto; /* Oranı koru */
    max-width: 100%; /* Sayfa genişliğine uyum sağla */
}

/* 📌 Mobil İçin Küçültme */
@media (max-width: 768px) {
    .vlogo {
        width: 20%; /* Küçültülmüş genişlik */
        max-width: 300px; /* En fazla 300px genişliğinde olsun */
        position: absolute; /* Mobilde absolute yerine relative kullanarak hizalamayı bozmasını engelle */
        top: auto;
        transform: translate(-50%, -50%); /* Tam merkezde olacak şekilde düzelt */
        /*margin-top: 20px; /* Fazla yukarı çıkmasını önler */
    }
}


.myActive {
    background: var(--dark-gray);
    color: white !important;
    border: 0;
    padding: 0 2px;
    margin: 0 7px;
    min-width: 45px;
    font-size: inherit;
    text-align: center;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    line-height: 45px;
    min-height: 45px;
}
.myActive a {
    color :white !important;
}

.img-150-fit {
    height: 150px;
    width: 200px; 
    object-fit: contain; 
    display: block; 
}

.img-300-fit {
    height: 300px; 
    width: 300px; 
    object-fit: contain; 
    display: block;
}

.product-detial-swiper-slide-img {
    object-fit:cover;
    width:100px !important;
    height: 100px !important;
}

ul.tags-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    ul.tags-list li {
        display: inline;
    }

        ul.tags-list li:not(:last-child)::after {
            content: ", ";
        }

        ul.tags-list li a {
            text-decoration: underline;
            color: black;
        }

            ul.tags-list li a:hover {
                color: black;
                text-decoration: underline;
            }