﻿.cookie-modal-wrapper {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 12px;
    z-index: 999999;
    padding: 20px;
    border-left: 5px solid #e60012; /* Toshiba Kırmızısı */
}

.cookie-modal-content {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.cookie-text h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #333;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.cookie-text a {
    color: #e60012;
    text-decoration: underline;
}

.btn-accept {
    background-color: #e60012;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    white-space: nowrap;
    transition: background 0.3s;
}

    .btn-accept:hover {
        background-color: #c1000f;
    }

/* Mobil Ekranlar İçin */
@media (max-width: 768px) {
    .cookie-modal-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-modal-wrapper {
        bottom: 10px;
        padding: 15px;
    }

    .btn-accept {
        width: 100%;
    }
}
