.color-white{color: #fff }
/* Mega Menu Özel Stilleri */
.megamenu-content {
    padding: 30px;
    background: #fff;
}
.megamenu-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--thm-base);
    display: inline-block;
    padding-bottom: 5px;
}
.megamenu-list li {
    display: block !important;
    width: 100%;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}
.megamenu-list li:last-child {
    border-bottom: none;
}
.megamenu-list li a {
    padding: 5px 0 !important;
    font-size: 15px;
    color: #666;
    transition: all 0.3s ease;
}
.megamenu-list li a:hover {
    color: var(--thm-base);
    padding-left: 5px !important;
}
.megamenu-banner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    min-height: 250px;
}
.megamenu-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.megamenu-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
}

/* WhatsApp Butonu (SOLDA) */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 9990;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
}

/* Cookie Banner */
#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    color: #333;
    padding: 20px 0;
    z-index: 9998;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    border-top: 1px solid #eee;
}
#cookie-consent p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}
#cookie-consent .btn-group-cookie {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Cookie Settings Modal */
.cookie-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}
.cookie-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    animation-name: animatetop;
    animation-duration: 0.4s
}
@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}
.cookie-modal-header {
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px 8px 0 0;
}
.cookie-modal-body {padding: 20px;}
.cookie-modal-footer {
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
    text-align: right;
    border-radius: 0 0 8px 8px;
}
.cookie-switch-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f1f1;
}
.cookie-switch-container:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}
.switch input {opacity: 0; width: 0; height: 0;}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {background-color: var(--thm-base);}
input:focus + .slider {box-shadow: 0 0 1px var(--thm-base);}
input:checked + .slider:before {transform: translateX(26px);}
input:disabled + .slider {background-color: #999; cursor: not-allowed;}
.min-w-120{min-width: 120px}

/* Clients Slide Fix */
.clients-slide .img-item img {
    opacity: 0.7 !important;
    filter: grayscale(100%) !important;
    -webkit-filter: grayscale(100%) !important;
    width: auto !important;
    max-width: 100%;
    max-height: 100px;
    margin: 0 auto;
    transition: all 0.3s linear;
}
.clients-slide .img-item img:hover {
    opacity: 1 !important;
    filter: none !important;
    -webkit-filter: none !important;
}
.clients-slide .img-item {
    text-align: center;
}