
/* ========================================
   COOKIE BANNER STYLES
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: auto;
    max-width: 450px;
    background: var(--renkbeyaz);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10001;
    padding: 20px;
    animation: cookieSlideUp 0.4s ease-out;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}
@keyframes cookieSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.cookie-banner.cookie-hidden {
    display: none !important;
}
.cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cookie-banner-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--renkkirmizi);
    display: flex;
    align-items: center;
    gap: 8px;
}
.cookie-banner-title i {
    font-size: 20px;
}
.cookie-banner-text {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
}
.cookie-link {
    color: var(--renkkirmizi);
    text-decoration: underline;
}
.cookie-link:hover {
    color: var(--renkkoyukirmizi);
}
.cookie-banner-customize {
    font-size: 13px;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.cookie-banner-customize:hover {
    color: var(--renkkirmizi);
}
.cookie-banner-buttons {
    display: flex !important;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
}
.cookie-btn1 {
    height: 35px;
    width: 43px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex !important;
    align-items: center;
    justify-content: center;
    /* gap: 6px; */
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    padding-top: 3px;
}
.cookie-btn-accept {
    background: #1c9221;
    color: var(--renkbeyaz);
}
.cookie-btn-accept:hover {
    background: #158a1a;
}
.cookie-btn-reject {
    background: #dc3545;
    color: var(--renkbeyaz);
}
.cookie-btn-reject:hover {
    background: #c82333;
}
.cookie-btn-save {
    background: #007bff;
    color: var(--renkbeyaz);
}
.cookie-btn-save:hover {
    background: #0056b3;
}
.cookie-btn-delete {
    background: #6c757d;
    color: var(--renkbeyaz);
}
.cookie-btn-delete:hover {
    background: #545b62;
}

/* Cookie Settings Button */
.cookie-settings-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--renkkirmizi);
    color: var(--renkbeyaz);
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    transition: all 0.3s;
}
.cookie-settings-button:hover {
    background: var(--renkkoyukirmizi);
    transform: scale(1.1);
}

/* Cookie Category in Modal */
.cookie-category {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}
.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
}
.cookie-category-left {
    flex: 1;
}
.cookie-accordion-button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    padding: 0;
    font-size: 14px;
}
.cookie-accordion-button span {
    transition: transform 0.3s;
    margin: 0px 20px;
}
.cookie-accordion-button[aria-expanded="true"] span {
    transform: rotate(180deg);
}
.cookie-accordion-content {
    padding: 15px;
    background: var(--renkbeyaz);
    border-top: 1px solid #e5e5e5;
}
.cookie-description {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}
.cookie-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cookie-list li {
    font-size: 12px;
    color: #888;
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
}
.cookie-list li:last-child {
    border-bottom: none;
}

/* Cookie Switch Toggle */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}
.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}
.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}
.cookie-switch input:checked + .cookie-slider {
    background-color: #1c9221;
}
.cookie-switch input:disabled + .cookie-slider {
    background-color: #aaa;
    cursor: not-allowed;
}
.cookie-switch input:checked + .cookie-slider:before {

}
.cookie-settings-intro {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

/* Cookie Settings Modal - Z-index Override */
#cookieSettingsModal {
    z-index: 10010 !important;
}
#cookieSettingsModal ~ .modal-backdrop,
.cookie-modal-backdrop {
    z-index: 1005 !important;
}
#cookieSettingsModal .modal-dialog {
    z-index: 10011 !important;
}

/* Cookie Banner Active - Body Scroll Lock */
body.cookie-banner-active,
html.cookie-banner-active {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 500px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 15px;
        max-width: none;
    }
    .cookie-banner-buttons {
        flex-direction: column;
    }
    .cookie-btn {
        width: 100%;
    }
}

/* ========================================
   KVKK / ONAY MODAL STYLES
   ======================================== */
.vv_kvkk{
    z-index: 5;
    position: fixed;
    left: auto;
    right: 20px;
    bottom: 10px;
    max-width: 400px;
    width: calc( 100vw - 40px);
    height: 240px;
    transform-origin: right bottom;
    animation: 0s ease 0s 1 normal none running none !important;
}
.vv_kvkk_ic{
    margin: 0;
    display: grid;
}


