.tcm-cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 440px;
    width: calc(100% - 40px);
    z-index: 999999;
    border: 1px solid #eef2f6;
    animation: tcmSlideIn 0.3s ease;
}

@keyframes tcmSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tcm-popup-content {
    padding: 20px;
}
.tcm-popup-content .tcm-popup-title {
    color: #212121;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 12px 0;
    word-break: break-word;
}
.tcm-popup-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #1e2a3e;
    margin: 0 0 16px 0;
}

.tcm-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.tcm-accept-btn {
    background-color: #0a7cff;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.tcm-accept-btn:hover {
    background-color: #0066cc;
}

.tcm-reject-btn {
    background-color: transparent;
    color: #5a6874;
    border: 1px solid #dce4ec;
    padding: 8px 20px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.tcm-reject-btn:hover {
    background-color: #f5f7fa;
    border-color: #cbd5e1;
}

/* Sticky Button */
.tcm-sticky-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999998;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
    animation: tcmSlideIn 0.3s ease;
}

.tcm-sticky-btn:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.tcm-sticky-btn-inner {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #1e2a3e;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.tcm-sticky-btn-inner:before {
    content: "🍪";
    font-size: 16px;
}

/* Responsive */
@media (max-width: 600px) {
    .tcm-cookie-popup {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
        width: auto;
    }
    .tcm-buttons {
        flex-direction: column;
        gap: 8px;
    }
    .tcm-accept-btn, .tcm-reject-btn {
        width: 100%;
        text-align: center;
    }
    .tcm-sticky-btn {
        bottom: 16px;
        left: 16px;
    }
}