/* DinamiCold Cookie Consent Styling */
.cookie-consent-wrapper {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 999999;
    display: none; /* JS ile açılacak */
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-consent-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-icon {
    font-size: 32px;
    color: #00a8cc;
}

.cookie-text {
    flex: 1;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-text a {
    color: #00a8cc;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-btns {
    display: flex;
    gap: 12px;
}

.btn-cookie-accept {
    background: #00a8cc;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-cookie-accept:hover {
    background: #0088a5;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .cookie-consent-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .cookie-btns {
        width: 100%;
    }
    .btn-cookie-accept {
        width: 100%;
    }
}
